summaryrefslogtreecommitdiff
path: root/1445/CH7/EX7.38/ch7_ex_38.sce
blob: a9988b934dd20297c75c84dc12689f48bb74171e (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
25
26
27
28
29
//CHAPTER 7- SINGLE PHASE TRANSFORMER
//Example 38

disp("CHAPTER 7");
disp("EXAMPLE 38");

//VARIABLE INITIALIZATION
v1=220;                                    //primary voltage in Volts
v2=115;                                     //secondary voltage in Volts
f1=25;
f2=50;
//loads
V=440
We1=100;                                     //in Watts at 220 V, eddy losses
Pc1=2*We1;                                    //Total iron losses which equals We+Wh due to eddy and hysteresis
Wh1=Pc1-We1;
//
//SOLUTION  
//since we know that We=kh.f.B^1.6 and Wh=Ke.Kf^2.f^2.B^2
//since all being constant exept frequency, we may take We2/We1=f2^2/f1^2
//and Wh2/Wh1=f2/f1
//find values for We2 and Wh2, whence Pc2=We2+Wh2
We2=f2^2*We1/f1^2;
Wh2=f2*Wh1/f1;
Pc2=We2+Wh2;
disp(sprintf("The total no load losses at 400 V is %f W",Pc2));
disp(" "); 
// 
//END