summaryrefslogtreecommitdiff
path: root/3769/CH13/EX13.33
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH13/EX13.33')
-rw-r--r--3769/CH13/EX13.33/Ex13_33.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3769/CH13/EX13.33/Ex13_33.sce b/3769/CH13/EX13.33/Ex13_33.sce
new file mode 100644
index 000000000..372dcc8b0
--- /dev/null
+++ b/3769/CH13/EX13.33/Ex13_33.sce
@@ -0,0 +1,20 @@
+clear
+//Given
+Vr=65 //V
+R=100.0 //ohm
+Vl=204
+f=50 //Hz
+Vc=415
+
+//Calculation
+//
+Iv=Vr/R
+Xl=Vl/Iv
+L=Xl/(2*%pi*f)
+Xc=Vc/Iv
+C=1/(2*%pi*f*Xc)
+
+//Result
+printf("\n (i) Circuit current is %0.3f A", Iv)
+printf("\n (ii) Inductance is %0.0f H",L)
+printf("\n (iii) The value of capacitance is %0.0f micro F",C*10**6)