当前位置:网站首页>Optimal Power Flow (OPF) for High Voltage Direct Current (HVDC) (Matlab code implementation)
Optimal Power Flow (OPF) for High Voltage Direct Current (HVDC) (Matlab code implementation)
2022-08-03 15:33:00 【Electrical Engineering Workshop】
欢迎来到本博客️️️
作者研究:本科计算机专业,研究生电气学硕.主要研究方向是电力系统和智能算法、机器学习和深度学习.目前熟悉python网页爬虫、机器学习、群智能算法、深度学习的相关内容.希望将计算机和电网有效结合!️️️
博主优势:博客内容尽量做到思维缜密,逻辑清晰,为了方便读者,博主专门做了一个专栏目录,整个专栏只放了一篇文章,足见我对其重视程度:博主专栏目录.做到极度细致,方便大家进行学习!亲民!!!还有我开了一个专栏给女朋友的,很浪漫的喔,代码学累的时候去瞧一瞧,看一看:女朋友的浪漫邂逅.有问题可以私密博主,博主看到会在第一时间回复.
目前更新:电力系统相关知识,期刊论文,算法,机器学习和人工智能学习.
支持:如果觉得博主的文章还不错或者您用得到的话,可以关注一下博主,如果三连收藏支持就更好啦!这就是给予我最大的支持!
欢迎您的到来
个人主页:科研室
All code directory:Electrical Engineering Research Society
【现在公众号名字改为:荔枝科研社】
本文目录如下:️️️
目录
1 概述
China's high-voltage technology is a leader in the world,Very proud of us!
高压直流输电(HVDC)是一种成熟的技术,Power can be transmitted over long distances,Interconnection can also be achieved between asynchronous networks.The most common HVDC configuration(即点对点)Includes two converter stations connected by overhead power lines or submarine cables,如图1a所示.然而,Future power systems will require meshed DC networks for useSuperGrids [1]and offshore wind farms[2]等应用.This type of DC grid,That is, the multi-terminal HVDC transmission system(MT-HVDC),Due to the development of high-power force-commutated semiconductor devices and DC circuit breakerswhile feasible[3].
最近的研究表明,Dense meshed multi-terminal HVDC transmission networks have advantages in terms of efficiency and safety[4].但是,These types of grids are more difficult to control than traditional point-to-point lines.They require reliable communication between the terminal and the optimization algorithm,to find the best working point.
此外,Highly meshedMT-HVDC系统要求DC/DCStation interconnections have different nominal voltages or different configurations(For example unipolar,双极,homopolar)的HVDC系统.DC/DCStations can control specificHVDCActive power on the line(见图1b),And assist during disturbances such as DC faultsMT-HVDC.
Traditional methods of operation of power systems,Like the best trend(OPF),Must adapt to this new environment.as its counterpartAC [5]一样,The optimal power flow of a multi-terminal HVDC transmission system is a nonlinear and non-convex problem.This is a challenge both theoretically and practically.如果将DC/DCConverters are included in the model,The complexity will increase,Because they involve additional control variables and nonlinear equations related to power loss.
In this paper, a nonlinear model for the optimal power flow of a multi-terminal HVDC transmission system is proposed.The proposed method only considers the DC side of the grid,and includes withDC / DCA branch of the converter.The line loss sum is also considered in the optimization modelDC/DC转换器.In order to obtain a unique solution for real-time operation,A semi-finite approximation method is proposed.该方法在CIGRE B4Evaluate on a simplified version of the DC grid test system.结果表明,与GAMScompared to the solved nonlinear model,The proposed approximation is efficient and accurate.
2 数学模型
见第3部分.
3 MatlabCode implementation and article explanation
本文仅展现部分代码,See all code and article explanations:正在为您运送作品详情
%% Eigenvalue approximation
[V,D] = eig(X);
lm = diag(D);
vm = V(:,NumN);
vm*vm'*lm(NumN);
disp('---------------- 功率损耗 ----------------');
trace(G*X)
disp('---------------- 电压 --------------------');
Vap = sqrt(lm(NumN))*vm;
disp(Vap);
disp('---------------- 线路潮流-------------');
kk = 0;
for k = 1:NumL
kk = kk +1;
fprintf('%i%s%i%s%f\n',MT.Lines(k,1),' -> ',MT.Lines(k,2),' : ',F(kk));
kk = kk +1;
fprintf('%i%s%i%s%f\n',MT.Lines(k,2),' -> ',MT.Lines(k,1),' : ',F(kk));
end
disp('---------------- DC/DC 变换器 -----------');
Qp
4 结果
5 写在最后
部分理论引用网络文献,若有侵权请联系博主删除.
边栏推荐
猜你喜欢
随机推荐
苹果开发「AI 建筑师」GAUDI:根据文本生成超逼真 3D 场景!
新一代网状网协议T-Mesh无线通信技术优势介绍
交大医学院临床研究中心如何将 ModelWhale 应用于临床医生教学、研究丨数据科学 x 临床医学
简单理解try catch和try finally
STM32H743VIT6配置ADC为1M采样率
随笔-Unity中一个简易的Spine动画控制器
cmd 关闭端口
爬虫注意
49 万奖金等你来拿!第四届实时计算 Flink 挑战赛启动,Beyond Stream Processing!
问题5:发现缺陷怎么办?缺陷的类型有哪些?
HDU 1027 Ignatius and the Princess II(求由1-n组成按字典序排序的第m个序列)
问题4:什么是缺陷?你们公司缺陷的优先级是怎样划分的?
取消转义字符(r)
新版本MaxCompute 的SQL支持 UDF 分区裁剪的逻辑是怎样的?
6000 字+,帮你搞懂互联网架构演变历程!
如何将二维空间先验注入到ViT中? UMA&港理工&阿里提出SP-ViT,为视觉Transformer学习2D空间先验知识!...
方舟开服工具、服务器教程win
方舟生存进化开服需要多少钱
devops-2:Jenkins的使用及Pipeline语法讲解
JS基础--判断