summaryrefslogtreecommitdiff
path: root/2444/CH3/EX3.3/ex3_3.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2444/CH3/EX3.3/ex3_3.sce
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 '2444/CH3/EX3.3/ex3_3.sce')
-rwxr-xr-x2444/CH3/EX3.3/ex3_3.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/2444/CH3/EX3.3/ex3_3.sce b/2444/CH3/EX3.3/ex3_3.sce
new file mode 100755
index 000000000..a80b4beb5
--- /dev/null
+++ b/2444/CH3/EX3.3/ex3_3.sce
@@ -0,0 +1,22 @@
+// Exa 3.3
+clc;
+clear;
+close;
+format('v',8)
+// Given data
+Eta =628;// in J/m^3
+Bmax = 1.3;// in T
+f = 25;// in Hz
+m = 50;// in kg
+rho = 7.8*10^3;// in kg/m^3
+V = m/rho;// in m^3
+H = round(Eta*(Bmax^1.6)*f*V);// Hystersis loss in J/s
+H = H * 60 *60;// Hystersis loss in J/hour
+disp(H,"The Hystersis loss per hour in J is");
+h = Eta*(Bmax^1.6);// Hystersis loss/m^3/cycle
+// h = x*y*area of B_H loop
+x = 12.5;// in AT/m
+y = 0.1;// in T
+Area = h/(x*y);// in cm^2
+format('v',5)
+disp(Area,"The area of B-H loop in cm^2 is");