Home

Forums

Statistics

Surveys

Top Ten

Your Account


Login
Nickname

Password

Security Code: Security Code
Type Security Code

Don't have an account yet? You can create one. As a registered user you have some advantages like a private journal and posting comments or additions to articles.

Who's Online
There are currently, 11 guest(s) and 0 member(s) that are online.

You are Anonymous user. You can register for free by clicking here

Donations
If you find the information here useful,
help keep this web site online with a donation!
YTD Donations
$1.00
Thank You!

Host referer


  
AnOldMan.com: 5: Strange things I have been up to

Search on This Topic:   
[ Go to Home | Select a New Topic ]

Poor Man's Transfer Switch
Posted by anoldman on Tuesday, March 13 @ 10:31:26 CDT (2401 reads)
Topic 5: Strange things I have been up to

Poor man's transfer switch

I needed a transfer switch on my house to hook up my generator.  My generator is manual start, and an automatic transfer switch - at over $1000 - seemed excessive.  I couldn't just hook up with a cord either - my generator is 150+ amps!
I have 150 amp service on my house (my main breaker - in breaker box - is 150) so I looked for a simple way to connect.

What I ended up with was two 150amp line breakers, a NEMA 4 enclosure, and a home made EXCLUSION BAR.
I hooked this up at my meter box.
Yes, I had to pull the meter to do this (it just plugs in), but I simply called the power company and asked them to re-tag the meter.

Here is a before-and-after view of the connection:

THE EXCLUSION BAR IS THE MOST IMPORTANT CONCEPT HERE!

The exclusion bar keeps you from running both the mains and the generator at the same time.  This is VERY important to safeguard utility workers. (not to mention the huge drain on the generator!)
 In this example, I simply mounted an aluminum bar on a bolt through the cover.  Simple and effective.

Do NOT, never EVER, put together a permanently wired circuit for a standby generator WITHOUT some type of exclusion bar or interlock that prevents the connection of main power and generator power simultaneously.

Some people put their generator on a breaker in their main breaker box.  Yes, that works.  Yes, it is VERY UNSAFE.
You MUST BUILD AN EXCLUSION DEVICE!
Here is an example on a breaker box:

