SlideShare a Scribd company logo
4
Most read
5
Most read
6
Most read
Name : Mafaz Ahmed
CALCULATING THE EFFICIENCY AND
REGULATION OF TRANSFORMER
Abstract:
In this project the ideal have been
develop to find the Efficiency and Regulation of a
transformer using Matlab and GUI. We will be using
the values from the OPEN circuit test and short
CIRCUIT test. In this project I have use approaches
to find the efficiency and regulation, first by using
simple code and second by using GUI.
Machine:
A machine is a tool containing one or
more parts that uses energy to perform an intended
action. Machines are usually powered by mechanical,
chemical, thermal, or electrical means, and are often
motorized.
Types of Machines:
 Transformer
 Generator
 Motor
Transformer:
A transformer is an electrical
device that transfers energy between two or more
circuits through electromagnetic induction.
Working and Construction:
A varying current in the transformer's
primary winding creates a varying magnetic flux in
the core and a varying magnetic field impinging on
the secondary winding. This varying magnetic field at
the secondary induces a varying electromotive
force (emf) or voltage in the secondary winding.
Making use of Faraday's Law in conjunction with high
magnetic permeability core properties, transformers
can thus be designed to efficiently
change AC voltages from one voltage level to another
within power networks.
According to faraday’s law of induction, we have
And
Step-Up Transformer:
On a step-up transformer there
are more turns on the secondary coil than the
primary coil. The induced voltage across the
secondary coil is greater than the applied voltage
across the primary coil or in other words the voltage
has been “stepped-up”.
Step-Down Transformer:
A step down
transformer has less turns on the secondary coil that
the primary coil. The induced voltage across the
secondary coil is less the applied voltage across the
primary coil or in other words the voltage is “stepped-
down”.
Efficiency of a Transformer:
Efficiency of a
transformer can be defined as the output power
divided by the input power. As follows
The graph of efficiency vs output power is given
below
Transformer Voltage Regulation:
Voltage
Regulation is a measure of change in the voltage
magnitude between the sending and receiving end of
a component, such as a transmission or distribution
line. Voltage regulation describes the ability of a
system to provide near constant voltage over a wide
range of load conditions.
Voltage regulation of transformer at lagging power
factor,
Voltage regulation of transformer at leading power
factor,
IMPLEMENTING Efficiency and
Regulation IN MATLAB:
1st
Approach Using just M-File:
Code:
close all
clear all
clc
disp('CALCULATING THE TRANSFORMER
EFFICIENCY AND REGULATION')
kva=input('KVA RATING = ');
v1=input('V1 = ');
v2=input('V2 = ');
disp('Enter the vales of OPEN
CIRCUIT')
vo=input('Enter the open cicuit
voltage Vo in volts = ');
io=input('Enter the open cicuit
current Io Ampare = ');
wo=input('Enter the open cicuit
power Wo in Watts = ');
disp('Enter the vales of SHORT
CIRCUIT')
vsc=input('Enter the short cicuit
voltage VSC in Volts= ');
isc=input('Enter the short cicuit
current ISC in Ampare= ');
wsc=input('Enter the short cicuit
power Wsc in Watts = ');
disp('POWER FACTOR')
cosqo=wo/(io*vo)
disp('Component Current')
ic=io*cosqo
disp('Magnetizing Current ')
s=acosd(0.1);
sinqo=sind(s);
im=io*sinqo
disp('Value of Ro')
ro=vo/ic
disp('Reactance Xo')
xo=vo/im
disp('Now For SHORT circuit')
disp('Resistance')
r1e=wsc/(isc*isc)
disp('Impedance')
z1e=vsc/isc
disp('Reactance')
x=r1e*r1e;
y=z1e*z1e;
c=y-x;
x1e=sqrt(c)
z=input('"0" for lagging power
factor and "1" for leading power
factor ');
switch(z)
case 0
cosq2=input('Power Factor on
lagging for efficiency = ');
cosq=input('Power Factor on
lagging for Regulation = ');
disp('VOLTAGE REGULATION OF
A TRANSFORMER')
d=acosd(cosq);
sinq=sind(d);
R=((isc*r1e*cosq+isc*x1e*sinq)/v1)*1
00
case 1
cosq2=input('Power Factor on
leading for efficiency = ');
cosq=input('Power Factor on
leading for Regulation = ');
disp('VOLTAGE REGULATION OF
A TRANSFORMER')
d=acosd(cosq);
sinq=sind(d);
R=((isc*r1e*cosq-
isc*x1e*sinq)/v1)*100
end
disp('EFFICIENCY OF A TRANSFORMER')
n=((kva*cosq2)/(kva*cosq2+wo+wsc))*1
00
for i=1:100
m(i)=(i/100)*((kva*cosq2)/((i/100)*(
kva*cosq2)+wo+wsc*(i/100)^2))*100;
Rg(i)=(((i/100)*isc*r1e*cosq-
(i/100)*isc*x1e*sinq)/v1)*100;
end
subplot(2,1,1)
plot(m);title('Efficiency');
subplot(2,1,2)
plot(Rg);title('Regulation');
After Executing the code and what
parameters are define:
CALCULATING THE TRANSFORMER EFFICIENCY AND
REGULATION
KVA RATING = 5000
V1 = 500
V2 = 250
Enter the vales of OPEN CIRCUIT
Enter the open cicuit voltage Vo in volts = 500
Enter the open cicuit current Io Ampare = 1
Enter the open cicuit power Wo in Watts = 50
Enter the vales of SHORT CIRCUIT
Enter the short cicuit voltage VSC in Volts= 25
Enter the short cicuit current ISC in Ampare= 10
Enter the short cicuit power Wsc in Watts = 60
POWER FACTOR
cosqo =
0.1000
Component Current
ic =
0.1000
Magnetizing Current
im =
0.9950
Value of Ro
ro =
5000
Reactance Xo
xo =
502.5189
Now For SHORT circuit
Resistance
r1e =
0.6000
Impedance
z1e =
2.5000
Reactance
x1e =
2.4269
"0" for lagging power factor and "1" for leading
power factor 0
Power Factor on lagging for efficiency = 0.8
Power Factor on lagging for Regulation = 0.8
VOLTAGE REGULATION OF A TRANSFORMER
R =
3.8723
EFFICIENCY OF A TRANSFORMER
n =
97.3236
Graph:
2nd
Approach using GUI:
Code:
% --- Executes on button press in
pushbutton1.
function
pushbutton1_Callback(hObject,
eventdata, handles)
% hObject handle to pushbutton1
(see GCBO)
0 10 20 30 40 50 60 70 80 90 100
40
60
80
100
Efficiency
0 10 20 30 40 50 60 70 80 90 100
-2
-1.5
-1
-0.5
0
Regulation
% eventdata reserved - to be
defined in a future version of
MATLAB
% handles structure with handles
and user data (see GUIDATA)
kv=str2num(get(handles.kva,'string')
);
pv=str2num(get(handles.v1,'string'))
;
sv=str2num(get(handles.v2,'string'))
;
V_o=str2num(get(handles.vo,'string')
);
P_o=str2num(get(handles.wo,'string')
);
I_o=str2num(get(handles.io,'string')
);
V_s=str2num(get(handles.vse,'string'
));
P_s=str2num(get(handles.wse,'string'
));
I_s=str2num(get(handles.ise,'string'
));
Pf=str2num(get(handles.pf,'string'))
;
%Pf=P_o/(I_o*V_o)
ic=I_o*Pf
s=acosd(0.1);
sinqo=sind(s);
im=I_o*sinqo;
ro=V_o/ic;
xo=V_o/im
r1e=P_s/(I_s*I_s)
z1e=V_s/I_s
x=r1e*r1e;
y=z1e*z1e;
c=y-x;
x1e=sqrt(c);
disp('EFFICIENCY OF A TRANSFORMER')
n=((kv*1000*Pf)/(kv*1000*Pf+P_o+P_s)
)*100
d=acosd(Pf);
sinq=sind(d);
R=((I_s*r1e*Pf-I_s*x1e*sinq)/pv)*100
for i=1:100
m(i)=(i/100)*((kv*1000*Pf)/((i/100)*
(kv*1000*Pf)+P_o+P_s*(i/100)^2))*100
;
Rg(i)=(((i/100)*I_s*r1e*Pf-
(i/100)*I_s*x1e*sinq)/pv)*100;
end
axes(handles.eff)
plot(m);
%title('Efficiency vs %load
current');
xlabel('Percentage Load Current',
'color', [0 0 0.5],'erasemode',
'xor')
ylabel('eta %', 'color', [0 0
0.5], 'erasemode', 'xor')
axes(handles.reg)
plot(Rg);
%title('Regulation vs %load
current');
xlabel('Percentage Load Current',
'color', [0 0 0.5],'erasemode',
'xor')
ylabel('Voltage Regulation',
'color', [0 0 0.5], 'erasemode',
'xor')
PLOT:
The graph show the efficiency and
regulation of a transformer and we can analyze the
efficiency and regulation using graph.
WHAT I LEARN:
 How to implement a transformers equations
in matlab.
 How to find the cosine and sin of radian and
degree. Both have different syntax in matlab.
 How to find the inverse of cosine and sin.
 How efficiency and voltage regulation
behaves in transformers.
 How efficiency is different from voltage
regulation.
 How to find efficiency of a transformer.
 How to find the voltage regulation of a
transformer.
 How to use GUI.
Conclusion:
In the initial state, the efficiency
of a transformer is low as shown in the figure, but it
increase to a stable value as it gets stable. On the
other hand the graph of the regulation is decreasing,
and it gets to the minimum value after short little
time. So we can conclude that for a good transformer
efficiency should be high and on the other hand
regulation should be small.
Using this method we can find any
transformer efficiency and regulation by just entering
the values(parameters) and we will get the efficiency
and regulation, and their graphs. With which we can
analyze that transformer.
References:
 http://driverlayer.com/img/efficiency%20of%
20transformer/20/any
 Signal and system labs Handouts.
 http://www.mathworks.com/help/matlab/ref
/asin.html
 http://www.electricaleasy.com/2014/04/tran
sformer-losses-and-efficiency.html

More Related Content

PPTX
Unit-1 Per Unit System.pptx
PPTX
Synchronous machine
PDF
Electrical machines 2 AC Machines
PPT
Lec # 03 equivalent circuit of a synchronous generator
PPT
Streamer theory of breakdown
PPTX
Power System Analysis Unit - V
PPTX
AC FUNDAMENTALS.pptx
PPTX
Reactive power and voltage control
Unit-1 Per Unit System.pptx
Synchronous machine
Electrical machines 2 AC Machines
Lec # 03 equivalent circuit of a synchronous generator
Streamer theory of breakdown
Power System Analysis Unit - V
AC FUNDAMENTALS.pptx
Reactive power and voltage control

What's hot (20)

PPTX
PWM RECTIFIER
PPT
Differential protection
PPTX
Ppt of ehv ac transmission
PPTX
Unit 1 Power System Stability
PPTX
Three phase transformer
PPTX
Ac voltage
PPTX
Power system protection
PPTX
Reactive power compensation
PDF
Static relay
PPT
Per unit system
PPT
3.magnetically coupled circuit
PPTX
Line commutated converters
PPTX
MARX Generator.pptx
PDF
Chapter 4 Inverters.pdf
PPTX
Protection & switchgear
PDF
Power Electronics Chopper (dc – dc converter)
PPTX
Flying Capacitor Multi Level Inverter
PPTX
BREAKDOWN IN LIQUIDS_NDS
PPT
Measurement of high_voltage_and_high_currentunit_iv_full_version
PPTX
Active, reactive and apparent power
PWM RECTIFIER
Differential protection
Ppt of ehv ac transmission
Unit 1 Power System Stability
Three phase transformer
Ac voltage
Power system protection
Reactive power compensation
Static relay
Per unit system
3.magnetically coupled circuit
Line commutated converters
MARX Generator.pptx
Chapter 4 Inverters.pdf
Protection & switchgear
Power Electronics Chopper (dc – dc converter)
Flying Capacitor Multi Level Inverter
BREAKDOWN IN LIQUIDS_NDS
Measurement of high_voltage_and_high_currentunit_iv_full_version
Active, reactive and apparent power
Ad

Viewers also liked (20)

PPTX
Determination of Voltage Regulation and Power system losses
PPTX
Voltage Regulation
PPTX
O.C & S.C Test, Sumpner or back to back Test, Condition for maximum efficienc...
PPTX
Sumpners Test of Transformers
PPTX
Methods of Voltage Control
PPTX
Method of voltage control
PPT
Sc and oc test on transformer
PPTX
Power systems voltage and power control
PPTX
Reactive power compensation
PDF
Transformer testing
PPTX
Presentation1
PPTX
Load Frequency Control of Two Area System
PPTX
Grid Voltage Regulation
PPTX
Reactive power management
PPTX
Power System Operation and Control
PPTX
Economic load dispatch
PPTX
Reactive power consumption in modern power system
PPTX
open circuit and short circuit test on transformer
PPTX
HIGH VOL TAGE TESTING OF TRANSFORMER BY HARI SHANKAR SINGH
PPTX
Reactive power compensation
Determination of Voltage Regulation and Power system losses
Voltage Regulation
O.C & S.C Test, Sumpner or back to back Test, Condition for maximum efficienc...
Sumpners Test of Transformers
Methods of Voltage Control
Method of voltage control
Sc and oc test on transformer
Power systems voltage and power control
Reactive power compensation
Transformer testing
Presentation1
Load Frequency Control of Two Area System
Grid Voltage Regulation
Reactive power management
Power System Operation and Control
Economic load dispatch
Reactive power consumption in modern power system
open circuit and short circuit test on transformer
HIGH VOL TAGE TESTING OF TRANSFORMER BY HARI SHANKAR SINGH
Reactive power compensation
Ad

Similar to Calculating the efficiency and regulation of transformer using matlab (20)

PPTX
Ch18 "Case Study 3: DC-DC Power Converter"
PDF
Grid-Connection Control and Simulation of PMSG Wind Power System Based on Mul...
PPTX
Open circuit and Short circuit Test Presentaion
PDF
Sensors and Actuators Engineering System Instrumentation 2nd Silva Solution M...
PDF
Sensors and Actuators Engineering System Instrumentation 2nd Silva Solution M...
PDF
Sensors and Actuators Engineering System Instrumentation 2nd Silva Solution M...
PDF
Sensors and Actuators Engineering System Instrumentation 2nd Silva Solution M...
PDF
Sensors and Actuators Engineering System Instrumentation 2nd Silva Solution M...
PDF
Sensors and Actuators Engineering System Instrumentation 2nd Silva Solution M...
PDF
DOCX
Dependent Current Sources
PDF
Buck converter controlled with ZAD and FPIC for DC-DC signal regulation
PDF
International Journal of Engineering Research and Development
PDF
On the dynamic behavior of the current in the condenser of a boost converter ...
DOCX
Design & Construction of Switched Mode Power Supplies
PDF
Edc unit 2
PDF
Total Harmonic Distortion of Dodecagonal Space Vector Modulation
PDF
electrical-engineering_engineering_power-electronics_controlled-rectifiers_no...
PDF
Small signal analysis based closed loop control of buck converter
Ch18 "Case Study 3: DC-DC Power Converter"
Grid-Connection Control and Simulation of PMSG Wind Power System Based on Mul...
Open circuit and Short circuit Test Presentaion
Sensors and Actuators Engineering System Instrumentation 2nd Silva Solution M...
Sensors and Actuators Engineering System Instrumentation 2nd Silva Solution M...
Sensors and Actuators Engineering System Instrumentation 2nd Silva Solution M...
Sensors and Actuators Engineering System Instrumentation 2nd Silva Solution M...
Sensors and Actuators Engineering System Instrumentation 2nd Silva Solution M...
Sensors and Actuators Engineering System Instrumentation 2nd Silva Solution M...
Dependent Current Sources
Buck converter controlled with ZAD and FPIC for DC-DC signal regulation
International Journal of Engineering Research and Development
On the dynamic behavior of the current in the condenser of a boost converter ...
Design & Construction of Switched Mode Power Supplies
Edc unit 2
Total Harmonic Distortion of Dodecagonal Space Vector Modulation
electrical-engineering_engineering_power-electronics_controlled-rectifiers_no...
Small signal analysis based closed loop control of buck converter

More from Mafaz Ahmed (20)

PDF
A course in fuzzy systems and control by li xin wang solution manual
PPTX
INTERACTIVE FLOOR PROJECTION SYSTEM
PDF
Series and parallel operation of power devices
PDF
Series and parallel connection of igbt
PDF
Series and parallel connection of mosfet
PDF
Electronic Instrumentation and Measurement Solution Manual
PPTX
Project loon
PPTX
Internet of Things
PPTX
Interoperability among various Generations of Telecom Technologies
PPTX
Dc motor drive
PPTX
Energy Crisis, Different Energy Sources and Role of Power Electronics
PPTX
RADIO ON RADIO OVER FIBER EFFICIENT FRONTHAULING FOR SMALL CELLS AND MOVING C...
DOCX
Temperature Control Fan Using 8051 Microcontroller
PPTX
Project Management Project
DOCX
Speed Control of DC Motor
DOCX
Low drift high impedance jfet dc voltmeter
DOCX
Real Time Clock Interfacing with FPGA
PDF
Tweety modelling in pro engineering
PDF
Truck modelling in pro engineering
PDF
Bicycle modelling in pro engineering
A course in fuzzy systems and control by li xin wang solution manual
INTERACTIVE FLOOR PROJECTION SYSTEM
Series and parallel operation of power devices
Series and parallel connection of igbt
Series and parallel connection of mosfet
Electronic Instrumentation and Measurement Solution Manual
Project loon
Internet of Things
Interoperability among various Generations of Telecom Technologies
Dc motor drive
Energy Crisis, Different Energy Sources and Role of Power Electronics
RADIO ON RADIO OVER FIBER EFFICIENT FRONTHAULING FOR SMALL CELLS AND MOVING C...
Temperature Control Fan Using 8051 Microcontroller
Project Management Project
Speed Control of DC Motor
Low drift high impedance jfet dc voltmeter
Real Time Clock Interfacing with FPGA
Tweety modelling in pro engineering
Truck modelling in pro engineering
Bicycle modelling in pro engineering

Recently uploaded (20)

PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PPT
Project quality management in manufacturing
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PDF
Embodied AI: Ushering in the Next Era of Intelligent Systems
PDF
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
PPTX
Strings in CPP - Strings in C++ are sequences of characters used to store and...
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPTX
Lesson 3_Tessellation.pptx finite Mathematics
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
PDF
PPT on Performance Review to get promotions
PPTX
OOP with Java - Java Introduction (Basics)
PPTX
additive manufacturing of ss316l using mig welding
PPTX
UNIT 4 Total Quality Management .pptx
PPTX
bas. eng. economics group 4 presentation 1.pptx
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
Project quality management in manufacturing
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
Embodied AI: Ushering in the Next Era of Intelligent Systems
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
Strings in CPP - Strings in C++ are sequences of characters used to store and...
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
Lesson 3_Tessellation.pptx finite Mathematics
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
PPT on Performance Review to get promotions
OOP with Java - Java Introduction (Basics)
additive manufacturing of ss316l using mig welding
UNIT 4 Total Quality Management .pptx
bas. eng. economics group 4 presentation 1.pptx
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
Mitigating Risks through Effective Management for Enhancing Organizational Pe...

Calculating the efficiency and regulation of transformer using matlab

  • 1. Name : Mafaz Ahmed CALCULATING THE EFFICIENCY AND REGULATION OF TRANSFORMER
  • 2. Abstract: In this project the ideal have been develop to find the Efficiency and Regulation of a transformer using Matlab and GUI. We will be using the values from the OPEN circuit test and short CIRCUIT test. In this project I have use approaches to find the efficiency and regulation, first by using simple code and second by using GUI. Machine: A machine is a tool containing one or more parts that uses energy to perform an intended action. Machines are usually powered by mechanical, chemical, thermal, or electrical means, and are often motorized. Types of Machines:  Transformer  Generator  Motor Transformer: A transformer is an electrical device that transfers energy between two or more circuits through electromagnetic induction. Working and Construction: A varying current in the transformer's primary winding creates a varying magnetic flux in the core and a varying magnetic field impinging on the secondary winding. This varying magnetic field at the secondary induces a varying electromotive force (emf) or voltage in the secondary winding. Making use of Faraday's Law in conjunction with high magnetic permeability core properties, transformers can thus be designed to efficiently change AC voltages from one voltage level to another within power networks. According to faraday’s law of induction, we have And
  • 3. Step-Up Transformer: On a step-up transformer there are more turns on the secondary coil than the primary coil. The induced voltage across the secondary coil is greater than the applied voltage across the primary coil or in other words the voltage has been “stepped-up”. Step-Down Transformer: A step down transformer has less turns on the secondary coil that the primary coil. The induced voltage across the secondary coil is less the applied voltage across the primary coil or in other words the voltage is “stepped- down”. Efficiency of a Transformer: Efficiency of a transformer can be defined as the output power divided by the input power. As follows The graph of efficiency vs output power is given below
  • 4. Transformer Voltage Regulation: Voltage Regulation is a measure of change in the voltage magnitude between the sending and receiving end of a component, such as a transmission or distribution line. Voltage regulation describes the ability of a system to provide near constant voltage over a wide range of load conditions. Voltage regulation of transformer at lagging power factor, Voltage regulation of transformer at leading power factor, IMPLEMENTING Efficiency and Regulation IN MATLAB: 1st Approach Using just M-File: Code: close all clear all clc disp('CALCULATING THE TRANSFORMER EFFICIENCY AND REGULATION') kva=input('KVA RATING = '); v1=input('V1 = '); v2=input('V2 = '); disp('Enter the vales of OPEN CIRCUIT') vo=input('Enter the open cicuit voltage Vo in volts = '); io=input('Enter the open cicuit current Io Ampare = '); wo=input('Enter the open cicuit power Wo in Watts = '); disp('Enter the vales of SHORT CIRCUIT') vsc=input('Enter the short cicuit voltage VSC in Volts= '); isc=input('Enter the short cicuit current ISC in Ampare= '); wsc=input('Enter the short cicuit power Wsc in Watts = '); disp('POWER FACTOR') cosqo=wo/(io*vo) disp('Component Current') ic=io*cosqo disp('Magnetizing Current ') s=acosd(0.1); sinqo=sind(s); im=io*sinqo disp('Value of Ro') ro=vo/ic disp('Reactance Xo') xo=vo/im disp('Now For SHORT circuit') disp('Resistance')
  • 5. r1e=wsc/(isc*isc) disp('Impedance') z1e=vsc/isc disp('Reactance') x=r1e*r1e; y=z1e*z1e; c=y-x; x1e=sqrt(c) z=input('"0" for lagging power factor and "1" for leading power factor '); switch(z) case 0 cosq2=input('Power Factor on lagging for efficiency = '); cosq=input('Power Factor on lagging for Regulation = '); disp('VOLTAGE REGULATION OF A TRANSFORMER') d=acosd(cosq); sinq=sind(d); R=((isc*r1e*cosq+isc*x1e*sinq)/v1)*1 00 case 1 cosq2=input('Power Factor on leading for efficiency = '); cosq=input('Power Factor on leading for Regulation = '); disp('VOLTAGE REGULATION OF A TRANSFORMER') d=acosd(cosq); sinq=sind(d); R=((isc*r1e*cosq- isc*x1e*sinq)/v1)*100 end disp('EFFICIENCY OF A TRANSFORMER') n=((kva*cosq2)/(kva*cosq2+wo+wsc))*1 00 for i=1:100 m(i)=(i/100)*((kva*cosq2)/((i/100)*( kva*cosq2)+wo+wsc*(i/100)^2))*100; Rg(i)=(((i/100)*isc*r1e*cosq- (i/100)*isc*x1e*sinq)/v1)*100; end subplot(2,1,1) plot(m);title('Efficiency'); subplot(2,1,2) plot(Rg);title('Regulation'); After Executing the code and what parameters are define: CALCULATING THE TRANSFORMER EFFICIENCY AND REGULATION KVA RATING = 5000 V1 = 500 V2 = 250 Enter the vales of OPEN CIRCUIT Enter the open cicuit voltage Vo in volts = 500 Enter the open cicuit current Io Ampare = 1 Enter the open cicuit power Wo in Watts = 50 Enter the vales of SHORT CIRCUIT Enter the short cicuit voltage VSC in Volts= 25 Enter the short cicuit current ISC in Ampare= 10 Enter the short cicuit power Wsc in Watts = 60 POWER FACTOR cosqo = 0.1000 Component Current ic = 0.1000 Magnetizing Current im =
  • 6. 0.9950 Value of Ro ro = 5000 Reactance Xo xo = 502.5189 Now For SHORT circuit Resistance r1e = 0.6000 Impedance z1e = 2.5000 Reactance x1e = 2.4269 "0" for lagging power factor and "1" for leading power factor 0 Power Factor on lagging for efficiency = 0.8 Power Factor on lagging for Regulation = 0.8 VOLTAGE REGULATION OF A TRANSFORMER R = 3.8723 EFFICIENCY OF A TRANSFORMER n = 97.3236 Graph: 2nd Approach using GUI: Code: % --- Executes on button press in pushbutton1. function pushbutton1_Callback(hObject, eventdata, handles) % hObject handle to pushbutton1 (see GCBO) 0 10 20 30 40 50 60 70 80 90 100 40 60 80 100 Efficiency 0 10 20 30 40 50 60 70 80 90 100 -2 -1.5 -1 -0.5 0 Regulation
  • 7. % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) kv=str2num(get(handles.kva,'string') ); pv=str2num(get(handles.v1,'string')) ; sv=str2num(get(handles.v2,'string')) ; V_o=str2num(get(handles.vo,'string') ); P_o=str2num(get(handles.wo,'string') ); I_o=str2num(get(handles.io,'string') ); V_s=str2num(get(handles.vse,'string' )); P_s=str2num(get(handles.wse,'string' )); I_s=str2num(get(handles.ise,'string' )); Pf=str2num(get(handles.pf,'string')) ; %Pf=P_o/(I_o*V_o) ic=I_o*Pf s=acosd(0.1); sinqo=sind(s); im=I_o*sinqo; ro=V_o/ic; xo=V_o/im r1e=P_s/(I_s*I_s) z1e=V_s/I_s x=r1e*r1e; y=z1e*z1e; c=y-x; x1e=sqrt(c); disp('EFFICIENCY OF A TRANSFORMER') n=((kv*1000*Pf)/(kv*1000*Pf+P_o+P_s) )*100 d=acosd(Pf); sinq=sind(d); R=((I_s*r1e*Pf-I_s*x1e*sinq)/pv)*100 for i=1:100 m(i)=(i/100)*((kv*1000*Pf)/((i/100)* (kv*1000*Pf)+P_o+P_s*(i/100)^2))*100 ; Rg(i)=(((i/100)*I_s*r1e*Pf- (i/100)*I_s*x1e*sinq)/pv)*100; end axes(handles.eff) plot(m); %title('Efficiency vs %load current'); xlabel('Percentage Load Current', 'color', [0 0 0.5],'erasemode', 'xor') ylabel('eta %', 'color', [0 0 0.5], 'erasemode', 'xor') axes(handles.reg) plot(Rg); %title('Regulation vs %load current'); xlabel('Percentage Load Current', 'color', [0 0 0.5],'erasemode', 'xor') ylabel('Voltage Regulation', 'color', [0 0 0.5], 'erasemode', 'xor') PLOT: The graph show the efficiency and regulation of a transformer and we can analyze the efficiency and regulation using graph.
  • 8. WHAT I LEARN:  How to implement a transformers equations in matlab.  How to find the cosine and sin of radian and degree. Both have different syntax in matlab.  How to find the inverse of cosine and sin.  How efficiency and voltage regulation behaves in transformers.  How efficiency is different from voltage regulation.  How to find efficiency of a transformer.  How to find the voltage regulation of a transformer.  How to use GUI. Conclusion: In the initial state, the efficiency of a transformer is low as shown in the figure, but it increase to a stable value as it gets stable. On the other hand the graph of the regulation is decreasing, and it gets to the minimum value after short little time. So we can conclude that for a good transformer efficiency should be high and on the other hand regulation should be small. Using this method we can find any transformer efficiency and regulation by just entering the values(parameters) and we will get the efficiency and regulation, and their graphs. With which we can analyze that transformer. References:  http://driverlayer.com/img/efficiency%20of% 20transformer/20/any  Signal and system labs Handouts.  http://www.mathworks.com/help/matlab/ref /asin.html  http://www.electricaleasy.com/2014/04/tran sformer-losses-and-efficiency.html