blob: 17a118d27ee469a84475b9cb437b93b57533727c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
w=600
R=10
L=10E-3
C=0.5E-3
Xl=w*L*%i
Xc=1/(w*C*%i) //Xc value in the book is wrong
V1=40
V2=complex(0,-30)
//mesh analysis
A=[R+Xl,-R;-R,R+Xc]
I=inv(A)*[V1;V2]
Ir=I(1)-I(2)
Vr=R*Ir
disp(Vr) //Final answer is different
|