summaryrefslogtreecommitdiff
path: root/1541/CH2/EX2.33/Chapter2_Example33.sce
blob: 767a04ad17207ee430600ec7c9c558bbf0d760d0 (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
//Chapter-2, Example 2.33, Page 2.64
//=============================================================================
clc
clear

//INPUT DATA
L=400;//Constant or Iron losses in W
C=700;//Full load copper loss in W
Q=40000;//Rating of transformer in VA
cosq=0.85;//Load power factor

//CALCULATIONS
P=(Q*cosq);//Full load output in W
LC=(L+C);//Total full load losses in W
IP=(P+LC);//Full load input in W
n=(P/IP)*100;//Full load efficiency
P2=(0.5*Q*cosq);//Half load output in W
LC2=(L+(0.5^2*C));//Total losses at half loads in W
IP2=(P2+LC2);//Half load input in W
n2=(P2/IP2)*100;//Half load efficiency

//OUTPUT
mprintf('Efficiency of the transformer at full load is %3.2f percent \nEfficiency of the transformer at half load is %3.2f percent',n,n2)

//=================================END OF PROGRAM==============================