How to model multiple constraints using mixed integer linear programming?
조회 수: 3 (최근 30일)
이전 댓글 표시
For example,
I have 3 generators that must meet an hourly demand, but each of the generators has their own constraints.
Minimize: 15X1+25X2 (cost)
Subject to: X1+X2=250 (have to meet load), 0<=X1<=250 (min/max capacity for X1), 0<=X2<=150 (min/max capacity for X2)
Solving this example is easy, but if I wanted to add more constraints on X1 and X2 how would I go about this? Other constraints I would like to model are generator ramp rates and minimum up and down times. X1(i)+X1(i+1)<=ramp rate, X1ON(i)>=minimum up time
Thank you in advance for the help.
댓글 수: 1
Matt J
2015년 6월 29일
You need to elaborate on the difficulty you're having. The additional constraints you've shown are still linear. Why is it harder to write the matrices A,b,Aeq,beq than you already did in the original version?
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with Optimization Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!