summaryrefslogtreecommitdiff
path: root/3574/CH1/EX1.3
diff options
context:
space:
mode:
Diffstat (limited to '3574/CH1/EX1.3')
-rw-r--r--3574/CH1/EX1.3/EX1_3.sce26
-rw-r--r--3574/CH1/EX1.3/Ex1_3.pngbin0 -> 117443 bytes
2 files changed, 26 insertions, 0 deletions
diff --git a/3574/CH1/EX1.3/EX1_3.sce b/3574/CH1/EX1.3/EX1_3.sce
new file mode 100644
index 000000000..58d6f81ac
--- /dev/null
+++ b/3574/CH1/EX1.3/EX1_3.sce
@@ -0,0 +1,26 @@
+// Example 1.3
+// Computation of hysteresis loss if the apparatus is connected to a 60 Hz source
+//Page No. 16
+
+clc;
+clear all;
+close;
+
+// Given data
+V=240; // Rated voltage
+F1=25; // Rated frequency
+Ph2=846; // hysteresis loss
+F2=60; // Source Frequency
+Bmax1=0.62 // Flux density is 62 percent of its rated value 1
+Bmax2=1.0 // Flux density is 62 percent of its rated value 2
+Sc=1.4 // Steinmetz exponents
+
+// hysteresis loss if the apparatus is connected to a 60 Hz source
+Ph1=Ph2*[(F2/F1)*(Bmax1/Bmax2)^Sc];
+Ph1=Ph1/1000;
+
+//Display result on command window
+printf("\n Hysteresis loss if the apparatus is connected to a 60 Hz source = %0.2f kW",Ph1);
+
+
+
diff --git a/3574/CH1/EX1.3/Ex1_3.png b/3574/CH1/EX1.3/Ex1_3.png
new file mode 100644
index 000000000..7a218355d
--- /dev/null
+++ b/3574/CH1/EX1.3/Ex1_3.png
Binary files differ