loading 请求处理中...
毕业论文 基于局部神经网络的电力需求预测研究

价格¥99.00元 /

销量浏览人数142

地区暂无

交付方式站内下载

现在购买

友情提醒:为保障您的利益,请网上成交,贵重物品,请将付款托管到平台进行交易。

免责声明:本网所展示的论文与服务信息由买卖双方自行提供,其真实性、准确性和合法性由信息发布人负责。本网不提供任何保证,并不承担法律责任。

描述 查看论文信息和论文文件预览

  毕业论文 基于局部神经网络的电力需求预测研究,共63页,32592字。
   摘要
   电力需求预测是实现电力系统安全、经济运行的基础,对一个电力系统而言,提高电网运行的安全性和经济性,改善电能质量,都依赖于准确的电力需求预测。中长期电力预测可以为新发电机组的安装以及电网的规划、增容和改建等提供决策支持,是电力规划部门的重要工作之一。
   本文提出基于局部神经网络的预测模型进行电力需求预测。首先,采用模式预处理的方法对原始时间序列归一化处理等;其次,用时间窗将时间序列分割成一系列矢量形式的样本,并在此基础上用主成分分析方法对样本进行特征提取,以降低样本的维数;再次,运用KNN搜索获得待预测样本的K个近邻;最后,用近邻样本训练一个RBF神经网络,并利用该局部神经网络进行待预测样本的预测。在局部RBF神经网络模型的选择上,本文采用基于网格搜索与交叉验证法相结合的方法进行神经网络模型参数的选择,避免了参数选择的盲目性、随意性,提高了预测精度。本文通过仿真实验对比了局部神经网络预测模型与全局RBF网络预测模型的性能和执行效率,结果表明局部神经网络预测模型无论在预测性能上还是在执行效率上都好于全局RBF网络预测模型。
  
   关键词:局部神经网络;主成份分析;KNN搜索;网格搜索;交叉验证
  
   Local Neural Network based Power Demand Forecasting
  
   Abstract
   Power demand forecasting is the basic issue to ensure the stable and economical operation of power system. For a power system, both the improvement of electricity quality and the increasing of operation stability and economy depend on the precise forecasting of power demand. Medium or long term power demand forecasting can offer some decision supports for the installation of new generators and the planning, capacity increase and rebuilding of the electric network, which is one of the most important work of the power planning departments.
   A local neural network model is proposed for power demand forecasting. Firstly, preprocessing of original time series such as normalization is done with some pattern preprocessing methods. Secondly, the time series are segmented into a series of samples with vector form by time window, and then feature extraction with principal component analysis (PCA) is done on the sample set in order to reduce dimensions of samples. Thirdly, k nearest neighbors of the sample to be predicted is obtained by k nearest neighbors searching (KNNS). Finally, the k nearest neighbor samples are used to train a RBF neural network, and then the sample to be predicted is predicted with the RBF neural network well trained. In this paper, grid searching and cross-validation method are used to search the optimal parameter of the RBF neural network, which can avoid the blindness and casualness of the parameter selection and improve the forecasting accuracy. Comparison of the prediction performance and implementation efficiency between the local neural network model and the global artificial neural network (ANN) is done by simulation experiments. Experimental results showed that the prediction performance and execution efficiency of local neural network model are better than those of global artificial neural network model.
  
  
   Keywords:Local neural network; Principal component analysis; k-nearest neighbors searching; Grid searching; Cross-validation
  
   目 录
   1.绪论 1
   1.1短期电量需求的意义及任务 1
   1.1.1电量预测的意义 1
   1.1.2短期电量预测的任务 2
   1.2电量预测研究现状 3
   1.3 论文的主要内容与结构 6
   2.电力需求分析及预测 7
   2.1电力负荷预测组成及作用 7
   2.1.1 电力负荷的分类 7
   2.1.2 负荷预测的分类 8
   2.1.3 负荷预测的特点和基本原理 9
   2.2 短期负荷分析 10
   2.2.1 短期负荷特性 11
   2.2.2 典型负荷分量分析 12
   2.2.3天气敏感负荷分量分析 14
   2.3 短期负荷预测的模型 15
   2.3.1 短期负荷预测模型要求 15
   2.3.2短期负荷预测的基本模型 16
   2.4 本章小结 17
   3.模式特征提取 18
   3.1 特征提取过程介绍 18
   3.2 数据的预处理 19
   3.2.1 消除稳态分量 19
   3.2.2 模式样本的归一化处理 19
   3.2.3 模式样本的平滑与分块 20
   3.3 主成分分析 20
   3.3.1 主成分分析介绍 21
   3.3.2主成分分析计算方法 21
   3.3.3主成分的性质 22
   3.4 本章小结 24
   4.人工神经网络理论基础 25
   4.1 人工神经网络基础 25
   4.1.1人工神经网络介绍 25
   4.1.2 神经网络的基本特征 25
   4.1.3 神经网络的结构 26
   4.2 RBF神经网络及应用举例 27
   4.2.1 径向基础函数网络 27
   4.2.2 径向基函数网络的构建 29
   4.2.3 径向基函数网络的应用实例 31
   4.2.4 人工神经网络在电力需求预测中的应用 33
   4.3本章小结 34
   5.最近邻搜索及交叉验证 35
   5.1 最近邻搜索 35
   5.1.1 KNN法 35
   5.1.2 KNN法的改进 35
   5.1.3 等均值最近邻搜索算法(ENNS) 36
   5.2 交叉验证法 37
   5.3 最优预测模型 38
   5.4 本章总结 39
   6.在MATLAB环境下实现电力需求预测 40
   6.1 MATLAB语言及其神经网络工具箱 40
   6.1.1 MATLAB简介 40
   6.1.2 人工神经网络工具函数 40
   6.2 MATLAB语言环境下的程序设计 41
   6.2.1 开发环境 41
   6.2.2 程序开发方法介绍 41
   6.2.3 具体实现方法 41
   6.3 算例分析 43
   6.4 仿真实验 44
   6.5 本章小结 46
   7.结论 47
   参考文献 48
   附录 本设计程序 50
   致谢 58


