Can capacitors act as short circuits when first turned on?

Click For Summary

Discussion Overview

The discussion centers on the behavior of capacitors when first connected to a DC voltage, specifically whether they can act as short circuits at that moment. Participants explore theoretical models, real-world implications, and the transient behavior of current in RC circuits.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested

Main Points Raised

  • One participant presents a mathematical model showing that the current through a capacitor at the moment a switch is turned on can be described as a Dirac impulse, suggesting an initial spike in current.
  • Another participant argues that while ideal models suggest instantaneous charging, real capacitors have internal resistance and self-inductance, which prevent infinite current from occurring in practice.
  • There is a discussion about the behavior of current in RC circuits, with some participants noting that current starts at V/R and then decays exponentially, while others question the nature of transient states in this context.
  • A participant introduces the concept of a "two-capacitor paradox," discussing energy loss when connecting two precharged capacitors, which raises questions about energy conservation in such scenarios.
  • Participants express interest in the application of RC circuits for debounce mechanisms in microprocessors, explaining how they mitigate false signals from mechanical switches.

Areas of Agreement / Disagreement

Participants do not reach a consensus on whether capacitors act as short circuits when first turned on, as there are competing views regarding ideal versus real-world behavior. The discussion remains unresolved regarding the implications of transient states and energy conservation in specific scenarios.

Contextual Notes

Limitations include the reliance on idealized models that may not fully account for real-world complexities such as internal resistance and self-inductance in capacitors. Additionally, the discussion touches on advanced concepts that may require further exploration for full understanding.

Who May Find This Useful

This discussion may be of interest to students and professionals in electrical engineering, physics, and computer science, particularly those exploring circuit design and transient analysis.

Bassalisk
Messages
946
Reaction score
2
Let

[itex]u(t) = \begin{Bmatrix} <br /> 1, & t \geq 0 \\ 0, & t<0 \end{Bmatrix}[/itex]

and let's have a simple circuit. Solo capacitor, connected to a DC voltage U0, a switch S exists.

For purposes of this problem, I can mark the voltage across the capacitor as Vc(t)

Vc(t)=u(t)*U0

Current through the capacitor is

[itex]i(t)=C \frac{du_{c}(t)}{dt}=CU_{0} \frac{du(t)}{dt}=CU_{0}\delta(t)[/itex]

As we know that the derivative of the Heaviside step function is Dirac Impulse function.

From this we can conclude that there is a initial spike in current when you turn the switch on.

Does this mean, that at first, very first moment you turn the switch on, capacitor acts as short circuit?


Second part:

When I saw graphs of currents of capacitors in RC circuits connected to a DC voltage, I saw that the graph starts at V/R and falls of with exponential law.

But how can current be immediately U/R, isn't there a transient state, due to RC self-inductance, to V/R, then exponential fall?
 
Engineering news on Phys.org
Both your examples are talking about ideal components. They only correspond approximately to "real life".

In the first case, yes in theory the capacitor "instantly" charges so there is a charge of Q = CV on the plates. You can think of that as "an infinitely large current for an infinitely short length of time" if you want, but doing that probably doesn't lead anywhere useful.

Real capacitors and real power supplies have internal resistance and self inductance, so in practice nothing "infinite" happens.

The second example is basically the same. An ideal CR circult doesn't have any inductance. That's why the current starts at V/R and then decays exponentially.

These "idealized" models are good enough for many purposes. For eaxmple if you are using a CR circuit to debouce a mechanical switch, it would probably have a time constant of the order of 0.01s to 0.1s. If the self-inductance of the cap and the physical layout of the circut creates a self-resonant frequency of say 100 MHz, there isn't much reason to be bothered about that.

Of course if you are designing a CR circult that is meant to operate with a time constant of 10ns not 10ms, then you do have to bother about such things.
 
AlephZero said:
Both your examples are talking about ideal components. They only correspond approximately to "real life".

In the first case, yes in theory the capacitor "instantly" charges so there is a charge of Q = CV on the plates. You can think of that as "an infinitely large current for an infinitely short length of time" if you want, but doing that probably doesn't lead anywhere useful.

