summaryrefslogtreecommitdiff
path: root/3640/CH3/EX3.13/Ex3_13.sce
blob: e3565df9fc1552a221a2d1f6f58c2c4832e5c653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
clc
SB=300 //rating in kVA at full load
S=150 //kVA at half load
Phe=2.7 //core loss in kW
Phepu=Phe/SB //ans may vary due to roundoff error
mprintf("Phepu=%f\n",Phepu)
Reqpu=0.0140 //per unit resistance in ohms=per unit copper loss at full load in watts
pf=0.9 //power factor at full load
//efficiency at full load
mprintf("ηfl=%f\n",pf/(pf+Phepu+Reqpu))//ans may vary due to roundoff error
//efficiency at half load
a=S/SB //ratio of kVA at half and full load
mprintf("ηfl=%f\n",(a*pf)/((a*pf)+Phepu+(a*a*Reqpu)))//ans may vary due to roundoff error
//for max efficiency
mprintf("|S|/SB=sqrt(Phepu/Reqpu)=%fA\n",sqrt(Phepu/Reqpu))//ans may vary due to roundoff error