blob: 2dfb9ff79521a8325c18f0647ceaae1dd1291d50 (
plain)
1
2
3
4
5
6
|
clc;
n1=0.95; // efficiency of transformer 1
lo=((1/n1)-1); // fraction of output lost
d=2; // Linear dimension of transformer B is two times the Linear dimension of transformer A
nb=(1/(1+((1*lo)/d)))*100;
printf('Full load efficiency of transformer B is %f percent',nb);
|