summaryrefslogtreecommitdiff
path: root/2642/CH2/EX2.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2642/CH2/EX2.7
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2642/CH2/EX2.7')
-rwxr-xr-x2642/CH2/EX2.7/Ex2_7.sce31
1 files changed, 31 insertions, 0 deletions
diff --git a/2642/CH2/EX2.7/Ex2_7.sce b/2642/CH2/EX2.7/Ex2_7.sce
new file mode 100755
index 000000000..1f307ee5c
--- /dev/null
+++ b/2642/CH2/EX2.7/Ex2_7.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.7
+clc;clear; // clears the console and command history
+
+// Given data
+l = 0.1 // length in m
+w = 0.01 // width in m
+h =0.1 // height in m
+N = 450 // number of turns
+I = 0.2 // current in A
+myu_r = 850 // relative permiability magnetic material
+
+// caclulations
+MMF = N*I // magnetomotive force in At
+l_c = (h-w)*4 // mean length of the path in m
+A = w*w // cross sectional area in m^2
+R_m = l_c/(4*%pi*10^-7*myu_r*A) // relectance in At/Wb
+flux = MMF/R_m // flux in Wb
+B = flux/A // magnetic flux density in Wb/m^2
+H = B/(4*%pi*10^-7*myu_r) // field intensity in At/m
+
+// display the result
+disp("Example 2.7 solution");
+printf(" \n Flux \n flux= %.2e Wb \n", flux);
+printf(" \n Magnetic flux density \n B= %.4f Wb/m^2 \n", B);
+printf(" \n Field intensity \n H= %.2f At/m \n", H);