diff options
Diffstat (limited to '1092/CH1/EX1.12/Example1_12.sce')
-rwxr-xr-x | 1092/CH1/EX1.12/Example1_12.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/1092/CH1/EX1.12/Example1_12.sce b/1092/CH1/EX1.12/Example1_12.sce new file mode 100755 index 000000000..87398b045 --- /dev/null +++ b/1092/CH1/EX1.12/Example1_12.sce @@ -0,0 +1,27 @@ +// Electric Machinery and Transformers
+// Irving L kosow
+// Prentice Hall of India
+// 2nd editiom
+
+// Chapter 1: Electromechanical Fundamentals
+// Example 1-12
+
+clear; clc; close; // Clear the work space and console.
+
+// Given data
+l = 0.5; // length of the conductor
+A = 0.1 * 0.2; // area of the pole face
+phi = 0.5 * 10 ^ -3; // magnetic flux in weber
+I = 10; //Current in the conductor
+theta = 75; // angle between the conductor and the flux density B
+
+// Calculations
+B = ( phi ) / ( A ); // Flux density
+
+F = B * I * l * sind(theta); // Magnitude of force
+
+// Display the result
+disp("Example 1-12 Solution : ");
+
+printf("\n F =% f N in a vertically upward direction ", F );
+
|