How to implement theses constraints in the cost function ?
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
I am working on a constrained PSO program (S decision variable) where the constraints are arrays that there elements should be  lower or egual to 0.4 :
1) dx = [S(1) - 0.3, diff(S)]; 
2) ds = [0.3 - S(1),S(1:end-1)-S(2:end)];
abs(dx)<=0.4
abs(ds)<=0.4
in a simpler way,dx and ds should be arrays with elements that are less or egual to 0.4
i tried this : le(abs(dx),0.4)
                  le(abs(ds),0.4)
but when runing the main pso i dont see constrained results
2 comentarios
  Matt J
      
      
 el 16 de Nov. de 2022
				i tried this 
Where? How?  pso() doesn't have an input for such constraints. Maybe use ga() or patternsearch(). Also, the constraints are linear, so you should put them in the form A*S<=b.
  Matt J
      
      
 el 16 de Nov. de 2022
				Also, from your expressions we can see that dx=-ds. Therefore, the constraints, abs(dx)<=0.4 and abs(ds)<=0.4 are the same thing.
Respuestas (1)
  Matt J
      
      
 el 16 de Nov. de 2022
        
      Editada: Matt J
      
      
 el 16 de Nov. de 2022
  
      pso() doesn't have an input for such constraints. Maybe use ga() or patternsearch().
Here's how it would look when solved with ga():
lb=-inf(nvars,1); 
ub=-lb;
e=0.4*ones(nvars-1,1);
D=diff(eye(nvars));
%constraint matrices
lb(1)=-0.1;  
ub(1)=0.7;
A=[D;-D];
b=[e;e];
%run optimization
S = ga(fun,nvars,A,b,[],[],lb,ub)
12 comentarios
  Matt J
      
      
 el 17 de Nov. de 2022
				The objective function came out of your brain. If it's returning the wrong value, I have no way of knowing what it should be returning instead.
Ver también
Categorías
				Más información sobre Particle Swarm en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


