Energy conversions matlab code needed A 110 kVA 2200220 V 60
Energy conversions matlab code needed.
A 1-,10 kVA, 2200/220 V, 60 Hz transformer has the following characteristics: No-load core loss 100 w Full-load copper loss =215 w Write a computer program to study the variation of efficiency with output kVA load and load power factor. The program should a) Yield the results in a tabular form showing per-unit kVA load (ie, a) Yield the results in a tabular form showing per-unit kVA load (i.e. X), and efficiency for a range of power factors 1.0, 0.8,0.6, 0.4, and 0.2. | (P.F. = 1.0) | (Pf.:0.8) | (P.F. = 0.6) | (P.F. = 0.4) | (P.F. =0.2) 0 0.05 0.1 Solution
MATLAB CODE:
clc
S=10000;
w1=100;
w2=215;
X=[0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.55 0.6 0.65 0.7 0.75 0.8 0.085 0.9 0.95 1];
a=size(X);
n=a(2);
PF=[1 0.8 0.6 0.4 0.2];
b=size(PF);
m=b(2);
for i=1:n
for j=1:m
efficiency(i,j)=(S*X(1,i)*PF(1,j))/((S*X(1,i)*PF(1,j))+w1+w2);
end
end
efficiency
plot(X,efficiency)
