Author Topic: voltage drop indicator  (Read 6245 times)

0 Members and 1 Guest are viewing this topic.

Offline dimouneTopic starter

  • Newbie
  • Posts: 5
  • Country: mu
voltage drop indicator
« on: March 12, 2016, 06:38:06 am »
Hello,

I am a layman in electronics. I want to build a led indicator when my voltage drops below 10V. My power supply is 28V 500ma DC. It passes through a current regulator and the output is about 12V and 3ma. I want to devise a led indicator which lights up when the current drops from 12V to below 10V.

I try to do some search on internet and find an ic called MC34161. I guess I can achieve what I am looking with this IC but I cannot figure how to do it. Any help please? Thank you.
 

Offline Joule Thief

  • Regular Contributor
  • *
  • Posts: 249
  • Country: us
Re: voltage drop indicator
« Reply #1 on: March 12, 2016, 07:48:37 am »
This may provide 2 options as a starting point for you - one is based on a single supply comparator circuit and the second easily built from readily available discrete components.

http://www.bristolwatch.com/ele2/img/comparator_lm358.png

http://www.bristolwatch.com/ele2/comparator.htm

or another option based on transistor circuitry

http://www.circuitdiagramworld.com/monitor_circuit_diagram/Alternator_And_Battery_Monitoring_Circuit_3982.html
« Last Edit: March 12, 2016, 08:00:19 am by Joule Thief »
Perturb and observe.
 

Offline dimouneTopic starter

  • Newbie
  • Posts: 5
  • Country: mu
Re: voltage drop indicator
« Reply #2 on: March 12, 2016, 09:20:20 am »
I want the circuit to draw current from my power supply which is 28V but measures the voltage drop after passing through my current regulator. The voltage after passing through the current regulator is 12V. I need to monitor it for drop below 10v.

Also, the current reaches max of 5ma with the current regulator. I do not think it is enough to power the led. This is why I prefer to draw the current from the power supply.
 

Offline Seekonk

  • Super Contributor
  • ***
  • Posts: 1938
  • Country: us
Re: voltage drop indicator
« Reply #3 on: March 12, 2016, 09:43:58 am »
Easiest option is the 3 terminal LM431.  Only load will be voltage divider to obtain 3.5V.  Led can run off 28V supply.
 

Offline dimouneTopic starter

  • Newbie
  • Posts: 5
  • Country: mu
Re: voltage drop indicator
« Reply #4 on: March 12, 2016, 10:25:07 am »
Thanks for your input. The LM431 seems to power the led when voltage increases to a certain level. However, I am looking for the opposite.
 

Offline danadak

  • Super Contributor
  • ***
  • Posts: 1875
  • Country: us
  • Reactor Operator SSN-583, Retired EE
Re: voltage drop indicator
« Reply #5 on: March 12, 2016, 12:34:58 pm »
Fig 17 is the appropriate circuit. So you power the part off your
28 Vdc. The comparator, because of its internal reference, basically
trips at 1.27 Volts. So

1.27 V = [ 10V x R1  ] / (R1 + R2), so pick R1 as 4.7K, a standard value

then 1.27 x R1 + 1.27 x R2 = 10 x R1 or R2 = ( 10 - 1.27 ) x R1 / 1.27

R2 = ( 8.73 / 1.27 ) x 4700 ~= 32307 or 32K

Double check the trip

1.27 trip = Vx x ( R1 / [R1 + R2] ) or Vx = 1.27 x ( R1 + R2 ) / R1 = (1.27 x 36700) / 4700 ~=9.91 V


So trip checks.


If you wanted more precise trip replace R1 & R2 with a  5 or 10 turn pot, say a 10K pot,
and adjust for exact trip.



Regards, Dana.
« Last Edit: March 12, 2016, 12:55:13 pm by danadak »
Love Cypress PSOC, ATTiny, Bit Slice, OpAmps, Oscilloscopes, and Analog Gurus like Pease, Miller, Widlar, Dobkin, obsessed with being an engineer
 

Offline mariush

  • Super Contributor
  • ***
  • Posts: 5022
  • Country: ro
  • .
Re: voltage drop indicator
« Reply #6 on: March 12, 2016, 01:29:19 pm »
See, what you want is kind of backwards, a device powered by a battery shouldn't turn on a led when battery voltage is too low, because the additional power consumption of the led will drain the battery even faster. You may find some integrated chips that work with two leds, for example to keep a led green above a certain voltage and turn it off and turn on a red led below a voltage but i can't think of any from memory.

It's a bit overkill, but a small microcontroller would do just fine. For example, a PIC12LF1571 is only 8 pin soic, works from 1.8v to 3.6v so you could power it from 12v using a 4:1 voltage divider (using two resistors) since it uses less than 0.1mA of current at less than 1Mhz (don't need more to light up a led), so the voltage will be 12/4 = 3v when powered from 12v, or 10/4 = 2.5v and will keep running even if voltage drops below 8v.
Basically, all you do is feed the voltage through another voltage divider to an input pin and then the code in your microcontroller would be:

