summaryrefslogtreecommitdiff
path: root/1092/CH1/EX1.10/Example1_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '1092/CH1/EX1.10/Example1_10.sce')
-rwxr-xr-x1092/CH1/EX1.10/Example1_10.sce28
1 files changed, 28 insertions, 0 deletions
diff --git a/1092/CH1/EX1.10/Example1_10.sce b/1092/CH1/EX1.10/Example1_10.sce
new file mode 100755
index 000000000..5502597d0
--- /dev/null
+++ b/1092/CH1/EX1.10/Example1_10.sce
@@ -0,0 +1,28 @@
+// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 1: Electromechanical Fundamentals
+// Example 1-10
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+no_of_coils = 40;
+N = 20; // no of turns in each coil
+omega = 200; // angular velocity of armature in rad/s
+phi = 5 * 10 ^ -3; // flux per pole
+a = 4; // No. of parallel paths
+P = 4; // No. of poles
+
+// Calculations
+Z = no_of_coils * 2 * N; // No. of conductors
+
+E_g = ( phi * Z * omega * P ) / ( 2 * %pi * a ); // Voltage generated by the
+// armature between brushes
+
+// Display the results
+disp("Example 1-10 Solution : ");
+printf("\n Z = % d conductors ", Z);
+printf("\n Eg = % .2f V between the brushes ", E_g);