【配电网规划】SOCPR和基于线性离散最优潮流(OPF)模型的配电网规划( DNP )附Matlab代码

本文涉及的产品
交互式建模 PAI-DSW,每月250计算时 3个月
模型在线服务 PAI-EAS,A10/V100等 500元 1个月
模型训练 PAI-DLC,100CU*H 3个月
简介: 【配电网规划】SOCPR和基于线性离散最优潮流(OPF)模型的配电网规划( DNP )附Matlab代码

✅作者简介:热爱科研的Matlab仿真开发者,修心和技术同步精进,matlab项目合作可私信。

🍎个人主页:Matlab科研工作室

🍊个人信条:格物致知。

更多Matlab仿真内容点击👇

智能优化算法       神经网络预测       雷达通信      无线传感器        电力系统

信号处理              图像处理               路径规划       元胞自动机        无人机

⛄ 内容介绍

电力市场环境下,扩展或加强输电系统对满足发电公司和用户的需求,减缓输电系统阻塞,促进市场的公平竞争具有重要作用.文中首先以Pool市场模式为背景,基于最优潮流(OPF)的输电网边际定价模型,提出一个计及多场景的综合性系统阻塞指标作为评估规划网络可靠性的经济指标;然后建立了阻塞指标约束下的输电网静态规划模型,并用IEEE-24 RTS实验系统进行了验证.与传统的输电网规划相比,该模型由市场条件下的OPF确定系统最优经济运行状况,能更科学地进行输电网规划决策,有效减缓系统阻塞发生,提高规划系统经济性能,易于扩展从而计及电网规划中的各种不确定性因素.

⛄ 部分代码

clc

clear all

close all hidden

disp('****************************ANTENNA DIPOLE PROJECT******************************')

disp('                             farshid.azhir                                  ')

disp('NOTICE!:This project includes 3type of dipole 1)INFINITESIMALE DIPOLE')

disp('                                              2)SMALL DIPOLE')

disp('                                              3)FINIT LENGHT DIPOLE')

                                                 

F=input('Please Enter Frequency F(Hz)=\n');

disp('----------------')

lambda=(3e8/F)

disp('----------------')

L=input('Please Enter length L(meter)=\n');

disp('----------------')

I=input('Please Enter Current(Amplitude) I0=');

T=input('Please Enter current(Phase) theta=');

i=I.*exp(j.*T)

disp('              ')

w=2.*pi.*F;

B=2*pi/lambda;

etha=377;

if L<=lambda/50

   disp('~~~~~~~~~~~~~~~~~~~~~~~INFINITESIMALE DIPOLE~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~')

r=1000*lambda/(2*pi);

x=0:0.0005:pi;

q=0:0.001:2*pi;

E=(1./(4.*pi.*r)).*etha.*B.*I.*L.*sin(x).*cos((2.*pi.*F).*q-B.*r+pi./2+T);

subplot(2,2,1)

plot(x,E)

title('Electric Field')

H=(1./(4.*pi.*r)).*B.*I.*L.*sin(x).*cos((2.*pi.*F).*q-B.*r+pi./2+T);

subplot(2,2,2)

plot(x,H)

title('Magnetic Field')

subplot(2,2,3)

P=sin(x);

polar(x,P)

hold on

p=sin(-x);

polar(x,p)

view(-270,-90)

title('Antenna pattern')

disp('**************************  Resistance density(Rr)=   ***************************')

Rr=80.*(pi).*(pi).*(L/lambda)^2

disp('**************************  Directivity=  ****************************************')

D=3/2

%current plot

subplot(2,2,4)

z=-L/2:0.001:L/2;

ii=I.*cos(2.*pi.*F.*z+T);

plot(ii,z)

title('Current distribution')

figure

% 1.- 3-D Mesh: Azimut & Elevation

%----------------------------------

n_tehta = 130; % Samples on Elevation

n_phi = 130; % Samples on Azimut

[tehta,phi]=meshgrid(eps:pi./(n_tehta-1):pi,...

           0:2*pi./(n_phi-1):2*pi) ;

radio = sin(tehta);

X=radio.*sin(tehta).*cos(phi);

Y=radio.*sin(tehta).*sin(phi);

Z=radio.*cos(tehta);

surf(X,Y,Z)

camlight right

light

shading interp

colorbar

axis image

rotate3D on

TITLE('3D-Pattern plot')

elseif (L>lambda/50)&(L<=lambda/10)

   %SMALL DIPOLE

   %CALCULATE-------------------------------------------------------

 disp('~~~~~~~~~~~~~~~~~~SMALL DIPOLE~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~')

r=1000*lambda/(2*pi);

x=0:0.0005:pi;

q=0:0.001:2*pi;

E=(1./(8.*pi.*r)).*etha.*B.*I.*L.*sin(x).*cos(((w).*q)-B.*r+pi./2+T);

subplot(2,2,1)

plot(x,E)

title('Electric Field')

H=(1./(8.*pi.*r)).*B.*I.*L.*sin(x).*cos(((w).*q)-B.*r+pi./2+T);

subplot(2,2,2)

plot(x,H)

title('Magnetic Field')

subplot(2,2,3)

P=sin(x);

polar(x,P)

hold on

p=sin(-x);

polar(x,p)

view(-270,-90)

title('Antenna pattern')

disp('**************************  Resistance density(Rr)=   ***************************')

Rr=20.*(pi).*(pi).*(L/lambda).^2

disp('**************************  Directivity=  ****************************************')

D=3/2

subplot(2,2,4)

z=0:0.000001:L/2;

ii=I.*cos(2.*pi.*F.*z+T).*(1-(2/L).*z);

plot(ii,z)

hold on

z=-L/2:0.000001:0;

ii=I.*cos(2.*pi.*F.*z+T).*(1+(2/L).*z);

plot(ii,z)

figure

% 1.- 3-D Mesh: Azimut & Elevation

n_tehta = 130; % Samples on Elevation

n_phi = 130; % Samples on Azimut

[tehta,phi]=meshgrid(eps:pi./(n_tehta-1):pi,...

           0:2*pi./(n_phi-1):2*pi) ;

radio = sin(tehta);

X=radio.*sin(tehta).*cos(phi);

Y=radio.*sin(tehta).*sin(phi);

Z=radio.*cos(tehta);

surf(X,Y,Z)

camlight right

light

shading interp

colorbar

axis image

rotate3D on

TITLE('3D-Pattern plot')

else

   disp('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~FINITE LENGTH DIPOLE~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~')

      r=1000000*lambda/(2*pi);

x=eps:0.001:2*pi;

q=eps:0.001:2*pi;

A=cos(B.*L/2);

p=cos(cos(x).*B.*L/2)-A;

m=p./sin(x);

E=(1./(2.*pi.*r)).*etha.*B.*I.*L.*m.*cos(((w).*q)-B.*r+pi./2+T);

subplot(2,3,1)

plot(x,E)

title('Electric Field')

H=(1./(2.*pi.*r)).*B.*I.*L.*m.*cos(((w).*q)-B.*r+pi./2+T);

subplot(2,3,2)

plot(x,H)

title('Magnetic Field')

subplot(2,3,3)

polar(x,m,'r')

hold on

m=-p./sin(x);

polar(x,m,'r')

view(-270,-90)

title('Antenna pattern')

subplot(2,3,4)

z=0:0.00001:L/2;

ii=I.*cos((w).*z+T).*(sin(B.*(-z+L/2)));

plot(ii,z)

hold on

z=-L/2:0.00001:0;

ii=I.*cos((w).*z+T).*(sin(B.*(z+L/2)));

plot(ii,z)

grid on

title('Current Distribution')

disp('**************************  Resistance density(Rr)=   ***************************')

rr=(0.5772+log(B*L))-cosint(B*L);

ro=rr+(1/2).*sin(B*L)*(sinint(2*B*L)-2*sinint(B*L));

Q=ro+(1/2).*cos(B*L)*(0.5772+log(B*L/2)+cosint(2*B*L)-2*cosint(B*L));

Rr=(etha/(2*pi)).*Q

subplot(2,3,5)

D=2.*(m.^2)./Q;

polar(x,D,'k')

view(-270,-90)

title('Directivity')

figure

% 1.- 3-D Mesh: Azimut & Elevation

n_tehta = 130; % Samples on Elevation

n_phi = 130; % Samples on Azimut

[tehta,phi]=meshgrid(eps:pi./(n_tehta-1):pi,...

           0:2*pi./(n_phi-1):2*pi) ;

Bas = L/lambda; % Half Wave Dipole

Num = cos(pi*Bas*cos(tehta))-cos(pi*Bas);

Den = sin(tehta);

radio = Num./Den;

X=radio.*sin(tehta).*cos(phi);

Y=radio.*sin(tehta).*sin(phi);

Z=radio.*cos(tehta);

surf(X,Y,Z)

camlight right

light

shading interp

colorbar

axis image

rotate3D on

TITLE('3D-Pattern plot')

end

disp('          ')

disp('press any key to go to manipulation of feeder section')

pause

%-------------------manipulation of feeder--------

clc

close all hidden

disp('....................................change posision of feeder...........................')

f=input('Enter Frequency:\n');

disp('------------------------------------------------------------')

 lambda=3e8/f

disp('------------------------------------------------------------')

 L=input('Enter L(length of dipole:\n');

disp('Please enter any key to continue...')

pause

disp('------------------------------------------------------------')

disp('L/2')

L/2

disp('------------------------------------------------------------')

i=input('current:\n');

b=2*pi/lambda;

 n=L/(lambda/2);

 

 if n<=1;

   disp('dipole antenna is lambda/2 or smaller ')

   disp('---------------------------------------')

   h=input('position of feeder,posision must be 0<position<L/2 or -L/2<position<0\n--->');

if (h>L/2)|(h<-L/2)

   error('you enter position feeder greater than Length of dipole')

   return

end

disp('              ')

disp('Rradiational when change posision feeder=')

Rr_new=Rr./((sin(B.*((L/2)-h))).^2)

Rr_old=Rr

xp=h;

yp=-i:0.00001:-i+(i/100);

plot(yp,xp,'dr')

hold on

x=-L/2:0.01:L/2;

y=i*sin(b*((L/2)-(x+h)));

plot(y,x)

grid on

elseif n==2;

   

    disp('Length dipole antenna is lambda ')

   disp('---------------------------------------')

       h=input('position of feeder,posision must be 0<position<L/2 or -L/2<position<0\n--->');

if (h>L/2)|(h<-L/2)

   error('you enter position feeder greater than Length of dipole')

   return

end

disp('              ')

disp('Rradiational when change posision feeder=')

Rr_new=Rr./((sin(B.*((L/2)-h))).^2)

Rr_old=Rr

xp=h;

yp=-i:0.001:-i+(i/100);

plot(yp,xp,'sr')

hold on

grid on

if h==0

 x=0:0.01:L/2;

y=i*sin(b*((L/2)-(x+h)));

plot(y,x)

hold on

x=-L/2:0.01:0;

y=i*sin(b*((L/2)+(x+h)));

plot(y,x)

grid on  

elseif h>0    

x=0:0.01:L/2;

y=i*sin(b*((L/2)-(x+h)));

plot(y,x)

hold on

x=-L/2:0.01:0;

y=i*sin(pi+b*((L/2)+(x+h)));

plot(y,x)

grid on

else

x=-L/2:0.01:0;

y=i*sin(pi+b*((L/2)-(x+h)));

plot(y,x)

hold on

x=0:0.01:L/2;

y=i*sin(b*((L/2)+(x+h)));

plot(y,x)

grid on

end

elseif n==3;

      disp('Length dipole antenna is 3*lambda/2 ')

   disp('---------------------------------------')

       h=input('position of feeder,posision must be 0<position<L/2 or -L/2<position<0\n--->');

if (h>L/2)|(h<-L/2)

   error('you enter position feeder greater than Length of dipole')

   return

end

disp('              ')

disp('Rradiational when change posision feeder=')

Rr_new=Rr./((sin(B.*((L/2)-h))).^2)

Rr_old=Rr

xp=h;

yp=-i:0.001:-i+(i/100);

plot(yp,xp,'sr')

hold on

x=-L/2:0.01:L/2;

y=i*sin(pi+b*((L/2)-(x+h)));

plot(y,x)

grid on

elseif n==4;

     disp('Length dipole antenna is 2*lambda ')

   disp('---------------------------------------')

       h=input('position of feeder,posision must be 0<position<L/2 or -L/2<position<0\n--->');

if (h>L/2)|(h<-L/2)

   error('you enter position feeder greater than Length of dipole')

   return

end

disp('              ')

disp('Rradiational when change posision feeder=')

Rr_new=Rr./((sin(B.*((L/2)-h))).^2)

Rr_old=Rr

xp=h;

yp=-i:0.001:-i+0.1;

plot(yp,xp,'sr')

hold on

grid on

if h==0

 x=0:0.01:L/2;

y=i*sin(b*((L/2)-(x+h)));

plot(y,x)

hold on

x=-L/2:0.01:0;

y=i*sin(b*((L/2)+(x+h)));

plot(y,x)

grid on  

elseif (0<h)&(h<lambda/2);


   x=0:0.01:lambda/2;

y=i*sin(pi+b*((L/2)-(x+h)));

plot(y,x)

hold on

x=lambda/2:0.01:lambda;

y=i*sin(pi+b*((L/2)-(x+h)));

plot(y,x)

x=0:-0.01:-lambda/2;

y=i*sin(pi+b*((L/2)-(x+h)));

plot(y,x)

x=-lambda/2:-0.01:-lambda;

y=i*sin(pi+b*((L/2)-(x+h)));

plot(y,x)

grid on

elseif ((lambda/2)<h)&(h<lambda);  


   x=lambda/2:0.01:lambda;

y=i*sin(pi+b*((L/2)-(x+h)));

plot(y,x)

hold on

x=0:0.01:lambda/2;

y=i*sin(pi+b*((L/2)-(x+h)));

plot(y,x)

x=0:-0.01:-lambda/2;

y=i*sin(pi+b*((L/2)-(x+h)));

plot(y,x)

x=-lambda/2:-0.01:-lambda;

y=i*sin(pi+b*((L/2)-(x+h)));

plot(y,x)

grid on

elseif ((-lambda/2)<h)&(h<0);  


x=lambda/2:0.01:lambda;

y=i*sin(pi+b*((L/2)+(x+h)));

plot(y,x)

hold on

x=0:0.01:lambda/2;

y=i*sin(pi+b*((L/2)+(x+h)));

plot(y,x)

x=0:-0.01:-lambda/2;

y=i*sin(pi+b*((L/2)+(x+h)));

plot(y,x)

x=-lambda/2:-0.01:-lambda;

y=i*sin(pi+b*((L/2)+(x+h)));

plot(y,x)

grid on

else

   ((-lambda/2)>h)&(h>(-lambda));  

x=lambda/2:0.01:lambda;

y=i*sin(pi+b*((L/2)+(x+h)));

plot(y,x)

hold on

x=0:0.01:lambda/2;

y=i*sin(pi+b*((L/2)+(x+h)));

plot(y,x)

x=0:-0.01:-lambda/2;

y=i*sin(pi+b*((L/2)+(x+h)));

plot(y,x)

x=-lambda/2:-0.01:-lambda;

y=i*sin(pi+b*((L/2)+(x+h)));

plot(y,x)

grid on

end

else

disp('Length dipole antenna is greater than 2*lambda and undefined ')

   disp('--------------------Exit----------------------')

end

⛄ 运行结果

⛄ 参考文献

[1]范金月, 白晓清. 基于扩展二次锥规划的最优潮流模型研究[J]. 电网与清洁能源, 2014(3):7.

[2]付蓉魏萍万秋兰王磊唐国庆. 市场环境下基于最优潮流的输电网规划[J]. 电力系统自动化, 2005, 029(016):42-47.

⛄ 完整代码

❤️部分理论引用网络文献,若有侵权联系博主删除
❤️ 关注我领取海量matlab电子书和数学建模资料