论文大小:2.03MB
论文格式:word
论文专业:电力系统
论文编号:103522
论文文件预览:
共1文件夹,1个文件,文件总大小:2.03MB,打包后大小:1.27MB

  • 毕业论文-基于局部神经网络的电力需求预测研究
  • doc基于局部神经网络的电力需求预测研究.doc  [2.03MB]

返回查看论文简介
  • 改文网是一个通过互联网,解决撰写方面的文章代写交易、论文代写平台,改文网本着让知识和财富快速流通、让时间和金钱等比交换的原则!致力于打造一个让网络写作人才展露头角的舞台,一个让能力变成财富的平台,一个用时间换取金钱的空间!
  • 改文网的所有论文代写任务都支持稿件交易中介服务,其运作的实质是以改文网作为交易中介,在雇主确认收到满意稿件前,由改文网替约稿双方暂时托管稿费,有效解决论文代写过程中普遍存在的诚信问题,保障写手和雇主双方利益。
  • 改文网代写论文代写文章包括经济、计算机、管理、各种设计、法律、教育、理学、人文、工科、医学、农业、论文写作指导、应用文写作、文章代写等多种撰写格式,我们拥有成千上万计的各专业网络写手,并长期活跃在改文网,为您分忧解难或提供详尽的代写方案
  • 您还可以通过论文代写平台参与代写职称论文代写毕业论文等写作任务来赚取稿费;并可建立自己的个人代写店铺,这是展示您的一个宣传平台!在论文代写论坛里,您可以与大量的论文写作爱好者,写作高手共同探讨写作方面的话题,增长见识,提升您的写作文笔。