summaryrefslogtreecommitdiff
path: root/1092/CH4/EX4.2/Example4_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '1092/CH4/EX4.2/Example4_2.sce')
-rwxr-xr-x1092/CH4/EX4.2/Example4_2.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/1092/CH4/EX4.2/Example4_2.sce b/1092/CH4/EX4.2/Example4_2.sce
new file mode 100755
index 000000000..3e4f82daf
--- /dev/null
+++ b/1092/CH4/EX4.2/Example4_2.sce
@@ -0,0 +1,30 @@
+// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 4: DC Dynamo Torque Relations-DC Motors
+// Example 4-2
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+d = 18 ; // diameter of hte coil in inches
+l = 24 ; // axial length of the coil in inches
+B = 24000 ; // Flux density in lines/sq.inches
+I = 26 ; // Current carried by the coil in A
+theta = 60 ; // angle between the useful force & the interpolar ref axis in deg
+
+
+// Calculations
+F = ( B * I * l * 10 ^ -7 ) / 1.13 ; // force developed on each coil side in lb
+f = F * sind(theta); // force developed at the instant the coil lies at an angle
+// of 60 w.r.t the interpolar ref axis
+r = d / 2; // radius of the coil in inches
+T_c = f * ( r * 1 / 12); // torque developed in lb.ft/conductor
+
+// Display the results
+disp("Example 4-2 Solution : ")
+printf("\n a : F = %.3f lb ", F );
+printf("\n b : f = %.2f lb ", f );
+printf("\n c : Tc = %.3f lb-ft/conductor ", T_c );