Sei sulla pagina 1di 7

COMPUTATION OF TRANSMISSION LINES PARAMETERS Expt.

No:2 Date : AIM To determine the positive sequence line parameters L and C per phase per kilometer of a three phase single and double circuit transmission lines for different conductor arrangements . SOFTWARE REQUIRED: MATLAB 7.6 THEORY Transmission line has four parameters namely resistance, inductance, capacitance and conductance. The inductance and capacitance are due to the effect of magnetic and electric fields around the conductor. The resistance of the conductor is best determined from the manufactures data, the inductances and capacitances can be evaluated using the formula. FORMULAS: Inductance: The general formula: L = 0.2 ln (Dm / Ds) mH / KM Where, Dm = geometric mean distance (GMD) Ds = geometric mean radius (GMR) Single phase 2 wire system GMD = D GMR = re-1/4 = r' = 0.7788 r Where, r = radius of conductor Three phase symmetrical spacing GMD = D GMR = re-1/4 = r' Where, r = radius of conductor & GMR = re-1/4 = r' = 0.7788 r Capacitance: A general formula for evaluating capacitance per phase in micro farad per km of a transmission line is given by C = 0.0556/ ln (Deq / r) F/km Where, GMD is the Geometric mean distance which is same as that defined for inductance under various cases. ALGORITHM: Step 1: Start the Program. Step 2: Get the input values for distance between the conductors and bundle spacing of D12, D23 and D13. Step 3: From the formula given calculate GMD. GMD= (D12, D23, D13)1/3 Step 4: Calculate the Value of Impedance and Capacitance of the line. Step 5: End the Program.

FLOW CHART:

PROCEDURE: 1. Enter the command window of the MATLAB. 2. Create a new M file by selecting File New M File 3. Type and save the program in the editor window. 4. Execute the program by either pressing Tools Run. 5. View the results EXERCISE: 1 A three phase transposed line has its conductors placed at a distance of 11M, 11 M & 22 M. The conductors have a diameter of 3.625cm Calculate the inductance and capacitance of the transposed conductors. (a) Determine the inductance and capacitance per phase per kilometer of the above three lines. (b) Verify the results using the MATLAB program. PROGRAM: %3 phase single circuit D12=input('enter the distance between D12in cm: '); D23=input('enter the distance between D23in cm: '); D31=input('enter the distance between D31in cm: '); d=input('enter the value of d: '); r=d/2; Ds=0.7788*r; x=D12*D23*D31; Deq=nthroot(x,3); Y=log(Deq/Ds); inductance=0.2*Y capacitance=0.0556/(log(Deq/r)) fprintf('\n The inductance per phase per km is %f mH/ph/km \n',inductance); fprintf('\n The capacitance per phase per km is %f mf/ph/km \n',capacitance); Output of the program The inductance per phase per km is 1.377882 mH/ph/km The capacitance per phase per km is 0.008374 mf/ph/km

EXERCISE: 2 A 345-kV double-circuit three-phase transposed line is composed of two AC SR, 1,431,000cmil, 45/7 Bobolink conductors per phase with vertical conductor configuration as show in figure. The conductors have a diameter of 1.427 inch and a GMR of 0.564 inch. The bundle spacing in 18 inch. Find the inductance and capacitance per phase per Kilometer of the Line. The Following commands

PROGRAM: %3 phase double circuit %3 phase single circuit D12=input('enter the distance between D12in cm: '); D23=input('enter the distance between D23in cm: '); D31=input('enter the distance between D31in cm: '); d=input('enter the value of d: '); r=d/2; Ds=0.7788*r; x=D12*D23*D31; Deq=nthroot(x,3); Y=log(Deq/Ds); inductance=0.2*Y capacitance=0.0556/(log(Deq/r)) fprintf('\n The inductance per phase per km is %f mH/ph/km \n',inductance); fprintf('\n The capacitance per phase per km is %f mf/ph/km \n',capacitance); Output of the program The inductance per phase per km is 1.377882 mH/ph/km The capacitance per phase per km is 0.008374 mf/ph/km

RESULT: Thus the positive sequence line parameters L and c per phase per kilometer of a three phase single and double circuit transmission lines for different conductor arrangement were determined and verified with MATLAB software.

