Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Switch-off time of relay with flyback diode

+2
−0

When switching a relay there should be a flyback diode.
It could be just a diode or diode with resistor in series.
I understand there is a difference in the speed of relay switch-off. But what is the difference really, how to calculate it?

Example in this answer:
https://electrical.codidact.com/questions/276116#answer-276117

Inductance is L=1 mH
Current is I=63 mA
Diode drop Vd=0.7 V
Resistor in series R=82 Ω

Is this calculation correct?
Energy stored in the coil is E=1/2LI^2=1.98 uJ

Power dissipated in diode:
P1=Vd*I=44.1 mW
Time needed to dissipate that energy:
T1=E/P1=44.9 us

Power dissipated in diode and resistor:
P2=(Vd+R*I)*I=369.6 mW
Time needed to dissipate that energy:
T2=E/P2=5.36 us

So it is 8.3x faster. Correct? Or it has to be calculated different way?

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

0 comment threads

1 answer

+1
−0

It doesn't quite work that way. You are missing the fact that the current (which the magnetic field is proportional to) decays exponentially. You are also missing the resistance of the coil itself.

First, let's analyze what happens with just a diode. You basically have this circuit:

Image alt text

For analysis purposes, you can think of the relay coil as a inductor and resistor in series. The resistor represents the DC resistance of the coil. The coil is a long wire all wound up. That wire has some finite resistance, whether you wrap it up into a coil or not. The inductor represents the inductance of the coil.

Actually, first let's understand what happens if the diode weren't there and the coil was shorted. The current in the coil will decay exponentially with a time constant of

  T = L / R

When L is in Henries, R in Ohms, then T is in seconds.

  (1 mH)/(80 Ω) = 12.5 µs

That means that every 12.5 µs, the current decreases by a factor of e. Converting this to more intuitive units, the half-life of the current is 0.693 time constants, or 8.7 µs.

The diode makes things more complicated. You can think of it as the diode applying a reverse voltage across the coil, in addition to the exponential caused by the resistor.

We can get some intuition of this effect by seeing what happens if R1 weren't there. Now we have a fixed voltage applied to the coil, until the current reaches zero. That will be a linear ramp.

  (63 mA)(1 mH)/(700 mV) = 90 µs

You can see by comparing this with the time constant caused by the resistor, that the resistive time constant dominates for our current in this case. I'm not going to do the math to superimpose the 63 mA per 90 µs linear slope with the 8.7 µs half-life decay, but hopefully you get the general idea.

Now consider the circuit with a resistor added in series with the diode:

Image alt text

R1 and R2 are in series, so simply add. This is the same case as before, except that the series resistance is now 162 Ω instead of 80 Ω. Without the diode, the half-life of the current is now 4.3 µs. The linear current downramp superimposed on this due to the diode is still the same, and even less relevant due to the faster decay.

So what does this mean to the relay? Probably not much in either case. The current has to decay to the minimum holding current level before the contacts even start to move apart. In most cases, the mechanical part of the relay reacts much slower than the current decays to this level. I wouldn't be surprised if it takes a few ms for the relay to open, even if the current went to 0 immediately.

I mentioned the second circuit in another answer for completeness. Most of the time it doesn't matter, but I have seen a few cases where fast and predictable control of "high speed" relays was important. Instead of a millisecond or two being the level that matters, it was about 10 µs.

There are very fast and nimble relays out there. When relays are built for high speed (for a relay) applications, the datasheet will go into a lot more detail on the coil properties and the response time of the mechanical parts.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

Sign up to answer this question »