summaryrefslogtreecommitdiff
path: root/3871/CH5/EX5.15/Ex5_15.sce
diff options
context:
space:
mode:
Diffstat (limited to '3871/CH5/EX5.15/Ex5_15.sce')
-rw-r--r--3871/CH5/EX5.15/Ex5_15.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/3871/CH5/EX5.15/Ex5_15.sce b/3871/CH5/EX5.15/Ex5_15.sce
new file mode 100644
index 000000000..f5d5172e1
--- /dev/null
+++ b/3871/CH5/EX5.15/Ex5_15.sce
@@ -0,0 +1,21 @@
+//===========================================================================
+//chapter 5 example 15
+clc;clear all;
+
+//variable decalartaion
+C = 1*10**-7; //spring torsion constant in N-m/degree
+I = 10; //current in A
+theta = 110; //full-deflection in °
+L1 = 2*10**-6; //initial inductance in uH
+
+//calculations
+Td =C*theta; //full-scale deflceting torque in N-m
+//dM/dtheta =x
+x = Td/(I^2);
+theta1 = ((theta*%pi)/(180)); //converstion of radians to degrees
+dM = x*theta1; //change in inductance in uH
+M = L1+dM; //total inductance in uH
+
+//result
+
+mprintf("total inductance = %3.3f uH",(M*10^6));