summaryrefslogtreecommitdiff
path: root/1092/CH1/EX1.7/Example1_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '1092/CH1/EX1.7/Example1_7.sce')
-rwxr-xr-x1092/CH1/EX1.7/Example1_7.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/1092/CH1/EX1.7/Example1_7.sce b/1092/CH1/EX1.7/Example1_7.sce
new file mode 100755
index 000000000..9686edab9
--- /dev/null
+++ b/1092/CH1/EX1.7/Example1_7.sce
@@ -0,0 +1,25 @@
+// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 1: Electromechanical Fundamentals
+// Example 1-7
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+N = 1; // no. of turns
+phi = 6.48 * 10 ^ 8; // Magnetic flux in lines
+s = 30 / 60; // No. of revolution of the coil per second( refer section 1-14)
+
+// Calculations
+E_av_per_coil = 4 * phi * N * s * 10 ^ -8; // average voltage per coil
+// for above equation refer section 1-14
+
+E_av_per_coil_side = E_av_per_coil * ( 1 / 2); // average voltage per conductor
+
+// Display the results
+disp("Example 1-7 Solution : ")
+printf(" \n Eav/coil = % .2f V/coil ", E_av_per_coil);
+printf(" \n Eav/coil side = % .2f V/conductor ", E_av_per_coil_side);