summaryrefslogtreecommitdiff
path: root/1092/CH4/EX4.5
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1092/CH4/EX4.5
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1092/CH4/EX4.5')
-rwxr-xr-x1092/CH4/EX4.5/Example4_5.sce28
1 files changed, 28 insertions, 0 deletions
diff --git a/1092/CH4/EX4.5/Example4_5.sce b/1092/CH4/EX4.5/Example4_5.sce
new file mode 100755
index 000000000..67443f65d
--- /dev/null
+++ b/1092/CH4/EX4.5/Example4_5.sce
@@ -0,0 +1,28 @@
+// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 4: DC Dynamo Torque Relations-DC Motors
+// Example 4-5
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+slots = 120 ; // No. of armature slots
+conductors_per_slot = 6 ;
+B = 60000 ; // Flux density in lines/sq.inches
+d = 28 ; // diameter of the armature
+l = 14 ; // axial length of the coil in inches
+A = 4 ; // No. of parallel paths
+span = 0.72 ; // Pole arcs span 72% of the armature surface
+T_a = 1500 ; // total armature torque in lb-ft
+
+// Calculation
+Z = slots * conductors_per_slot ; // No. of armature conductors
+r = ( d / 2 ) / 12 ; // radius of the armature in feet
+I_a = ( T_a * A * 1.13e7 ) / ( B * l * Z * r * span ) ; //Armature current in A
+
+// Display the result
+disp("Example 4-5 Solution : ")
+printf(" \n Ia = %.1f A ", I_a );