For a Parallel RLC circuit Given V 10sinomegatc005 l006R15
For a Parallel RLC circuit Given V = 10sin(omega*t),c=0.05, l=0.06,R=15, get the resonance of circuit and plot Vc Vr I and Ic in Matlab.
Solution
l=0.06;
C=0.05;
R=15;
V=10sin(w*t);
Xl=j*w*l;
Xc=1/(j*w*C);
Il=(v/xl);
Ic=(V/Xc);
plot(V,Il)
Plot(V,Ic)

