SlideShare a Scribd company logo
1 of 19
Download to read offline
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

design of high speed performance 64bit mac unit
design of high speed performance 64bit mac unitdesign of high speed performance 64bit mac unit
design of high speed performance 64bit mac unitShiva Narayan Reddy
 
ARM stacks, subroutines, Cortex M3, LPC 214X
ARM  stacks, subroutines, Cortex M3, LPC 214XARM  stacks, subroutines, Cortex M3, LPC 214X
ARM stacks, subroutines, Cortex M3, LPC 214XKarthik Vivek
 
DSP_FOEHU - MATLAB 04 - The Discrete Fourier Transform (DFT)
DSP_FOEHU - MATLAB 04 - The Discrete Fourier Transform (DFT)DSP_FOEHU - MATLAB 04 - The Discrete Fourier Transform (DFT)
DSP_FOEHU - MATLAB 04 - The Discrete Fourier Transform (DFT)Amr E. Mohamed
 
System on Chip (SoC) for mobile phones
System on Chip (SoC) for mobile phonesSystem on Chip (SoC) for mobile phones
System on Chip (SoC) for mobile phonesJeffrey Funk
 
fiber-optics-communications-optical-detectors
fiber-optics-communications-optical-detectorsfiber-optics-communications-optical-detectors
fiber-optics-communications-optical-detectorsATTO RATHORE
 
Photonic Integrated Circuit Technology
Photonic Integrated Circuit TechnologyPhotonic Integrated Circuit Technology
Photonic Integrated Circuit TechnologyRinu Antony
 
Project Report on Embedded Systems
Project Report on Embedded Systems Project Report on Embedded Systems
Project Report on Embedded Systems Suhani Singh
 
Fourier Series for Continuous Time & Discrete Time Signals
Fourier Series for Continuous Time & Discrete Time SignalsFourier Series for Continuous Time & Discrete Time Signals
Fourier Series for Continuous Time & Discrete Time SignalsJayanshu Gundaniya
 
Ece formula sheet
Ece formula sheetEce formula sheet
Ece formula sheetManasa Mona
 
Lecture 10.cont,11 (plc)
Lecture 10.cont,11 (plc)Lecture 10.cont,11 (plc)
Lecture 10.cont,11 (plc)Mohamed Atef
 
Trends and challenges in vlsi
Trends and challenges in vlsiTrends and challenges in vlsi
Trends and challenges in vlsilabishettybhanu
 
DPSK(Differential Phase Shift Keying) transmitter and receiver
DPSK(Differential Phase Shift Keying) transmitter and receiverDPSK(Differential Phase Shift Keying) transmitter and receiver
DPSK(Differential Phase Shift Keying) transmitter and receiverSumukh Athrey
 

What's hot (20)

design of high speed performance 64bit mac unit
design of high speed performance 64bit mac unitdesign of high speed performance 64bit mac unit
design of high speed performance 64bit mac unit
 
I o ports.ppt
I o ports.pptI o ports.ppt
I o ports.ppt
 
ARM stacks, subroutines, Cortex M3, LPC 214X
ARM  stacks, subroutines, Cortex M3, LPC 214XARM  stacks, subroutines, Cortex M3, LPC 214X
ARM stacks, subroutines, Cortex M3, LPC 214X
 
Esp8266 basics
Esp8266 basicsEsp8266 basics
Esp8266 basics
 
Embedded system
Embedded systemEmbedded system
Embedded system
 
DSP_FOEHU - MATLAB 04 - The Discrete Fourier Transform (DFT)
DSP_FOEHU - MATLAB 04 - The Discrete Fourier Transform (DFT)DSP_FOEHU - MATLAB 04 - The Discrete Fourier Transform (DFT)
DSP_FOEHU - MATLAB 04 - The Discrete Fourier Transform (DFT)
 
System on Chip (SoC) for mobile phones
System on Chip (SoC) for mobile phonesSystem on Chip (SoC) for mobile phones
System on Chip (SoC) for mobile phones
 
fiber-optics-communications-optical-detectors
fiber-optics-communications-optical-detectorsfiber-optics-communications-optical-detectors
fiber-optics-communications-optical-detectors
 
Embedded systems
Embedded systems Embedded systems
Embedded systems
 
Fault tolerance techniques
Fault tolerance techniquesFault tolerance techniques
Fault tolerance techniques
 
System-on-Chip
System-on-ChipSystem-on-Chip
System-on-Chip
 
Chap1see4113
Chap1see4113Chap1see4113
Chap1see4113
 
Photonic Integrated Circuit Technology
Photonic Integrated Circuit TechnologyPhotonic Integrated Circuit Technology
Photonic Integrated Circuit Technology
 
Project Report on Embedded Systems
Project Report on Embedded Systems Project Report on Embedded Systems
Project Report on Embedded Systems
 
Fourier Series for Continuous Time & Discrete Time Signals
Fourier Series for Continuous Time & Discrete Time SignalsFourier Series for Continuous Time & Discrete Time Signals
Fourier Series for Continuous Time & Discrete Time Signals
 
Ece formula sheet
Ece formula sheetEce formula sheet
Ece formula sheet
 
OMAP
OMAPOMAP
OMAP
 
Lecture 10.cont,11 (plc)
Lecture 10.cont,11 (plc)Lecture 10.cont,11 (plc)
Lecture 10.cont,11 (plc)
 
Trends and challenges in vlsi
Trends and challenges in vlsiTrends and challenges in vlsi
Trends and challenges in vlsi
 
DPSK(Differential Phase Shift Keying) transmitter and receiver
DPSK(Differential Phase Shift Keying) transmitter and receiverDPSK(Differential Phase Shift Keying) transmitter and receiver
DPSK(Differential Phase Shift Keying) transmitter and receiver
 

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 SIMULINKIRJET 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 CostIJERA Editor
 
Smib pgm
Smib pgmSmib pgm
Smib pgmsannbhu
 
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 inverterPvrtechnologies 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
 
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-undergraduatesRajesh 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 EnableAIMST 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 ControllerDivyang soni
 
power electronics manual
power electronics manualpower electronics manual
power electronics manualm.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 LogicIRJET Journal
 
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 Algorithmijsrd.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 - FoAllison 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, RetroAllison 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 SynonymAllison Thompson
 
Writing A Successful College Essay - S
Writing A Successful College Essay - SWriting A Successful College Essay - S
Writing A Successful College Essay - SAllison 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 IntrAllison Thompson
 
Freedom Writers Movie Review Essay Materidikla
Freedom Writers Movie Review Essay MateridiklaFreedom Writers Movie Review Essay Materidikla
Freedom Writers Movie Review Essay MateridiklaAllison 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 EditorAllison Thompson
 
Final Student Evaluation Essay
Final Student Evaluation EssayFinal Student Evaluation Essay
Final Student Evaluation EssayAllison 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 AAllison 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 PaAllison 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 EAllison 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 ResAllison 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 WritiAllison 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 TeaAllison 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 CompetitionAllison Thompson
 
Writing A Paper In Scientific Format
Writing A Paper In Scientific FormatWriting A Paper In Scientific Format
Writing A Paper In Scientific FormatAllison 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 CollAllison 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

Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 

Recently uploaded (20)

Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 

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.