简单的潮流计算-本科毕业设计

发布时间 : 星期五 文章简单的潮流计算-本科毕业设计更新完毕开始阅读

湖南工业大学本科毕业设计(论文)

摘 要

本文分别对4节点电力网络,5节点电力网络和30节点的电力网络进行简单的电力网络的潮流计算,采用 C++软件平台编制潮流程序,分别采用牛拉法和PQ快速解耦法编制了两个程序,通过对比两种算法的计算结果、迭代精度和迭代次数,进而分析得出两种潮流计算机方法的特点。

电力系统的潮流计算是用来监测和研究有关于电力系统稳态运行状况的基本计算,是电力系统规划设计、运行与分析的基本工具。为提高电力网络系统自动化操作的快速性及准确性,而且让系统可以进行安全、系统地进行实时分析,电力网络的潮流变化信息是一项重要的资源,所以对于电力网络进行潮流计算是现在潮流计算的发展的一个方面。

本文的主要内容就是基于简单电力网络地潮流计算设计,结合牛顿-拉夫逊法潮流计算,采用PQ快速解耦发潮流计算程序,完成基于C语言的电力系统潮流计算程序的设计。在电力系统在正常运行的情况下,通过对电力系统的潮流(功率、电压、相角等)来对电力系统网络的某一个特定时间点的运行状态进行描述。本文基于以上的基础知识对于电力系统网络潮流计算进行了设计、仿真,并且分析了在不同场景两种计算方法的结果精确度。

关键词:C++编程;潮流计算;牛顿-拉夫逊算法;PQ快速解耦法;迭代比较

I

湖南工业大学本科生毕业设计(论文)

ABSTRACT

Electric power network, this article respectively to four node 5 node power network with 30 nodes of power network to carry on the simple electric network power flow calculation, using c + + software platform trend program, with rafa and PQ fast decoupling method created two programs, by comparing the calculation results of two algorithms, iterative precision and the number of iterations, then analysis the characteristics of the two methods of trend of the computer。

Flow calculation of power system is used for monitoring and research on the condition of power system steady state operation basic computing, is the analysis of power system planning and design, operation and basic tools.In order to improve the rapidity and accuracy of electric power network automation system, and make the system can real-time security, system analysis, the trend of the power network change is an important information resources, so the power flow calculation for power network is now an aspect of the development of the power flow calculation.

The main content of this article is based on simple network power flow calculation of design, combined with the Newton - Ralph method flow calculation, the PQ fast decoupled power flow calculation program, complete the power system flow calculation based on the C language program design.In the case of a power system in normal operation, through to the trend of the power system (power, voltage, phase Angle, etc.) to the power system network operation state of a particular point in time is described.In this paper, based on the above basic knowledge of network power flow calculation for power system with the design, simulation, and analyzed the result precision of two calculation methods in different scenarios.

Key Words:C + + programming;Power flow calculation; Newton - Ralph monson algorithm; PQ fast decoupled method; Iterative comparison

II

湖南工业大学本科毕业设计(论文)

目录

摘 要 .......................................................................................................................... I ABSTRACT .................................................................................................................II 第一章 绪 论.............................................................................................................. 1

1.1研究背景........................................................................................................ 1 1.2发展历史........................................................................................................ 1 1.3本文主要工作................................................................................................ 2 第二章 电力网络的数学模型及求解方法................................................................ 3

2.1节点导纳矩阵................................................................................................ 3

2.1.1节点导纳矩阵的形成......................................................................... 3 2.1.2变压器的∏型等值电路 ..................................................................... 4 2.1.3节点导纳矩阵的修改......................................................................... 6 2.2高斯消去法.................................................................................................... 7 2.3因子表和三角分解........................................................................................ 9 2.4稀疏技术...................................................................................................... 10 2.5电子网络节点编号优化.............................................................................. 11 第三章 电力系统潮流计算...................................................................................... 14

3.1潮流计算问题的节点类型.......................................................................... 14 3.2潮流计算方法.............................................................................................. 14

3.2.1潮流计算方法简介........................................................................... 14 3.2.2牛顿-拉夫逊法和PQ分解法的特点 .............................................. 15 3.2.3牛顿-拉夫逊潮流计算过程 ............................................................. 17 3.2.4牛顿-拉夫逊潮流计算程序流程图 ................................................. 20 3.3潮流计算的约束条件.................................................................................. 21 第四章 牛拉法编程实现.......................................................................................... 22

4.1算例说明...................................................................................................... 22 4.2算例原始数据(以IEEE-4节点为例).................................................... 22

4.2.1节点数据........................................................................................... 22 4.2.2 第二部分:支路数据...................................................................... 23 4.2.3数据文件输入范例........................................................................... 24 4.3数据结构简介.............................................................................................. 24 4.4子函数功能: ................................................................................................ 27 4.5程序基本流程图: ........................................................................................ 27 4.6潮流计算编程运行...................................................................................... 29

III

湖南工业大学本科生毕业设计(论文)

4.6.1潮流计算编程运行计算结果........................................................... 29 4.6.2潮流计算编程运行计算结导出文件............................................... 29 4.6.5结果校验........................................................................................... 30

第五章PQ快速解耦法编程实现 ............................................................................ 32

5.1算例说明...................................................................................................... 32 5.2算例原始数据(以IEEE-5节点为例).................................................... 32

5.2.1节点数据........................................................................................... 32 5.2.2第二部分:支路数据....................................................................... 33 5.2.3第三部分:节点数据....................................................................... 33 5.2.4数据文件输入范例........................................................................... 34 5.3数据结构简介.............................................................................................. 34 5.4子函数功能: ................................................................................................ 35 5.5程序基本流程图: ........................................................................................ 36 5.6潮流计算编程运行...................................................................................... 38

5.6.1潮流计算编程运行计算结果........................................................... 38 5.6.2潮流计算编程运行计算结导出文件............................................... 38 5.6.3PQ解耦法和牛拉法的比较 ............................................................. 40 5.6.4PQ解耦法和牛拉法的比较结论 ..................................................... 42 5.6.5结果校验........................................................................................... 42

第六章 电力系统潮流分析程序算例应用.............................................................. 46

6.1潮流计算编程运行计算结果...................................................................... 47 6.2潮流计算编程运行计算结导出文件.......................................................... 48 6.3计算结果的对比分析.................................................................................. 49 总结............................................................................................................................ 53 致 谢.......................................................................................................................... 54 参考文献.................................................................................................................... 55

IV

联系合同范文客服:xxxxx#qq.com(#替换为@)