SlideShare a Scribd company logo
1
Koneru Lakshmaiah Education Foundation
(Deemed to be University)
DEPARTMENT OF ELECTRICAL
AND ELECTRONICS ENGINNERING
A Project Based Lab Report
On
Analysis of Transmission Line using MATLAB software
SUBMITTED BY:
NAME Regd. No.
B. Uma Sankar Rao 180060009
E. William Cary 180069011
UNDER THE GUIDANCE OF
Dr. K. P. Prasad Rao
KL UNIVERSITY
Green fields, Vaddeswaram – 522 502
Guntur Dt., AP, India.
2
DEPARTMENT OF ELECTRICAL
AND ELETRONICS ENGINEERING
CERTIFICATE
This is to certify that the project based laboratory report entitled
that “Analysis of Transmission line using MATLAB software” submitted by Mr.
B. Uma Sankar Rao, Mr. E. William Cary bearing Regd. No. 180060009,
180069011 to the Department of ELECTRICAL AND ELECTRONICS
Engineering, KL University in partial fulfillment of the requirements for the
completion of a project based Laboratory in “Technical skills IV
(MATLAB)”course in II B.Tech., II Semester, is a bonafide record of the work
carried out by him under my supervision during the academic year 2019 – 2020.
PROJECT SUPERVISOR HEAD OF THE DEPARTMENT
3
ACKNOWLEDGEMENTS
It is great pleasure for me to express my gratitude to our honorable
President Sri. Koneru Satyanarayana, for giving the opportunity and platform
with facilities in accomplishing the project based laboratory report.
I express the sincere gratitude to our principal Prof Dr. K. SUBBA RAO for
his administration towards our academic growth.
I express sincere gratitude to HOD-EEE Dr.S.V.N.LALITHA for his
leadership and constant motivation provided in successful completion of our
academic semester. I record it as my privilege to deeply thank for providing us
the efficient faculty and facilities to make our ideas into reality.
I express my sincere thanks to our project supervisor DR.M.SAI KRISHNA
REDDY for his novel association of ideas, encouragement, appreciation and
intellectual zeal which motivated us to venture this project successfully.
Finally, it is pleased to acknowledge the indebtedness to all those who
devoted themselves directly or indirectly to make this project report success.
Name Redg. No.
B. Uma Sankar Rao 180060009
E. William Cary 180069011
4
INDEX
S. No Content Page No.
1. Abstract 5
2. Aim 6
3. Apparatus 7
4. About syntax used in
programming
8 – 9
5. Procedure 10
6. Code 11 – 13
7. Output 14 – 16
8. Advantages and
disadvantages
17
9. Conclusion 18
10. References 19
5
ABSTRACT
Power systems is one of the subject studying of power generation,
transmission, distribution, utilization. Electrical – power transmission is the bulk
transfer of electrical energy, from generating power plants to electrical substations and
customers, which is typically referred to as electric power distribution. Transmission
lines, when interconnected with each other, become transmission networks. The
combined transmission and distribution network is known as the “National Grid”. Most
transmission lines are high voltage three phase alternating current, although single
phase AC is sometimes used in railway electrification systems. There are two types of
transmission lines they are DC transmission line and AC transmission lines. Long back
ago we were used DC transmission, Now the present world using AC transmission lines.
In both DC and AC transmission line, AC transmission line calculations are very tough
and very important than DC transmission line. In analysis of transmission the
important one is to find out efficiency and regulation. It is some difficult to make
calculation with hand it takes long period of time. To reduce time, this efficiency and
regulation gone on programming using MATLAB software, user interface is very easier
to use.
Through this analysis of transmission line programming using MATLAB user can
obtain length, efficiency, regulation of short, medium, long transmission line.
6
AIM
It is very difficult to calculate the Efficiency, Regulation, Losses, Length of a
transmission line theoretically, it takes so much to obtain the result. That’s why
programming make it simpler. There are several programming languages but especially
MATLAB software programming compared to other languages, then it is a weakly typed,
dynamic, interpreted programming language specialized for numerical computations
and data visualization. MATLAB makes it simpler. The main aim of this project is
Analysis of Transmission line using MATLAB software. By using this user can get the
efficiency, regulation, length of transmission line and ABCD parameters.
7
APPARATUS
 A computer system with MATLAB installation with good
processor and RAM.
 SOFTWARE REQUIREMENTS:
Programming skills.
Formulas of transmission line
Switch syntax.
Editor window.
Command window.
8
About syntax used in programming
input: For example, x = input(prompt) displays the text in prompt and waits for the
user to input a value and press the Return key. The user can enter expressions, like pi/4
or rand(3), and can use variables in the workspace.
 If the user presses the Return key without entering anything, then input returns
an empty matrix.
 If the user enters an invalid expression at the prompt, then MATLAB display the
relevant error message, and then redisplays the prompt.
disp: disp(x) displays the value of variable x without printing the variable name.
Another way to display a variable is to type its name, which display a leading “x = “
before the value. If a variable contains an empty array, disp returns without displaying
anything.
fprintf: fprintf ( fileID, formatspec, A1,…An) applies the formatspe to all elements of
array A1,…An in column order, and writes the data to a text file. Fprintf uses the
encoding scheme specified in the call to fopen.
complex: In MATLAB, i and j represent the basic imaginary unit. You can use them to
create complex numbers such as 2i+5 . You can also determine the real and imaginary
parts of complex numbers and compute other common values such as phase and angle.
imag: imag( MATLAB functions ) Y = imag( Z ) returns the imaginary part of the
elements of array Z.
abs: abs( z ) returns the absolute value (or complex modulus ) of z. Because symbolic
variables are assumed to be complex by default, abs return the complex modulus
(magnitude ) by default. If z is an array, abs acts element – wise on each element of z.
9
conj: conj( x ) returns the complex conjugate of x. Because symbolic variables are
complex by default, unresolved calls, such as conj( x ), can appear in the output of norm,
mtimes, and other functions. For details, see use assumptions on symbolic variables.
sqrt: sqrt( MATLAB functions)B = sqrt( x ) returns the square root of each element of
the array x. For the elements of X that are negative or complex, sqrt ( x ) produces
complex results.
10
Procedure
Procedure for this project is very simple. Installation must be there in computer
device, because it program based project.
1. Open MATLAB.
2. Type command in command window that is edit window.
3. Type the program according to the formula of transmission line and MATLAB
syntax in edit window.
4. MATLAB program evaluation is top to bottom and left to right.
5. Completion of whole program, Click on Run option in MATLAB window.
6. Enter values according to the program visible in command window.
7. Results will obtain.
11
Code
clc;
clear all;
disp('********** ANALYSIS OF TRANSMISSION LINE **********')
disp(' ')
disp('1. Find length of transmission line ')
disp('2. Finding Efficiency and Regulation of a transmission line')
disp(' ')
Op = input('Enter your option:');
disp(' ')
switch Op
case 1;
Pr=input('Enter Power Receiving end: ');
Ef=input('Enter Efficiency of transmission line: ');
Vr=input('Enter Receiving end voltage: ');
a=input('Enter copper conductance: ');
Ps=Pr/Ef;
ll=Ps-Pr;
I=Pr/(Vr*1);
R=ll/(2*(I^2));
L=(R*a)/(1.725*10^6);
disp('Power sending end: ')
disp(Ps)
disp('Line losses: ')
disp(ll)
disp('The length of transmission line: ')
disp(L)
if L <=60
fprintf('This is a Short transmission line')
disp(' ')
else if L>60 && L<160
fprintf('This is Medium transmission line')
disp(' ')
else
fprintf('This is Long transmission line')
disp(' ')
end
end
12
case 2;
L=input('Length of transmission line in kmn ');
Vl=input('receiving end voltage in kvn ');
r=input('Per km resistance in ohmn ');
l=input('Per km inductance in mHn ');
S=input('Receiving power in MVAn ');
Fi=input('Lagging power factorn ');
S=S*(10^6);
Vl=Vl*(10^3);
l=l*(10^-3);
ind=L*(l);
R=r*(L);
Vr=Vl/sqrt(3);
Z=complex(R,2*pi*50*ind);
j=sqrt(-1);
if L <= 60
disp('------ THIS IS SHORT TRANSMISSION LINE ------')
disp(' ')
A=1;
B=Z;
C=0;
D=A;
elseif L > 60 && L <= 160
disp('------ THIS IS MEDIUM SHORT TRANSMISSION LINE ------')
disp(' ')
c=input('Per km capacitance in uFn ');
c=c*(10^-6);
Y=2*pi*50*c*L*j;
A=(Y/2)*Z+1;
B=Z*((Y/4)*Z+1);
C=Y;
D=A;
else
disp('------ THIS IS LONG TRANSMISSION LINE ------')
disp(' ')
c=input('Per km capacitance in uFn ');
c=c*(10^-6);
Y=2*pi*50*c*L*j;
K=sqrt(Y*Z);
M=sqrt(Y/Z);
A=cosh(K);
13
B=sinh(K)/M;
C=M*sinh(K);
D=A;
end
Ir=S/((sqrt(3)*Vl));
IR =((Ir))*complex(cos(-acos(Fi)),sin(-acos(Fi)));
VS=A*Vr+B*IR;
IS=C*Vr+D*IR;
Ps=3*real(VS*(conj(IS)));
VR=abs((((abs(VS)/abs(A))-abs(Vr))/abs(Vr)))*100;
Pr=S*0.8;
EF=(Pr/Ps)*100;
Qs=3*imag(VS*(conj(IS)));
F=cos(atan(Qs/Ps));
fprintf('n')
disp('No load receiving end voltage');
disp(abs(Vr))
disp('No load sending end current');
disp(abs(IS))
disp('Sending end p.f.');
disp(F)
disp('Voltage Regulation of the line');
disp(VR)
disp('Transmission Efficiency of the line');
disp(EF)
end
14
Output
********** ANALYSIS OF TRANSMISSION LINE **********
1. Find length of transmission line
2. Finding Efficiency and Regulation of a transmission line
Enter your option:2
Length of transmission line in km
50
receiving end voltage in kv
33000
Per km resistance in ohm
0.2
Per km inductance in mH
0.3
Receiving power in MVA
1100000
Lagging power factor
0.8
------ THIS IS SHORT TRANSMISSION LINE ------
No load receiving end voltage
15
1.9053e+07
No load sending end current
1.9245e+04
Sending end p.f.
0.8013
Voltage Regulation of the line
1.0939
Transmission Efficiency of the line
98.7531
********** ANALYSIS OF TRANSMISSION LINE **********
1. Find length of transmission line
2. Finding Efficiency and Regulation of a transmission line
Enter your option:1
Enter Power Receiving end: 200000
Enter Efficiency of transmission line: 0.9
Enter Receiving end voltage: 3300
Enter copper conductance: 0.775
Power sending end:
16
2.2222e+05
Line losses:
2.2222e+04
The length of transmission line:
1.3591e-06
This is a Short transmission line
17
 Advantages
1. Easy to calculate efficiency, regulation, losses, length of transmission line
using programing without theoretically.
2. Time saves.
3. Easy to use
4. User friendly
5. Well developed user interface.
 Dis advantages
1. No everyone effort portable computer and desktop computers to calculate
efficiency, regulation, losses, length of transmission line. For this
programming, hardware must be developed
18
CONCLUSION
By carrying out this project, it’s very easy to make calculation of
transmission line that is efficiency, regulation, losses and length. By
entering the power receiving end, efficiency of transmission line,
receiving end voltage, and copper conductance the resultant output user
can get line losses, length of transmission line and which type of
transmission line it is. By entering length of transmission line, receiving
end voltage, resistance per km, inductance per km, receiving power,
lagging power factor and user get no load receiving end voltage, no load
sending end current, sending end power factor, voltage regulation of the
line, transmission efficiency of the line.
19
REFERENCES
1. Principles of power systems and performance of transmission lines.

More Related Content

What's hot

Magnetic levitation report
Magnetic levitation reportMagnetic levitation report
Magnetic levitation report
VASAV SHETHNA
 
PROPOSED FAULT DETECTION ON OVERHEAD TRANSMISSION LINE USING PARTICLE SWARM ...
PROPOSED FAULT DETECTION ON OVERHEAD TRANSMISSION LINE  USING PARTICLE SWARM ...PROPOSED FAULT DETECTION ON OVERHEAD TRANSMISSION LINE  USING PARTICLE SWARM ...
PROPOSED FAULT DETECTION ON OVERHEAD TRANSMISSION LINE USING PARTICLE SWARM ...
Politeknik Negeri Ujung Pandang
 
