summaryrefslogtreecommitdiff
path: root/1092/CH1/EX1.13/Example1_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '1092/CH1/EX1.13/Example1_13.sce')
-rwxr-xr-x1092/CH1/EX1.13/Example1_13.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/1092/CH1/EX1.13/Example1_13.sce b/1092/CH1/EX1.13/Example1_13.sce
new file mode 100755
index 000000000..e5775f743
--- /dev/null
+++ b/1092/CH1/EX1.13/Example1_13.sce
@@ -0,0 +1,21 @@
+// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 1: Electromechanical Fundamentals
+// Example 1-13
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+R_a = 0.25; // Armature resistance
+V_a = 125; // dc bus voltage
+I_a = 60; // Armature current
+
+// Calculations
+E_c = V_a - I_a * R_a; // Counter EMF generated in the armature conductors of motor
+
+// Display the result
+disp("Example 1-13 Solution : ");
+printf("\n Ec = % d V ", E_c );