summaryrefslogtreecommitdiff
path: root/1092/CH4/EX4.14/Example4_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '1092/CH4/EX4.14/Example4_14.sce')
-rwxr-xr-x1092/CH4/EX4.14/Example4_14.sce36
1 files changed, 36 insertions, 0 deletions
diff --git a/1092/CH4/EX4.14/Example4_14.sce b/1092/CH4/EX4.14/Example4_14.sce
new file mode 100755
index 000000000..a877e78d7
--- /dev/null
+++ b/1092/CH4/EX4.14/Example4_14.sce
@@ -0,0 +1,36 @@
+// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 4: DC Dynamo Torque Relations-DC Motors
+// Example 4-14
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+// Cumulative DC compound motor acting as shunt motor
+T_orig = 160 ; // Original torque developed in lb.ft
+I_a_orig = 140 ; // Original armature current in A
+phi_f_orig = 1.6e+6 ; // Original field flux in lines
+
+// Reconnected as a cumulative DC compound motor
+T_final_a = 190 ; // Final torque developed in lb.ft (case a)
+
+// Calculations
+phi_f = phi_f_orig * ( T_final_a / T_orig ) ; // Field flux in lines
+percentage = ( phi_f / phi_f_orig ) * 100 - 100 ; // percentage increase in flux
+
+phi_f_final = 1.1 * phi_f ; // 10% increase in load causes 10% increase in flux
+I_a_b = 154 ; // Final armature current in A (case b)
+T_f = T_final_a * ( I_a_b / I_a_orig ) * ( phi_f_final / phi_f ) ;
+// Final torque developed
+
+// Display the results
+disp(" Example 4-14 Solution : ");
+printf(" \n a: phi_f = %.1e lines \n ", phi_f );
+printf(" \n Percentage of flux increase = %.1f percent \n ", percentage );
+
+printf(" \n b: The final field flux is 1.1 * 1.9 * 10 ^ 6 lines " );
+printf(" \n (due to the 10 percent increase in load).The final torque is\n");
+printf(" \n T_f = %.1f lb-ft ", T_f );