summaryrefslogtreecommitdiff
path: root/2384/CH9/EX9.17/ex9_17.sce
blob: 97337626cc04e3610ef862b7a63c1e5e2244b498 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Exa 9.17
clc;
clear;
close;
format('v',7)
// Given data
Rating = 20*10^3;// in VA
phi= acosd(0.8);// in °
V1 = 2000;// in V
V2 = 200;// in V
Pi = 120;// in W
Pcu = 300;// in W
Eta_max = Rating*(sqrt( Pi/Pcu ));// in VA
Pcu = Pi;// in W
// The maximum efficiency of transformer 
Eta_max = ((Eta_max*cosd(phi))/( Eta_max*cosd(phi) + (2*Pi) ))*100;// in %
disp(Eta_max,"The maximum efficiency of transformer in % is");