I want that a design variable assumes only specified values during optimization process.
For example: Let x be the variable which can assume only specific value, e.g.:
x = [0.1,0.5,1.0,1.7,2.3]
How can be written in python using pyomo (if it's possible)?
I hope I was clear.
You have to do this with integer variables. For example, if there are
N
possible values ofx
, then letx[n] = 1
ifx
equals then
th possible value, and0
otherwise. Any time you have anx
in your original model, replace it withwhere
v[n]
is then
th possible value. Finally, add a constraint that says:I'm not writing these in Pyomo syntax, but this is a general modeling approach that is the same no matter what modeling language/package you use.