SlideShare ist ein Scribd-Unternehmen logo
1 von 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

Weitere ähnliche Inhalte

Was ist angesagt?

Load characteristics and Economic Aspects
Load characteristics and Economic AspectsLoad characteristics and Economic Aspects
Load characteristics and Economic Aspects
Abha Tripathi
 
FLYBACK CONVERTER PPT
FLYBACK CONVERTER PPTFLYBACK CONVERTER PPT
FLYBACK CONVERTER PPT
Ajmal Khan
 

Was ist angesagt? (20)

EE-304 Electrical Network Theory [Class Notes1] - 2013
EE-304 Electrical Network Theory [Class Notes1] - 2013EE-304 Electrical Network Theory [Class Notes1] - 2013
EE-304 Electrical Network Theory [Class Notes1] - 2013
 
Cycloconverter
Cycloconverter Cycloconverter
Cycloconverter
 
Buck boost converter
Buck boost converterBuck boost converter
Buck boost converter
 
Flyback converter
Flyback converterFlyback converter
Flyback converter
 
Economic operation of power system
Economic operation of power systemEconomic operation of power system
Economic operation of power system
 
Fault analysis using z bus
Fault analysis using z busFault analysis using z bus
Fault analysis using z bus
 
Inrush current
Inrush currentInrush current
Inrush current
 
Power system analysis material -Mathankumar.s VMKVEC
Power system analysis material -Mathankumar.s  VMKVECPower system analysis material -Mathankumar.s  VMKVEC
Power system analysis material -Mathankumar.s VMKVEC
 
Line to Line & Double Line to Ground Fault On Power System
Line to Line & Double Line to Ground Fault On Power SystemLine to Line & Double Line to Ground Fault On Power System
Line to Line & Double Line to Ground Fault On Power System
 
Per unit analysis
Per unit analysisPer unit analysis
Per unit analysis
 
Three level inverter
Three level inverterThree level inverter
Three level inverter
 
Load characteristics and Economic Aspects
Load characteristics and Economic AspectsLoad characteristics and Economic Aspects
Load characteristics and Economic Aspects
 
Corona1
Corona1Corona1
Corona1
 
Structure of power system
Structure of power systemStructure of power system
Structure of power system
 
Dc–Dc converters
Dc–Dc convertersDc–Dc converters
Dc–Dc converters
 
FLYBACK CONVERTER PPT
FLYBACK CONVERTER PPTFLYBACK CONVERTER PPT
FLYBACK CONVERTER PPT
 
Unit 5 Economic Load Dispatch and Unit Commitment
Unit 5 Economic Load Dispatch and Unit CommitmentUnit 5 Economic Load Dispatch and Unit Commitment
Unit 5 Economic Load Dispatch and Unit Commitment
 
Generation of High Frequency AC High Voltage
Generation of High Frequency AC High VoltageGeneration of High Frequency AC High Voltage
Generation of High Frequency AC High Voltage
 
Unit 1 Power System Stability
Unit 1 Power System Stability Unit 1 Power System Stability
Unit 1 Power System Stability
 
Modelling and Performance of transmission lines.pptx
Modelling and Performance of transmission lines.pptxModelling and Performance of transmission lines.pptx
Modelling and Performance of transmission lines.pptx
 

Andere mochten auch

Sumpners Test of Transformers
Sumpners Test of TransformersSumpners Test of Transformers
Sumpners Test of Transformers
Girin Chutia
 
Transformer testing
Transformer testingTransformer testing
Transformer testing
ajayknows
 
Power System Operation and Control
Power System Operation and ControlPower System Operation and Control
Power System Operation and Control
Biswajit Pratihari
 
Economic load dispatch
Economic load  dispatchEconomic load  dispatch
Economic load dispatch
Deepak John
 
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
Shankar Singh
 
Examples Of My Work
Examples Of My WorkExamples Of My Work
Examples Of My Work
gautamvirdi
 

Andere mochten auch (20)

Voltage Regulation
Voltage RegulationVoltage Regulation
Voltage Regulation
 
Sumpners Test of Transformers
Sumpners Test of TransformersSumpners Test of Transformers
Sumpners Test of Transformers
 
Methods of Voltage Control
Methods of Voltage ControlMethods of Voltage Control
Methods of Voltage Control
 
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
 

Ähnlich wie Calculating the efficiency and regulation of transformer using matlab

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 converter
Ramaraochowdary 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
 
modeling of three phase rectifier
modeling of three phase rectifiermodeling of three phase rectifier
modeling of three phase rectifier
usic123
 

Ähnlich wie 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
 

Mehr von Mafaz Ahmed

Mehr von 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
 

Kürzlich hochgeladen

Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Kandungan 087776558899
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
mphochane1998
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
MayuraD1
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Kürzlich hochgeladen (20)

AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Computer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to ComputersComputer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to Computers
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
 
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 

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