Per unit analysis
Per unit analysisPer unit analysis
Per unit analysis
Revathi Subramaniam
 
Power flow analysis
Power flow analysisPower flow analysis
Power flow analysis
Revathi Subramaniam
 
PIFA
PIFA PIFA
ETAP - unbalanced load flow
ETAP - unbalanced load flowETAP - unbalanced load flow
ETAP - unbalanced load flow
Himmelstern
 
Comunicaciones Electrónicas.pdf
Comunicaciones Electrónicas.pdfComunicaciones Electrónicas.pdf
Comunicaciones Electrónicas.pdf
JulioAgreda4
 
Introduction to Communication Systems 3
Introduction to Communication Systems 3Introduction to Communication Systems 3
Introduction to Communication Systems 3
slmnsvn
 
Transformer protection from inrush currents: Discrimination of internal fault...
Transformer protection from inrush currents: Discrimination of internal fault...Transformer protection from inrush currents: Discrimination of internal fault...
Transformer protection from inrush currents: Discrimination of internal fault...
Shilpa Shukla
 
Power Electronics Lab Manual ME PED
Power Electronics Lab Manual ME PEDPower Electronics Lab Manual ME PED
Power Electronics Lab Manual ME PED
Dr M Muruganandam Masilamani
 
Power Line Carrier Communication
Power Line Carrier CommunicationPower Line Carrier Communication
Power Line Carrier CommunicationBiswajit Pratihari
 
DIFFERENCE BETWEEN SRM AND LSRM
DIFFERENCE BETWEEN SRM AND LSRMDIFFERENCE BETWEEN SRM AND LSRM
DIFFERENCE BETWEEN SRM AND LSRM
MAULIK ANKOLA
 
Summer Internship Report -By Rahul Mehra
Summer Internship Report -By Rahul MehraSummer Internship Report -By Rahul Mehra
Summer Internship Report -By Rahul Mehra
Rahul Mehra
 
Different simulation softwares in power system
Different simulation softwares in power systemDifferent simulation softwares in power system
Different simulation softwares in power system
Jitendra Bhadoriya
 
FAULT DETECTION ON OVERHEAD TRANSMISSION LINE USING ARTIFICIAL NEURAL NET...
 FAULT DETECTION ON OVERHEAD TRANSMISSION LINE  USING ARTIFICIAL NEURAL NET... FAULT DETECTION ON OVERHEAD TRANSMISSION LINE  USING ARTIFICIAL NEURAL NET...
FAULT DETECTION ON OVERHEAD TRANSMISSION LINE USING ARTIFICIAL NEURAL NET...
Politeknik Negeri Ujung Pandang
 
power line carrier communication
power line carrier communicationpower line carrier communication
power line carrier communication
LAVANYA d
 
Exp 5 (1)5. Newton Raphson load flow analysis Matlab Software
Exp 5 (1)5.	Newton Raphson load flow analysis Matlab SoftwareExp 5 (1)5.	Newton Raphson load flow analysis Matlab Software
Exp 5 (1)5. Newton Raphson load flow analysis Matlab Software
Shweta Yadav
 
Simulating communication systems with MATLAB: An introduction
Simulating communication systems with MATLAB: An introductionSimulating communication systems with MATLAB: An introduction
Simulating communication systems with MATLAB: An introduction
Aniruddha Chandra
 
Gsm based transformer fault detection system
Gsm based transformer fault detection systemGsm based transformer fault detection system
Gsm based transformer fault detection system
Kabilesh K
 
Design and Simulation Microstrip patch Antenna using CST Microwave Studio
Design and Simulation Microstrip patch Antenna  using CST Microwave StudioDesign and Simulation Microstrip patch Antenna  using CST Microwave Studio
Design and Simulation Microstrip patch Antenna using CST Microwave Studio
Aymen Al-obaidi
 

What's hot (20)

Magnetic levitation report
Magnetic levitation reportMagnetic levitation report
Magnetic levitation report
 
PROPOSED FAULT DETECTION ON OVERHEAD TRANSMISSION LINE USING PARTICLE SWARM ...
PROPOSED FAULT DETECTION ON OVERHEAD TRANSMISSION LINE  USING PARTICLE SWARM ...PROPOSED FAULT DETECTION ON OVERHEAD TRANSMISSION LINE  USING PARTICLE SWARM ...
PROPOSED FAULT DETECTION ON OVERHEAD TRANSMISSION LINE USING PARTICLE SWARM ...
 
Per unit analysis
Per unit analysisPer unit analysis
Per unit analysis
 
Power flow analysis
Power flow analysisPower flow analysis
Power flow analysis
 
PIFA
PIFA PIFA
PIFA
 
ETAP - unbalanced load flow
ETAP - unbalanced load flowETAP - unbalanced load flow
ETAP - unbalanced load flow
 
Comunicaciones Electrónicas.pdf
Comunicaciones Electrónicas.pdfComunicaciones Electrónicas.pdf
Comunicaciones Electrónicas.pdf
 
Introduction to Communication Systems 3
Introduction to Communication Systems 3Introduction to Communication Systems 3
Introduction to Communication Systems 3
 
Transformer protection from inrush currents: Discrimination of internal fault...
Transformer protection from inrush currents: Discrimination of internal fault...Transformer protection from inrush currents: Discrimination of internal fault...
Transformer protection from inrush currents: Discrimination of internal fault...
 
Power Electronics Lab Manual ME PED
Power Electronics Lab Manual ME PEDPower Electronics Lab Manual ME PED
Power Electronics Lab Manual ME PED
 
Power Line Carrier Communication
Power Line Carrier CommunicationPower Line Carrier Communication
Power Line Carrier Communication
 
DIFFERENCE BETWEEN SRM AND LSRM
DIFFERENCE BETWEEN SRM AND LSRMDIFFERENCE BETWEEN SRM AND LSRM
DIFFERENCE BETWEEN SRM AND LSRM
 
Summer Internship Report -By Rahul Mehra
Summer Internship Report -By Rahul MehraSummer Internship Report -By Rahul Mehra
Summer Internship Report -By Rahul Mehra
 