The exclusion bar slides up and down on the two mount pins, making it impossible (or very difficult anyway) to turn on both the generator's breaker and the main breaker at the same time.  If you don't have a main breaker (it's probably in your meter box) then you CANNOT do this!  Make your generator connection where you have a MAIN breaker.  Or get a transfer switch / distribution panel.

Let me say again: if you wish to wire a generator into your home's distribution panel (breaker box) then you MUST make provisions to prevent the connection when incoming lines from the power company are also connected.

In a total disaster situation (say Katrina?) you could pull your meter.
Otherwise, always use a transfer switch or some other type of exclusion device.

All of the above assumes you are using correctly rated wiring, boxes, breakers, ect...  If you are uncertain, contact an electrician.




(Read More... | 3079 bytes more | comments? | Score: 5)

More about playing with AC power
Posted by anoldman on Monday, April 17 @ 22:01:14 CDT (1595 reads)
Topic 5: Strange things I have been up to

I've had quite a few private questions about my article
Re-wiring a three phase generator

Most of these have been along the line of
"My meter shows acceptable voltages in three-phase if I just
hook up L1, L2, and Neutral - and don't use L3"

That's a 3-phase, 4-wire connection with one of the "line" connections unused:

The voltages will indeed APPEAR to be in an acceptable range,
because the individual is not using proper equipment to test the system.

In UNDERSTANDING AC POWER we will explore why.

In UNDERSTANDING RESIDENTIAL AC PHASES we will look at phase-shifts.

In UNDERSTANDING HOW GENERATORS WORK we will learn how generators
are wired and hopefully learn how to identify our own.

In GUIDE TO POWER SYSTEMS we will get way too detailed and put you to sleep!




(Read More... | 1492 bytes more | Score: 4)

Fixing stylesheets for PHPNuke and phpBB
Posted by anoldman on Wednesday, March 08 @ 23:07:55 CST (830 reads)
Topic 5: Strange things I have been up to
This site runs PHPNuke with phpBB forums.

I decided to work on my theme.

While trying to work on the forum theme I found that CSS changes don't work..

Investigating further, I found that the stylesheet for the forums was written in the html in the <BODY> after the default menu bars. The browser just ignores it.

I visited MANY other PHPNuke sites and found the same problem there as well.

Apparently it's the contents of overall_header.tpl that are being placed in the <BODY>.

PHPNuke builds the <HEAD> section, followed by the top menu bar (in theme.php) then calls phpBB.

The forum thinks it's running on a site by itself, so the overall_header.tpl file writes the page including it's own <HEAD> tags. Since PHPNuke has already written the tags and closed them, everything between the new <HEAD> tags is ignored by the browser. They just show up as garbage when you do a View-->Source.

In header.php the stylesheet is called by:
Code:
echo "<LINK REL="StyleSheet" HREF="themes/$ThemeSel/style/style.css" TYPE="text/css">";

In theme.php for any theme, I can put the following in Function themeheader:
Code:
/************************************************************/
/* Function themeheader() */
/* $name added to global */
/************************************************************/

function themeheader() {
global $banners, $sitename, $name;

/************************************************************/
/* replace blocks(left); with */
/************************************************************/

if ($name=='Forums') {
/* Don't display left blocks, any other code if forums active goes here */
}
else {
blocks(left);
}
This makes the forum go full screen except for the site header/navbar. The forums here work in this manner.

The if ($name=='Forums') test works in header.php, so I can use it to write forum head tags when forums are active.
I just remove all code above and including the </HEAD> tag in overall_header.tpl then modify header.php/function head to contain that code, like this:
Code:
 function head() {

    global $name, $slogan, $sitename, $banners, $nukeurl, $Version_Num, $artpage, $topic, $hlpfile, $user, $hr, $theme, 
           $cookie, $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4, $textcolor1, $textcolor2, $forumpage, $adminpage, $userpage, $pagetitle;
    include("includes/ipban.php");
    $ThemeSel = get_theme();
    include("themes/$ThemeSel/theme.php");
    echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
    echo "<html>\n";
    echo "<head>\n";
    echo "<title>$sitename $pagetitle</title>\n";
    include("includes/meta.php");
    include("includes/javascript.php");
    
    if (file_exists("themes/$ThemeSel/images/favicon.ico")) {
	echo "<link REL=\"shortcut icon\" HREF=\"themes/$ThemeSel/images/favicon.ico\" TYPE=\"image/x-icon\">\n";
    }
    echo "<link rel=\"alternate\" type=\"application/rss+xml\" title=\"RSS\" href=\"backend.php\">\n";
    if ($name=='PHP-Nuke_HOWTO') {
    echo "<LINK REL=\"StyleSheet\" HREF=\"modules/PHP-Nuke_HOWTO/ck-style.css\" TYPE=\"text/css\">\n\n"; 
    }
    echo "<LINK REL=\"StyleSheet\" HREF=\"themes/$ThemeSel/style/style.css\" TYPE=\"text/css\">\n\n";

    if ($name=='Forums') { 
    echo "<LINK REL=\"StyleSheet\" HREF=\"themes/$ThemeSel/forums/forums.css\" TYPE=\"text/css\">\n";
    echo "<link rel=\"top\" href=\"modules.php?name=Forums&file=modules&name=Forums&file=modules/Forums/index\" title=\"AnOldMan.com Forum Index\" />\n";
    echo "<link rel=\"search\" href=\"modules.php?name=Forums&file=modules&name=Forums&file=modules/Forums/search\" title=\"Search\" />\n";
    echo "<link rel=\"help\" href=\"modules.php?name=Forums&file=modules&name=Forums&file=modules/Forums/faq\" title=\"Forum FAQ\" />\n";
    echo "<link rel=\"author\" href=\"modules.php?name=Forums&file=modules/Forums/modules&name=Members_List&file=index\" title=\"Memberlist\" />\n";
    }

    if (file_exists("includes/custom_files/custom_head.php")) {
	  include_once("includes/custom_files/custom_head.php");
    }
    echo "\n\n\n</head>\n\n";
    if (file_exists("includes/custom_files/custom_header.php")) {
	  include_once("includes/custom_files/custom_header.php");
    }
    themeheader();
    }

Stylesheets are parsed by browsers based on the last declaration. I am setting two stylesheets when forums are active, but only styles that are re-declared are affected. Of course, a lot of the site's style changes when forums are active, but since I have blocks(left); disabled then, the only part of the page truly affected is the menu bar. I have it's layout/style hardcoded in theme.php, so it makes no difference.

The result: no more code showing in the body when you view a page's source, and more importantly: the forum stylesheet now works!

I was amazed at the style changes evident after this, I had never seen phpBB in it's native color scheme before!

Files discussed are found on YOUR site here:
PUBLIC_HTML/header.php
PUBLIC_HTML/themes/sometheme/theme.php
PUBLIC_HTML/themes/sometheme/forums/overall_header.tpl




(Read More... | 8161 bytes more | comments? | Score: 0)

Jabber server on a Magnia?
Posted by anoldman on Monday, January 23 @ 19:40:37 CST (1204 reads)
Topic 5: Strange things I have been up to

Wildfire is a JABBER server that is self-contained (it doesn't need you to install a bunch of other rpm's/modules for it to work!).

Just download the RPM from the site and use Webmin's package manager -or- manual upgrade from the SG20/30's admin page to install it.  After installation go to http://192.168.1.1:9090 and refresh until you get the setup pages.  Wildfire will set itself up with one minor correction and away you go!

The DEFAULT name of a Magnia is MYSERVER, so Wildfire will set your domain as myserver.myserver.loc which will not work!  If you actually have a domain, enter your domain name.  Otherwise enter either myserver or 192.168.1.1 note: this assumes you are at default values!

I have tried a client or two, and it works fine.  Of course, to use it with other peeps you will have to open a hole in your firewall.  I want to I.M. my MisterHouse, or I wouldn't be doing this!




(Read More... | 1443 bytes more | Score: 0)

Drive too small?
Posted by anoldman on Monday, January 02 @ 20:01:40 CST (703 reads)
Topic 5: Strange things I have been up to

Making that little 20gb HDD bigger.

You should be able to IMAGE your drive onto any size laptop drive you want.  Of course, the "leftover" space from your imaging is going to be unused.  You could partition it and mount it  But why?

THERE'S A BETTER WAY...




(Read More... | 2095 bytes more | comments? | Score: 0)

Gateway Connected Music Player
Posted by anoldman on Sunday, December 25 @ 12:36:58 CST (1735 reads)
Topic 5: Strange things I have been up to

http://support.gateway.com/s/Netppliance/7510764/751076402.shtml

I recently purchased one of these because I have a Turtle Beach AudioTron

http://www.turtlebeach.com/site/products/audiotron/producthome.asp

and the Gateway is made by Turtle Beach.

I was disappointed at first because it did not function ANYTHING like the AudioTron.  The AudioTron remote did not even work!  I was able to upgrade the firmware in it with the Turtle Beach version.  The unit now performs exactly like the AudioTron in every respect.

At first I was afraid to attempt the upgrade.  If the firmware flash failed I would have trashed the Gateway.  My fears proved to be unfounded, however.

I highly recommend that anyone with a Gateway Connected Music Player upgrade their unit with the AudioTron firmware.  Just the web interface alone is well worth it!  I used the older version 3.1.1

Turtle Beach says their newest version 3.2.25 does not work well with NAS hard drives.  My original AudioTron is running this release, and it works fine with my NAS.  I am not going to upgrade the Gateway again yet.




(Read More... | 1451 bytes more | Score: 0)

Gaining access to MY DOCUMENTS - Access Denied
Posted by anoldman on Saturday, September 17 @ 19:13:34 CDT (3850 reads)
Topic 5: Strange things I have been up to

So you restored your machine and want to get at the "My Documents" folder you had saved from your previous install.  You get an"Access is Denied" Error Message When You Try to Open the Folder

SYMPTOMS

When you try to open a folder in Microsoft Windows XP, you may receive the following error message, where Folder is the name of the folder that you cannot open:

Folder is not accessible. Access is denied.

CAUSE

This issue may occur if the folder that you cannot open was created on an NTFS file system volume by using a previous installation of Windows, and then installing Windows XP. This issue may occur although you enter the correct user name and password. This issue occurs because the security ID for the user has changed. Although you use the same user name and password, your security ID no longer matches the security ID of the owner of the folder that you cannot open.  Security ID's are unique for every installation, even if the user name, password, product key, and hardware are the same!

For example, although you use the same user name and password, you may no longer have permission to open the folder after you complete the following steps:

1. Before you install Windows XP Professional, you change the actual location, or target location, of the My Documents folder to another volume.

2. You format the primary partition.

3. You install Windows XP Professional.

RESOLUTION

To resolve this issue under XP Professional, you may need to turn off Simple File Sharing:

To Turn off Simple File Sharing:

a. Click Start, and then click My Computer.

b. On the Tools menu, click Folder Options, and then click the View tab.

c. Under Advanced Settings, click to clear the Use simple file sharing (Recommended) check box, and then click OK.

Under XP Home, you MUST boot into safe mode, then log in as a user with administrative rights

To take ownership of the folder(s)

1. Right-click the folder that you want to take ownership of, and then click Properties.

2. Click the Security tab, and then click OK on the Security message, if one appears.

3. Click Advanced, and then click the Owner tab.

4. In the Name list, click your user name, Administrator if you are logged in as Administrator, or click the Administrators group.

If you want to take ownership of the contents of that folder, click to select the Replace owner on subcontainers and objects check box.

5. Click OK.

You may receive the following error message, where Folder is the name of the folder that you want to take ownership of:

You do not have permission to read the contents of directory Folder. Do you want to replace the directory permissions with permissions granting you Full Control? All permissions will be replaced if you press Yes.

6. Click Yes.

7. Click OK, and then reapply the permissions and security settings that you want for the folder and the folder contents.

MORE INFORMATION

For additional information about file and folder permissions, click the following article number to view the article in the Microsoft Knowledge Base:

161275 Interaction of file and folder security on NTFS volumes

 




(Read More... | 4673 bytes more | Score: 5)

Identify ''UNKNOWN DEVICE'' in Device Manager
Posted by anoldman on Sunday, April 17 @ 21:47:48 CDT (1861 reads)
Topic 5: Strange things I have been up to

Have you ever come across an "Unkown Device" in Window's Device Manager and have NO CLUE what in the world it is?
Windows sure doesn't know!

I found a great little tool that will tell you the device codes & descriptions, instead of the generic ? that Windows shows you.  It's great when repairing/setting up a system.




(Read More... | 1446 bytes more | Score: 0)

Re-wiring a three phase generator
Posted by anoldman on Wednesday, January 26 @ 20:48:54 CST (22206 reads)
Topic 5: Strange things I have been up to

SEE RELATED ARTICLE

GENERATOR SET, DIESEL ENGINE DRIVEN, TACTICAL

SKID MTD., 60 KW, 3 PHASE, 4 WIRE, 120/208 AND 240/416 VOLTS

DOD MODELS CLASS HERTZ N S N
MEP006A UTILITY 5 0 / 6 0 6115-00-118-1243
MEP105A PRECISE 5 0 / 6 0 6115-00-118-1252

CLICK TO ENLARGE

ENGINE
ALLIS-CHALMERS 3500a
426 cu in turbo charged
HP roughly 135-150 at the flywheel
1985 is the last year of Allis Chalmers engine production
There were only a couple of industrial applications that the 426 went in.

Most parts marked with a CAGE code:
https://www.bpn.gov/bincs/begin_search.asp

GENERATOR/ALTERNATOR
Company Name: LIMA ELECTRIC CO INC THE
CAGE Code: 36156
ZIP Code: 45801
State: OH
Phone: 419-227-7327
Address: 200 E CHAPMAN RD
City: LIMA
ZIP: 45801 - 2012
State: OH
County: ALLEN

Generator ID plate looks like this:

DEPARTMENT OF DEFENSE

NOM.

GENERATOR, ALTERNATING CURRENT

SYNCHRONOUS BRUSHLESS

MAKE

MILITARY DESIGN

MOD.

70-1900

SER. NO. OF WIRES 12
VOLTS 120/208-240/416 AMPS 208-104
KW 50/60 KVA 62.5/75 PF% 80
CYCLES 50/60 RPM 1500/1800
MFG. 36156 PH 3

30554-70-1925

FRAME AND SUBSYSTEMS
http://www.engineeredsupport.com/fermont.htm
Company Name: ENGINEERED ELECTRIC COMPANY DBA FERMONT
CAGE Code: 93742
ZIP Code: 06606
State: CT
Phone: 203-366-5211
Address: 141 NORTH AVE
City: BRIDGEPORT
ZIP: 06606 - 5195
State: CT
County: FAIRFIELD

EXCITER CIRCUITRY
Company Name: ELECTRIC MACHINERY DRESSER INDUSTRIES INC
CAGE Code: 19899
ZIP Code: 55413
State: MN
Phone: 612-378-8000
Address: 800 CENTRAL AVE
City: MINNEAPOLIS
ZIP: 55413 - 2403
State: MN
County: HENNEPIN

CLICK TO ENLARGE

This is a graphic of the component location for the 12 wire board.

Studying the wiring diagram for similar 12-wire generators, I have determined that the generator is wired in a 12-wire WYE or STAR configuration.

See related story UNDERSTANDING HOW GENERATORS WORK

The wiring board has built in capability for HIGH 240/416 or LOW 120/208 wiring.

CLICK TO ENLARGE

The blue squares are interconnects. Lugs are labeled similar to the winding wires, ie: T1, T2, ect...

Windings are shown in red, they were inferred by the changes that take place when the interconnect board is moved.

Subsequent testing with a meter proved the diagram to be correct.

CLICK TO ENLARGE

The CURRENT CURRENT EXCITER are the items from the first illustration that the generator leads loop through on their way to the interconnect board. The longer loop-through is labeled "Exciter" and diagrams state that the other loops are for load measuring.

Working from this configuration, it seems possible this unit can be re-wired for single phase 120/240 in a ZIG ZAG.

CLICK TO ENLARGE

In this a ZIG-ZAG configuration you would have 120v from L1 to N and from L3 to N, 240v from L1 to L3.

CLICK TO ENLARGE

This is the final output with the ZIG ZAG configuration.

The phase sum can be visually calculated by visiting:

http://www.udel.edu/idsardi/sinewave/sinewave.html

and entering 60 cycle 100 amplitude for each wave, 120 phase for first and 240 phase for second.

Some people seem to think that the final result is "out of phase" and therefore not 240v.

CLICK TO ENLARGE

I hope this graphic puts their fears to rest.

SEE RELATED ARTICLE

The genset is obviously now DE-RATED.

What does this mean?  Well, I used to have a three phase generator with 60kw total rating - 20kw per phase.  I no longer have three phases, so I obviously don't have 20 x 3 = 60kw anymore.  What do I have?

Some people think I only have 20kw, since I only have one phase now.  This is a misconception, a misunderstanding of residential power.  Residential power is often referred to as single-phase.  That's because the power company generates and transmits power as three phase, and taps a single phase with a transformer to drop to a residence.  What's missing from the equation is the nature of the transformer: it has a center-tap.  Residential power has 240v from leg to leg, and 120v from either leg to the center tap, or "neutral".
It would be more accurate to refer to residential power as SPLIT-PHASE.

This is what we are generating with the zig-zag configuration: split-phase power.  Two hot legs, or phases, that are anti-phase to each other and share a common or "neutral" connection.  We are emulating the output of a center-tap transformer.

To DE-RATE the generator, we could simply say we have two 20kw phases, or 40kw.  This is oversimplistic, but it works: when re-wiring a three-phase generator for split-phase residential power, de-rate the generator to 2/3 the original power.

A more complex analysis tells us there are three major factors involved when rating a generator.
The first is the power factor of the prime mover - in this case the horsepower of our engine.  This is usually the limiting factor in a generator set.  In this case, we know we have sufficient power to generate 60kw, so it is not a limiting factor.
Ditto for the second factor: magnetic field strength.
The third factor, which is the capacity of our windings and leads to carry current, can be quite complicated.  (calculations of the effect of field and flux on the windings are tremendously difficult)  We know there must be an upper limit, and we know what each phase can carry safely, but we don't have enough information to calculate the true upper limit.  If we load the generator to it's original rated capacity, we could burn out our windings - or our output leads.  Without further information we have to de-rate the genset by 33% for safety.
My genset has LMUs (Load Measuring Units) that will automatically shut down the exciter if the load on any phase exceeds 110% of the rated load.  So in my case I can rate the generator at 22k x 2 = 44kw, or about 25% of original rating.  25% is usually a good de-rate measure, but don't take that as blanket permission to overload YOUR genset! If you are not sure your set has overload protection, connect it to your load with a line breaker rated at 75% maximum of your original load rating - or 66% for ultimate safety.

Here is how I converted my genset.

First I cut the buss bar from T12 on the back of the reconnect board. I left it laying there so you could see what I cut off.

Then I added a battery cable to choose which position I would connect T12.

If I connect T12 to the N lug, I have WYE in LOW or HIGH.

If I connect T12 to T2, I have ZIG ZAG in LOW or HIGH.

(Yes, it's connected to T8 and the moment, but since I have no use for 240/480 I won't be moving the selector plate up anyway!)

I have perfect output and run my entire house with no problems. This particular genset de-rates to 44kw (183amps) wired zig-zag, but since my main breaker is 150a (36kw) I can't even use that much!




(Read More... | 13883 bytes more | Score: 4.92)

  
Old Articles
There isn't content right now for this block.

Web site powered by PHP-Nuke

All logos and trademarks in this site are property of their respective owner. The comments are property of their posters, all the rest © 2003 by AnOldMan.com
PHP-Nuke Copyright © 2004 by Francisco Burzi. This is free software, and you may redistribute it under the GPL. PHP-Nuke comes with absolutely no warranty, for details, see the license.
Page Generation: 0.07 Seconds