0% found this document useful (0 votes)
10 views

Ex. No: Date:: Computation of Line Parameters Using Matlab

The document contains a MATLAB program that calculates the line parameters (L and C values) of an overhead transmission line based on input values for the line diameters and distances. The program takes in Dab, Dbc, Dca, and diameter as inputs, calculates r and r1, and then displays the inductance L per km, inductance L1 for a 100km line, capacitance C per meter, and capacitance C1 for a 100km line.

Uploaded by

kesavapriya r
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views

Ex. No: Date:: Computation of Line Parameters Using Matlab

The document contains a MATLAB program that calculates the line parameters (L and C values) of an overhead transmission line based on input values for the line diameters and distances. The program takes in Dab, Dbc, Dca, and diameter as inputs, calculates r and r1, and then displays the inductance L per km, inductance L1 for a 100km line, capacitance C per meter, and capacitance C1 for a 100km line.

Uploaded by

kesavapriya r
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Ex.

No:
COMPUTATION OF LINE PARAMETERS USING MATLAB
Date :

Program:

Dab=input(‘Enter Dab value:’);

Dbc=input(‘Enter Dbc value:’);

Dca=input(‘Enter Dca value:’);

Dia=input(‘Enter diameter value in meter:’);

disp(‘Value of r in meter:’);

r=Dia/2

disp(‘Value of r1 in meter:’);

r1=r*0.7788

disp(‘Value of L in mH/km:’);

L=2*10^-4*log(Dab/r1)

disp(‘Value of L1 for 100 km line in H/km:’);

L1=L*100

disp(‘Value of C in micro farad/meter:’);

C=2*3.14*8.854*10^-12/(log(Dab/r))

disp(‘Value of C1 for 100 km line in mF/km:’);

C1=C*100
Output:

Enter Dab value:3

Enter Dbc value:3

Enter Dca value:3

Enter diameter value in meter: 0.0163

Value of r in meter:

r=0.0815

Value of r1 in meter:

r1=0.0634

Value of L in mH/km:

L= 1.2316

Value of L1 for 100 km line in H/km:

L1=0.12136

Value of C in micro farad/meter:

C=9.41

Value of C1 for 100 km line in mF/km:

C1=0.941

You might also like