南昌大学电力系统学科导论(双语)指导书.pdf
![资源得分’ title=](/images/score_1.gif)
![资源得分’ title=](/images/score_1.gif)
![资源得分’ title=](/images/score_1.gif)
![资源得分’ title=](/images/score_1.gif)
![资源得分’ title=](/images/score_05.gif)
《南昌大学电力系统学科导论(双语)指导书.pdf》由会员分享,可在线阅读,更多相关《南昌大学电力系统学科导论(双语)指导书.pdf(103页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、Laboratory:Electric Power System and Its AutomationThe Guide of ExperimentIntroduction to powersystemsInformation Engineering SchoolNanchang UniversitySep.2010CONTENTSEXPERIMENT 1Bus ADMITTANCE MATRIX.1/.Objective.12.Discussion.13.Mathmatics model.24.System Requirement.35.Procedure.46.Exercises.47.T
2、he flow chart.6EXPERIMENT 2.12Bus IMPEDANCE MATRIX.12I.Objective.122.Discussion.12Zbus CALCULATION.13CASE 1:Adding zb from a new bus p to the reference bus 0.14CASE 2:Adding zb from a new bus p to an existing bus k.14CASE 3:Adding zb from an existing bus k to the reference bus 0.15CASE 4:Adding zb f
3、rom two existing buses j and k.16Comments on the algorithm.183.System Requirement.194.Procedure.795.Mathmatics model.196.Exercises.20Example 120Example 2.20EXPERIMENT 3.25SHORTCIRCUETCALCULATIONS WITH BUS IMPEDANCE MATRIX.251.Objective.252.Discussion.253.Mathmatics model.254.System Requirement.255.P
4、rocedure.256.Exercises.25EXAMPLE 3.27MATRIX METHODS FOR NETWORK SOLUTIONS.27EXAMPLE 3.8.30EXPERIMENT 4.39GAUSS-SEIDEL POWER FLOW.39/.Objective.392.Discussion.393.Mathmatics model.394.Gauss-Seidel Power Flow Solution.405.Line Flows and Losses.426.System Requirement.437.Procedure.438.Exercises.449.The
5、 flow chart of Gauss Seidel Power Flow(Quitted).449.Reference Progrom.45Experiment 1Bus Admittance MatrixEXPERIMENT 5.48NEWTON-RAPHSION POWER FLOW.481.Objective.482,Discussion.483.Mathmatics model.484.Newton-Raphsion Power Flow Solution.495.Line Flows and Losses.526.System Requirement.527.Procedure.
6、528.Exercises.539.The flow chart of Newton Raphsion solution(Ommited).5410.Reference program.55EXPERIMENT 6.58FAST DECOUPLED POWER FLOW.581.Objective.582.Discussion.583.Mathmatics model.584.Fast Decoupled Fbwer Flow Solution.595.Line Flows and Losses.616.System Requirement.627.Procedure.628.Exercise
7、s.639.The flow chart of Fast Decoupled Power Flow(Omitted).6310.Reference Program.70APPENDIX 1 THE IMPEDANCE MATRIX ZBUS.72APPENDIX 2 YBUS MODIFICATIONS.84APPENDIX 3 MATRIX INVERSION LEMMA(矩阵求逆引理).85Experiment 1Hour:4Bus Admittance Matrix1.Objective To write a simple program in MATLAB for the algori
8、thm of bus admittance matrix.2.DiscussionBus Admittance matrixThe node-voltage equation of an n-bus power system can be written in matrix form asOr(1)b u s=Ybu8VM8Where I is the column vector of the injected bus currents.V is the column vector ofbus busbus voltages measured from the reference node.Y
9、bus is known as the bus admittancematrix.Calculation method:1.The diagonal element of each node is the sum of admittances connected to it.It isknown as the self-admittance or driving point admittance,i.e.,Page I Total 103Experiment 1Bus Admittance Matrix2.The off-diagonal element is equal to the neg
10、ative of the admittance between thenodes.It is known as the mutual admittance or transfer admittance,i.e.4=3 (4Result:Base on the equations(3)and(4),the algorithm of bus admittance matrix can be usedto build the bus admittance matrix(Y).3.Mathmatics modelThe mathematics models of power system elemen
11、ts are two kinds,one istransmission line or cable and another is transformer,and they are equivalent into pitype equivalent circuit,and described as following:1)Transmission line or cableAccording to the Pi sectional circuit of transmission line or cable,we can get theelements of nodal Admittance ma
12、trix value,as the following&+jxFigure:The pi section equivalent circuit of transmission line or cable(6)网2)transformerZTThe Guide of Experiment of Short Circuit CalculationInformation Engineering SchoolAs show as the transformer circuit,we havey、匕k(9)/,=-M (10)According to equations(10)and(9),we hav
13、e/y=(V -A:v,.)=V +(V -V,.)-V =+(v.-V,)J 7、)“7 J 1 7 J 7 J 7、,K2Z9=%+K“-KnZTl KZe(12)Assume YTZ/R)+jx uY=Y+(13)(14)(15)(16)=%4.System RequirementComputer with MATLAB 6 or above installed.Page 3 Total 103Experiment 1Bus Admittance Matrix5.Procedure1.0 Launch the MATLAB program.Figure 12.0 Go to FILE N
14、EW M-file.Figure 23.0 Write a function Y=The_Node_Admittance_Matrix(T opostruct ureAndBranchPara)for theformation of the bus admittance matrix.4.0 TopostructureA ndBranchPara is the transmission line,cable and transformerinput data and contains five columns parameters.The first two columns are theli
15、ne bus numbers and the remaining columns contain the line resistance andreactance in per-unit and transformer tap ratio or capacitor of transmission line.5.0 The function should return the bus admittance matrix.6.ExercisesUse the written function,Y=The_Node_Admittance_Matrix(TopostructureAndBranchPa
16、ra)to obtain the Ybus of the following power system network:Q1.You are required to write the Ybus topological structure and parameter into a textfile.(Hint:use the matlab text compiler to write down the table 1 data,using thecomma to separate the parameters,and save it use the name of4_Power_System_
17、Data.dbf)Q2.You are required to write out the program flow figure of forming a nodaladmittance matrix.Hint.You are required to compile a program to form the Ybus Matrix,the following值A工 在 后 优Information Engineering SchoolThe Guide of Experiment of Short Circuit Calculationprogram is a reference prog
18、ram to you.Figure:One-line diagram of power systemFor example,from the textbook“power system analysis No.2 edition 3 on page 61-62Table 1:Transformer and transmissssion Line dataFrom Bus#To Bus#R(p.u)X(p.u)B(p.u)or ratio KOthers120.10.4j0.015281300.31.1140.120.5j0.01920240.080.40J0.01413Page 5 Total
19、 103Experiment 1Bus Admittance Matrix7.The flow chartFigure:The flow chart of Forming Nodal Admittance Matrix6 台 J /Information Engineering SchoolThe Guide of Experiment of Short Circuit Calculation-Reference 1%fu n ctio n OutPut=The_Node_Adinittance_Matrix(handles)%is a subroutine o f Pow erSystem
20、CaIculationfu n ctio n OutPut=The_Node_Admittance_Matrix(handles)%the fo llo w in g program is open a data f i l e and get the Number o f%Node and Branch data to form a nodal addm ittance m atrix省the fo llo w in g code is open a f i l e and read the data o f power systemnetworkfnamepname=u ig e tfil
21、e(*.d b ff S e le c t the network param etred a ta-fileT);TopoSt ruetureAndBranchPara=csvread(fnam e);NumberOfBranchf NumberOfPara=size(TopoStructureAndBranchPara);Temporary1=max(TopoStructureAndBranchPara(:,1);Temporary2=max(TopoStructureAndBranchPara(:f 2);i f Temporaryl Temporary2NumberOfNode=Tem
22、poraryl;e lseNumber0fNode=Temporary2;end%The fo llo w in g program is to form the Nodal Adm ittance M atrix%and the Topologic stru c tu re and Branch Parametres are arranged%I,JfR,Xf C/Kf and pay a tte n tio n to the inpedence o f transform er is inthe%sid e o f Node J and the r a tio o f transform
23、er 1:K is in the sid e o f NodeIfo r Ci r d eNumber1=1:NumberOfBranchfo r CircleNumber2=l:NumberOfBranchN odalAdm ittanceM atrix(Ci r d eNumber 1,Ci r d eNumber2)=0;endendfo r CircleNum ber=l:NumberOfBranchi f TopoStructureAndBranchPara(CircleNumber,5)0.85NodalAdm ittanceM atrix(TopoStructureAndBran
24、chPara(TopoStructureAndBranchPara(Ci rdeN um ber,1)f TopoStructureAndBranchPara(CircleNumberf1)=.NodalAdm ittanceM atrix(TopoStructureAndBranchPara(TopoStructureAndBranchPara(Ci r d eNumber,1)f TopoStructureAndBranchPara(CircleNumberf1)+TopoStruct ureAndBranchPara(Ci r d eNumberf 5)八2/.(TopoStructur
25、eAndBranchPara(CircleNumberf3)+.j TopoSt ructureAndBranchPara(Ci r d eNumber f 4);Page 7 Total 103Experiment 1Bus Admittance MatrixN odalA dm ittanceM atrix(TopoStructureA ndB ranchP ara(Ci r d eNumberf2),TopoS tru c t ureAndBranchPara(C ircleN um berf2)=.N odalA dm ittanceM atrix(TopoStructureA ndB
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 南昌大学 电力系统 学科 导论 双语 指导书
![提示](https://www.taowenge.com/images/bang_tan.gif)
限制150内