资源简介
yalmip解决电力系统机组组合问题范例1的资源分为详细介绍yalmip解决机组组合问题的文档和相应的代码。后续将继续推出相关范例

代码片段和文件信息
Nunits = 3;
Horizon = 48;
Pmax = [100;50;25];
Pmin = [20;40;1];
Q = diag([.04 .01 .02]);
C = [10 20 20];
Pforecast = 100 + 50*sin((1:Horizon)*2*pi/24);
onoff = binvar(NunitsHorizon‘full‘);
P = sdpvar(NunitsHorizon‘full‘);
Constraints = [];
for k = 1:Horizon
Constraints = [Constraints onoff(:k).*Pmin <= P(:k) <= onoff(:k).*Pmax];
end
for k = 1:Horizon
Constraints = [Constraints sum(P(:k)) >= Pforecast(k)];
end
objective = 0;
for k = 1:Horizon
objective = objective + P(:k)‘*Q*P(:k) + C*P(:k);
end
ops = sdpsettings(‘verbose‘1‘debug‘1);
optimize(Constraintsobjectiveops)
stairs(value(P)‘);
legend(‘Unit 1‘‘Unit 2‘‘Unit 3‘);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 694 2018-10-27 16:56 yalmip解决电力系统机组问题的范例1\UC1.m
文件 29491 2018-10-27 17:08 yalmip解决电力系统机组问题的范例1\yalmip范例解析1.docx
目录 0 2018-10-27 17:08 yalmip解决电力系统机组问题的范例1
----------- --------- ---------- ----- ----
30185 3
相关资源
- ectouch最新版JSAPI微信支付V3插
- ectouch 微信支付插件
- ecshop微信支付含手机版ectouch
- Apolipoprotein E4 Impairs in vivo Hippocampal
- Histamine excites rat lateral vestibular nucle
- Diltiazem augmented pentobarbital-induced LORR
- STM32F103RBT6驱动UC1698控制芯片的160160黑
- uCOS编译环境建立 BC45 TASM
- Douglas-Peucker 曲线离散化算法.rar
- Fundamentals of Data Structure in C
- 发那科fanuc机器人robot(电气调试启动
- FANUC各硬件连接规格,型号,和连接方
- ucosII源代码 2.9版本全 Micrium-uCOS-II-V
- 51单片机中使用ucos ii的优缺点转
- 51单片机中使用ucos ii的优缺点
- 嵌入式实时操作系统ucos-II 第二版 源
- UCOS2源代码2.91纯净版.
- Effect of dietary nitrate dosage on gas produc
- Fanuc机器人PNS程序和RSR程序启动改.d
- 一种基于LM3150 Buck型开关电源设计.p
- 基于BuckBoost拓扑的数字DCDC变换器设计
- S3C4510 开发板中uCLinux系统开发
- 用ARM7和UC/OS-II设计的信号采集系统
- 一种用ARM7+UC/OS-II设计的信号采集系统
- Electricity and hydrogen co-production from me
- Numerical simulation and prediction of radio f
- Can EC-MPS reduce gastrointestinal side effect
- PolSARpro Introduction PolSARpro操作说明
- An investigation into the effect of maize prod
- 短期化疗对乳腺癌组织UCH-L1表达的影
评论
共有 条评论