blob: e1b81d6b9f96bd74c502b371b88a55d0ccdad559 (
plain)
1
2
3
4
5
6
7
8
9
10
|
(!******************************************************
Mosel Example Problems
*******************************************************!)
! Objective function: total daily cost
Cost:= sum(p in TYPES, t in TIME) (CSTART(p)*start(p,t) +
LEN(t)*(CMIN(p)*work(p,t) + CADD(p)*padd(p,t)))
! Limit on power production above minimum level
forall(p in TYPES, t in TIME) padd(p,t) <= (PMAX(p)-PMIN(p))*work(p,t)
|