summaryrefslogtreecommitdiff
path: root/3871/CH13/EX13.14/Ex13_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '3871/CH13/EX13.14/Ex13_14.sce')
-rw-r--r--3871/CH13/EX13.14/Ex13_14.sce28
1 files changed, 28 insertions, 0 deletions
diff --git a/3871/CH13/EX13.14/Ex13_14.sce b/3871/CH13/EX13.14/Ex13_14.sce
new file mode 100644
index 000000000..71df4d8d5
--- /dev/null
+++ b/3871/CH13/EX13.14/Ex13_14.sce
@@ -0,0 +1,28 @@
+//=====================================================================================
+//Chapter 13 example 14
+
+clc;
+clear all;
+
+//variable declaration
+//Ph = A*f
+//Pe = B*f^2
+//Pi = Ph+Pe
+Pi = 17.2; //power in W
+f = 50; //frequency in Hz
+Pi1 = 28.9; //iron loss in W
+
+m = 13; //weight in kg
+
+//calculations
+//17.2 = 40*A+((40)^2)*B
+//28.9 = 60*A+((60)^2)*B
+A = 0.326667
+B = 0.002583
+Ph = (A*f)/m //hysteresis loss per kg in W
+Pe = (B*(f^2))/m //eddy current loss per kg in W
+
+//result
+mprintf("hysteresis loss per kg = %3.2f W",Ph);
+mprintf("\neddy current loss per kg = %3.3f W",Pe);
+