summaryrefslogtreecommitdiff
path: root/3871/CH11/EX11.4/Ex11_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3871/CH11/EX11.4/Ex11_4.sce')
-rw-r--r--3871/CH11/EX11.4/Ex11_4.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/3871/CH11/EX11.4/Ex11_4.sce b/3871/CH11/EX11.4/Ex11_4.sce
new file mode 100644
index 000000000..f594688ca
--- /dev/null
+++ b/3871/CH11/EX11.4/Ex11_4.sce
@@ -0,0 +1,23 @@
+//===========================================================================
+//chapter 11 example 4
+
+clc;
+clear all;
+
+//variable declaration
+R1 = 0.1; //standard resistance in Ω
+V2 = 0.613; //voltage drop across standard resistance in V
+a = 100;
+r = 0.781; //volt ration box
+theta = 50.48;
+theta1 = 12.6;
+f = 50; //frequency in in HZ
+
+//calculations
+I = V2/R1; //current through coil in A
+V1 = a*r; //voltage drop across inductive coil in V
+theta2 = theta -theta1;
+L = V1*sin(theta2*180/%pi)/(2*%pi*f*I); //inducatance of coil in H
+
+//result
+mprintf("inductance of coil =%3.2f H",L);