summaryrefslogtreecommitdiff
path: root/1523/CH4/EX4.88/ex4_88.sce
blob: 6ed579734f2d2e4b639a8804e89129ed4362dd77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//AC Circuits : example 4.88 :(pg 4.72)
R=20;
C=100*10^-6;
L=0.2;
DR=(L/(C*R));
x=(1/(L*C));
y=((R/L)^2);
f0=((1/(2*%pi))*sqrt(x-y));
DR=(L/(C*R));
printf("\nR=20 Ohm \nL=0.2 H \nC=100uF");
printf("\nf0=1/2.pi.sqrt(1/LC-R^2/L^2) \n=%.2f Hz",f0);
printf("\n dynamic resistance =L/CR \n= %.f Ohm",DR);