blob: ca6e59bccf39e4388e5f980f815bfc36dcfc93a5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Chapter-8,Example8_8,pg 8_39
L3=8*10^-3
R1=1*10^3
R2=25*10^3
R3=50*10^3
Rx=R2*R3/R1
Lx=R2*L3/R1
printf("equivalent series circuit\n")
printf("Rx=%.f ohm\n",Rx)
printf("Lx=%.5f H",Lx)
|