Electronic Projects, forums and more.

Go Back   Electronic Circuits Projects Diagrams Free > Electronics Forums > General Electronics Chat


General Electronics Chat This forum is for general chat about electronics, eg: Dont know what a part does? Dont know how to read a circuit? Want to get an opinion?

Reply
 
LinkBack Thread Tools Display Modes
Old 15th June 2008, 11:12 AM   (permalink)
Default help on monitoring power frequency

hello guys,
i need help with my project i want to monitor the frequency of the power system, basically the project is to create a device that monitors the frequency of the power system then when the frequency falls below a certain value(say 49.0 cos the frequency in my country is 50hz)it would disconnect some certain loads...(i've also thought about setting different frequencies for differnet loads i.e at say 49.0 disconnect one device at 48.5 disconnect another)...
the part i need help with is the monitoring frequency bit.
netotse is offline  
Old 15th June 2008, 02:38 PM   (permalink)
Default

Where do you live?

Is this running off a generator?

Where I live the mains frequency is pretty accurately controlled, so much that it's used as a timebase for some clocks.
__________________
I also post at the following sites:
http://www.stop-microsoft.org http://www.heated-debates.com
Screen name: Aloone_Jonez
Hero999 is offline  
Old 15th June 2008, 03:03 PM   (permalink)
Default

Almost all clocks that plug into a wall outlet use the line frequency as their timing source (think syncronous motors)...even digital, ones like clock radios. Though the instantaneous frequency may vary slightly, power plants compare the generator's revolutions against "tracable" clocks, and adjust the speed to add or subtract revolutions for exact cycle counts over long periods.

Ken
__________________
"To invent, you need a good imagination and a pile of junk."
Thomas A. Edison (1847 - 1931)
KMoffett is offline  
Old 15th June 2008, 03:05 PM   (permalink)
Default

Also, most motors and transformers should work down to 45Hz or so with no problems.
__________________
I also post at the following sites:
http://www.stop-microsoft.org http://www.heated-debates.com
Screen name: Aloone_Jonez
Hero999 is offline  
Old 15th June 2008, 04:23 PM   (permalink)
Default

Quote:
Originally Posted by netotse View Post
hello guys,
i need help with my project i want to monitor the frequency of the power system, basically the project is to create a device that monitors the frequency of the power system then when the frequency falls below a certain value(say 49.0 cos the frequency in my country is 50hz)it would disconnect some certain loads...(i've also thought about setting different frequencies for differnet loads i.e at say 49.0 disconnect one device at 48.5 disconnect another)...
the part i need help with is the monitoring frequency bit.
By disconnecting loads to maintain frequency, perhaps your country will work at 30% loading of your generators. You please try to appreciate the multiple generator grid controlled power distributions. The frequency is far more common across your company. The frequency may slightly vary +/- 2 cycles depending on peak load to slack-load times. As pointed out by Hero999, it should not be a problem for motors unless you are speed sensitive. In cases where speed is very important, you may go for controller based motor drives where the frequency is closely controlled to maintain speed.
__________________
Regards,
Sarma.

Last edited by mvs sarma; 15th June 2008 at 04:23 PM.
mvs sarma is offline  
Old 15th June 2008, 04:42 PM   (permalink)
Smile Theoretical question........

Quote:
Originally Posted by netotse View Post
hello guys,
i need help with my project i want to monitor the frequency of the power system, basically the project is to create a device that monitors the frequency of the power system then when the frequency falls below a certain value(say 49.0 cos the frequency in my country is 50hz)it would disconnect some certain loads...(i've also thought about setting different frequencies for differnet loads i.e at say 49.0 disconnect one device at 48.5 disconnect another)...
the part i need help with is the monitoring frequency bit.
This is a theoretical question, correct?
And you want us to help you with your homework, correct?
Rolf is offline  
Old 15th June 2008, 05:34 PM   (permalink)
Default clarification

Quote:
Originally Posted by Rolf View Post
This is a theoretical question, correct?
And you want us to help you with your homework, correct?
nope...sorry if i wasnt clear enough...

in my country the frequency varies a lot(we dont generate nearly enough electricity so we're in a state of constant load shedding! the frequency is anything but constant it can go as low as 48 and as high as 51.5 all in a matter of minutes)we have underfrequency relays at some points in the grid that disconnect loads at around 48.5hz but sometimes it leads to system collapses cos it might cause swings so i'm working on the premise that if i can build something that disconnect domestic loads it'd help reduce the load on the system seeing as frequency control is related to the real power output of a generator...i want to look into taking out some domestic loads(airconditioners,heaters etc) in a large number of houses as an alterative to disconnecting a section of the grid...

Last edited by netotse; 15th June 2008 at 05:36 PM.
netotse is offline  
Old 15th June 2008, 06:46 PM   (permalink)
Default

The simplest way is probably to program a microcontroller to count the power line frequency for say 10 seconds which would give you a count of 500 for a resolution of 0.1Hz (or 100 seconds for a 0.01Hz resolution). You can then do a comparison of this count to see if it's within limits and output a signal accordingly.

You can also drive a display to give a digital readout of the frequency, if desired.

You will need to generate logic level pulses from the power line for the uC input. This can be done from a low voltage, isolated transformer output (perhaps the same one that powers the uC). Run the signal into a comparator (with some feedback hysteresis to minimize effects of power line noise) to generate the 50Hz pulses.

I did a similar thing with a Stamp controller to monitor drift in the power line frequency, which was easy to program in Basic. Basic is much easier than Assembly if you've never programmed before.
__________________
Carl
crutschow is offline  
Old 15th June 2008, 06:49 PM   (permalink)
Smile

Quote:
Originally Posted by netotse View Post
nope...sorry if i wasnt clear enough...

in my country the frequency varies a lot(we dont generate nearly enough electricity so we're in a state of constant load shedding! the frequency is anything but constant it can go as low as 48 and as high as 51.5 all in a matter of minutes)we have underfrequency relays at some points in the grid that disconnect loads at around 48.5hz but sometimes it leads to system collapses cos it might cause swings so i'm working on the premise that if i can build something that disconnect domestic loads it'd help reduce the load on the system seeing as frequency control is related to the real power output of a generator...i want to look into taking out some domestic loads(airconditioners,heaters etc) in a large number of houses as an alterative to disconnecting a section of the grid...
Well, now it makes sense but why couldn't this been explained in the original posting it would have made your requirement much clearer.
And filling in your location wouldn't hurt either.

Last edited by Rolf; 15th June 2008 at 06:51 PM.
Rolf is offline  
Old 15th June 2008, 07:03 PM   (permalink)
Default

Quote:
Originally Posted by crutschow View Post
The simplest way is probably to program a microcontroller to count the power line frequency for say 10 seconds which would give you a count of 500 for a resolution of 0.1Hz (or 100 seconds for a 0.01Hz resolution). You can then do a comparison of this count to see if it's within limits and output a signal accordingly.

You can also drive a display to give a digital readout of the frequency, if desired.

You will need to generate logic level pulses from the power line for the uC input. This can be done from a low voltage, isolated transformer output (perhaps the same one that powers the uC). Run the signal into a comparator (with some feedback hysteresis to minimize effects of power line noise) to generate the 50Hz pulses.

I did a similar thing with a Stamp controller to monitor drift in the power line frequency, which was easy to program in Basic. Basic is much easier than Assembly if you've never programmed before.
For a faster response if that is needed, just modify the frequency counter to period type of counter and you can have just about instentines feedback.

Last edited by Rolf; 15th June 2008 at 07:04 PM.
Rolf is offline  
Old 15th June 2008, 07:39 PM   (permalink)
Default

Quote:
Originally Posted by Rolf View Post
For a faster response if that is needed, just modify the frequency counter to period type of counter and you can have just about instentines feedback.
Hi Roff,
I would also suggest this period measurement.

In the LM393 datasheet is 'fair' zero crossing comparator.

OT:
When I moved here, I also found an Irish penny in the garden, no wonder they were so poor,
its because they had holes in their pockets..
__________________
Eric
"Good enough is Perfect"

PIC tutorials:
Gramo's: www.digital-diy.net/
Bill's: www.blueroomelectronics.com/

Last edited by ericgibbs; 15th June 2008 at 07:40 PM.
ericgibbs is offline  
Old 15th June 2008, 07:42 PM   (permalink)
Default

guys thanks for the replies i have a much clearer picture of what i want to do in my head now(it'll require quite a bit of reading up though but i'm grateful for the help i've recieved so far) i think assembly would be more of an advantage in my case cos then i'll get less flak from my lecturers

could someone please shed more light on the bit about programing a microcontroller to count the powerline frequency(or period as Rolf suggested) as i know very little about microcontrollers

@Rolf
am in Nigeria and here our electricity sector is something to be ashamed of so sorry if i seemd evasive!

Last edited by netotse; 15th June 2008 at 07:43 PM.
netotse is offline  
Old 15th June 2008, 07:46 PM   (permalink)
Default

Quote:
Originally Posted by netotse View Post
could someone please shed more light on the bit about programing a microcontroller to count the powerline frequency(or period as Rolf suggested) as i know very little about microcontrollers
hi,

Use the PIC's compare option with the internal Timers and an external zero crossing comparator
to measure the period of the mains half cycle.
__________________
Eric
"Good enough is Perfect"

PIC tutorials:
Gramo's: www.digital-diy.net/
Bill's: www.blueroomelectronics.com/

Last edited by ericgibbs; 15th June 2008 at 07:46 PM.
ericgibbs is offline  
Old 16th June 2008, 01:52 AM   (permalink)
Default

This problem is purely academic.

Virtually every power generating system connecting to the grid is fitted with underfrequency protection system made up of protection relays built solely for that purpose.

One don't usually "build" a device to replace those standard protection relays, which had been tested vigorously under severe system disturbance conditions when they are depended upon to function correctly.

However, if one wants to see how an alternative detecting system performs than those existing relays, then that's another question.
__________________
L.Chung
eblc1388 is offline  
Old 16th June 2008, 05:19 AM   (permalink)
Default

Quote:
Originally Posted by Rolf View Post
For a faster response if that is needed, just modify the frequency counter to period type of counter and you can have just about instentines feedback.
The period method can suffer inaccuracies from noise on the line, and power lines often have large amounts of noise from universal motors, SCR dimmers, etc. That's why I suggested counting the cycles for a least 10 seconds. Power line frequency doesn't change that fast anyway, so 10 seconds is plenty of time to respond to any change.
__________________
Carl
crutschow is offline  
Reply

Bookmarks

Thread Tools
Display Modes



Similar Threads
Title Starter Forum Replies Latest
Car Monitoring project Haidy Electronic Projects Design/Ideas/Reviews 8 28th October 2007 10:12 PM
Car Monitoring dustinpruente Electronic Projects Design/Ideas/Reviews 6 12th April 2005 07:05 PM
Power frequency sujit_51 Electronic Projects Design/Ideas/Reviews 2 31st January 2005 09:33 PM
Detecting and Timing the Zero Crossing and Power Frequency Miguel Gonzalez Micro Controllers 2 14th October 2003 10:45 PM
alternative for 2SD880 ? (audio frequency power amp) truenoteno Electronic Projects Design/Ideas/Reviews 1 20th May 2003 08:33 AM



All times are GMT. The time now is 04:09 AM.


Electronic Circuits  |  Learning Electronics
Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.

eXTReMe Tracker