initialize internal oscillator, initialize ADC
for as long as the mcu runs
  start to measure the input voltage on the ADC , wait a second or so until the process is done
  if the voltage is below a threshold, turn on the led, otherwise turn off the led
  wait some time
  repeat

Another advantage of using a programmable mcu would be that you could even make the led blink if the voltage is.. let's say below 12v but above 11v.

The downside to microcontrollers is that you need a programmer for them, and a basic knowledge of C (or follow tutorials or ask on forums, the code is so short it can be written in around 6-10 lines on the forum).
Genuine Microchip PIC programmers are kind of expensive (around $40-60) but you can find clones on eBay for much less, for example here's one for <$15
 

Offline dimouneTopic starter

  • Newbie
  • Posts: 5
  • Country: mu
Re: voltage drop indicator
« Reply #7 on: March 12, 2016, 01:46:16 pm »
Fig 17 is the appropriate circuit. So you power the part off your
28 Vdc. The comparator, because of its internal reference, basically
trips at 1.27 Volts. So


I don't see fig 17. Please provide a link. Thanks.
 

Offline nowlan

  • Frequent Contributor
  • **
  • Posts: 649
  • Country: au
Re: voltage drop indicator
« Reply #8 on: March 12, 2016, 01:50:29 pm »
>a device powered by a battery shouldn't turn on a led when battery voltage is too low

heaps of low battery indicator circuits on google.

 

Offline Seekonk

  • Super Contributor
  • ***
  • Posts: 1938
  • Country: us
Re: voltage drop indicator
« Reply #9 on: March 12, 2016, 01:53:55 pm »
Thanks for your input. The LM431 seems to power the led when voltage increases to a certain level. However, I am looking for the opposite.

DUH, doesn't take much to stop you.   Just invert it.  Emitter follower NPN with LED in emotter with limiting resistor.  LED is on edge of ghosting so I would add an additional diode in series.
 

Offline danadak

  • Super Contributor
  • ***
  • Posts: 1875
  • Country: us
  • Reactor Operator SSN-583, Retired EE
Re: voltage drop indicator
« Reply #10 on: March 12, 2016, 02:02:33 pm »
The MC34161 datasheet. Just google it.

Regards, Dana.
Love Cypress PSOC, ATTiny, Bit Slice, OpAmps, Oscilloscopes, and Analog Gurus like Pease, Miller, Widlar, Dobkin, obsessed with being an engineer
 

Offline Zero999

  • Super Contributor
  • ***
  • Posts: 19517
  • Country: gb
  • 0999
Re: voltage drop indicator
« Reply #11 on: March 12, 2016, 02:35:05 pm »
Thanks for your input. The LM431 seems to power the led when voltage increases to a certain level. However, I am looking for the opposite.

DUH, doesn't take much to stop you.   Just invert it.  Emitter follower NPN with LED in emotter with limiting resistor.  LED is on edge of ghosting so I would add an additional diode in series.
Like this:

https://www.eevblog.com/forum/beginners/voltage-level-indicator/msg875244/#msg875244

The values for R1 & R2 can be calculated using the site linked below:
http://solderer.tv/tl431-calculator/

And if the LED doesn't fully turn off, a resistor in parallel with it should do the job.
 

Offline dimouneTopic starter

  • Newbie
  • Posts: 5
  • Country: mu
Re: voltage drop indicator
« Reply #12 on: March 12, 2016, 02:49:28 pm »
Thanks for your input. The LM431 seems to power the led when voltage increases to a certain level. However, I am looking for the opposite.

DUH, doesn't take much to stop you.   Just invert it.  Emitter follower NPN with LED in emotter with limiting resistor.  LED is on edge of ghosting so I would add an additional diode in series.

The problem is that it draws current from the load! I want it to be powered from the power supply and monitor voltage drop from the load.
 

Offline Zero999

  • Super Contributor
  • ***
  • Posts: 19517
  • Country: gb
  • 0999
Re: voltage drop indicator
« Reply #13 on: March 12, 2016, 02:52:54 pm »
Thanks for your input. The LM431 seems to power the led when voltage increases to a certain level. However, I am looking for the opposite.
DUH, doesn't take much to stop you.   Just invert it.  Emitter follower NPN with LED in emotter with limiting resistor.  LED is on edge of ghosting so I would add an additional diode in series.
The problem is that it draws current from the load! I want it to be powered from the power supply and monitor voltage drop from the load.
Then why not modify the circuit so it doesn't draw much power from the circuit being monitored and another power supply is used for the LED? Hint: it involves changing the connections to R1 & R2.
« Last Edit: March 12, 2016, 03:11:29 pm by Hero999 »
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf