MATLAB cod1
MATLAB cod1
%Check the electrical design criterion of any transmission line of your preference
connecting a hydro power to a substation of Integrated Nepal Power System. Repeat
this calculation for “two more better conductors than one currently used (See Table
1)” and compare the electrical performance for all conductor cases. Use single
circuit configuration for voltage level up to 132kV and double circuit configuration
for voltage level from 220kV and above,
i = p / (sqrt(3) * v * pf);
% Resistance at 40°C
r_40 = r_20 * (1 + alpha * (t_max - t_0));
%diagonal
da = 8.97; % diagonal distance between conductors
db = 8.728; % distance between two conductors
dc = 2.055; % height of the two conductors
% Corona effect
m = 0.9;
ro = 0.9;
Vci = sqrt(3) * 21.21 * (GMRC / 10) * m * ro * log(GMD / (GMRC / 1000)); % corona
voltage
% Display results
fprintf('Ampacity is %.2f A\n', i);
fprintf('Efficiency is %.2f %%\n', efficiency);
fprintf('Voltage Regulation is %.2f %%\n', VR);
fprintf('Corona Inception Voltage is %.2f kV\n', Vci);
Result: