diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3871/CH5/EX5.15 | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-master.tar.gz Scilab-TBC-Uploads-master.tar.bz2 Scilab-TBC-Uploads-master.zip |
Diffstat (limited to '3871/CH5/EX5.15')
-rw-r--r-- | 3871/CH5/EX5.15/Ex5_15.sce | 21 |
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));
|