summaryrefslogtreecommitdiff
path: root/2642/CH2/EX2.4
diff options
context:
space:
mode:
Diffstat (limited to '2642/CH2/EX2.4')
-rwxr-xr-x2642/CH2/EX2.4/Ex2_4.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/2642/CH2/EX2.4/Ex2_4.sce b/2642/CH2/EX2.4/Ex2_4.sce
new file mode 100755
index 000000000..14c766b82
--- /dev/null
+++ b/2642/CH2/EX2.4/Ex2_4.sce
@@ -0,0 +1,25 @@
+// FUNDAMENTALS OF ELECTICAL MACHINES
+// M.A.SALAM
+// NAROSA PUBLISHING HOUSE
+// SECOND EDITION
+
+// Chapter 2 : BESICS OF MAGNETIC CIRCUITS
+// Example : 2.4
+
+clc;clear; // clears the console and command history
+
+// Given data
+N = 6 // number of turns
+I =3 // current in A
+flux = 0.056 // flux in Wb
+
+// caclulations
+MMF = N*I // magnetomotive force in At
+R_m = MMF/flux // reluctance in At/Wb
+
+// display the result
+disp("Example 2.4 solution");
+printf(" \n Magnetomotive force \n MMF= %.0f At \n", MMF);
+printf( "\n Reluctance \n R_m= %.1f At/Wb \n", R_m);
+
+