相关实践学习
快速体验PolarDB开源数据库
本实验环境已内置PostgreSQL数据库以及PolarDB开源数据库:PolarDB PostgreSQL版和PolarDB分布式版,支持一键拉起使用,方便各位开发者学习使用。
相关文章
|
1月前
|
机器学习/深度学习 算法 调度
基于ACO蚁群优化的VRPSD问题求解matlab仿真,输出规划路径结果和满载率
基于ACO蚁群优化的VRPSD问题求解MATLAB仿真,输出ACO优化的收敛曲线、规划路径结果及每条路径的满载率。在MATLAB2022a版本中运行,展示了优化过程和最终路径规划结果。核心程序通过迭代搜索最优路径,更新信息素矩阵,确保找到满足客户需求且总行程成本最小的车辆调度方案。
|
2月前
|
机器学习/深度学习 算法 调度
基于ACO蚁群优化的VRPSD问题求解matlab仿真,输出规划路径结果和满载率
该程序基于ACO蚁群优化算法解决VRPSD问题,使用MATLAB2022a实现,输出优化收敛曲线及路径规划结果。ACO通过模拟蚂蚁寻找食物的行为,利用信息素和启发式信息指导搜索,有效求解带时间窗约束的车辆路径问题,最小化总行程成本。
|
2月前
|
算法
基于粒子群算法的分布式电源配电网重构优化matlab仿真
本研究利用粒子群算法(PSO)优化分布式电源配电网重构,通过Matlab仿真验证优化效果,对比重构前后的节点电压、网损、负荷均衡度、电压偏离及线路传输功率,并记录开关状态变化。PSO算法通过迭代更新粒子位置寻找最优解,旨在最小化网络损耗并提升供电可靠性。仿真结果显示优化后各项指标均有显著改善。
|
4月前
|
安全
【2023高教社杯】D题 圈养湖羊的空间利用率 问题分析、数学模型及MATLAB代码
本文介绍了2023年高教社杯数学建模竞赛D题的圈养湖羊空间利用率问题,包括问题分析、数学模型建立和MATLAB代码实现,旨在优化养殖场的生产计划和空间利用效率。
226 6
【2023高教社杯】D题 圈养湖羊的空间利用率 问题分析、数学模型及MATLAB代码
|
4月前
|
存储 算法 搜索推荐
【2022年华为杯数学建模】B题 方形件组批优化问题 方案及MATLAB代码实现
本文提供了2022年华为杯数学建模竞赛B题的详细方案和MATLAB代码实现,包括方形件组批优化问题和排样优化问题,以及相关数学模型的建立和求解方法。
142 3
【2022年华为杯数学建模】B题 方形件组批优化问题 方案及MATLAB代码实现
|
4月前
|
数据采集 存储 移动开发
【2023五一杯数学建模】 B题 快递需求分析问题 建模方案及MATLAB实现代码
本文介绍了2023年五一杯数学建模竞赛B题的解题方法,详细阐述了如何通过数学建模和MATLAB编程来分析快递需求、预测运输数量、优化运输成本,并估计固定和非固定需求,提供了完整的建模方案和代码实现。
111 0
【2023五一杯数学建模】 B题 快递需求分析问题 建模方案及MATLAB实现代码
|
6月前
|
算法 安全 数据库
基于结点电压法的配电网状态估计算法matlab仿真
**摘要** 该程序实现了基于结点电压法的配电网状态估计算法,旨在提升数据的准确性和可靠性。在MATLAB2022a中运行,显示了状态估计过程中的电压和相位估计值,以及误差随迭代变化的图表。算法通过迭代计算雅可比矩阵,结合基尔霍夫定律解决线性方程组,估算网络节点电压。状态估计过程中应用了高斯-牛顿或莱文贝格-马夸尔特法,处理量测数据并考虑约束条件,以提高估计精度。程序结果以图形形式展示电压幅值和角度估计的比较,以及估计误差的演变,体现了算法在处理配电网状态估计问题的有效性。
|
5月前
|
算法
基于Dijkstra算法的最优行驶路线搜索matlab仿真,以实际城市复杂路线为例进行测试
使用MATLAB2022a实现的Dijkstra算法在城市地图上搜索最优行驶路线的仿真。用户通过鼠标点击设定起点和终点,算法规划路径并显示长度。测试显示,尽管在某些复杂情况下计算路径可能与实际有偏差,但多数场景下Dijkstra算法能找到接近最短路径。核心代码包括图的显示、用户交互及Dijkstra算法实现。算法基于图论,不断更新未访问节点的最短路径。测试结果证明其在简单路线及多数复杂城市路况下表现良好,但在交通拥堵等特殊情况下需结合其他数据提升准确性。
|
6月前
|
算法
基于仿射区间的分布式三相不对称配电网潮流算法matlab仿真
```markdown # 摘要 本课题聚焦于基于仿射区间的分布式三相配电网潮流算法在MATLAB2022a中的仿真。算法利用仿射运算处理三相不平衡情况及分布式电源注入,旨在提供比区间算法更精确的不确定区域。仿真结果展示了算法优势。核心程序设计考虑了PQ、PV及PI节点,将不同类型的节点转换统一处理,以适应含分布式电源的配电网潮流计算需求。 ``` 这个摘要以Markdown格式呈现,总字符数为233,满足了240字符以内的要求。
|
7月前
|
数据安全/隐私保护
耐震时程曲线,matlab代码,自定义反应谱与地震波,优化源代码,地震波耐震时程曲线
地震波格式转换、时程转换、峰值调整、规范反应谱、计算反应谱、计算持时、生成人工波、时频域转换、数据滤波、基线校正、Arias截波、傅里叶变换、耐震时程曲线、脉冲波合成与提取、三联反应谱、地震动参数、延性反应谱、地震波缩尺、功率谱密度

热门文章

最新文章