diff options
Diffstat (limited to '3769/CH13/EX13.25/Ex13_25.sce')
-rw-r--r-- | 3769/CH13/EX13.25/Ex13_25.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3769/CH13/EX13.25/Ex13_25.sce b/3769/CH13/EX13.25/Ex13_25.sce new file mode 100644 index 000000000..daef87736 --- /dev/null +++ b/3769/CH13/EX13.25/Ex13_25.sce @@ -0,0 +1,16 @@ +clear +//Given +P=80 //W +V=100.0 //v +V1=200 //V +f=50 //Hz + +//Calculation +// +Iv=P/V +Vc=sqrt(V1**2-V**2) +Xc=Vc/Iv +C=1/(2.0*%pi*f*Xc) + +//Result +printf("\n Capcitance of a capacitor is %0.1f micro F",C*10**6) |