1

I have a device, Neptune Apex, that has programmatically controlled 24VDC outputs.

Using the 24V I would like to trigger a relay that is built into another component, that has the specs of: 3-12VDC, 3-30mA.

Since the current draw is very minimal and will be constant, what would be the cheapest and easiest way to reduce the 24VDC to 12V to trigger the relay?

I don't really want to have to purchase and introduce another component like a buck converter, so could I do this with a voltage-divider or some other simple components and not burn anything up?

Update:

The 3-12VDC device is a Power Switch Tail II (http://powerswitchtail.com) and it it does appear to use a opto-isolated relay.

PowerSwitch Tail Specifications

Does this help to nail down the best solution?

Adam Ring
  • 11
  • 1
  • 3
  • 1
    That's not a very clear input specification, but it sounds like this is a logic *signal* and not the actual power for the relay, so something like a voltage divider would probably work. – Chris Stratton Jul 29 '19 at 20:27
  • 1
    @ChrisStratton: sounds like an opto-isolated relay to me... – Peter Bennett Jul 29 '19 at 20:41
  • You would still need a voltage source for the other side of the opto-isolator. – hotpaw2 Jul 29 '19 at 21:45
  • The web site for Neptune says that the Apex already uses a 12 V supply (in their discussion about using a UPS to maintain operation in the presence of a power failure.) Do you have access to that 12 V supply rail? I'd imagine you would because they also discuss placing other 12 V devices tied up to this add-on they sell. And that suggests that the 12 V is accessible. – jonk Jul 29 '19 at 21:56
  • @jonk I don't have access to a switched 12v supply. The 24V switched output is what I need to use to activate and deactivate my 12v device. – Adam Ring Jul 30 '19 at 11:22
  • @AdamRing I was just reading their web site and wanted to make absolutely certain, since they bring it up and suggest that you can connect 12 V devices. You've assured me. But I was double-checking, to be certain. – jonk Jul 30 '19 at 18:04

3 Answers3

3

Using the 24 V I would like to trigger a relay that is built into another component, that has the specs of: 3 - 12 VDC, 3 - 30 mA.

This sounds awfully like a solid state relay input which is, basically, an infrared LED and series resistor.

schematic

simulate this circuit – Schematic created using CircuitLab

Figure 1. SSR with external current limiting resistor.

An infrared LED will drop about 1.4 V. If the SSR draws 30 mA at 12 V then the internal resistor is about \$ \frac {V}{I} = \frac {12 - 1.4}{30m} = 353 \ \Omega \$ (where 'm' is shorthand for milli).

Addition of an external 1.8 kΩ resistor would limit the current to about 10 mA at 24 V. This is well above the 3 mA minimum on-current.

Transistor
  • 168,990
  • 12
  • 186
  • 385
  • I attached the devices schematic to my original post, it is an opto-isolated relay so would the above design be effective in powering the relay? – Adam Ring Jul 30 '19 at 12:14
  • Yes, except that there's an indicator LED that we didn't know about previously. Measure the current drawn at 12 V and then calculate the resistance required to drop 12 V at that current. – Transistor Jul 30 '19 at 12:34
  • 1
    current draw is probaly 30mA at 12V (like it says on the label) anything between 400 ohms and 3K should work fine – Jasen Слава Україні Jul 30 '19 at 13:09
0

You can use a Zener and a transistor, such as in Explaination of high current zener transistor regulator circuit

or use a resistor in series with your load, the relay. The resistor should have \$R = \frac{12 V}{30 mA} = 400 \Omega\$ and be able to dissipate more than \$ P = 30mA * 12V = 360 mW\$, I would sugest a \$ \frac{1}{2} W\$ one, for a safety margin.

You could also make a resistive divisor such as this one. When the relay is not drawing current it outputs at most 12V, when it draws current it reduces the voltage but it remains within your specifications. It is still nor well regulated, but it works for your application. Beware you will need that the resistor R1 have 400 Ohms and 1 W dissipation and the resistor R2 have 400 Ohms and have 1/2 W dissipation.

schematic

simulate this circuit – Schematic created using CircuitLab

Watch out that both resistive solutions are not well regulated and can lead to problems, prefer the zener method.

jDAQ
  • 2,517
  • 1
  • 9
  • 19
  • More likely a simple resistive divider; it doesn't really seem like this is *power* the relay, just signaling it, so you can't use a series element alone unless you know the load impedance is something that can be relied on. – Chris Stratton Jul 29 '19 at 20:26
  • 1
    Well, 30 mA at 12V is quite a bit for a logic signal. And, if you do use a resistive divisor you will have to account for the current drawn by the relay. – jDAQ Jul 29 '19 at 20:34
  • If it drew 30mA from a node with 24V across a resistor of 400 ohms, it would have 12V on the other side of the resistor. I agree that the "solution is not regulated and can lead to problems" – jDAQ Jul 29 '19 at 20:43
  • It's not the 24v that is unpredictable, it's the actual load current that is *unknowable* from the specification. – Chris Stratton Jul 29 '19 at 20:57
  • So, a resistive divisor would have a Thevenin equivalent of a voltage source in series with a resistor. If the equivalent resistance is too high, you would have the problem that the voltage at the load varies with the current being drawn by the load. Yet, for the equivalent resistance to be low, you would have to make a divisor out of "shunts", wasting a lot of power. Any suggestions? – jDAQ Jul 29 '19 at 21:08
0

Since the current draw is very minimal and will be constant, what would be the cheapest and easiest way to reduce the 24VDC to 12V to trigger the relay?

A resistor would be best 400Ω ought to get you 12V with 30mA from 24V. The downside would be the heat burned up in the resistor (360mW so use a 0.5W resistor).

Other than that another awesome circuit might be an adjustable current source:

enter image description here Source: https://diyaudioprojects.com/Technical/Current-Regulator/

Voltage Spike
  • 75,799
  • 36
  • 80
  • 208