diff options
Diffstat (limited to '1092/CH1/EX1.2/Example1_2.sce')
-rwxr-xr-x | 1092/CH1/EX1.2/Example1_2.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/1092/CH1/EX1.2/Example1_2.sce b/1092/CH1/EX1.2/Example1_2.sce new file mode 100755 index 000000000..6d3ed6f45 --- /dev/null +++ b/1092/CH1/EX1.2/Example1_2.sce @@ -0,0 +1,31 @@ +// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 1: Electromechanical Fundamentals
+// Example 1-2
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+l = 18; // l = length of the conductor in inches
+B = 50000; // B = uniform magnetic field in lines/sq-inches
+d = 720; // d = distance travelled by conductor in inches
+t = 1; // t =time taken for the conductor to move in second
+
+// Calculations
+v = d/t; // v = velocity in inches/second with which the conductor moves
+
+// part a
+e = B * l * v * 10 ^ -8; // e = instantaneous induced EMF in volt
+// part b
+A = d * l; // Area swept by the conductor while moving
+phi = B * A; // phi = uniform magnetic field
+E = ( phi / t ) * 10 ^ -8; // E = average induced EMF
+
+// Display the result
+disp("Example 1-2 Solution : ");
+
+printf(" \n a : e = %.2f V ", e);
+printf(" \n b : E = %.2f V ", E);
|