SlideShare a Scribd company logo
1 of 8
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

What's hot

Generation of High D.C. Voltage (HVDC generation)
Generation of High D.C. Voltage (HVDC generation)Generation of High D.C. Voltage (HVDC generation)
Generation of High D.C. Voltage (HVDC generation)RP6997
 
3 reactive power and voltage control
3 reactive power and voltage control3 reactive power and voltage control
3 reactive power and voltage control8141245710
 
Unit 1 Power System Stability
Unit 1 Power System Stability Unit 1 Power System Stability
Unit 1 Power System Stability SANTOSH GADEKAR
 
Determination of Voltage Regulation and Power system losses
Determination of Voltage Regulation and Power system lossesDetermination of Voltage Regulation and Power system losses
Determination of Voltage Regulation and Power system lossesManish Sadhu
 
Methods of Voltage Control
Methods of Voltage ControlMethods of Voltage Control
Methods of Voltage ControlYashvi Mehta
 
Automatic Generation Control
Automatic Generation ControlAutomatic Generation Control
Automatic Generation ControlBirju Besra
 
dc to dc-converter
dc to dc-converterdc to dc-converter
dc to dc-converterStudent
 
Ee 791 drives lab maual
Ee 791 drives lab maualEe 791 drives lab maual
Ee 791 drives lab maualDivya15121983
 
Measurement of high_voltage_and_high_currentunit_iv_full_version
Measurement of high_voltage_and_high_currentunit_iv_full_versionMeasurement of high_voltage_and_high_currentunit_iv_full_version
Measurement of high_voltage_and_high_currentunit_iv_full_versionAman Ansari
 
Unit 4 Automatic Generation Control
Unit 4 Automatic Generation ControlUnit 4 Automatic Generation Control
Unit 4 Automatic Generation ControlSANTOSH GADEKAR
 
Cascaded multilevel inverter
Cascaded multilevel inverterCascaded multilevel inverter
Cascaded multilevel inverterAJAL A J
 
Power control and power flow analysis
Power control and power flow analysisPower control and power flow analysis
Power control and power flow analysisjawaharramaya
 
Thyristor switched capacitor PPT
Thyristor switched capacitor PPTThyristor switched capacitor PPT
Thyristor switched capacitor PPTKLS' S GIT, BELGAUM
 
Tripping and control of impulse generators
Tripping and control of impulse generatorsTripping and control of impulse generators
Tripping and control of impulse generatorsFariza Zahari
 
Dc Choppers
Dc ChoppersDc Choppers
Dc Choppersstooty s
 

What's hot (20)

Generation of High D.C. Voltage (HVDC generation)
Generation of High D.C. Voltage (HVDC generation)Generation of High D.C. Voltage (HVDC generation)
Generation of High D.C. Voltage (HVDC generation)
 
3 reactive power and voltage control
3 reactive power and voltage control3 reactive power and voltage control
3 reactive power and voltage control
 
Unit 1 Power System Stability
Unit 1 Power System Stability Unit 1 Power System Stability
Unit 1 Power System Stability
 
Determination of Voltage Regulation and Power system losses
Determination of Voltage Regulation and Power system lossesDetermination of Voltage Regulation and Power system losses
Determination of Voltage Regulation and Power system losses
 
Methods of Voltage Control
Methods of Voltage ControlMethods of Voltage Control
Methods of Voltage Control
 
Automatic Generation Control
Automatic Generation ControlAutomatic Generation Control
Automatic Generation Control
 
dc to dc-converter
dc to dc-converterdc to dc-converter
dc to dc-converter
 
TCSC
TCSCTCSC
TCSC
 
Ee 791 drives lab maual
Ee 791 drives lab maualEe 791 drives lab maual
Ee 791 drives lab maual
 
Single Phase Converter
Single Phase ConverterSingle Phase Converter
Single Phase Converter
 
Statcom
StatcomStatcom
Statcom
 
Measurement of high_voltage_and_high_currentunit_iv_full_version
Measurement of high_voltage_and_high_currentunit_iv_full_versionMeasurement of high_voltage_and_high_currentunit_iv_full_version
Measurement of high_voltage_and_high_currentunit_iv_full_version
 
Unit 4 Automatic Generation Control
Unit 4 Automatic Generation ControlUnit 4 Automatic Generation Control
Unit 4 Automatic Generation Control
 
