您现在正在浏览:首页 > 论文 > 电子电工 > 毕业论文-基于局部神经网络的电力需求预测研究

免费下载毕业论文-基于局部神经网络的电力需求预测研究

  • 资源类别:论文
  • 资源分类:电子电工
  • 适用专业:电力系统
  • 适用年级:大学
  • 上传用户:a615567101
  • 文件格式:word
  • 文件大小:1.27MB
  • 上传时间:2010-3-31 14:58:04
  • 下载次数:0
  • 浏览次数:70

安全检测:瑞星:安全 诺顿:安全 卡巴:安全

资料简介
毕业论文 基于局部神经网络的电力需求预测研究,共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
资料文件预览
共1文件夹,1个文件,文件总大小:2.03MB,压缩后大小:1.27MB
  • 毕业论文-基于局部神经网络的电力需求预测研究
    • Microsoft Word文档基于局部神经网络的电力需求预测研究.doc  [2.03MB]
下载地址
资料评论
注意事项
下载FAQ:
Q: 为什么我下载的文件打不开?
A: 本站所有资源如无特殊说明,解压密码都是www.xuehai.net,如果无法解压,请下载最新的WinRAR软件。
Q: 我的学海币不多了,如何获取学海币?
A: 上传优质资源可以获取学海币,详细见学海币规则
Q: 为什么我下载不了,但学海币却被扣了?
A: 由于下载人数众多,下载服务器做了并发的限制。请稍后再试,48小时内多次下载不会重复扣学海币。
下载本文件意味着您已经同意遵守以下协议
1. 文件的所有权益归上传用户所有。
2. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
3. 学海网仅提供交流平台,并不能对任何下载内容负责。
4. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
5. 本站不保证提供的下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
论文相关下载
返回顶部