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