Cascaded multilevel inverter
Cascaded multilevel inverterCascaded multilevel inverter
Cascaded multilevel inverter
 
Power control and power flow analysis
Power control and power flow analysisPower control and power flow analysis
Power control and power flow analysis
 
Power electronics application: FACTS controller
Power electronics application: FACTS controller   Power electronics application: FACTS controller
Power electronics application: FACTS controller
 
Thyristor switched capacitor PPT
Thyristor switched capacitor PPTThyristor switched capacitor PPT
Thyristor switched capacitor PPT
 
Tripping and control of impulse generators
Tripping and control of impulse generatorsTripping and control of impulse generators
Tripping and control of impulse generators
 
Dc fed chopper
Dc fed chopperDc fed chopper
Dc fed chopper
 
Dc Choppers
Dc ChoppersDc Choppers
Dc Choppers
 

Viewers also liked

O.C & S.C Test, Sumpner or back to back Test, Condition for maximum efficienc...
O.C & S.C Test, Sumpner or back to back Test, Condition for maximum efficienc...O.C & S.C Test, Sumpner or back to back Test, Condition for maximum efficienc...
O.C & S.C Test, Sumpner or back to back Test, Condition for maximum efficienc...Abhishek Choksi
 
Sumpners Test of Transformers
Sumpners Test of TransformersSumpners Test of Transformers
Sumpners Test of TransformersGirin Chutia
 
Method of voltage control
Method of voltage controlMethod of voltage control
Method of voltage controlVaibhav Singh
 
Sc and oc test on transformer
Sc and oc test on transformerSc and oc test on transformer
Sc and oc test on transformerPooja Dubey
 
Power systems voltage and power control
Power systems voltage and power controlPower systems voltage and power control
Power systems voltage and power controlCaner Göksel Sonuzun
 
Transformer testing
Transformer testingTransformer testing
Transformer testingajayknows
 
Load Frequency Control of Two Area System
Load Frequency Control of Two Area SystemLoad Frequency Control of Two Area System
Load Frequency Control of Two Area SystemManash Deka
 
Grid Voltage Regulation
Grid Voltage RegulationGrid Voltage Regulation
Grid Voltage RegulationAditya Nehwal
 
Power System Operation and Control
Power System Operation and ControlPower System Operation and Control
Power System Operation and ControlBiswajit Pratihari
 
Economic load dispatch
Economic load  dispatchEconomic load  dispatch
Economic load dispatchDeepak John
 
Reactive power consumption in modern power system
Reactive power consumption in modern power systemReactive power consumption in modern power system
Reactive power consumption in modern power systemRahuldey1991
 
open circuit and short circuit test on transformer
open circuit and short circuit test on transformeropen circuit and short circuit test on transformer
open circuit and short circuit test on transformerMILAN MANAVAR
 
HIGH VOL TAGE TESTING OF TRANSFORMER BY HARI SHANKAR SINGH
HIGH VOL TAGE TESTING OF TRANSFORMER BY HARI SHANKAR SINGHHIGH VOL TAGE TESTING OF TRANSFORMER BY HARI SHANKAR SINGH
HIGH VOL TAGE TESTING OF TRANSFORMER BY HARI SHANKAR SINGHShankar Singh
 
Examples Of My Work
Examples Of My WorkExamples Of My Work
Examples Of My Workgautamvirdi
 

Viewers also liked (20)

Voltage Regulation
Voltage RegulationVoltage Regulation
Voltage Regulation
 
O.C & S.C Test, Sumpner or back to back Test, Condition for maximum efficienc...
O.C & S.C Test, Sumpner or back to back Test, Condition for maximum efficienc...O.C & S.C Test, Sumpner or back to back Test, Condition for maximum efficienc...
O.C & S.C Test, Sumpner or back to back Test, Condition for maximum efficienc...
 
Sumpners Test of Transformers
Sumpners Test of TransformersSumpners Test of Transformers
Sumpners Test of Transformers
 
Method of voltage control
Method of voltage controlMethod of voltage control
Method of voltage control
 
Sc and oc test on transformer
Sc and oc test on transformerSc and oc test on transformer
Sc and oc test on transformer
 
Power systems voltage and power control
Power systems voltage and power controlPower systems voltage and power control
Power systems voltage and power control
 
Reactive power compensation
Reactive power compensationReactive power compensation
Reactive power compensation
 
Transformer testing
Transformer testingTransformer testing
Transformer testing
 
