diff options
Diffstat (limited to '3769/CH13/EX13.21/Ex13_21.sce')
-rw-r--r-- | 3769/CH13/EX13.21/Ex13_21.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3769/CH13/EX13.21/Ex13_21.sce b/3769/CH13/EX13.21/Ex13_21.sce new file mode 100644 index 000000000..a6279c03e --- /dev/null +++ b/3769/CH13/EX13.21/Ex13_21.sce @@ -0,0 +1,20 @@ +clear +//Given +Vr=150 //V +R=75.0 //ohm +f=50 //Hz +L=318*10**-3 //H + +//Calculation +// +Iv=Vr/R +Xl=2*%pi*f*L +Vl=Iv*Xl +Z=sqrt(R**2+Xl**2) +Ev=Iv*Z +a=Xl/R +a1=atan(a)*180/3.14 + +//Result +printf("\n (i) The supply voltage is %0.0f V",Ev) +printf("\n (ii) The phase angle is %0.2f degree lag",a1) |