I am trying to maximize the profit of a power plant. I have a constraint which is that the power plant, when operating, has a minimum and maximum capacity. (So a power block either has an output of zero or between min-max capacity). I am considering how to go about formulating this constraint. I considered some sort of step function, but this would make the constraint non smooth and thus not solvable with regular solvers? Is there some other way to write this function?
Many thanks
Jesse
x > 0 or minCapacity < x < maxCapacity. How do you say x can be either zero OR greater than minCapacity?
– Jesse RJ Dec 08 '14 at 19:21I want to say I have two conflicting constraints
$x = 0$ OR $capacity_\min \leq x \leq capacity_\max$
– Jesse RJ Dec 08 '14 at 19:30CVXOPT? http://abel.ee.ucla.edu/cvxopt/examples/index.html There are others that are free. The best paid one isCPLEXsold by IBM – gt6989b Dec 08 '14 at 19:55