Formation of Z Bus Using Step by Step Method: Matlab Code
Formation of Z Bus Using Step by Step Method: Matlab Code
Formation of Z Bus Using Step by Step Method: Matlab Code
fprintf(op,'\n\n\tzbus is\n\n');
for i=1:maxi
for j=1:maxi
fprintf(op,'%g\t',zbus(i,j));
end
160060049
fprintf(op,'\n');
end
fclose(ip);
fclose(op);
Input:
1 0 0.25
2 1 0.1
3 1 0.1
2 0 0.25
2 3 0.1
Output:
Line data
1 0 0.25
2 1 0.1
3 1 0.1
2 0 0.25
2 3 0.1
zbus is