summaryrefslogtreecommitdiff
path: root/2444/CH3/EX3.4
diff options
context:
space:
mode:
Diffstat (limited to '2444/CH3/EX3.4')
-rwxr-xr-x2444/CH3/EX3.4/ex3_4.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/2444/CH3/EX3.4/ex3_4.sce b/2444/CH3/EX3.4/ex3_4.sce
new file mode 100755
index 000000000..f648c23e6
--- /dev/null
+++ b/2444/CH3/EX3.4/ex3_4.sce
@@ -0,0 +1,13 @@
+// Exa 3.4
+clc;
+clear;
+close;
+format('v',7)
+// Given data
+Pe1 = 1600;// in W
+Bmax1 = 1.2;// in T
+f1 = 50;// in Hz
+Bmax2 = 1.5;// in T
+f2 = 60;// in Hz
+Pe2 = Pe1*(Bmax2/Bmax1)^2*(f2/f1)^2;// in W
+disp(Pe2,"The eddy current loss in W is");