Different simulation softwares in power system
Different simulation softwares in power systemDifferent simulation softwares in power system
Different simulation softwares in power system
 
FAULT DETECTION ON OVERHEAD TRANSMISSION LINE USING ARTIFICIAL NEURAL NET...
 FAULT DETECTION ON OVERHEAD TRANSMISSION LINE  USING ARTIFICIAL NEURAL NET... FAULT DETECTION ON OVERHEAD TRANSMISSION LINE  USING ARTIFICIAL NEURAL NET...
FAULT DETECTION ON OVERHEAD TRANSMISSION LINE USING ARTIFICIAL NEURAL NET...
 
power line carrier communication
power line carrier communicationpower line carrier communication
power line carrier communication
 
Exp 5 (1)5. Newton Raphson load flow analysis Matlab Software
Exp 5 (1)5.	Newton Raphson load flow analysis Matlab SoftwareExp 5 (1)5.	Newton Raphson load flow analysis Matlab Software
Exp 5 (1)5. Newton Raphson load flow analysis Matlab Software
 
Simulating communication systems with MATLAB: An introduction
Simulating communication systems with MATLAB: An introductionSimulating communication systems with MATLAB: An introduction
Simulating communication systems with MATLAB: An introduction
 
Gsm based transformer fault detection system
Gsm based transformer fault detection systemGsm based transformer fault detection system
Gsm based transformer fault detection system
 
Design and Simulation Microstrip patch Antenna using CST Microwave Studio
Design and Simulation Microstrip patch Antenna  using CST Microwave StudioDesign and Simulation Microstrip patch Antenna  using CST Microwave Studio
Design and Simulation Microstrip patch Antenna using CST Microwave Studio
 

Similar to Analysis Of Transmission Line Using MATLAB Software

IRJET- Blended Learning Method for Medium Power Transmission Line Performance...
IRJET- Blended Learning Method for Medium Power Transmission Line Performance...IRJET- Blended Learning Method for Medium Power Transmission Line Performance...
IRJET- Blended Learning Method for Medium Power Transmission Line Performance...
IRJET Journal
 
PEEC based electromagnetic simulator
PEEC based electromagnetic simulator PEEC based electromagnetic simulator
PEEC based electromagnetic simulator
Swapnil Gaul
 
Modeling of Self Excited Induction Generator
Modeling of Self Excited Induction GeneratorModeling of Self Excited Induction Generator
Modeling of Self Excited Induction GeneratorANURAG YADAV
 
MULTIPLE TESTS ON TRANSFORMER WITH THE HELP OF MATLAB SIMULINK
MULTIPLE TESTS ON TRANSFORMER WITH THE HELP OF MATLAB SIMULINKMULTIPLE TESTS ON TRANSFORMER WITH THE HELP OF MATLAB SIMULINK
MULTIPLE TESTS ON TRANSFORMER WITH THE HELP OF MATLAB SIMULINK
IRJET Journal
 
Digital Signal Processing Lab Manual
Digital Signal Processing Lab Manual Digital Signal Processing Lab Manual
Digital Signal Processing Lab Manual
Amairullah Khan Lodhi
 
Efficient Design of Reversible Multiplexers with Low Quantum Cost
Efficient Design of Reversible Multiplexers with Low Quantum CostEfficient Design of Reversible Multiplexers with Low Quantum Cost
Efficient Design of Reversible Multiplexers with Low Quantum Cost
IJERA Editor
 
Smib pgm
Smib pgmSmib pgm
Smib pgm
sannbhu
 
Comparative analysis of cascade h-bridge multilevel Voltage source inverter
Comparative analysis of cascade h-bridge multilevel  Voltage source inverterComparative analysis of cascade h-bridge multilevel  Voltage source inverter
Comparative analysis of cascade h-bridge multilevel Voltage source inverter
Pvrtechnologies Nellore
 
Investigation Effect of Outage Line on the Transmission Line for Karbalaa-132...
Investigation Effect of Outage Line on the Transmission Line for Karbalaa-132...Investigation Effect of Outage Line on the Transmission Line for Karbalaa-132...
Investigation Effect of Outage Line on the Transmission Line for Karbalaa-132...
IRJET Journal
 
Ads
AdsAds
Computer aided-teaching-of-transformers-for-undergraduates
Computer aided-teaching-of-transformers-for-undergraduatesComputer aided-teaching-of-transformers-for-undergraduates
Computer aided-teaching-of-transformers-for-undergraduates
Rajesh Kumar
 
Mini Project 2 - 4-to-1 Multiplexer And 1-to-4 Demultiplexer With Enable
Mini Project 2 -  4-to-1 Multiplexer And 1-to-4 Demultiplexer With EnableMini Project 2 -  4-to-1 Multiplexer And 1-to-4 Demultiplexer With Enable
Mini Project 2 - 4-to-1 Multiplexer And 1-to-4 Demultiplexer With Enable
AIMST University
 
Control system Lab record
Control system Lab record Control system Lab record
Control system Lab record
Yuvraj Singh
 
Optimal Placement of FACTS Controller
Optimal Placement of FACTS ControllerOptimal Placement of FACTS Controller
Optimal Placement of FACTS Controller
Divyang soni
 
Dsp file
Dsp fileDsp file
Dsp file
Rakesh Thakur
 
power electronics manual
power electronics manualpower electronics manual
power electronics manual
m.pal pandian
 
IRJET - Realization of Power Optimised Carry Skip Adder using AOI Logic
IRJET -  	  Realization of Power Optimised Carry Skip Adder using AOI LogicIRJET -  	  Realization of Power Optimised Carry Skip Adder using AOI Logic
IRJET - Realization of Power Optimised Carry Skip Adder using AOI Logic
IRJET Journal
 
Transfer function and Impulse Response Simulation of Power Line Channel
Transfer function and Impulse Response Simulation of Power Line ChannelTransfer function and Impulse Response Simulation of Power Line Channel
Transfer function and Impulse Response Simulation of Power Line Channel
International Journal of Science and Research (IJSR)
 
Macromodel of High Speed Interconnect using Vector Fitting Algorithm
Macromodel of High Speed Interconnect using Vector Fitting AlgorithmMacromodel of High Speed Interconnect using Vector Fitting Algorithm
Macromodel of High Speed Interconnect using Vector Fitting Algorithm
ijsrd.com
 