MODELLING OF TRANSMISSION LINES PARAMETER Expt.No:3 Date : AIM: To understand the modeling and performance of medium lines SOFTWARE REQUIRED: MATLAB 7.6 THEORY: Transmission line has four parameters namely resistance, inductance, capacitance and conductance. The inductance and capacitance are due to the effect of magnetic and electric fields around the conductor. The resistance of the conductor is best determined from the manufactures data, the inductances and capacitances can be evaluated using the formula. FORMULAS: Inductance: The general formula: L = 0.2 ln (Dm / Ds) mH / KM Where, Dm = geometric mean distance (GMD) Ds = geometric mean radius (GMR) Single phase 2 wire system GMD = D GMR = re-1/4 = r' = 0.7788 r Where, r = radius of conductor Three phase symmetrical spacing GMD = D GMR = re-1/4 = r' Where, r = radius of conductor & GMR = re-1/4 = r' = 0.7788 r Capacitance: A general formula for evaluating capacitance per phase in micro farad per km of a transmission line is given by C = 0.0556/ ln (Deq / r) F/km Where, GMD is the Geometric mean distance which is same as that defined for inductance under various cases. ALGORITHM: Step 1: Start the Program. Step 2: Get the input values for conductors. Step 3: To find the admittance (y) and impedance (z). Step 4: To find Receiving end Voltage and Receiving end Power. Step 5: To find Receiving end Current and Sending end Voltage and Current. Step 6: To find the Power factor and sending ending power and Regulation.

FLOW CHART:

PROCEDURE: 1. Enter the command window of the MATLAB. 2. Create a new M file by selecting File - New M File 3. Type and save the program in the editor window. 4. Execute the program by either pressing Tools Run. 5. View the results PROGRAM: %3 phase double circuit S = input('Enter row vector [S11, S22, S33] = '); H = input('Enter row vector [H12, H23] = '); d = input('Bundle spacing in inch = '); dia = input('Conductor diameter in inch = '); r=dia/2; Ds = input('Geometric Mean Radius in inch = '); S11 = S(1); S22 = S(2); S33 = S(3); H12 = H(1); H23 = H(2); a1 = -S11/2 + j*H12; b1 = -S22/2 + j*0; c1 = -S33/2 - j*H23; a2 = S11/2 + j*H12; b2 = S22/2 + j*0; c2 = S33/2 - j*H23; Da1b1 = abs(a1 - b1); Da1b2 = abs(a1 - b2); Da1c1 = abs(a1 - c1); Da1c2 = abs(a1 - c2); Db1c1 = abs(b1 - c1); Db1c2 = abs(b1 - c2); Da2b1 = abs(a2 - b1); Da2b2 = abs(a2 - b2); Da2c1 = abs(a2 - c1); Da2c2 = abs(a2 - c2); Db2c1 = abs(b2 - c1); Db2c2 = abs(b2 - c2); Da1a2 = abs(a1 - a2); Db1b2 = abs(b1 - b2); Dc1c2 = abs(c1 - c2); DAB=(Da1b1*Da1b2* Da2b1*Da2b2)^0.25; DBC=(Db1c1*Db1c2*Db2c1*Db2c2)^.25; DCA=(Da1c1*Da1c2*Da2c1*Da2c2)^.25; GMD=(DAB*DBC*DCA)^(1/3) Ds = 2.54*Ds/100; r = 2.54*r/100; d = 2.54*d/100; Dsb = (d*Ds)^(1/2); rb = (d*r)^(1/2); DSA=sqrt(Dsb*Da1a2); rA = sqrt(rb*Da1a2); DSB=sqrt(Dsb*Db1b2); rB = sqrt(rb*Db1b2); DSC=sqrt(Dsb*Dc1c2); rC = sqrt(rb*Dc1c2); GMRL=(DSA*DSB*DSC)^(1/3) GMRC = (rA*rB*rC)^(1/3) L=0.2*log(GMD/GMRL) % mH/km C = 0.0556/log(GMD/GMRC) % micro F/km RESULT: Thus the modeling of transmission line was done and the sending end parameter, regulation& efficiency were determined and verified using MATLAB software.

Potrebbero piacerti anche