summaryrefslogtreecommitdiff
path: root/1730/CH5/EX5.5
diff options
context:
space:
mode:
Diffstat (limited to '1730/CH5/EX5.5')
-rwxr-xr-x1730/CH5/EX5.5/Exa5_5.sce13
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");