Similar to Analysis Of Transmission Line Using MATLAB Software (20)

IRJET- Blended Learning Method for Medium Power Transmission Line Performance...
IRJET- Blended Learning Method for Medium Power Transmission Line Performance...IRJET- Blended Learning Method for Medium Power Transmission Line Performance...
IRJET- Blended Learning Method for Medium Power Transmission Line Performance...
 
PEEC based electromagnetic simulator
PEEC based electromagnetic simulator PEEC based electromagnetic simulator
PEEC based electromagnetic simulator
 
Modeling of Self Excited Induction Generator
Modeling of Self Excited Induction GeneratorModeling of Self Excited Induction Generator
Modeling of Self Excited Induction Generator
 
MULTIPLE TESTS ON TRANSFORMER WITH THE HELP OF MATLAB SIMULINK
MULTIPLE TESTS ON TRANSFORMER WITH THE HELP OF MATLAB SIMULINKMULTIPLE TESTS ON TRANSFORMER WITH THE HELP OF MATLAB SIMULINK
MULTIPLE TESTS ON TRANSFORMER WITH THE HELP OF MATLAB SIMULINK
 
Digital Signal Processing Lab Manual
Digital Signal Processing Lab Manual Digital Signal Processing Lab Manual
Digital Signal Processing Lab Manual
 
Efficient Design of Reversible Multiplexers with Low Quantum Cost
Efficient Design of Reversible Multiplexers with Low Quantum CostEfficient Design of Reversible Multiplexers with Low Quantum Cost
Efficient Design of Reversible Multiplexers with Low Quantum Cost
 
Ass5
Ass5Ass5
Ass5
 
Smib pgm
Smib pgmSmib pgm
Smib pgm
 
Comparative analysis of cascade h-bridge multilevel Voltage source inverter
Comparative analysis of cascade h-bridge multilevel  Voltage source inverterComparative analysis of cascade h-bridge multilevel  Voltage source inverter
Comparative analysis of cascade h-bridge multilevel Voltage source inverter
 
Investigation Effect of Outage Line on the Transmission Line for Karbalaa-132...
Investigation Effect of Outage Line on the Transmission Line for Karbalaa-132...Investigation Effect of Outage Line on the Transmission Line for Karbalaa-132...
Investigation Effect of Outage Line on the Transmission Line for Karbalaa-132...
 
Ads
AdsAds
Ads
 
Computer aided-teaching-of-transformers-for-undergraduates
Computer aided-teaching-of-transformers-for-undergraduatesComputer aided-teaching-of-transformers-for-undergraduates
Computer aided-teaching-of-transformers-for-undergraduates
 
Mini Project 2 - 4-to-1 Multiplexer And 1-to-4 Demultiplexer With Enable
Mini Project 2 -  4-to-1 Multiplexer And 1-to-4 Demultiplexer With EnableMini Project 2 -  4-to-1 Multiplexer And 1-to-4 Demultiplexer With Enable
Mini Project 2 - 4-to-1 Multiplexer And 1-to-4 Demultiplexer With Enable
 
Control system Lab record
Control system Lab record Control system Lab record
Control system Lab record
 
Optimal Placement of FACTS Controller
Optimal Placement of FACTS ControllerOptimal Placement of FACTS Controller
Optimal Placement of FACTS Controller
 
Dsp file
Dsp fileDsp file
Dsp file
 
power electronics manual
power electronics manualpower electronics manual
power electronics manual
 
IRJET - Realization of Power Optimised Carry Skip Adder using AOI Logic
IRJET -  	  Realization of Power Optimised Carry Skip Adder using AOI LogicIRJET -  	  Realization of Power Optimised Carry Skip Adder using AOI Logic
IRJET - Realization of Power Optimised Carry Skip Adder using AOI Logic
 
Transfer function and Impulse Response Simulation of Power Line Channel
Transfer function and Impulse Response Simulation of Power Line ChannelTransfer function and Impulse Response Simulation of Power Line Channel
Transfer function and Impulse Response Simulation of Power Line Channel
 
Macromodel of High Speed Interconnect using Vector Fitting Algorithm
Macromodel of High Speed Interconnect using Vector Fitting AlgorithmMacromodel of High Speed Interconnect using Vector Fitting Algorithm
Macromodel of High Speed Interconnect using Vector Fitting Algorithm
 

More from Allison Thompson

Mla Format Citation For Website With No Author - Fo
Mla Format Citation For Website With No Author - FoMla Format Citation For Website With No Author - Fo
Mla Format Citation For Website With No Author - Fo
Allison Thompson
 
Free Images Writing, Word, Keyboard, Vintage, Antique, Retro
Free Images Writing, Word, Keyboard, Vintage, Antique, RetroFree Images Writing, Word, Keyboard, Vintage, Antique, Retro
Free Images Writing, Word, Keyboard, Vintage, Antique, Retro
Allison Thompson
 
How To Do Quotes On An Argumentative Essay In MLA Format Synonym
How To Do Quotes On An Argumentative Essay In MLA Format SynonymHow To Do Quotes On An Argumentative Essay In MLA Format Synonym
How To Do Quotes On An Argumentative Essay In MLA Format Synonym
Allison Thompson
 
Writing Essays In Exams
Writing Essays In ExamsWriting Essays In Exams
Writing Essays In Exams
Allison Thompson
 
Writing A Successful College Essay - S
Writing A Successful College Essay - SWriting A Successful College Essay - S
Writing A Successful College Essay - S
Allison Thompson
 
Essay On Books Books Essay In English Essay -
Essay On Books Books Essay In English Essay -Essay On Books Books Essay In English Essay -
Essay On Books Books Essay In English Essay -
Allison Thompson
 
Best Research Paper Sites Intr
Best Research Paper Sites IntrBest Research Paper Sites Intr
Best Research Paper Sites Intr
Allison Thompson
 
Freedom Writers Movie Review Essay Materidikla
Freedom Writers Movie Review Essay MateridiklaFreedom Writers Movie Review Essay Materidikla
Freedom Writers Movie Review Essay Materidikla
Allison Thompson
 
Wordvice Ranked Best College Essay Editing Service In Essay Editor
Wordvice Ranked Best College Essay Editing Service In Essay EditorWordvice Ranked Best College Essay Editing Service In Essay Editor
Wordvice Ranked Best College Essay Editing Service In Essay Editor
Allison Thompson
 
