summaryrefslogtreecommitdiff
path: root/1092/CH4/EX4.12/Example4_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '1092/CH4/EX4.12/Example4_12.sce')
-rwxr-xr-x1092/CH4/EX4.12/Example4_12.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/1092/CH4/EX4.12/Example4_12.sce b/1092/CH4/EX4.12/Example4_12.sce
new file mode 100755
index 000000000..34d0126e0
--- /dev/null
+++ b/1092/CH4/EX4.12/Example4_12.sce
@@ -0,0 +1,24 @@
+// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 4: DC Dynamo Torque Relations-DC Motors
+// Example 4-12
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+V_a = 120 ; // Rated terminal voltage of dc shunt notor in volt
+R_a = 0.2 ; // Armature resistance in ohm
+BD = 2 ; // Brush drop in volt
+I_a = 75 ; // Full load armature current in A
+
+// Calculations
+I_st = ( V_a - BD ) / R_a ; // Current @ the instant of starting in A
+percentage = I_st / I_a * 100 ; // Percentage at full load
+
+// Display the results
+disp(" Example 4-12 Solution : ");
+printf(" \n Ist = %d A ( Back EMF is zero )",I_st );
+printf(" \n Percentage at full load = %d percent ", percentage );