diff options
Diffstat (limited to '2642/CH2/EX2.9')
-rwxr-xr-x | 2642/CH2/EX2.9/Ex2_9.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/2642/CH2/EX2.9/Ex2_9.sce b/2642/CH2/EX2.9/Ex2_9.sce new file mode 100755 index 000000000..2b5237828 --- /dev/null +++ b/2642/CH2/EX2.9/Ex2_9.sce @@ -0,0 +1,31 @@ + // FUNDAMENTALS OF ELECTICAL MACHINES
+// M.A.SALAM
+// NAROSA PUBLISHING HOUSE
+// SECOND EDITION
+
+// Chapter 2 : BESICS OF MAGNETIC CIRCUITS
+// Example : 2.9
+clc;clear; // clears the console and command history
+
+// Given data
+l = 0.45 // mean lenght in m
+A = 25*10^-4 // cross sectional area in m^2
+l_ag = 0.8*10^-3 // air gap in m
+N = 500 // number of turns
+I = 1.25 // current in A
+fulx = 2.25*10^-3 // flux in Wb
+phi = 1.5*10^-3 // flux in Wb
+
+// caclulations
+B = phi/A // magnetic flux density in Wb/m^2
+MMF = N*I // magnetomotive force in At
+H = B/(4*%pi*10^-7) // magnetomotizing force in At/m
+MMF_ag = H*l_ag // magnetomotive force in At
+MMF_i = MMF-MMF_ag // magnetomotive force for iron ring in At
+H_i = MMF_i/l // magnetic field intensity for iron part in At/m
+myu_r = B/((4*%pi*10^-7)*H_i) // relative permiability for iron
+
+// display the result
+disp("Example 2.9 solution");
+printf(" \n Relative permiability for iron \n myu_r = %.2f \n", myu_r);
+printf(" given current value in question is 2.25A, but in solution they took value of current as 1.25A ");
|