Skip to Main Content Skip to Search
Login
File Exchange
MATLAB Newsgroup
Link Exchange
  Blogs  
 Contest 
MathWorks.com

Thread Subject: optimization GA

Subject: optimization GA

From: OK1

Date: 09 May, 2008 17:13:04

Message: 1 of 1

Hi everyone,
can anyone help me to solve multiobjective problem with
liner and nonlinear constraints and bounds in Genetic
Algorithm toolbox.
Problem:
five design variables: x=[Ri;Ro;A;F;Z]

objective functions:

f(1)= pi*(Ro^2-Ri^2)*A*(Z+1)*Rho; % min weight
f(2)=Jz*omega/(Mh+Mf)*1000; % min time

subject to:

linear constraints:
  Aineq=[-1 0 0 0 0;0 1 0 0 0;1 -1 0 0 0;0 0 -1 0 0;...
0 0 1 0 0;0 0 0 0 1;0 0 0 0 -1;0 0 0 -1 0;0 0 0 1 0];
bineq=[-55;110;-20;-1.5;3;9;-1;0;1000];

nonlinear constraints:
where c=<0
c=[-Lmax+(Z+1)*(A+delta);prz-pmax;th-tmax;s*Ms-Mh;...
-th;prz*Vsr-pmax*Vsrmax;Vsr-Vsrmax];
                                                 
ceq=[];

where:

Rimin=55;
Romax=110;
deltaR=20;
Amin=1.5;
Amax=3;
delta=0.5;
Lmax=30;
Zmax=10;
Vsrmax=10000;
mi=0.5;
Rho=0.000007850;
s=1.5;
Ms=40;
Mf=3;
n=250;
pmax=1;
Jz=55;
tmax=15;
Fmax=1000;

and

S=pi*(Ro^2-Ri^2);
prz=F/S ;
Rsr=(2/3)*((Ro^3-Ri^3)/(Ro^2-Ri^2));
Vsr=(pi*Rsr*n)/30;
omega=(pi*n)/30;
Mh=2/3*mi*F*Z*((Ro^3-Ri^3)/(Ro^2-Ri^2));
f(2)=th=Jz*omega/(Mh+Mf)*1000;

I have tried to solve this as a single objective which is
fine but i could only get one solution instead of pareto
solution and when i tried to solve it as a multiobjective
problem i didn't know how to handle the nonlinear
constraints. If anyone know how to solve such problem
please let me know i would be very thankful.

Tags for this Thread

Everyone's Tags:

Add a New Tag:

Separated by commas
Ex.: root locus, bode

What are tags?

A tag is like a keyword or category label associated with each thread. Tags make it easier for you to find threads of interest.

Anyone can tag a thread. Tags are public and visible to everyone.

Tag Activity for This Thread
Tag Applied By Date/Time
genetic algorithm OK1 09 May, 2008 13:15:17
constrained problems OK1 09 May, 2008 13:15:17
optimization OK1 09 May, 2008 13:15:17
rssFeed for this Thread

envelope graphic E-mail this page to a colleague

Public Submission Policy
NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Disclaimer prior to use.
Related Topics