summaryrefslogtreecommitdiff
path: root/3574/CH1/EX1.3
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3574/CH1/EX1.3
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
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