diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1730/CH5/EX5.2/Exa5_2.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1730/CH5/EX5.2/Exa5_2.sce')
-rwxr-xr-x | 1730/CH5/EX5.2/Exa5_2.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1730/CH5/EX5.2/Exa5_2.sce b/1730/CH5/EX5.2/Exa5_2.sce new file mode 100755 index 000000000..242df5a85 --- /dev/null +++ b/1730/CH5/EX5.2/Exa5_2.sce @@ -0,0 +1,17 @@ +//Exa 5.2
+clc;
+clear;
+close;
+format('v',11)
+// given data
+Area_hysteresis_loop=93;//in cm^2
+scale1_1cm=0.1;//in Wb/m^2
+scale2_1cm=50;//in AT/m
+
+hysteresis_loss=Area_hysteresis_loop*scale1_1cm*scale2_1cm;//in J/m^3/cycle
+disp(hysteresis_loss,"Hysteresis loss/m^3/cycle in J/m^3/cycle: ");
+
+f=65;//unit less
+V=1500*10^-6;// in m^3
+P_h=hysteresis_loss*f*V;
+disp("Hysteresis loss is : "+string(P_h)+" W");
|