I am using PSO algorithm to search optimum value for parameters within range. I have 5 parameters such as: x0, x1, x2, x3, x4, and x5. Each parameter has own range.
x0 = [10,320]
x1=[65,100]
x2= [1, 16]
x3= [1,4]
x4 =[1,3]
x5 = [150,230]
In program, I am setting the lower and upper position as:
X0-min = 10;
X0-max= 320
Similar for the other parameters (x1,x2.....).
As, in PSO the particle position is changing based on velocity. I am confused on configuring a value for the velocity. How I can control velocity of a particle. I mean how to set limits of the velocity for each parameter? Should I use similar value for v0-min and v0-max as I used for the x0-min and x0-max?