【正文】
Experiment Introduction to power systems學(xué)生姓名: 學(xué) 號(hào): 專業(yè)班級(jí): 實(shí)驗(yàn)名稱: 電力系統(tǒng)導(dǎo)論(雙語(yǔ)) 2022 年 6 月 5 日 CONTENTS EXPERIMENT 1 .........................................................................................................1BUS ADMITTANCE MATRIX .......................................................................................................................16 EXPERIMENT 2 .........................................................................................................6BUS IMPEDANCE MATRIX ........................................................................................................................613 EXPERIMENT 3 .......................................................................................................13GAUSSSEIDEL AND NEWTON METHOD..................................................................................................1316 PERSENAL SUMMARY.......................................................................................160Experiment 1Bus Admittance Matrix1. Objective To write a simple program in MATLAB174。 for the algorithm of bus admittance matrix. 2. System Requirement Computer with MATLAB174。 6 or above installed. 3. Procedure Launch the MATLAB program. Go to FILE NEW Mfile. Write a function Y = The_Node_Admittance_Matrix(TopoStructureAndBranchPara) for the formation of the bus admittance matrix. 1 TopoStructureAndBranchPara is the transmission line, cable and transformer input data and contains five columns parameters. The first two columns are the line bus numbers and the remaining columns contain the line resistance and reactance in perunit and transformer tap ratio or capacitor of transmission line. The function should return the bus admittance matrix. 4. Exercises Use the written function, Y = The_Node_Admittance_Matrix (TopoStructureAndBranchPara) to obtain the Ybus of the following power system work: Q1. You are required to write the Ybus topological structure and parameter into a text file. (Hint: use the matlab text piler to write down the table 1 data, using the ma to separate the parameters, and save it use the name of ) Q2. You are required to write out the program flow figure of forming a nodal admittance matrix.Hint. You are required to pile a program to form the Ybus Matrix, the following program is a reference program to you. Figure : Oneline diagram of power systemFor example ,from the textbook “power system analysis” edition 3 on page 61~62 NodalAdmittanceMatrix = + 0 + + + 0 0 Table 1:Transformer and transmissssion Line dataFrom Bus To Bus R() X() B()or ratio K Others1 2 1 3 0 1 4 2 4 2 0 + 0 0 0 + 0 0 flow chart Figure : The flow chart of Forming Nodal Admittance MatrixThe program is:%function OutPut=The_Node_Admittance_Matrix(handles)%is a subroutine of PowerSystemCalculationfunction OutPut=The_Node_Admittance_Matrix(handles)%the following program is open a data file and get the Number of % Node and Branch data to form a nodal addmittance matrix%the following code is open a file and read the data of power system work[fname,pname] = uigetfile(39。*.dbf39。,39。Select the work parametre datafile39。)。TopoStructureAndBranchPara= csvread(fname)。[NumberOfBranch,NumberOfPara]=size(TopoStructureAn