Azzera filtri
Azzera filtri

Multi-variable optimization problem

6 visualizzazioni (ultimi 30 giorni)
Anshuman S
Anshuman S il 23 Mag 2019
Commentato: Anshuman S il 23 Mag 2019
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 Commento
Anshuman S
Anshuman S il 23 Mag 2019
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.

Accedi per commentare.

Risposte (0)

Categorie

Scopri di più su Problem-Based Optimization Setup in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by