Final Student Evaluation Essay
Final Student Evaluation EssayFinal Student Evaluation Essay
Final Student Evaluation Essay
Allison Thompson
 
Help Me Write My Paper, I Need Writing Assistance To Help Me With A
Help Me Write My Paper, I Need Writing Assistance To Help Me With AHelp Me Write My Paper, I Need Writing Assistance To Help Me With A
Help Me Write My Paper, I Need Writing Assistance To Help Me With A
Allison Thompson
 
The Five Steps Of Writing An Essay, Steps Of Essay Writing.
The Five Steps Of Writing An Essay, Steps Of Essay Writing.The Five Steps Of Writing An Essay, Steps Of Essay Writing.
The Five Steps Of Writing An Essay, Steps Of Essay Writing.
Allison Thompson
 
Writing A College Paper Format. How To Make A Pa
Writing A College Paper Format. How To Make A PaWriting A College Paper Format. How To Make A Pa
Writing A College Paper Format. How To Make A Pa
Allison Thompson
 
022 Essay Example Writing Rubrics For High School E
022 Essay Example Writing Rubrics For High School E022 Essay Example Writing Rubrics For High School E
022 Essay Example Writing Rubrics For High School E
Allison Thompson
 
015 Transitional Words For Resumes Professional Res
015 Transitional Words For Resumes Professional Res015 Transitional Words For Resumes Professional Res
015 Transitional Words For Resumes Professional Res
Allison Thompson
 
Literary Essay Outline Sample - English 102 Writi
Literary Essay Outline Sample - English 102 WritiLiterary Essay Outline Sample - English 102 Writi
Literary Essay Outline Sample - English 102 Writi
Allison Thompson
 
Robot Writing Paper By Teachers Time Store Tea
Robot Writing Paper By Teachers Time Store TeaRobot Writing Paper By Teachers Time Store Tea
Robot Writing Paper By Teachers Time Store Tea
Allison Thompson
 
Winner Announcement Of Online Essay Writing Competition
Winner Announcement Of Online Essay Writing CompetitionWinner Announcement Of Online Essay Writing Competition
Winner Announcement Of Online Essay Writing Competition
Allison Thompson
 
Writing A Paper In Scientific Format
Writing A Paper In Scientific FormatWriting A Paper In Scientific Format
Writing A Paper In Scientific Format
Allison Thompson
 
010 How To Write Creativeay Report Example Sample Coll
010 How To Write Creativeay Report Example Sample Coll010 How To Write Creativeay Report Example Sample Coll
010 How To Write Creativeay Report Example Sample Coll
Allison Thompson
 

More from Allison Thompson (20)

Mla Format Citation For Website With No Author - Fo
Mla Format Citation For Website With No Author - FoMla Format Citation For Website With No Author - Fo
Mla Format Citation For Website With No Author - Fo
 
Free Images Writing, Word, Keyboard, Vintage, Antique, Retro
Free Images Writing, Word, Keyboard, Vintage, Antique, RetroFree Images Writing, Word, Keyboard, Vintage, Antique, Retro
Free Images Writing, Word, Keyboard, Vintage, Antique, Retro
 
How To Do Quotes On An Argumentative Essay In MLA Format Synonym
How To Do Quotes On An Argumentative Essay In MLA Format SynonymHow To Do Quotes On An Argumentative Essay In MLA Format Synonym
How To Do Quotes On An Argumentative Essay In MLA Format Synonym
 
Writing Essays In Exams
Writing Essays In ExamsWriting Essays In Exams
Writing Essays In Exams
 
Writing A Successful College Essay - S
Writing A Successful College Essay - SWriting A Successful College Essay - S
Writing A Successful College Essay - S
 
Essay On Books Books Essay In English Essay -
Essay On Books Books Essay In English Essay -Essay On Books Books Essay In English Essay -
Essay On Books Books Essay In English Essay -
 
Best Research Paper Sites Intr
Best Research Paper Sites IntrBest Research Paper Sites Intr
Best Research Paper Sites Intr
 
Freedom Writers Movie Review Essay Materidikla
Freedom Writers Movie Review Essay MateridiklaFreedom Writers Movie Review Essay Materidikla
Freedom Writers Movie Review Essay Materidikla
 
Wordvice Ranked Best College Essay Editing Service In Essay Editor
Wordvice Ranked Best College Essay Editing Service In Essay EditorWordvice Ranked Best College Essay Editing Service In Essay Editor
Wordvice Ranked Best College Essay Editing Service In Essay Editor
 
Final Student Evaluation Essay
Final Student Evaluation EssayFinal Student Evaluation Essay
Final Student Evaluation Essay
 
Help Me Write My Paper, I Need Writing Assistance To Help Me With A
Help Me Write My Paper, I Need Writing Assistance To Help Me With AHelp Me Write My Paper, I Need Writing Assistance To Help Me With A
Help Me Write My Paper, I Need Writing Assistance To Help Me With A
 
The Five Steps Of Writing An Essay, Steps Of Essay Writing.
The Five Steps Of Writing An Essay, Steps Of Essay Writing.The Five Steps Of Writing An Essay, Steps Of Essay Writing.
The Five Steps Of Writing An Essay, Steps Of Essay Writing.
 
Writing A College Paper Format. How To Make A Pa
Writing A College Paper Format. How To Make A PaWriting A College Paper Format. How To Make A Pa
Writing A College Paper Format. How To Make A Pa
 
022 Essay Example Writing Rubrics For High School E
022 Essay Example Writing Rubrics For High School E022 Essay Example Writing Rubrics For High School E
022 Essay Example Writing Rubrics For High School E
 
015 Transitional Words For Resumes Professional Res
015 Transitional Words For Resumes Professional Res015 Transitional Words For Resumes Professional Res
015 Transitional Words For Resumes Professional Res
 
Literary Essay Outline Sample - English 102 Writi
Literary Essay Outline Sample - English 102 WritiLiterary Essay Outline Sample - English 102 Writi
Literary Essay Outline Sample - English 102 Writi
 
Robot Writing Paper By Teachers Time Store Tea
Robot Writing Paper By Teachers Time Store TeaRobot Writing Paper By Teachers Time Store Tea
Robot Writing Paper By Teachers Time Store Tea
 
