summaryrefslogtreecommitdiff
path: root/3574/CH1/EX1.7/EX1_7.sce
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.7/EX1_7.sce
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.7/EX1_7.sce')
-rw-r--r--3574/CH1/EX1.7/EX1_7.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/3574/CH1/EX1.7/EX1_7.sce b/3574/CH1/EX1.7/EX1_7.sce
new file mode 100644
index 000000000..8f6810843
--- /dev/null
+++ b/3574/CH1/EX1.7/EX1_7.sce
@@ -0,0 +1,24 @@
+// Example 1.7
+// Computation of eddy current loss if the apparatus is connected to a 60 Hz
+//source
+// Page No. 29
+
+clc;
+clear;
+close;
+
+// Given data
+V=240; // Rated voltage
+F1=25; // Rated frequency
+Pe1=642; // Eddy current loss
+F2=60; // Source Frequency
+Bmax1=1.0 // Flux density is 62 percent of its rated value
+Bmax2=0.62 // Flux density is 62 percent of its rated value
+
+// Eddy current loss if the apparatus is connected to a 60 Hz source
+Pe2=Pe1*[(F2/F1)^2*(Bmax2/Bmax1)^2];
+Pe2=Pe2/1000;
+
+// Display result on command window
+printf("\n Eddy current loss if the apparatus is connected to a 60 Hz source = %0.2f kW ",Pe2);
+