Presentation1
Presentation1Presentation1
Presentation1
 
Load Frequency Control of Two Area System
Load Frequency Control of Two Area SystemLoad Frequency Control of Two Area System
Load Frequency Control of Two Area System
 
Grid Voltage Regulation
Grid Voltage RegulationGrid Voltage Regulation
Grid Voltage Regulation
 
Reactive power management
Reactive power managementReactive power management
Reactive power management
 
Power System Operation and Control
Power System Operation and ControlPower System Operation and Control
Power System Operation and Control
 
Economic load dispatch
Economic load  dispatchEconomic load  dispatch
Economic load dispatch
 
Reactive power consumption in modern power system
Reactive power consumption in modern power systemReactive power consumption in modern power system
Reactive power consumption in modern power system
 
open circuit and short circuit test on transformer
open circuit and short circuit test on transformeropen circuit and short circuit test on transformer
open circuit and short circuit test on transformer
 
HIGH VOL TAGE TESTING OF TRANSFORMER BY HARI SHANKAR SINGH
HIGH VOL TAGE TESTING OF TRANSFORMER BY HARI SHANKAR SINGHHIGH VOL TAGE TESTING OF TRANSFORMER BY HARI SHANKAR SINGH
HIGH VOL TAGE TESTING OF TRANSFORMER BY HARI SHANKAR SINGH
 
Reactive power compensation
Reactive power compensationReactive power compensation
Reactive power compensation
 
Transformer
TransformerTransformer
Transformer
 
Examples Of My Work
Examples Of My WorkExamples Of My Work
Examples Of My Work
 

Similar to Calculating the efficiency and regulation of transformer using matlab

Ch18 "Case Study 3: DC-DC Power Converter"
Ch18 "Case Study 3: DC-DC Power Converter"Ch18 "Case Study 3: DC-DC Power Converter"
Ch18 "Case Study 3: DC-DC Power Converter"Aya Mahmoud
 
Grid-Connection Control and Simulation of PMSG Wind Power System Based on Mul...
Grid-Connection Control and Simulation of PMSG Wind Power System Based on Mul...Grid-Connection Control and Simulation of PMSG Wind Power System Based on Mul...
Grid-Connection Control and Simulation of PMSG Wind Power System Based on Mul...ijsrd.com
 
Open circuit and Short circuit Test Presentaion
Open circuit and Short circuit Test PresentaionOpen circuit and Short circuit Test Presentaion
Open circuit and Short circuit Test PresentaionLalitGoyal27
 
Buck converter controlled with ZAD and FPIC for DC-DC signal regulation
Buck converter controlled with ZAD and FPIC for DC-DC signal regulationBuck converter controlled with ZAD and FPIC for DC-DC signal regulation
Buck converter controlled with ZAD and FPIC for DC-DC signal regulationTELKOMNIKA JOURNAL
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentIJERD Editor
 
On the dynamic behavior of the current in the condenser of a boost converter ...
On the dynamic behavior of the current in the condenser of a boost converter ...On the dynamic behavior of the current in the condenser of a boost converter ...
On the dynamic behavior of the current in the condenser of a boost converter ...TELKOMNIKA JOURNAL
 
Design & Construction of Switched Mode Power Supplies
Design & Construction of Switched Mode Power Supplies Design & Construction of Switched Mode Power Supplies
Design & Construction of Switched Mode Power Supplies Sachin Mehta
 
Total Harmonic Distortion of Dodecagonal Space Vector Modulation
Total Harmonic Distortion of Dodecagonal Space Vector ModulationTotal Harmonic Distortion of Dodecagonal Space Vector Modulation
Total Harmonic Distortion of Dodecagonal Space Vector ModulationIJPEDS-IAES
 
electrical-engineering_engineering_power-electronics_controlled-rectifiers_no...
electrical-engineering_engineering_power-electronics_controlled-rectifiers_no...electrical-engineering_engineering_power-electronics_controlled-rectifiers_no...
electrical-engineering_engineering_power-electronics_controlled-rectifiers_no...LucasMogaka
 
Small signal analysis based closed loop control of buck converter
Small signal analysis based closed loop control of buck converterSmall signal analysis based closed loop control of buck converter
Small signal analysis based closed loop control of buck converterRamaraochowdary Kantipudi
 
