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.5 | |
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.5')
-rwxr-xr-x | 1730/CH5/EX5.5/Exa5_5.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1730/CH5/EX5.5/Exa5_5.sce b/1730/CH5/EX5.5/Exa5_5.sce new file mode 100755 index 000000000..d17f77547 --- /dev/null +++ b/1730/CH5/EX5.5/Exa5_5.sce @@ -0,0 +1,13 @@ +//Exa 5.5
+clc;
+clear;
+close;
+// given data
+P_e1=1600;// in watts
+B_max1=1.2;// in T
+f1=50;// in Hz
+B_max2=1.5;// in T
+f2=60;// in Hz
+// P_e propotional to B_max^2*f^2, so
+P_e2=P_e1*(B_max2/B_max1)^2*(f2/f1)^2
+disp("Eddy current loss is : "+string(P_e2)+" watts");
|