diff options
Diffstat (limited to '2642/CH2/EX2.11')
-rwxr-xr-x | 2642/CH2/EX2.11/Ex2_11.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2642/CH2/EX2.11/Ex2_11.sce b/2642/CH2/EX2.11/Ex2_11.sce new file mode 100755 index 000000000..51e103ac0 --- /dev/null +++ b/2642/CH2/EX2.11/Ex2_11.sce @@ -0,0 +1,21 @@ +// FUNDAMENTALS OF ELECTICAL MACHINES
+// M.A.SALAM
+// NAROSA PUBLISHING HOUSE
+// SECOND EDITION
+
+// Chapter 2 : BESICS OF MAGNETIC CIRCUITS
+// Example : 2.11
+clc;clear; // clears the console and command history
+
+// Given data
+I = 150 // current through conductor in A
+l = 2 // conductor length in m
+B = 0.35 // magnetic flux density in T
+
+// caclulations
+F = B*l*I // force in N
+
+// display the result
+disp("Example 2.11 solution");
+printf("\n Force \n F = %.0f N \n", F);
+
|