diff options
Diffstat (limited to '3769/CH13/EX13.22/Ex13_22.sce')
-rw-r--r-- | 3769/CH13/EX13.22/Ex13_22.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3769/CH13/EX13.22/Ex13_22.sce b/3769/CH13/EX13.22/Ex13_22.sce new file mode 100644 index 000000000..227ccfe5b --- /dev/null +++ b/3769/CH13/EX13.22/Ex13_22.sce @@ -0,0 +1,19 @@ +clear +//Given +P=60 //W +Ev=100.0 //V +Ev1=220 //v +f=50 //Hz + +//Calculation +Iv=P/Ev +Vr=Ev1-Ev +R=Vr/Iv + +Vl=sqrt(Ev1**2-Ev**2) +Xl=Vl/Iv +L=Xl/(2*%pi*f) + +//Result +printf("\n (i) The value of non inductive resistance is %0.3f ohm", R) +printf("\n (ii) Pure inductance is %0.2f H",L) |