summaryrefslogtreecommitdiff
path: root/695/CH3/EX3.29/Ex3_29.txt
blob: b391ea89bb8dcc41bc1193ea822a76668651e608 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Caption:Calculate the value of iron loss and copper loss which will give max efficiency and also the max efficiency
//Exa:3.29
clc;
clear;
close;
KVA=25;
P_iron=350;//in watts
//For max efficiency P_iron=P_cu
P_cu=P_iron;
disp(P_iron,'Iron loss (in watts)=');
disp(P_cu,'Copper Loss (in watts)=');
Eff=KVA*1000/(KVA*1000+P_iron+P_cu);
disp(Eff*100,'Maximum Efficiency (in %)=');