Report 3
Report 3
No.
Name: HARI VARSHAN Roll No.:107120051
Transmission Line Parameter Calculation
AIM:
PROGRAM (CODE) :
V = 400 * (10^3);
diameter = 15 * (10^-3);
condDistance = 30 * (10^-2);
verDistance = 3;
horDistance = 5 ;
horCenDistance = 7.5 ;
% QUES 1
SGMD = (condDistance*0.7788*diameter/2)^0.5;
SGMD = (condDistance*diameter/2)^0.5;
CAPACITANCE = (10^-9) * (10^9) /(18* log(MGMD/SGMD));
fprintf('QUES 1 :\n');
PRINT(INDUCTANCE,CAPACITANCE,SIL)
fprintf('\n');
% QUES 2
fprintf('QUES 2 :\n');
PRINT(INDUCTANCE,CAPACITANCE,SIL)
fprintf('\n');
% QUES 3
condDistance = 40 * (10^-2);
fprintf('QUES 3 :\n');
PRINT(INDUCTANCE,CAPACITANCE,SIL)
function [] = PRINT(INDUCTANCE,CAPACITANCE,SIL)
fprintf('INDUCTANCE = %d mH/km/phase \n',INDUCTANCE);
fprintf('CAPACITANCE = %d uF/km/phase \n',CAPACITANCE);
fprintf('SIL = %d VAR \n',SIL);
end
MATLAB OUTPUT:
OBSERVATION:
● The inductance, capacitance of the transmission line was computed for the given parameters.
● Inductance is lower for a double circuit line than for a single circuit line. Capacitance is higher for
a double circuit line than for a single circuit line.
INFERENCE:
● SGMD is higher for a double circuit line than for a single circuit line, since conductors for the
same phase are spaced out more.