Real capacitors and real power supplies have internal resistance and self inductance, so in practice nothing "infinite" happens.

The second example is basically the same. An ideal CR circult doesn't have any inductance. That's why the current starts at V/R and then decays exponentially.

These "idealized" models are good enough for many purposes. For eaxmple if you are using a CR circuit to debouce a mechanical switch, it would probably have a time constant of the order of 0.01s to 0.1s. If the self-inductance of the cap and the physical layout of the circut creates a self-resonant frequency of say 100 MHz, there isn't much reason to be bothered about that.

Of course if you are designing a CR circult that is meant to operate with a time constant of 10ns not 10ms, then you do have to bother about such things.

I understand. So to take in self-inductance, current would rise to V/R in very very very short time, because self-inductance is low, with exponential law, and then fall exponentially?

And you got me interested with this debounce mechanical switch. What is that?
 
Bassalisk said:
I understand. So to take in self-inductance, current would rise to V/R in very very very short time, because self-inductance is low, with exponential law, and then fall exponentially?

And you got me interested with this debounce mechanical switch. What is that?

Microprocessors typically evaluate digital/analog inputs at kilohertz speeds. If you press a button with your finger and look at the voltage signal on a scope you might see the signal oscillate between the low and high thresholds a few times. Such behavior might cause a program to take action (do some sort of calculation, initiate a process, etc.) when it's not supposed to. Therefore, as Alephzero pointed out, you would incorporate an RC circuit (either in the analog domain or in the code) to ignore the fast frequency transitions that are physically meaningless (how many times per second can you flip a switch?)

Regarding the original question:

When you connect two voltage sources with no series element that can store energy in a magnetic field, you will get an infinite current. For example, if you take two caps with the same capacitance 1F and 1F, precharge one to 1V, and connect them, you will see that the final voltage will be 1/2V on each.

However, the initial energy is 1/2*C*V^2 = 1/2J but the final energy is 2 * 1/2 * 1 *1/2^2 = 1/4J. This is called a "two-capacitor paradox" and it cannot be explained through basic circuit analysis tools. The lost energy is radiated.

When you take a large power supply (with a few mF output capacitance), set the output to 100V+ and connect it to a ultracapacitor, you will hear an audible click and your USB computer mouse can disconnect for a second (the system generates a lot of EMI).

Hope this helps,

SunnyBoy
 
SunnyBoyNY said:
Microprocessors typically evaluate digital/analog inputs at kilohertz speeds. If you press a button with your finger and look at the voltage signal on a scope you might see the signal oscillate between the low and high thresholds a few times. Such behavior might cause a program to take action (do some sort of calculation, initiate a process, etc.) when it's not supposed to. Therefore, as Alephzero pointed out, you would incorporate an RC circuit (either in the analog domain or in the code) to ignore the fast frequency transitions that are physically meaningless (how many times per second can you flip a switch?)

Regarding the original question:

When you connect two voltage sources with no series element that can store energy in a magnetic field, you will get an infinite current. For example, if you take two caps with the same capacitance 1F and 1F, precharge one to 1V, and connect them, you will see that the final voltage will be 1/2V on each.

However, the initial energy is 1/2*C*V^2 = 1/2J but the final energy is 2 * 1/2 * 1 *1/2^2 = 1/4J. This is called a "two-capacitor paradox" and it cannot be explained through basic circuit analysis tools. The lost energy is radiated.

When you take a large power supply (with a few mF output capacitance), set the output to 100V+ and connect it to a ultracapacitor, you will hear an audible click and your USB computer mouse can disconnect for a second (the system generates a lot of EMI).

Hope this helps,

SunnyBoy


Thank you, I understand what you are saying. I guess I will learn this in more detail in upcoming years.
 

Similar threads

  • · Replies 26 ·
Replies
26
Views
7K
Replies
8
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
Replies
5
Views
3K
  • · Replies 6 ·
Replies
6
Views
8K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
152
Views
8K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 12 ·
Replies
12
Views
4K
  • · Replies 10 ·
Replies
10
Views
3K