diff options
Diffstat (limited to '3769/CH13/EX13.23/Ex13_23.sce')
-rw-r--r-- | 3769/CH13/EX13.23/Ex13_23.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3769/CH13/EX13.23/Ex13_23.sce b/3769/CH13/EX13.23/Ex13_23.sce new file mode 100644 index 000000000..2ded68993 --- /dev/null +++ b/3769/CH13/EX13.23/Ex13_23.sce @@ -0,0 +1,22 @@ +clear +//Given +f1=50.0 +L=1 +E=100 //V +I=1.0 //A +Iv=0.5 //A +f=0 +Ev=100.0 //V + +//Calculation +// +Xl=2*%pi*f*L +R=E/I +Z=Ev/Iv +Xl1=sqrt(Z**2-R**2) +L=Xl1/(2.0*%pi*f1) + +//Result +printf("\n The value of resistance is %0.3f ohm",R ) +printf("\n The value of impedence is %0.3f ohm",Z) +printf("\n Inductance of the coil is %0.2f H",L) |