6

I am using LT Spice for simulation of my circuit. I have used a probe to check for the voltage on the Capacitor.

RLC probe on Capacitor Voltage

What is the green dotted line that can be seen in the plot? Thank you.

Niteesh Shanbog
  • 711
  • 7
  • 21
hcsitas
  • 63
  • 5

3 Answers3

16

Since you are doing AC analysis, you are plotting the gain and phase. So the dotted line is showing the phase response of your circuit.

CanSevgi
  • 87
  • 7
Navaro
  • 912
  • 7
  • 15
6

You are doing an AC analysis, the voltage across the capacitor is:

$$V_1 \cdot\dfrac{\dfrac{1}{j \cdot \omega \cdot C}}{R+j \cdot \omega \cdot L+\dfrac{1}{j \cdot \omega \cdot C}} = \dfrac{V_1}{1- \omega^2 \cdot L \cdot C + j \omega \cdot C \cdot R}$$

Since this is a complex number it has both a magnitude and a phase angle.

LTspice is plotting the amplitude (in dB) as a solid line against the left hand vertical scale.

$$ dB = 20 \cdot \log_{10} \left( \dfrac{V}{1 \text{ volt}} \right)$$

and the phase angle in degrees as a dotted line against the right hand vertical scale.

Warren Hill
  • 4,780
  • 20
  • 32
  • Answer marked for poster with fewest points... – hcsitas Apr 30 '19 at 10:40
  • @hcsitas Thanks for the kind comment. I probably should have written still clearer and I apologize for missing that mark for you. – jonk Apr 30 '19 at 16:50
  • Nope, it was crystal clear. I’m new to Spice but not the other stuff so your explanation hit home right away. Thanks again. – hcsitas May 01 '19 at 17:16
2

The green dotted line represents the difference in phase between the voltage accross the capacitor (Vc) and input voltage (V1). The values (in degrees) on the right show you how much phase shifting there is. For example, at the lower frequencies, there is no phase difference (0 degrees), and after about 1MHz, there is a -200 degree shift.

This image should give you a general idea of what a phase shift is.

enter image description here

Liam F-A
  • 198
  • 2
  • 13