下载资源链接

《《《《《《《《更多资源还请持续关注本专栏》》》》》》》

论文与完整源程序_电网论文源程序的博客-CSDN博客https://blog.csdn.net/liang674027206/category_12531414.html

电网论文源程序-CSDN博客电网论文源程序擅长文章解读,论文与完整源程序,等方面的知识,电网论文源程序关注python,机器学习,计算机视觉,深度学习,神经网络,数据挖掘领域.https://blog.csdn.net/LIANG674027206?type=download

该资源详细解读可关注博主免费专栏《论文与完整程序》45号博文 论文可参考 %% Distribution Network Planning (DNP) based on Second-Order Cone Programming Relaxation (SOCPR) Optimal Power Flow (OPF) Model in % Exact convex relaxation of optimal power flow in radial networks L Gan, N Li, U Topcu, SH LowIEEE Transactions on Automatic Control 60 (1), 72-87, 2014 % 基于二阶锥规划松弛(SOCPR)的配电网规划 % 径向网络最优潮流的精确凸松弛L Gan,N Li,U Topcu,SH LowIEEE自动控制学报60(1),72-872014 %% Distribution Network Planning (DNP) based on Linear Distflow Optimal Power Flow

部分代码展示:

%% Distribution Network Planning (DNP) based on Linear Distflow Optimal Power Flow (OPF) Model in

% M. E. Baran and F. F. Wu, “Optimal capacitor placement on radial distribution systems,” IEEE Trans. Power Delivery, vol. 4, no. 1, pp. 725–734,1989.

% M. E. Baran and F. F. Wu, “Optimal sizing of capacitors placed on a radial distribution system,” IEEE Trans. Power Delivery, vol. 4, no. 1, pp. 735–743, 1989

% A compact form is described in Section III. of

% Exact convex relaxation of optimal power flow in radial networksL Gan, N Li, U Topcu, SH LowIEEE Transactions on Automatic Control 60 (1), 72-87, 2014

%%基于线性离散流最优潮流(OPF)模型的配电网规划

%M.E.Baran和F.F.Wu,“径向配电系统上的最佳电容器布置”,IEEE Trans。《电力输送》,第4卷,第1期,第725-7341989页。

%M.E.Baran和F.F.Wu,“径向配电系统上电容器的最佳尺寸”,IEEE Trans。《电力输送》,第4卷,第1期,第735-743页,1989年

%本文第三节介绍了一种紧凑的形式

%径向网络最优潮流的精确凸松弛SL Gan,N Li,U Topcu,SH LowIEEE自动控制学报60(1),72-872014

clear all

close all

clc

%% ***********Parameters **********

N=16; % number of load nodes

L=33; % number of dis. lines

% 基准值

Sbase=1e6; % unit:VA

Ubase=10e3; % unit:V

Ibase=Sbase/Ubase/1.732; % unit: A

Zbase=Ubase/Ibase/1.732; % unit: Ω

LineInf=xlsread('16bus33lines.xlsx','F3:L35');

NodeInf=xlsread('16bus33lines.xlsx','A3:D18');

% 线路起始节点信息,s:start,t:to

s=LineInf(:,2);

t=LineInf(:,3);

N_subs=[13,14,15,16]; % Subs nodes

N_loads=1:12; % Load nodes

v_min=0.95^2;

v_max=1.05^2;

S_max=12; % max power in any distribution line 任何配电线路的最大功率

M=1e8;

% 线路投资成本

Cost=LineInf(:,7).*LineInf(:,4);

% 假设功率因数为n,使负载(MVA)变为P负载Q负载。

S=NodeInf(N_loads,4);

n=0.8; % power factor

P_load=S*n;

Q_load=S*sqrt(1-n^2);

效果展示:

45号资源-源程序:《基于二阶锥规划松弛(SOCPR)的配电网规划》径向网络最优潮流的精确凸松弛-本人博客有解读资源-CSDN文库https://download.csdn.net/download/LIANG674027206/88912791 下载资源链接

《《《《《《《《更多资源还请持续关注本专栏》》》》》》》

论文与完整源程序_电网论文源程序的博客-CSDN博客https://blog.csdn.net/liang674027206/category_12531414.html

电网论文源程序-CSDN博客电网论文源程序擅长文章解读,论文与完整源程序,等方面的知识,电网论文源程序关注python,机器学习,计算机视觉,深度学习,神经网络,数据挖掘领域.https://blog.csdn.net/LIANG674027206?type=download

好文链接

评论可见,请评论后查看内容,谢谢!!!评论后请刷新页面。