Inductorless DC-AC Cascaded H-bridge Multilevel Boost Inverter for Electric/...
Inductorless DC-AC Cascaded H-bridge MultilevelBoost Inverter for Electric/...Inductorless DC-AC Cascaded H-bridge MultilevelBoost Inverter for Electric/...
Inductorless DC-AC Cascaded H-bridge Multilevel Boost Inverter for Electric/...mkanth
 
236793460 ee6361-electric-circuit-lab-docx
236793460 ee6361-electric-circuit-lab-docx236793460 ee6361-electric-circuit-lab-docx
236793460 ee6361-electric-circuit-lab-docxhomeworkping3
 
modeling of three phase rectifier
modeling of three phase rectifiermodeling of three phase rectifier
modeling of three phase rectifierusic123
 

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

Ch18 "Case Study 3: DC-DC Power Converter"
Ch18 "Case Study 3: DC-DC Power Converter"Ch18 "Case Study 3: DC-DC Power Converter"
Ch18 "Case Study 3: DC-DC Power Converter"
 
Grid-Connection Control and Simulation of PMSG Wind Power System Based on Mul...
Grid-Connection Control and Simulation of PMSG Wind Power System Based on Mul...Grid-Connection Control and Simulation of PMSG Wind Power System Based on Mul...
Grid-Connection Control and Simulation of PMSG Wind Power System Based on Mul...
 
Open circuit and Short circuit Test Presentaion
Open circuit and Short circuit Test PresentaionOpen circuit and Short circuit Test Presentaion
Open circuit and Short circuit Test Presentaion
 
Analysis
AnalysisAnalysis
Analysis
 
Dependent Current Sources
Dependent Current Sources Dependent Current Sources
Dependent Current Sources
 
Buck converter controlled with ZAD and FPIC for DC-DC signal regulation
Buck converter controlled with ZAD and FPIC for DC-DC signal regulationBuck converter controlled with ZAD and FPIC for DC-DC signal regulation
Buck converter controlled with ZAD and FPIC for DC-DC signal regulation
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 
On the dynamic behavior of the current in the condenser of a boost converter ...
On the dynamic behavior of the current in the condenser of a boost converter ...On the dynamic behavior of the current in the condenser of a boost converter ...
On the dynamic behavior of the current in the condenser of a boost converter ...
 
Design & Construction of Switched Mode Power Supplies
Design & Construction of Switched Mode Power Supplies Design & Construction of Switched Mode Power Supplies
Design & Construction of Switched Mode Power Supplies
 
Edc unit 2
Edc unit 2Edc unit 2
Edc unit 2
 
Edcqnaunit 2
Edcqnaunit 2Edcqnaunit 2
Edcqnaunit 2
 
Total Harmonic Distortion of Dodecagonal Space Vector Modulation
Total Harmonic Distortion of Dodecagonal Space Vector ModulationTotal Harmonic Distortion of Dodecagonal Space Vector Modulation
Total Harmonic Distortion of Dodecagonal Space Vector Modulation
 
electrical-engineering_engineering_power-electronics_controlled-rectifiers_no...
electrical-engineering_engineering_power-electronics_controlled-rectifiers_no...electrical-engineering_engineering_power-electronics_controlled-rectifiers_no...
electrical-engineering_engineering_power-electronics_controlled-rectifiers_no...
 
Small signal analysis based closed loop control of buck converter
Small signal analysis based closed loop control of buck converterSmall signal analysis based closed loop control of buck converter
Small signal analysis based closed loop control of buck converter
 
A010220109
A010220109A010220109
A010220109
 
Inductorless DC-AC Cascaded H-bridge Multilevel Boost Inverter for Electric/...
Inductorless DC-AC Cascaded H-bridge MultilevelBoost Inverter for Electric/...Inductorless DC-AC Cascaded H-bridge MultilevelBoost Inverter for Electric/...
Inductorless DC-AC Cascaded H-bridge Multilevel Boost Inverter for Electric/...
 
Operation and Control of Inductive Wireless Power Transfer
Operation and Control of Inductive Wireless Power Transfer Operation and Control of Inductive Wireless Power Transfer
Operation and Control of Inductive Wireless Power Transfer
 
236793460 ee6361-electric-circuit-lab-docx
236793460 ee6361-electric-circuit-lab-docx236793460 ee6361-electric-circuit-lab-docx
236793460 ee6361-electric-circuit-lab-docx
 
