summaryrefslogtreecommitdiff
path: root/1529/CH20/EX20.13/20_13.sce
blob: 7836d36b1cff5e844bc2f2b0cff354d37e4faeb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Chapter 20, Problem 13
clc;
Vl=400;                         //supply voltage
Rp=30;                          //resistance
Xl=40;                          //inductive reactance
Zp=sqrt(Rp^2+Xl^2);             //phase impedance
Ip=Vl/Zp;                       //phase current
Il=sqrt(3)*Ip;                  //line current
pf=Rp/Zp;                       //power factor
P=sqrt(3)*Vl*Il*pf;             //power dissipated
S=sqrt(3)*Vl*Il;                //alternator output KVA
printf("(a) Current is supplied by alternator = %.3f A\n\n",Il);
printf("(b) Output power = %.2f kW\n",P/1000);
printf("    Alternator ouput KVA = %.2f KVA",S/1000);