limits of Optimization variable can be another variable in problem based optimization?

6 次查看(过去 30 天)
I have optimization variable named PbattV1 in problem based optimization
Pmax1=10;
PbattV1 = optimvar('PbattV1',N,'LowerBound',0,'UpperBound',Pmax1);
As per optimvar help, Pmax1 (UpperBound) should be scalar. Now i want to change Pmax1= 10*a
where 'a' is another variable 0<a<1, is it possible to do it in problem based optimization and define 'a ' is a nother optimal variable ?

采纳的回答

Matt J
Matt J 2022-8-9
编辑:Matt J 2022-8-9
No, you must use a linear inequality constraint:
PbattV1 = optimvar('PbattV1',N,'LowerBound',0);
prob.Constraints.conName=(PbattV1<=10*a);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Solver Outputs and Iterative Display 的更多信息

产品


版本

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by