summaryrefslogtreecommitdiff
path: root/3681/CH3/EX3.12/Ex3_12.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3681/CH3/EX3.12/Ex3_12.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3681/CH3/EX3.12/Ex3_12.sce')
-rw-r--r--3681/CH3/EX3.12/Ex3_12.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/3681/CH3/EX3.12/Ex3_12.sce b/3681/CH3/EX3.12/Ex3_12.sce
new file mode 100644
index 000000000..8d64df9fa
--- /dev/null
+++ b/3681/CH3/EX3.12/Ex3_12.sce
@@ -0,0 +1,21 @@
+// Calculating the specific iron loss
+clc;
+disp('Example 3.12, Page No. = 3.35')
+// Given Data
+Bm = 1.0;// Maximum flux density in Wb per meter square
+f = 100;// Frequency in Hz
+t = 0.3*10^(-3);// Thickness of sheet in mm
+p = .5*10^(-6);// Resistivity of alloy steel in ohm*meter
+D = 7650;// Density in kg per meter cube
+pi_quoted = 1.2;// Quoted iron loss in W per Kg
+// Calculation of total iron loss
+S1 = 2*12;// Sides of hysteresis loop in A/m
+S2 = 2*1;// Sides of hysteresis loop in Wb per meter square
+A = S1*S2;// Area of hysteresis loop in W-s per meter cube
+ph_each = A;// Hysteresis loss in each cycle in Joule per meter cube
+ph = ph_each*f/D;// Hysterseis loss in W per Kg
+pe = %pi*%pi*f*f*Bm*Bm*t*t/(6*p*D);// Eddy current loss in W per Kg
+pi = pe+ph;// Total iron loss in W per Kg
+disp(pi,'Specific iron loss(W per Kg)=');
+disp('The calculated iron loss is smaller than the quoted.')
+//in book answer is 1.014 W per Kg. The answers vary due to round off error