summaryrefslogtreecommitdiff
path: root/3574/CH1/EX1.7/EX1_7.sce
blob: 8f6810843225facd6730ceb9db46177ce8d7e960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);