Winner Announcement Of Online Essay Writing Competition
Winner Announcement Of Online Essay Writing CompetitionWinner Announcement Of Online Essay Writing Competition
Winner Announcement Of Online Essay Writing Competition
 
Writing A Paper In Scientific Format
Writing A Paper In Scientific FormatWriting A Paper In Scientific Format
Writing A Paper In Scientific Format
 
010 How To Write Creativeay Report Example Sample Coll
010 How To Write Creativeay Report Example Sample Coll010 How To Write Creativeay Report Example Sample Coll
010 How To Write Creativeay Report Example Sample Coll
 

Recently uploaded

Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
Peter Windle
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
CarlosHernanMontoyab2
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
Jheel Barad
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 

Recently uploaded (20)

Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 

Analysis Of Transmission Line Using MATLAB Software

  • 1. 1 Koneru Lakshmaiah Education Foundation (Deemed to be University) DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINNERING A Project Based Lab Report On Analysis of Transmission Line using MATLAB software SUBMITTED BY: NAME Regd. No. B. Uma Sankar Rao 180060009 E. William Cary 180069011 UNDER THE GUIDANCE OF Dr. K. P. Prasad Rao KL UNIVERSITY Green fields, Vaddeswaram – 522 502 Guntur Dt., AP, India.
  • 2. 2 DEPARTMENT OF ELECTRICAL AND ELETRONICS ENGINEERING CERTIFICATE This is to certify that the project based laboratory report entitled that “Analysis of Transmission line using MATLAB software” submitted by Mr. B. Uma Sankar Rao, Mr. E. William Cary bearing Regd. No. 180060009, 180069011 to the Department of ELECTRICAL AND ELECTRONICS Engineering, KL University in partial fulfillment of the requirements for the completion of a project based Laboratory in “Technical skills IV (MATLAB)”course in II B.Tech., II Semester, is a bonafide record of the work carried out by him under my supervision during the academic year 2019 – 2020. PROJECT SUPERVISOR HEAD OF THE DEPARTMENT
  • 3. 3 ACKNOWLEDGEMENTS It is great pleasure for me to express my gratitude to our honorable President Sri. Koneru Satyanarayana, for giving the opportunity and platform with facilities in accomplishing the project based laboratory report. I express the sincere gratitude to our principal Prof Dr. K. SUBBA RAO for his administration towards our academic growth. I express sincere gratitude to HOD-EEE Dr.S.V.N.LALITHA for his leadership and constant motivation provided in successful completion of our academic semester. I record it as my privilege to deeply thank for providing us the efficient faculty and facilities to make our ideas into reality. I express my sincere thanks to our project supervisor DR.M.SAI KRISHNA REDDY for his novel association of ideas, encouragement, appreciation and intellectual zeal which motivated us to venture this project successfully. Finally, it is pleased to acknowledge the indebtedness to all those who devoted themselves directly or indirectly to make this project report success. Name Redg. No. B. Uma Sankar Rao 180060009 E. William Cary 180069011
  • 4. 4 INDEX S. No Content Page No. 1. Abstract 5 2. Aim 6 3. Apparatus 7 4. About syntax used in programming 8 – 9 5. Procedure 10 6. Code 11 – 13 7. Output 14 – 16 8. Advantages and disadvantages 17 9. Conclusion 18 10. References 19
  • 5. 5 ABSTRACT Power systems is one of the subject studying of power generation, transmission, distribution, utilization. Electrical – power transmission is the bulk transfer of electrical energy, from generating power plants to electrical substations and customers, which is typically referred to as electric power distribution. Transmission lines, when interconnected with each other, become transmission networks. The combined transmission and distribution network is known as the “National Grid”. Most transmission lines are high voltage three phase alternating current, although single phase AC is sometimes used in railway electrification systems. There are two types of transmission lines they are DC transmission line and AC transmission lines. Long back ago we were used DC transmission, Now the present world using AC transmission lines. In both DC and AC transmission line, AC transmission line calculations are very tough and very important than DC transmission line. In analysis of transmission the important one is to find out efficiency and regulation. It is some difficult to make calculation with hand it takes long period of time. To reduce time, this efficiency and regulation gone on programming using MATLAB software, user interface is very easier to use. Through this analysis of transmission line programming using MATLAB user can obtain length, efficiency, regulation of short, medium, long transmission line.
  • 6. 6 AIM It is very difficult to calculate the Efficiency, Regulation, Losses, Length of a transmission line theoretically, it takes so much to obtain the result. That’s why programming make it simpler. There are several programming languages but especially MATLAB software programming compared to other languages, then it is a weakly typed, dynamic, interpreted programming language specialized for numerical computations and data visualization. MATLAB makes it simpler. The main aim of this project is Analysis of Transmission line using MATLAB software. By using this user can get the efficiency, regulation, length of transmission line and ABCD parameters.
  • 7. 7 APPARATUS  A computer system with MATLAB installation with good processor and RAM.  SOFTWARE REQUIREMENTS: Programming skills. Formulas of transmission line Switch syntax. Editor window. Command window.
  • 8. 8 About syntax used in programming input: For example, x = input(prompt) displays the text in prompt and waits for the user to input a value and press the Return key. The user can enter expressions, like pi/4 or rand(3), and can use variables in the workspace.  If the user presses the Return key without entering anything, then input returns an empty matrix.  If the user enters an invalid expression at the prompt, then MATLAB display the relevant error message, and then redisplays the prompt. disp: disp(x) displays the value of variable x without printing the variable name. Another way to display a variable is to type its name, which display a leading “x = “ before the value. If a variable contains an empty array, disp returns without displaying anything. fprintf: fprintf ( fileID, formatspec, A1,…An) applies the formatspe to all elements of array A1,…An in column order, and writes the data to a text file. Fprintf uses the encoding scheme specified in the call to fopen. complex: In MATLAB, i and j represent the basic imaginary unit. You can use them to create complex numbers such as 2i+5 . You can also determine the real and imaginary parts of complex numbers and compute other common values such as phase and angle. imag: imag( MATLAB functions ) Y = imag( Z ) returns the imaginary part of the elements of array Z. abs: abs( z ) returns the absolute value (or complex modulus ) of z. Because symbolic variables are assumed to be complex by default, abs return the complex modulus (magnitude ) by default. If z is an array, abs acts element – wise on each element of z.
  • 9. 9 conj: conj( x ) returns the complex conjugate of x. Because symbolic variables are complex by default, unresolved calls, such as conj( x ), can appear in the output of norm, mtimes, and other functions. For details, see use assumptions on symbolic variables. sqrt: sqrt( MATLAB functions)B = sqrt( x ) returns the square root of each element of the array x. For the elements of X that are negative or complex, sqrt ( x ) produces complex results.
  • 10. 10 Procedure Procedure for this project is very simple. Installation must be there in computer device, because it program based project. 1. Open MATLAB. 2. Type command in command window that is edit window. 3. Type the program according to the formula of transmission line and MATLAB syntax in edit window. 4. MATLAB program evaluation is top to bottom and left to right. 5. Completion of whole program, Click on Run option in MATLAB window. 6. Enter values according to the program visible in command window. 7. Results will obtain.
  • 11. 11 Code clc; clear all; disp('********** ANALYSIS OF TRANSMISSION LINE **********') disp(' ') disp('1. Find length of transmission line ') disp('2. Finding Efficiency and Regulation of a transmission line') disp(' ') Op = input('Enter your option:'); disp(' ') switch Op case 1; Pr=input('Enter Power Receiving end: '); Ef=input('Enter Efficiency of transmission line: '); Vr=input('Enter Receiving end voltage: '); a=input('Enter copper conductance: '); Ps=Pr/Ef; ll=Ps-Pr; I=Pr/(Vr*1); R=ll/(2*(I^2)); L=(R*a)/(1.725*10^6); disp('Power sending end: ') disp(Ps) disp('Line losses: ') disp(ll) disp('The length of transmission line: ') disp(L) if L <=60 fprintf('This is a Short transmission line') disp(' ') else if L>60 && L<160 fprintf('This is Medium transmission line') disp(' ') else fprintf('This is Long transmission line') disp(' ') end end
  • 12. 12 case 2; L=input('Length of transmission line in kmn '); Vl=input('receiving end voltage in kvn '); r=input('Per km resistance in ohmn '); l=input('Per km inductance in mHn '); S=input('Receiving power in MVAn '); Fi=input('Lagging power factorn '); S=S*(10^6); Vl=Vl*(10^3); l=l*(10^-3); ind=L*(l); R=r*(L); Vr=Vl/sqrt(3); Z=complex(R,2*pi*50*ind); j=sqrt(-1); if L <= 60 disp('------ THIS IS SHORT TRANSMISSION LINE ------') disp(' ') A=1; B=Z; C=0; D=A; elseif L > 60 && L <= 160 disp('------ THIS IS MEDIUM SHORT TRANSMISSION LINE ------') disp(' ') c=input('Per km capacitance in uFn '); c=c*(10^-6); Y=2*pi*50*c*L*j; A=(Y/2)*Z+1; B=Z*((Y/4)*Z+1); C=Y; D=A; else disp('------ THIS IS LONG TRANSMISSION LINE ------') disp(' ') c=input('Per km capacitance in uFn '); c=c*(10^-6); Y=2*pi*50*c*L*j; K=sqrt(Y*Z); M=sqrt(Y/Z); A=cosh(K);
  • 13. 13 B=sinh(K)/M; C=M*sinh(K); D=A; end Ir=S/((sqrt(3)*Vl)); IR =((Ir))*complex(cos(-acos(Fi)),sin(-acos(Fi))); VS=A*Vr+B*IR; IS=C*Vr+D*IR; Ps=3*real(VS*(conj(IS))); VR=abs((((abs(VS)/abs(A))-abs(Vr))/abs(Vr)))*100; Pr=S*0.8; EF=(Pr/Ps)*100; Qs=3*imag(VS*(conj(IS))); F=cos(atan(Qs/Ps)); fprintf('n') disp('No load receiving end voltage'); disp(abs(Vr)) disp('No load sending end current'); disp(abs(IS)) disp('Sending end p.f.'); disp(F) disp('Voltage Regulation of the line'); disp(VR) disp('Transmission Efficiency of the line'); disp(EF) end
  • 14. 14 Output ********** ANALYSIS OF TRANSMISSION LINE ********** 1. Find length of transmission line 2. Finding Efficiency and Regulation of a transmission line Enter your option:2 Length of transmission line in km 50 receiving end voltage in kv 33000 Per km resistance in ohm 0.2 Per km inductance in mH 0.3 Receiving power in MVA 1100000 Lagging power factor 0.8 ------ THIS IS SHORT TRANSMISSION LINE ------ No load receiving end voltage
  • 15. 15 1.9053e+07 No load sending end current 1.9245e+04 Sending end p.f. 0.8013 Voltage Regulation of the line 1.0939 Transmission Efficiency of the line 98.7531 ********** ANALYSIS OF TRANSMISSION LINE ********** 1. Find length of transmission line 2. Finding Efficiency and Regulation of a transmission line Enter your option:1 Enter Power Receiving end: 200000 Enter Efficiency of transmission line: 0.9 Enter Receiving end voltage: 3300 Enter copper conductance: 0.775 Power sending end:
  • 16. 16 2.2222e+05 Line losses: 2.2222e+04 The length of transmission line: 1.3591e-06 This is a Short transmission line
  • 17. 17  Advantages 1. Easy to calculate efficiency, regulation, losses, length of transmission line using programing without theoretically. 2. Time saves. 3. Easy to use 4. User friendly 5. Well developed user interface.  Dis advantages 1. No everyone effort portable computer and desktop computers to calculate efficiency, regulation, losses, length of transmission line. For this programming, hardware must be developed
  • 18. 18 CONCLUSION By carrying out this project, it’s very easy to make calculation of transmission line that is efficiency, regulation, losses and length. By entering the power receiving end, efficiency of transmission line, receiving end voltage, and copper conductance the resultant output user can get line losses, length of transmission line and which type of transmission line it is. By entering length of transmission line, receiving end voltage, resistance per km, inductance per km, receiving power, lagging power factor and user get no load receiving end voltage, no load sending end current, sending end power factor, voltage regulation of the line, transmission efficiency of the line.
  • 19. 19 REFERENCES 1. Principles of power systems and performance of transmission lines.