Multi-variable optimization problem

5 次查看(过去 30 天)
I want to perform a multivariable optimisation. where I want to minimise both the objective functions together for the same value of variables.
The objective function and the variables are listed in my attachment, please go through this once!
Thank you.
  1 个评论
Anshuman S
Anshuman S 2019-5-23
Please check the code for ineqality conditions. is it correct ? I'm not sure about the greater than and less than sign difference.
function [c,ceq] = nlcon_reg(x)
g = 9.8;
R = 0.15;
c1 = (-g*x(1)/(pi*R.^2)) + 0.001; % quality greater than 1.
c2 = (g*x(1)/(pi*R.^2)) - 0.03;
c3 = (-x(2)/2*R) + 0.75 ;
c4 = (x(2)/2*R) - 1.35 ;
c5 = -x(3)/x(2)+ 0.01 ;
c6 = x(3)/x(2)- 0.1 ;
c = [c1,c2,c3,c4,c5,c6];
ceq = []; % total time condition.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Problem-Based Optimization Setup 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by