Tuesday, 9 December 2014

voltage - Source-free, under-damped, parallel RLC with 2 intial conditions


I think I'm suffering from brain-drain. I'm trying to solve a 2nd order differential equation for the natural response of an under-damped parallel RLC circuit with initial conditions of $I_L$ and $V_C$ but I'm falling (apparently) at the final hurdle.


All the solutions on the web that I have found seem to skirt over the solution to finding B1 and B2 in this type of formula. Most (if not all the solutions) seem to solve for output voltage but I also want to know how the inductor current decays.


The best single picture I have found shows this: -


enter image description here


And, I am happy that I can use this to solve for the voltage waveform if my initial condition was just the capacitor voltage BUT, I need to know what B1 and B2 are for the intial conditions of BOTH capacitor voltage and inductor current.


So, in short: -




  • What is the formula for $i_L(t)$ for a parallel RLC

  • How do I formulate the B1 and B2 values taking into account BOTH initial conditions

  • Ditto for $v(t)$



Answer



Just to be complete:


schematic


simulate this circuit – Schematic created using CircuitLab


I gather that's the circuit. And you'd like an expression for $V_{\left(t\right)}$ and $I_{L\left(t\right)}$ that handles the initial conditions where $V_{\left(0\right)}$ and $I_{L\left(0\right)}$ may be non-zero and are otherwise known at $t=0$.



You also want to focus on the case that is underdamped.


I hope you won't mind if I start at the basics and take this through, carefully. A lot of it will just be repetition of the obvious. I apologize for that.




The basic nodal equation is (treating all currents pointing downwards as positive):


V(t)R+1LV(t)dt+CdV(t)dt=0A


Taking the derivative and dividing through by $C$ (had I added $I_{L\left(0\right)}$ above, it would disappear now, anyway):


d2V(t)dt2+1RCdV(t)dt+V(t)LC=0A


A standard 2nd order ODE where the obvious proposed solution is $V_{\left(t\right)}=A e^{s t}$. By substitution, we find the characteristic equation is:


s2+sRC+1LC=0


Solving with the standard quadratic solution equation, $\frac{-b\pm\sqrt{b^2-4\:a\:c}}{2\:a}$, we find that it is convenient (from a cursory examination of the results) to define:



α=12RCω0=1LC


The solutions are then:


s1=α+α2ω20s2=αα2ω20


At this point, there are three possibilities to consider. One is the critically damped case where $\alpha = \omega_0$ and therefore $s_1=s_2$ and they are both real-valued. Another is the overdamped case where $\alpha > \omega_0$ and therefore $s_1\ne s_2$ but they are both real-valued, again. The final case is the underdamped case where $\alpha < \omega_0$ and $s_1$ and $s_1$ are both complex-valued and are conjugates of each other.


This last case is the one you want to address.




In the underdamped case it is again convenient to flip the sign inside the square-root and define another real-valued variable, the damped frequency:


ωd=ω20α2=1α2ω20s1=α+jωds2=αjωd


Now the general solution (in the underdamped case there are two conjugate answers, so both are valid and should be included) is:


V(t)=A1es1t+A2es2t=eαt[(A1+A2)cos(ωdt)+j(A1A2)sin(ωdt)]setting: B1=A1+A2B2=j(A1A2)=eαt[B1cos(ωdt)+B2sin(ωdt)]



Clearly,


V(0)=B1


The derivative is,


dV(t)dt=eαt[(ωdB2αB1)cos(ωdt)(ωdB1+αB2)sin(ωdt)]


Clearly,


dV(0)dt=ωdB2αB1


You know that:


V(0)R+CdV(0)dt+IL(0)=0AV(0)RC+ωdB2αB1+IL(0)C=0AωdB2αB1=V(0)RCIL(0)CωdB2αV(0)=V(0)RCIL(0)C

B1=V(0)B2=V(0)(α1RC)IL(0)Cωd=αV(0)+IL(0)Cωdnote above: 1RC=2αIf V(0)0V then η=α+IL(0)V(0)CωdB2=ηV(0)


And that solves the time-dependent voltage equation with the use of initial conditions.


V(t)={V(0)0V,V(0)eαt[cos(ωdt)+ηsin(ωdt)]V(0)eαt1+η2sin(ωdt+tan1(1η))V(0)=0V,IL(0)ωdCeαtsin(ωdt)





At this point, the remaining question is the time-dependent current equation for the inductor.


IL(t)=1LV(t)dt=V(0)L[eαtcos(ωdt)dt+ηeαtsin(ωdt)dt]=V(0)Leαtα2+ω2d[(αcos(ωdt)ωdsin(ωdt))+η(αsin(ωdt)+ωdcos(ωdt))]+D0=V(0)Leαtα2+ω2d[(α+ηωd)cos(ωdt)+(ηαωd)sin(ωdt)]+D0


So,


IL(0)=V(0)Lα+ηωdα2+ω2d+D0D0=IL(0)+V(0)Lα+ηωdα2+ω2d


Resulting in,


IL(t)={V(0)0V,IL(0)+V(0)L[α+ηωdeαt[(α+ηωd)cos(ωdt)+(ηαωd)sin(ωdt)]α2+ω2d]IL(0)+V(0)L[α+ηωdα2+w2deαt1+η2sin(ωdt+tan1[α+ηωdηαωd])α2+w2d]V(0)=0V,IL(0)+B2L[ωdeαt[ωdcos(ωdt)+αsin(ωdt)]α2+ω2d]IL(0)+B2L[ωdα2+w2deαtsin(ωdt+tan1[ωdα])α2+w2d]


No comments:

Post a Comment

arduino - Can I use TI&#39;s cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...