Control Methods on Three-phase Power Converters in Photovoltaic Systems
Control Methods on Three-phase Power Converters in Photovoltaic SystemsControl Methods on Three-phase Power Converters in Photovoltaic Systems
Control Methods on Three-phase Power Converters in Photovoltaic Systems
 
modeling of three phase rectifier
modeling of three phase rectifiermodeling of three phase rectifier
modeling of three phase rectifier
 

More from Mafaz Ahmed

A course in fuzzy systems and control by li xin wang solution manual
A course in fuzzy systems and control by li xin wang solution manualA course in fuzzy systems and control by li xin wang solution manual
A course in fuzzy systems and control by li xin wang solution manualMafaz Ahmed
 
INTERACTIVE FLOOR PROJECTION SYSTEM
INTERACTIVE FLOOR PROJECTION  SYSTEMINTERACTIVE FLOOR PROJECTION  SYSTEM
INTERACTIVE FLOOR PROJECTION SYSTEMMafaz Ahmed
 
Series and parallel operation of power devices
Series and parallel operation of power devicesSeries and parallel operation of power devices
Series and parallel operation of power devicesMafaz Ahmed
 
Series and parallel connection of igbt
Series and parallel connection of igbtSeries and parallel connection of igbt
Series and parallel connection of igbtMafaz Ahmed
 
Series and parallel connection of mosfet
Series and parallel connection of mosfetSeries and parallel connection of mosfet
Series and parallel connection of mosfetMafaz Ahmed
 
Electronic Instrumentation and Measurement Solution Manual
Electronic Instrumentation and Measurement Solution ManualElectronic Instrumentation and Measurement Solution Manual
Electronic Instrumentation and Measurement Solution ManualMafaz Ahmed
 
Internet of Things
Internet of ThingsInternet of Things
Internet of ThingsMafaz Ahmed
 
Interoperability among various Generations of Telecom Technologies
Interoperability among various Generations of Telecom TechnologiesInteroperability among various Generations of Telecom Technologies
Interoperability among various Generations of Telecom TechnologiesMafaz Ahmed
 
Energy Crisis, Different Energy Sources and Role of Power Electronics
Energy Crisis, Different Energy Sources and Role of Power ElectronicsEnergy Crisis, Different Energy Sources and Role of Power Electronics
Energy Crisis, Different Energy Sources and Role of Power ElectronicsMafaz Ahmed
 
RADIO ON RADIO OVER FIBER EFFICIENT FRONTHAULING FOR SMALL CELLS AND MOVING C...
RADIO ON RADIO OVER FIBER EFFICIENT FRONTHAULING FOR SMALL CELLS AND MOVING C...RADIO ON RADIO OVER FIBER EFFICIENT FRONTHAULING FOR SMALL CELLS AND MOVING C...
RADIO ON RADIO OVER FIBER EFFICIENT FRONTHAULING FOR SMALL CELLS AND MOVING C...Mafaz Ahmed
 
Temperature Control Fan Using 8051 Microcontroller
Temperature Control Fan Using 8051 MicrocontrollerTemperature Control Fan Using 8051 Microcontroller
Temperature Control Fan Using 8051 MicrocontrollerMafaz Ahmed
 
Project Management Project
Project Management ProjectProject Management Project
Project Management ProjectMafaz Ahmed
 
Speed Control of DC Motor
Speed Control of DC MotorSpeed Control of DC Motor
Speed Control of DC MotorMafaz Ahmed
 
Low drift high impedance jfet dc voltmeter
Low drift high impedance jfet dc voltmeterLow drift high impedance jfet dc voltmeter
Low drift high impedance jfet dc voltmeterMafaz Ahmed
 
Real Time Clock Interfacing with FPGA
Real Time Clock Interfacing with FPGAReal Time Clock Interfacing with FPGA
Real Time Clock Interfacing with FPGAMafaz Ahmed
 
Tweety modelling in pro engineering
Tweety modelling in pro engineeringTweety modelling in pro engineering
Tweety modelling in pro engineeringMafaz Ahmed
 
Truck modelling in pro engineering
Truck modelling in pro engineeringTruck modelling in pro engineering
Truck modelling in pro engineeringMafaz Ahmed
 
Bicycle modelling in pro engineering
Bicycle modelling in pro engineeringBicycle modelling in pro engineering
Bicycle modelling in pro engineeringMafaz Ahmed
 

More from Mafaz Ahmed (20)

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

Recently uploaded

chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)dollysharma2066
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 

Recently uploaded (20)

chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 

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