SlideShare una empresa de Scribd logo
1 de 7
Descargar para leer sin conexión
International Journal of Electronics and JOURNALEngineering & Technology (IJECET), ISSN 0976 –
INTERNATIONAL Communication OF ELECTRONICS AND
6464(Print), ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October (2013), © IAEME

COMMUNICATION ENGINEERING & TECHNOLOGY (IJECET)

ISSN 0976 – 6464(Print)
ISSN 0976 – 6472(Online)
Volume 4, Issue 5, September – October, 2013, pp. 218-224
© IAEME: www.iaeme.com/ijecet.asp
Journal Impact Factor (2013): 5.8896 (Calculated by GISI)
www.jifactor.com

IJECET
©IAEME

SELF ACCELERATED SMART PARTICLE SWARM OPTIMIZATION FOR
NON LINEAR PROGRAMMING PROBLEMS
Anuradha L. Borkar1
1

1

Electronics and Telecommunication Dept.
M S S S’ College of Engineering and Technology, Jalna, Maharashtra, India

ABSTRACT
This paper presents Self Accelerated Smart Particle Swarm Optimization (SASPSO) for
nonlinear programming problems (NLP). In SASPSO, the positions of particle are updated by pbest
(Personal or local best) and gbest (Global best). The main advantages of SASPSO are that it doesn’t
require velocity equation. In addition, it does not require any additional parameter like acceleration
coefficients and inertia weight as in case other PSO algorithms. Momentum factor is introduced in
SASPSO which can prevent particles from out of defined region without checking the validity of
positions at every iterations result in saving of computational cost. During the initial stages of the
experimentation, the step size will be large and during the final stage of the experimentation, the step
size is reduced to smaller value. The SASPSO is tested on global optimization problems such as
Nonlinear Programming Problems (NLP). The results are compared with the Genetic Algorithm
(GA). The results of SASPSO are good in terms of are accuracy of optimal solution and generations
as compared GA. It also gives large number of possible optimal solutions as compared GA.
Keywords: gbest(Global best), Nonlinear programming problems (NLP), pbest (Personal or local
best), Self Accelerated Smart Particle Swarm Optimization (SASPSO).
I.

INTRODUCTION

Most of the real life problems occurring in the field of science and engineering may be
modeled as Nonlinear programming (NLP), unimodal or multimodal optimization problems.
Nonlinear programming is the process of solving a system of equalities and inequalities over a set of
unknown real variables, along with an objective function to be maximized or minimized, where some
of the constraints or the objective functions are nonlinear. No general algorithms exist for solving
nonlinear programming problems. However for problems with certain suitable structures, efficient
algorithms have been developed. It is possible to convert the given NLP into one in which these
structures become visible.
218
International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 –
6464(Print), ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October (2013), © IAEME

Nonlinear programming problems, unimodal or multimodal problems are generally
considered more difficult to solve as there exists several local and global optima. Effective
optimization of nonlinear programming problems, multi-dimensional and multimodal function with
faster convergence and good quality of solution is a challenging task. The high computational cost
and demands for improving accuracy of global optima of nonlinear programming problems and
multimodal functions have forced the researchers to develop efficient optimization techniques in
terms of new, modified or hybrid soft computing techniques.
John Holland conceived Genetic Algorithm (GA) in the mid 1970’s [1]. GA is inspired by the
principles of genetic evolution and mimics the reproduction behavior observed in biological
populations. GA suffers from premature convergence when an individual that is fit than others at
early stages dominates on the reproduction process leading to a local optimum convergence rather
than a more thorough search that could have lead to a global optimum [1]. GA has been extensively
applied to solve complex design optimization problems due its capability to handle constrain
functions without requiring gradient information [1]. But the limitation of getting trapped in local
minima and three step procedures of GA [1-2] such as selection, crossover and mutation increase the
computational time and thus forced the researchers to search for more efficient optimization
techniques.
Particle Swarm Optimization (PSO) is a population-based optimization method developed by
Eberhart and Kennedy in 1995. This method is inspired by social behavior of bird flocking or fish
schooling. It can efficiently handle problems like nonlinear, unimodal and multimodal function
optimizations [3]. . Compared to GA, PSO is easy to implement and converge faster with less
memory requirement [4]. However, unlike GA, PSO has no evolution operators such as crossover
and mutation.
The new variants of PSO are proposed for faster convergence and better quality of optimum
solution like Supervisor-Student Model in Particle Swarm Optimization (SSM-PSO) [5], Linear
Decreasing Weight Particle Swarm Optimization (LDW-PSO) [6], Gregarious Particle Swarm
Optimization (GPSO) [7], Global and Local Best Particle Swarm Optimization (GLBestPSO)[8] and
Emotional Particle Swarm Optimization (EPSO)[9].
The author proposed Self Accelerated Smart Particle Swarm Optimization (SASPSO) for
nonlinear programming problems (NLP). The rest of the paper is organized in four fold. The section
II depicts the review of original Particle Swarm Optimization (PSO). The section III depicts the
proposed method. In section IV, experimental results on nonlinear programming problems (NLP).by
proposed method and other published techniques are presented. Section V comprises of conclusion.
II

REVIEW OF PARTICLE SWARM OPTIMIZATION

The original framework of PSO is designed by Kennedy and Eberhart in 1995. There fore, it
is known as standard PSO [3].
PSO follows the optimization process by means of personal or local best (pi), global best
(pg), particle position or displacement (X) and particle velocity (V). For each particle, at the current
time step, a record is kept for the position, velocity, and the best position found in the search space.
Each particle memorizes its previous velocity and the previous best position and uses them in its
movements [3]. The velocities (V) of the particles are limited in [Vmin Vmax] D. If V is smaller
than Vmin then V is set to Vmin or Xmin. If V greater than Vmax then V is set to Vmax or Xmax.
Since the original version of PSO lacks velocity control mechanism, it has a poor ability to search at
a fine grain.
The two updating fundamental equations in a PSO are velocity and position equations, which
are expressed as Eq. (1) and (2).

219
International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 –
6464(Print), ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October (2013), © IAEME

V id (t + 1) = V id ( t ) + c1 ∗ r1 d ( t ) ∗ ( p id ( t ) − X id ( t )) + c 2 ∗ r2 d (t ) ∗ ( p gd (t ) − X id ( t ))

(1)

X id (t + 1) = X id (t ) +V id (t + 1)

(2)

Where,
t= Current iteration or generation.
i = Particle Number.
d= Dimensions.
Vid(t) = Velocity of i-th particle for d-dimension at iteration t.
Xid (t) = Position of i-th particle for d-dimension at iteration t.
c1 and c2= Acceleration constants.
r1d (t) and r2d (t) = Random values [0 1] for d- dimension at iteration t.
pid (t)= Personal or local best of i-th particle for d-dimension at iteration t.
pgd (t) = Global best for d-dimension at iteration t.
The right side of Eq. (1) consists of three parts. The first part of equation is the previous
velocity of the particle. The second part is the cognition (self-knowledge) or memory, which
represents that the particle is attracted by its own previous best position and moving toward to it. The
third part is the social (social knowledge) or cooperation, which represents that the particle is
attracted by the best position so far in population and moving towards to it. There are restrictions
among these three parts and can be used to determine the major performance of the algorithm.
III

SELF ACCELERATED SMART PARTICLE SWARM OPTIMIZATION (SASPSO)

The standard PSO suffers from following disadvantages.
1.
2.
3.
4.

The swarm may prematurely converge when some poor particles attract the other particles or
due to local optima or bad initialization
It has problem dependent performance. No single parameter settings exists which can be
applied to all problems.
It requires tuning of parameters like c1, c2, w, iterations and swarm size
Increasing the value of inertia weight w, increases the speed of the particles resulting in more
global search and less local search. Decreasing the inertia weight slows down the speed of
the particle resulting in more local search and less global search.

So to avoid the disadvantage of standard PSO, the author proposed a Self Accelerated Smart
Particle Swarm Optimization (SASPSO). In SASPSO, the positions of particle are updated by pbest
(Personal or local best) and gbest (Global best particle positions) as expressed in Eq. (3). The main
advantages of SASPSO are that it doesn’t require velocity equation. In addition, it does not require
any additional parameter like acceleration coefficients and inertia weight as the case in other PSO
algorithms. Momentum factor can prevent particles from out of defined region without checking the
validity of positions at every iterations result in saving of computational cost.
Xi(t+1)= Xi(t)+Mc*rand((Xi(t)- (gbest- pbesit))+( gbest-- pbesit)*rand)
Where,
t= Current iteration or generation.
i = Particle Number.
Xi (t) = Position of i-th particle for d-dimension at iteration t.
220

(3)
International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 –
6464(Print), ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October (2013), © IAEME

r1 and r2 = Random values [0 1] at iteration t.
pbesit = Personal or local best of i-th particle at iteration t.
Gbest = Global best at iteration t.
Mc= Momentum Factor
During the initial stages of the experimentation, the step size will be large and thus the
positions of particles are away from the global best position. During the final stage of the
experimentation, the step size is reduced to smaller value. Momentum factor can prevent particles
from out of defined region without checking the validity of positions at every iterations result in
saving of computational cost.
IV

EXPERIMENTAL RESULTS AND DISCUSSIONS

The Four Quadratic Programming Problems [10] as shown in Table 1 are used to validate
performance of the Self Accelerated Smart Particle Swarm Optimization. The authors are considered
both maximization and minimization functions to test efficiency of the SASPSO. The first and
second problems are minimization problem and third and fourth problem is maximization problem.
The solution by using Beale’s method [10] for each Quadratic Programming problem is presented in
Table 1. The equation along with the constraints is given to the program. The objective function
which is to be minimized or maximized is the fitness function.
In SASPSO, population is taken as double vector with size 20. The value of momentum
factor is chosen as 0.005 that will results in not escaping the global optima. The stopping criterion of
the SASPSO is taken as error value of 0.1. If the error value is equal to or less than 0.1 then the
SASPSO is stopped. The number of trials is taken as 10.
The number of generations required and solutions for Quadratic Programming problem by
using GA and SASPSO is presented in Table 2. For first and second NLP problems SASPSO is
required less number of generations as compared GA and the accuracy of solutions by SASPSO
which is better than GA. For third and fourth NLP problems SASPSO is required less number of
generations as compared GA and the accuracy of solutions by SASPSO is 100 and which is better
than GA. But the SASPSO is producing same solution for maximization problem. The Fig 1 shows
number of generations required for each NLP problems by GA and SASPSO. As seen from results
the SASPSO requires less number of computations as compared to GA improves the quality of
optima . The presented method is suitable for optimization of Quadratic Programming problem,
unimodal and multimodal functions.

Eq No
1

2

3

4

Table 1. Quadratic Programming Problems solved
Equation With Constraints
Beale’s method
Min Z= X1*2+ X2^2
X1=2
SUB: X1+ X2>=4
X2=2
2 X1+ X2>=5 X1, X2 >=0
Z=8
Min Z=183-44 X1-42 X2+8 X1^2-12 X1 X2^2
X1=3.8
SUB: 2 X1+ X2<=10
X2=2.4
X1, X2>=10
Z=19
Max Z= 2 X1+3 X2
X1=2
SUB: X1^2+ X2^2<=20
X2=4
X1 X2<=8
Z=16
X1, X2>=0
Max 2 X1+2 X2-2 X2^2
X1=2
SUB : X1+4X2<=4
X2=0
X1+ X2<=2
Z=4
221
International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 –
6464(Print), ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October (2013), © IAEME

Table 2. Comparison of Quadratic Programming Problems solved by using GA and SASPSO
Eq
No

Solution by GA[10]

Gen.
[10]

Optimize
using
GA[10]

Accu
racy
[10]

Gen.

Optimize
using
SASPSO

Accuracy

3

8.00208

100

X1
1.90715

4

8.01732

100

2.15473
2.05038

1.84527
1.94965

4
4

8.04788
8.00519

100
100

1.95916
1.95270

2.05151
2.04818

3
3

8.00470
8.00081

100
100

2.14182
2.01181

1.8582
1.98821

4
4

8.0403
8.00038

100
100

1.95688
1.96214

2.05713
2.05779

3
3

8.06115
8.08449

100
100

1.95293
1.95116

2.05772
2.05428

3
3

8.00048
8.02708

100
100

1.94477
1.95201

1

X2
2.09287

Solution by
SASPSO
X1
X2
1.95539
2.04873

2.05895
2.06040

3
3

8.02144
8.00555

100
100

2.05079
2.36760

3
3

8.00377
19.00165

100
100

3.81998

5

19.002

100

3.80427
3.79966

2.39102
2.40058

6
4

19.00247
19.00061

100
100

3.80799
3.81026

2.37445
2.37094

3
3

19.00714
19.00020

100
100

3.79831
3.80224

2.40337
2.39492

8
7

19.00035
19.0042

100
100

3.79655
3.81848

2.39886
2.35490

4
6

19.00018
19.00029

100
100

3.82026
3.80526

2.35451
2.3736

7
6

19.00793
19.00008

100
100

3.79655
3.80526

2

2.36005

1.95908
3.81169

2.39886
2.37368

7
5

19.00048
19.00108

100
100

2.35260
4.00526

7
2

19.09185
16.02632

100
100

2.09653

5

15.64055

97.75

1.99
1.91904

4.00379
4.039

3
4

15.99137
15.95508

99.94
99.71

2.00526
2.00526

4.00526
4.00526

2
2

16.02632
16.02632

100
100

1.72685
1.9912

4.12527
4.00436

5
5

15.82953
15.99548

98.93
99.97

2.00526
2.00526

4.00526
4.00526

2
2

16.02632
16.02632

100
100

2.00526
2.00526

4.00526
4.00526

2
2

16.02632
16.02632

100
100

2.00526
2.00526

3

3.81583

3.82048
2.00526

4.00526
4.00526

2
2

16.02632
16.02632

100
100

1.95734

3

3.99635

99.9

2.00526
2.00500

4.00526
0.00100

2
2

16.02632
4.01300

100
100

1.97025
1.86849

4

0.04266
0.02975
0.13161

3
3

3.99823
3.9975

99.95
99.93

2.00500
2.00500

0.00100
0.00100

2
2

4.01300
4.01300

100
100

1.94342
1.89092

0.05658
0.10902

3
3

3.9936
3.9761

99.93
99.4

2.00500
2.00500

0.00100
0.00100

2
2

4.01300
4.01300

100
100

2.00500
2.00500

0.00100
0.00100

2
2

4.01300
4.01300

100
100

2.00500
2.00500

0.00100
0.00100

2
2

4.01300
4.01300

100
100

2.00500

0.00100

2

4.01300

100

222
International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 –
6464(Print), ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October (2013), © IAEME

Number of Generations

Comparision of Number of Generations required by PSO
and SASPSO
7
6
5
4
3
2
1
0

PSO
SASPSO

1

2

3

4

Equation Number

Fig. 1. Number of Generations Required by PSO and SASPSO

V.

CONCLUSION

The author introduced Self Accelerated Smart Particle Swarm Optimization (SASPSO) to
optimize difficult nonlinear programming problems (NLP) with fast convergence and better
accuracy.. The main advantages of SASPSO are that it doesn’t require velocity equation. In addition,
it does not require any additional parameter like acceleration coefficients and inertia weight as in
case other PSO algorithms. Momentum factor is introduced in SASPSO which can prevent particles
from out of defined region without checking the validity of positions at every iterations result in
saving of computational cost. Using SASPSO, we get large combinations of values of decision
variables satisfying all the given constraints in very short time. The results of SASPSO are good in
terms of are accuracy of optimal solution with less number of generations as compared GA. The
proposed technique is more efficient for improving the quality of global optima of Nonlinear
programming problems (NLP), unimodal and multimodal functions with less computational
requirement and better accuracy.
VI.

REFERENCES

[1]

Boeringer D.W., Werner D.H., Particle swarm optimization versus genetic algorithms for
phased array synthesis, IEEE Transactions Antennas Propagation, 52(3), 2004, 771–779.
Eberhart R.C., Shi Y.: Comparison between genetic algorithm and particle swarm
optimization, In proc. IEEE Int. Conf. Computt., Anchorage, AK, 1998, 611-616.
Kennedy J. and Eberhart R.C., Particle Swarm Optimization” Proc York: IEEE International
conference on neural networks, Springer-Verlag 1995, Piscataway; 4, 1985, 1942-1948.
Shi Y.H. And Eberhart R.C., Parameter Selection in Particle Swarm Optimization Annual
Conference on Evolutionary Computation, 1999, 101-106.
Liu Yu, Zheng Qin, and Xingshi He., Supervisor-Student Model in Particle Swarm
Optimization, IEEE Congress on Evolutionary Computation, 2004 (CEC 2004), 1, 2004,
542-547.
Shi Y. and Eberhart R.C., A modified particle swarm optimizer, Proceedings of the IEEE
Congress on Evolutionary Computation (CEC 1998), Piscataway, NI., 1998, pp.69-73.

[2]
[3]
[4]
[5]

[6]

223
International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 –
6464(Print), ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October (2013), © IAEME

[7]
[8]

[9]

[10]

[11]

[12]

[13]

Pasupuleti Srinivas and Roberto Bhattiti, The Gregarious Particle Swarm Optimizer
(G-PSO), GECCO 2006, Seattle, Washington, USA, 2006.
Arumugam M. Senthil, Rao M. V. C., Chandramohan Aarthi, A new and improved version of
particle swarm optimization algorithm with global-local best parameters, Journal of
Knowledge and Information System (KAIS), Springer. 16(3), 2008, 324-350
Yang Ge,Rubo Zhang,: An Emotional Particle Swarm Optimization Algorithm, Advances in
Natural Computation, Lecture notes in Computer Science, Springer-Verlag, Berlin, Germany,
3612, 2005,.553-561
P.S. Revenkar, Smita Kasar, Abhilasha Mishra, Optimization of Non Linear Programming
Problems using non traditional method: Genetic Algorithms, International conference and
work shop on emerging trends in technology, ACM newyork, ny, USA, 2010, 1002-2002.
Chandramouli.H, Dr. Somashekhar C Desai, K S Jagadeesh and Kashyap D Dhruve,
“Elephant Swarm Optimization for Wireless Sensor Networks –A Cross Layer Mechanism”,
International Journal of Computer Engineering & Technology (IJCET), Volume 4, Issue 2,
2013, pp. 45 - 60, ISSN Print: 0976 – 6367, ISSN Online: 0976 – 6375.
R. Arivoli and Dr. I. A. Chidambaram, “Multi-Objective Particle Swarm Optimization Based
Load-Frequency Control of a Two-Area Power System with Smes Inter Connected using
Ac-Dc Tie-Lines”, International Journal of Electrical Engineering & Technology (IJEET),
Volume 3, Issue 1, 2012, pp. 1 - 20, ISSN Print : 0976-6545, ISSN Online: 0976-6553.
A.Sri Rama Chandra Murty and M. Surendra Prasad Babu, “Implementation of Particle
Swarm Optimization (Pso) Algorithm on Potato Expert System”, International Journal of
Computer Engineering & Technology (IJCET), Volume 4, Issue 4, 2013, pp. 82 - 90,
ISSN Print: 0976 – 6367, ISSN Online: 0976 – 6375.

224

Más contenido relacionado

La actualidad más candente

Inverse Kinematics Using Genetic Algorithms
Inverse Kinematics Using Genetic AlgorithmsInverse Kinematics Using Genetic Algorithms
Inverse Kinematics Using Genetic Algorithmssatyendrajaladi
 
Development of Adaptive Neuro Fuzzy Inference System for Estimation of Evapot...
Development of Adaptive Neuro Fuzzy Inference System for Estimation of Evapot...Development of Adaptive Neuro Fuzzy Inference System for Estimation of Evapot...
Development of Adaptive Neuro Fuzzy Inference System for Estimation of Evapot...ijsrd.com
 
Artificial bee colony with fcm for data clustering
Artificial bee colony with fcm for data clusteringArtificial bee colony with fcm for data clustering
Artificial bee colony with fcm for data clusteringAlie Banyuripan
 
Performance analysis of ecg qrs complex detection using morphological operators
Performance analysis of ecg qrs complex detection using morphological operatorsPerformance analysis of ecg qrs complex detection using morphological operators
Performance analysis of ecg qrs complex detection using morphological operatorsIAEME Publication
 
Optimization and particle swarm optimization (O & PSO)
Optimization and particle swarm optimization (O & PSO) Optimization and particle swarm optimization (O & PSO)
Optimization and particle swarm optimization (O & PSO) Engr Nosheen Memon
 
Comparative analysis of multi stage cordic using micro rotation techniq
Comparative analysis of multi stage cordic using micro rotation techniqComparative analysis of multi stage cordic using micro rotation techniq
Comparative analysis of multi stage cordic using micro rotation techniqIAEME Publication
 
Solution of Inverse Kinematics for SCARA Manipulator Using Adaptive Neuro-Fuz...
Solution of Inverse Kinematics for SCARA Manipulator Using Adaptive Neuro-Fuz...Solution of Inverse Kinematics for SCARA Manipulator Using Adaptive Neuro-Fuz...
Solution of Inverse Kinematics for SCARA Manipulator Using Adaptive Neuro-Fuz...ijsc
 
8 ijaems jan-2016-20-multi-attribute group decision making of internet public...
8 ijaems jan-2016-20-multi-attribute group decision making of internet public...8 ijaems jan-2016-20-multi-attribute group decision making of internet public...
8 ijaems jan-2016-20-multi-attribute group decision making of internet public...INFOGAIN PUBLICATION
 
Feature Selection using Complementary Particle Swarm Optimization for DNA Mic...
Feature Selection using Complementary Particle Swarm Optimization for DNA Mic...Feature Selection using Complementary Particle Swarm Optimization for DNA Mic...
Feature Selection using Complementary Particle Swarm Optimization for DNA Mic...sky chang
 
On selection of periodic kernels parameters in time series prediction
On selection of periodic kernels parameters in time series predictionOn selection of periodic kernels parameters in time series prediction
On selection of periodic kernels parameters in time series predictioncsandit
 
IRJET- Two-Class Priority Queueing System with Restricted Number of Priority ...
IRJET- Two-Class Priority Queueing System with Restricted Number of Priority ...IRJET- Two-Class Priority Queueing System with Restricted Number of Priority ...
IRJET- Two-Class Priority Queueing System with Restricted Number of Priority ...IRJET Journal
 
K-Sort: A New Sorting Algorithm that Beats Heap Sort for n 70 Lakhs!
K-Sort: A New Sorting Algorithm that Beats Heap Sort for n 70 Lakhs!K-Sort: A New Sorting Algorithm that Beats Heap Sort for n 70 Lakhs!
K-Sort: A New Sorting Algorithm that Beats Heap Sort for n 70 Lakhs!idescitation
 
Active Vibration Control of Composite Plate
Active Vibration Control of Composite PlateActive Vibration Control of Composite Plate
Active Vibration Control of Composite PlateRSIS International
 

La actualidad más candente (15)

Inverse Kinematics Using Genetic Algorithms
Inverse Kinematics Using Genetic AlgorithmsInverse Kinematics Using Genetic Algorithms
Inverse Kinematics Using Genetic Algorithms
 
Development of Adaptive Neuro Fuzzy Inference System for Estimation of Evapot...
Development of Adaptive Neuro Fuzzy Inference System for Estimation of Evapot...Development of Adaptive Neuro Fuzzy Inference System for Estimation of Evapot...
Development of Adaptive Neuro Fuzzy Inference System for Estimation of Evapot...
 
Ds33717725
Ds33717725Ds33717725
Ds33717725
 
Artificial bee colony with fcm for data clustering
Artificial bee colony with fcm for data clusteringArtificial bee colony with fcm for data clustering
Artificial bee colony with fcm for data clustering
 
Performance analysis of ecg qrs complex detection using morphological operators
Performance analysis of ecg qrs complex detection using morphological operatorsPerformance analysis of ecg qrs complex detection using morphological operators
Performance analysis of ecg qrs complex detection using morphological operators
 
Optimization and particle swarm optimization (O & PSO)
Optimization and particle swarm optimization (O & PSO) Optimization and particle swarm optimization (O & PSO)
Optimization and particle swarm optimization (O & PSO)
 
Comparative analysis of multi stage cordic using micro rotation techniq
Comparative analysis of multi stage cordic using micro rotation techniqComparative analysis of multi stage cordic using micro rotation techniq
Comparative analysis of multi stage cordic using micro rotation techniq
 
poster-lowe-6
poster-lowe-6poster-lowe-6
poster-lowe-6
 
Solution of Inverse Kinematics for SCARA Manipulator Using Adaptive Neuro-Fuz...
Solution of Inverse Kinematics for SCARA Manipulator Using Adaptive Neuro-Fuz...Solution of Inverse Kinematics for SCARA Manipulator Using Adaptive Neuro-Fuz...
Solution of Inverse Kinematics for SCARA Manipulator Using Adaptive Neuro-Fuz...
 
8 ijaems jan-2016-20-multi-attribute group decision making of internet public...
8 ijaems jan-2016-20-multi-attribute group decision making of internet public...8 ijaems jan-2016-20-multi-attribute group decision making of internet public...
8 ijaems jan-2016-20-multi-attribute group decision making of internet public...
 
Feature Selection using Complementary Particle Swarm Optimization for DNA Mic...
Feature Selection using Complementary Particle Swarm Optimization for DNA Mic...Feature Selection using Complementary Particle Swarm Optimization for DNA Mic...
Feature Selection using Complementary Particle Swarm Optimization for DNA Mic...
 
On selection of periodic kernels parameters in time series prediction
On selection of periodic kernels parameters in time series predictionOn selection of periodic kernels parameters in time series prediction
On selection of periodic kernels parameters in time series prediction
 
IRJET- Two-Class Priority Queueing System with Restricted Number of Priority ...
IRJET- Two-Class Priority Queueing System with Restricted Number of Priority ...IRJET- Two-Class Priority Queueing System with Restricted Number of Priority ...
IRJET- Two-Class Priority Queueing System with Restricted Number of Priority ...
 
K-Sort: A New Sorting Algorithm that Beats Heap Sort for n 70 Lakhs!
K-Sort: A New Sorting Algorithm that Beats Heap Sort for n 70 Lakhs!K-Sort: A New Sorting Algorithm that Beats Heap Sort for n 70 Lakhs!
K-Sort: A New Sorting Algorithm that Beats Heap Sort for n 70 Lakhs!
 
Active Vibration Control of Composite Plate
Active Vibration Control of Composite PlateActive Vibration Control of Composite Plate
Active Vibration Control of Composite Plate
 

Destacado

Eben Erasmus_N-Dip Civil Engineering
Eben Erasmus_N-Dip Civil EngineeringEben Erasmus_N-Dip Civil Engineering
Eben Erasmus_N-Dip Civil EngineeringEben Erasmus
 
Van conversatie naar business sessie 3: Hoe maak je er business van?
Van conversatie naar business sessie 3: Hoe maak je er business van?Van conversatie naar business sessie 3: Hoe maak je er business van?
Van conversatie naar business sessie 3: Hoe maak je er business van?Hogeschool Inholland
 
Design Ergonómico/Funcional
Design Ergonómico/FuncionalDesign Ergonómico/Funcional
Design Ergonómico/Funcionalluatum
 
01 desde dos ríos
01   desde dos ríos01   desde dos ríos
01 desde dos ríosVicenç Sanz
 
Internship report on nbp 3(1)
Internship report on nbp 3(1)Internship report on nbp 3(1)
Internship report on nbp 3(1)M Usman Ali
 
A2 reuven pinsky_progresstamar_program
A2 reuven pinsky_progresstamar_programA2 reuven pinsky_progresstamar_program
A2 reuven pinsky_progresstamar_programevaminerva
 
Graphic Design Work Sample #2
Graphic Design Work Sample #2Graphic Design Work Sample #2
Graphic Design Work Sample #2Clarke Jacobs
 
Ilonpalautuksia: yhdessä tekemisen lyhyt oppimäärä
Ilonpalautuksia: yhdessä tekemisen lyhyt oppimääräIlonpalautuksia: yhdessä tekemisen lyhyt oppimäärä
Ilonpalautuksia: yhdessä tekemisen lyhyt oppimääräJohanna Vuorenmaa
 
Наказ МОН України №1547 від 30.12.2014
Наказ МОН України №1547  від 30.12.2014Наказ МОН України №1547  від 30.12.2014
Наказ МОН України №1547 від 30.12.2014zoshnet1
 
Rekrytointi sosiaalisessa mediassa_Teekkarin työkirja 2014
Rekrytointi sosiaalisessa mediassa_Teekkarin työkirja 2014Rekrytointi sosiaalisessa mediassa_Teekkarin työkirja 2014
Rekrytointi sosiaalisessa mediassa_Teekkarin työkirja 2014Teekkarin työkirja
 
Migration auf Oracle 12c
Migration auf Oracle 12cMigration auf Oracle 12c
Migration auf Oracle 12cDierk Lenz
 

Destacado (17)

50120130405036
5012013040503650120130405036
50120130405036
 
Dr Jennifer Martinick
Dr Jennifer MartinickDr Jennifer Martinick
Dr Jennifer Martinick
 
Eben Erasmus_N-Dip Civil Engineering
Eben Erasmus_N-Dip Civil EngineeringEben Erasmus_N-Dip Civil Engineering
Eben Erasmus_N-Dip Civil Engineering
 
Van conversatie naar business sessie 3: Hoe maak je er business van?
Van conversatie naar business sessie 3: Hoe maak je er business van?Van conversatie naar business sessie 3: Hoe maak je er business van?
Van conversatie naar business sessie 3: Hoe maak je er business van?
 
Design Ergonómico/Funcional
Design Ergonómico/FuncionalDesign Ergonómico/Funcional
Design Ergonómico/Funcional
 
01 desde dos ríos
01   desde dos ríos01   desde dos ríos
01 desde dos ríos
 
Internship report on nbp 3(1)
Internship report on nbp 3(1)Internship report on nbp 3(1)
Internship report on nbp 3(1)
 
A2 reuven pinsky_progresstamar_program
A2 reuven pinsky_progresstamar_programA2 reuven pinsky_progresstamar_program
A2 reuven pinsky_progresstamar_program
 
Técnicas de venda
Técnicas de vendaTécnicas de venda
Técnicas de venda
 
Graphic Design Work Sample #2
Graphic Design Work Sample #2Graphic Design Work Sample #2
Graphic Design Work Sample #2
 
Ha3 task 1
Ha3 task 1Ha3 task 1
Ha3 task 1
 
Ilonpalautuksia: yhdessä tekemisen lyhyt oppimäärä
Ilonpalautuksia: yhdessä tekemisen lyhyt oppimääräIlonpalautuksia: yhdessä tekemisen lyhyt oppimäärä
Ilonpalautuksia: yhdessä tekemisen lyhyt oppimäärä
 
Наказ МОН України №1547 від 30.12.2014
Наказ МОН України №1547  від 30.12.2014Наказ МОН України №1547  від 30.12.2014
Наказ МОН України №1547 від 30.12.2014
 
W1th-H3ld
W1th-H3ldW1th-H3ld
W1th-H3ld
 
Heat Shrinkable Terminations
Heat Shrinkable Terminations Heat Shrinkable Terminations
Heat Shrinkable Terminations
 
Rekrytointi sosiaalisessa mediassa_Teekkarin työkirja 2014
Rekrytointi sosiaalisessa mediassa_Teekkarin työkirja 2014Rekrytointi sosiaalisessa mediassa_Teekkarin työkirja 2014
Rekrytointi sosiaalisessa mediassa_Teekkarin työkirja 2014
 
Migration auf Oracle 12c
Migration auf Oracle 12cMigration auf Oracle 12c
Migration auf Oracle 12c
 

Similar a 40120130405025

Markov Chain and Adaptive Parameter Selection on Particle Swarm Optimizer
Markov Chain and Adaptive Parameter Selection on Particle Swarm Optimizer  Markov Chain and Adaptive Parameter Selection on Particle Swarm Optimizer
Markov Chain and Adaptive Parameter Selection on Particle Swarm Optimizer ijsc
 
Using particle swarm optimization to solve test functions problems
Using particle swarm optimization to solve test functions problemsUsing particle swarm optimization to solve test functions problems
Using particle swarm optimization to solve test functions problemsriyaniaes
 
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...IRJET Journal
 
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...IRJET Journal
 
MARKOV CHAIN AND ADAPTIVE PARAMETER SELECTION ON PARTICLE SWARM OPTIMIZER
MARKOV CHAIN AND ADAPTIVE PARAMETER SELECTION ON PARTICLE SWARM OPTIMIZERMARKOV CHAIN AND ADAPTIVE PARAMETER SELECTION ON PARTICLE SWARM OPTIMIZER
MARKOV CHAIN AND ADAPTIVE PARAMETER SELECTION ON PARTICLE SWARM OPTIMIZERijsc
 
EFFECTS OF THE DIFFERENT MIGRATION PERIODS ON PARALLEL MULTI-SWARM PSO
EFFECTS OF THE DIFFERENT MIGRATION PERIODS ON PARALLEL MULTI-SWARM PSOEFFECTS OF THE DIFFERENT MIGRATION PERIODS ON PARALLEL MULTI-SWARM PSO
EFFECTS OF THE DIFFERENT MIGRATION PERIODS ON PARALLEL MULTI-SWARM PSOcscpconf
 
Effects of The Different Migration Periods on Parallel Multi-Swarm PSO
Effects of The Different Migration Periods on Parallel Multi-Swarm PSO Effects of The Different Migration Periods on Parallel Multi-Swarm PSO
Effects of The Different Migration Periods on Parallel Multi-Swarm PSO csandit
 
Improved Particle Swarm Optimization
Improved Particle Swarm OptimizationImproved Particle Swarm Optimization
Improved Particle Swarm Optimizationvane sanchez
 
an improver particle optmizacion plan de negocios
an improver particle optmizacion plan de negociosan improver particle optmizacion plan de negocios
an improver particle optmizacion plan de negociosCarlos Iza
 
Optimization of Mechanical Design Problems Using Improved Differential Evolut...
Optimization of Mechanical Design Problems Using Improved Differential Evolut...Optimization of Mechanical Design Problems Using Improved Differential Evolut...
Optimization of Mechanical Design Problems Using Improved Differential Evolut...IDES Editor
 
Optimization of Mechanical Design Problems Using Improved Differential Evolut...
Optimization of Mechanical Design Problems Using Improved Differential Evolut...Optimization of Mechanical Design Problems Using Improved Differential Evolut...
Optimization of Mechanical Design Problems Using Improved Differential Evolut...IDES Editor
 
MULTIPROCESSOR SCHEDULING AND PERFORMANCE EVALUATION USING ELITIST NON DOMINA...
MULTIPROCESSOR SCHEDULING AND PERFORMANCE EVALUATION USING ELITIST NON DOMINA...MULTIPROCESSOR SCHEDULING AND PERFORMANCE EVALUATION USING ELITIST NON DOMINA...
MULTIPROCESSOR SCHEDULING AND PERFORMANCE EVALUATION USING ELITIST NON DOMINA...ijcsa
 
PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...
PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...
PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...IAEME Publication
 
Modeling, simulation & dynamic analysis of four bar planar
Modeling, simulation & dynamic analysis of four bar planarModeling, simulation & dynamic analysis of four bar planar
Modeling, simulation & dynamic analysis of four bar planarIAEME Publication
 
A REVIEW OF PARTICLE SWARM OPTIMIZATION (PSO) ALGORITHM
A REVIEW OF PARTICLE SWARM OPTIMIZATION (PSO) ALGORITHMA REVIEW OF PARTICLE SWARM OPTIMIZATION (PSO) ALGORITHM
A REVIEW OF PARTICLE SWARM OPTIMIZATION (PSO) ALGORITHMIAEME Publication
 
Efficient evaluation of flatness error from Coordinate Measurement Data using...
Efficient evaluation of flatness error from Coordinate Measurement Data using...Efficient evaluation of flatness error from Coordinate Measurement Data using...
Efficient evaluation of flatness error from Coordinate Measurement Data using...Ali Shahed
 

Similar a 40120130405025 (20)

Markov Chain and Adaptive Parameter Selection on Particle Swarm Optimizer
Markov Chain and Adaptive Parameter Selection on Particle Swarm Optimizer  Markov Chain and Adaptive Parameter Selection on Particle Swarm Optimizer
Markov Chain and Adaptive Parameter Selection on Particle Swarm Optimizer
 
Using particle swarm optimization to solve test functions problems
Using particle swarm optimization to solve test functions problemsUsing particle swarm optimization to solve test functions problems
Using particle swarm optimization to solve test functions problems
 
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
 
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...
 
40120130405011
4012013040501140120130405011
40120130405011
 
40120140507002
4012014050700240120140507002
40120140507002
 
40120140507002
4012014050700240120140507002
40120140507002
 
MARKOV CHAIN AND ADAPTIVE PARAMETER SELECTION ON PARTICLE SWARM OPTIMIZER
MARKOV CHAIN AND ADAPTIVE PARAMETER SELECTION ON PARTICLE SWARM OPTIMIZERMARKOV CHAIN AND ADAPTIVE PARAMETER SELECTION ON PARTICLE SWARM OPTIMIZER
MARKOV CHAIN AND ADAPTIVE PARAMETER SELECTION ON PARTICLE SWARM OPTIMIZER
 
EFFECTS OF THE DIFFERENT MIGRATION PERIODS ON PARALLEL MULTI-SWARM PSO
EFFECTS OF THE DIFFERENT MIGRATION PERIODS ON PARALLEL MULTI-SWARM PSOEFFECTS OF THE DIFFERENT MIGRATION PERIODS ON PARALLEL MULTI-SWARM PSO
EFFECTS OF THE DIFFERENT MIGRATION PERIODS ON PARALLEL MULTI-SWARM PSO
 
Effects of The Different Migration Periods on Parallel Multi-Swarm PSO
Effects of The Different Migration Periods on Parallel Multi-Swarm PSO Effects of The Different Migration Periods on Parallel Multi-Swarm PSO
Effects of The Different Migration Periods on Parallel Multi-Swarm PSO
 
Improved Particle Swarm Optimization
Improved Particle Swarm OptimizationImproved Particle Swarm Optimization
Improved Particle Swarm Optimization
 
an improver particle optmizacion plan de negocios
an improver particle optmizacion plan de negociosan improver particle optmizacion plan de negocios
an improver particle optmizacion plan de negocios
 
Optimization of Mechanical Design Problems Using Improved Differential Evolut...
Optimization of Mechanical Design Problems Using Improved Differential Evolut...Optimization of Mechanical Design Problems Using Improved Differential Evolut...
Optimization of Mechanical Design Problems Using Improved Differential Evolut...
 
Optimization of Mechanical Design Problems Using Improved Differential Evolut...
Optimization of Mechanical Design Problems Using Improved Differential Evolut...Optimization of Mechanical Design Problems Using Improved Differential Evolut...
Optimization of Mechanical Design Problems Using Improved Differential Evolut...
 
MULTIPROCESSOR SCHEDULING AND PERFORMANCE EVALUATION USING ELITIST NON DOMINA...
MULTIPROCESSOR SCHEDULING AND PERFORMANCE EVALUATION USING ELITIST NON DOMINA...MULTIPROCESSOR SCHEDULING AND PERFORMANCE EVALUATION USING ELITIST NON DOMINA...
MULTIPROCESSOR SCHEDULING AND PERFORMANCE EVALUATION USING ELITIST NON DOMINA...
 
PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...
PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...
PATTERN SYNTHESIS OF NON-UNIFORM AMPLITUDE EQUALLY SPACED MICROSTRIP ARRAY AN...
 
Modeling, simulation & dynamic analysis of four bar planar
Modeling, simulation & dynamic analysis of four bar planarModeling, simulation & dynamic analysis of four bar planar
Modeling, simulation & dynamic analysis of four bar planar
 
50120140503004
5012014050300450120140503004
50120140503004
 
A REVIEW OF PARTICLE SWARM OPTIMIZATION (PSO) ALGORITHM
A REVIEW OF PARTICLE SWARM OPTIMIZATION (PSO) ALGORITHMA REVIEW OF PARTICLE SWARM OPTIMIZATION (PSO) ALGORITHM
A REVIEW OF PARTICLE SWARM OPTIMIZATION (PSO) ALGORITHM
 
Efficient evaluation of flatness error from Coordinate Measurement Data using...
Efficient evaluation of flatness error from Coordinate Measurement Data using...Efficient evaluation of flatness error from Coordinate Measurement Data using...
Efficient evaluation of flatness error from Coordinate Measurement Data using...
 

Más de IAEME Publication

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME Publication
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...IAEME Publication
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSIAEME Publication
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSIAEME Publication
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSIAEME Publication
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSIAEME Publication
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOIAEME Publication
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IAEME Publication
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYIAEME Publication
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...IAEME Publication
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEIAEME Publication
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...IAEME Publication
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...IAEME Publication
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...IAEME Publication
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...IAEME Publication
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...IAEME Publication
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...IAEME Publication
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...IAEME Publication
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...IAEME Publication
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTIAEME Publication
 

Más de IAEME Publication (20)

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdf
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICE
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
 

Último

Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????blackmambaettijean
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 

Último (20)

Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 

40120130405025

  • 1. International Journal of Electronics and JOURNALEngineering & Technology (IJECET), ISSN 0976 – INTERNATIONAL Communication OF ELECTRONICS AND 6464(Print), ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October (2013), © IAEME COMMUNICATION ENGINEERING & TECHNOLOGY (IJECET) ISSN 0976 – 6464(Print) ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October, 2013, pp. 218-224 © IAEME: www.iaeme.com/ijecet.asp Journal Impact Factor (2013): 5.8896 (Calculated by GISI) www.jifactor.com IJECET ©IAEME SELF ACCELERATED SMART PARTICLE SWARM OPTIMIZATION FOR NON LINEAR PROGRAMMING PROBLEMS Anuradha L. Borkar1 1 1 Electronics and Telecommunication Dept. M S S S’ College of Engineering and Technology, Jalna, Maharashtra, India ABSTRACT This paper presents Self Accelerated Smart Particle Swarm Optimization (SASPSO) for nonlinear programming problems (NLP). In SASPSO, the positions of particle are updated by pbest (Personal or local best) and gbest (Global best). The main advantages of SASPSO are that it doesn’t require velocity equation. In addition, it does not require any additional parameter like acceleration coefficients and inertia weight as in case other PSO algorithms. Momentum factor is introduced in SASPSO which can prevent particles from out of defined region without checking the validity of positions at every iterations result in saving of computational cost. During the initial stages of the experimentation, the step size will be large and during the final stage of the experimentation, the step size is reduced to smaller value. The SASPSO is tested on global optimization problems such as Nonlinear Programming Problems (NLP). The results are compared with the Genetic Algorithm (GA). The results of SASPSO are good in terms of are accuracy of optimal solution and generations as compared GA. It also gives large number of possible optimal solutions as compared GA. Keywords: gbest(Global best), Nonlinear programming problems (NLP), pbest (Personal or local best), Self Accelerated Smart Particle Swarm Optimization (SASPSO). I. INTRODUCTION Most of the real life problems occurring in the field of science and engineering may be modeled as Nonlinear programming (NLP), unimodal or multimodal optimization problems. Nonlinear programming is the process of solving a system of equalities and inequalities over a set of unknown real variables, along with an objective function to be maximized or minimized, where some of the constraints or the objective functions are nonlinear. No general algorithms exist for solving nonlinear programming problems. However for problems with certain suitable structures, efficient algorithms have been developed. It is possible to convert the given NLP into one in which these structures become visible. 218
  • 2. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October (2013), © IAEME Nonlinear programming problems, unimodal or multimodal problems are generally considered more difficult to solve as there exists several local and global optima. Effective optimization of nonlinear programming problems, multi-dimensional and multimodal function with faster convergence and good quality of solution is a challenging task. The high computational cost and demands for improving accuracy of global optima of nonlinear programming problems and multimodal functions have forced the researchers to develop efficient optimization techniques in terms of new, modified or hybrid soft computing techniques. John Holland conceived Genetic Algorithm (GA) in the mid 1970’s [1]. GA is inspired by the principles of genetic evolution and mimics the reproduction behavior observed in biological populations. GA suffers from premature convergence when an individual that is fit than others at early stages dominates on the reproduction process leading to a local optimum convergence rather than a more thorough search that could have lead to a global optimum [1]. GA has been extensively applied to solve complex design optimization problems due its capability to handle constrain functions without requiring gradient information [1]. But the limitation of getting trapped in local minima and three step procedures of GA [1-2] such as selection, crossover and mutation increase the computational time and thus forced the researchers to search for more efficient optimization techniques. Particle Swarm Optimization (PSO) is a population-based optimization method developed by Eberhart and Kennedy in 1995. This method is inspired by social behavior of bird flocking or fish schooling. It can efficiently handle problems like nonlinear, unimodal and multimodal function optimizations [3]. . Compared to GA, PSO is easy to implement and converge faster with less memory requirement [4]. However, unlike GA, PSO has no evolution operators such as crossover and mutation. The new variants of PSO are proposed for faster convergence and better quality of optimum solution like Supervisor-Student Model in Particle Swarm Optimization (SSM-PSO) [5], Linear Decreasing Weight Particle Swarm Optimization (LDW-PSO) [6], Gregarious Particle Swarm Optimization (GPSO) [7], Global and Local Best Particle Swarm Optimization (GLBestPSO)[8] and Emotional Particle Swarm Optimization (EPSO)[9]. The author proposed Self Accelerated Smart Particle Swarm Optimization (SASPSO) for nonlinear programming problems (NLP). The rest of the paper is organized in four fold. The section II depicts the review of original Particle Swarm Optimization (PSO). The section III depicts the proposed method. In section IV, experimental results on nonlinear programming problems (NLP).by proposed method and other published techniques are presented. Section V comprises of conclusion. II REVIEW OF PARTICLE SWARM OPTIMIZATION The original framework of PSO is designed by Kennedy and Eberhart in 1995. There fore, it is known as standard PSO [3]. PSO follows the optimization process by means of personal or local best (pi), global best (pg), particle position or displacement (X) and particle velocity (V). For each particle, at the current time step, a record is kept for the position, velocity, and the best position found in the search space. Each particle memorizes its previous velocity and the previous best position and uses them in its movements [3]. The velocities (V) of the particles are limited in [Vmin Vmax] D. If V is smaller than Vmin then V is set to Vmin or Xmin. If V greater than Vmax then V is set to Vmax or Xmax. Since the original version of PSO lacks velocity control mechanism, it has a poor ability to search at a fine grain. The two updating fundamental equations in a PSO are velocity and position equations, which are expressed as Eq. (1) and (2). 219
  • 3. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October (2013), © IAEME V id (t + 1) = V id ( t ) + c1 ∗ r1 d ( t ) ∗ ( p id ( t ) − X id ( t )) + c 2 ∗ r2 d (t ) ∗ ( p gd (t ) − X id ( t )) (1) X id (t + 1) = X id (t ) +V id (t + 1) (2) Where, t= Current iteration or generation. i = Particle Number. d= Dimensions. Vid(t) = Velocity of i-th particle for d-dimension at iteration t. Xid (t) = Position of i-th particle for d-dimension at iteration t. c1 and c2= Acceleration constants. r1d (t) and r2d (t) = Random values [0 1] for d- dimension at iteration t. pid (t)= Personal or local best of i-th particle for d-dimension at iteration t. pgd (t) = Global best for d-dimension at iteration t. The right side of Eq. (1) consists of three parts. The first part of equation is the previous velocity of the particle. The second part is the cognition (self-knowledge) or memory, which represents that the particle is attracted by its own previous best position and moving toward to it. The third part is the social (social knowledge) or cooperation, which represents that the particle is attracted by the best position so far in population and moving towards to it. There are restrictions among these three parts and can be used to determine the major performance of the algorithm. III SELF ACCELERATED SMART PARTICLE SWARM OPTIMIZATION (SASPSO) The standard PSO suffers from following disadvantages. 1. 2. 3. 4. The swarm may prematurely converge when some poor particles attract the other particles or due to local optima or bad initialization It has problem dependent performance. No single parameter settings exists which can be applied to all problems. It requires tuning of parameters like c1, c2, w, iterations and swarm size Increasing the value of inertia weight w, increases the speed of the particles resulting in more global search and less local search. Decreasing the inertia weight slows down the speed of the particle resulting in more local search and less global search. So to avoid the disadvantage of standard PSO, the author proposed a Self Accelerated Smart Particle Swarm Optimization (SASPSO). In SASPSO, the positions of particle are updated by pbest (Personal or local best) and gbest (Global best particle positions) as expressed in Eq. (3). The main advantages of SASPSO are that it doesn’t require velocity equation. In addition, it does not require any additional parameter like acceleration coefficients and inertia weight as the case in other PSO algorithms. Momentum factor can prevent particles from out of defined region without checking the validity of positions at every iterations result in saving of computational cost. Xi(t+1)= Xi(t)+Mc*rand((Xi(t)- (gbest- pbesit))+( gbest-- pbesit)*rand) Where, t= Current iteration or generation. i = Particle Number. Xi (t) = Position of i-th particle for d-dimension at iteration t. 220 (3)
  • 4. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October (2013), © IAEME r1 and r2 = Random values [0 1] at iteration t. pbesit = Personal or local best of i-th particle at iteration t. Gbest = Global best at iteration t. Mc= Momentum Factor During the initial stages of the experimentation, the step size will be large and thus the positions of particles are away from the global best position. During the final stage of the experimentation, the step size is reduced to smaller value. Momentum factor can prevent particles from out of defined region without checking the validity of positions at every iterations result in saving of computational cost. IV EXPERIMENTAL RESULTS AND DISCUSSIONS The Four Quadratic Programming Problems [10] as shown in Table 1 are used to validate performance of the Self Accelerated Smart Particle Swarm Optimization. The authors are considered both maximization and minimization functions to test efficiency of the SASPSO. The first and second problems are minimization problem and third and fourth problem is maximization problem. The solution by using Beale’s method [10] for each Quadratic Programming problem is presented in Table 1. The equation along with the constraints is given to the program. The objective function which is to be minimized or maximized is the fitness function. In SASPSO, population is taken as double vector with size 20. The value of momentum factor is chosen as 0.005 that will results in not escaping the global optima. The stopping criterion of the SASPSO is taken as error value of 0.1. If the error value is equal to or less than 0.1 then the SASPSO is stopped. The number of trials is taken as 10. The number of generations required and solutions for Quadratic Programming problem by using GA and SASPSO is presented in Table 2. For first and second NLP problems SASPSO is required less number of generations as compared GA and the accuracy of solutions by SASPSO which is better than GA. For third and fourth NLP problems SASPSO is required less number of generations as compared GA and the accuracy of solutions by SASPSO is 100 and which is better than GA. But the SASPSO is producing same solution for maximization problem. The Fig 1 shows number of generations required for each NLP problems by GA and SASPSO. As seen from results the SASPSO requires less number of computations as compared to GA improves the quality of optima . The presented method is suitable for optimization of Quadratic Programming problem, unimodal and multimodal functions. Eq No 1 2 3 4 Table 1. Quadratic Programming Problems solved Equation With Constraints Beale’s method Min Z= X1*2+ X2^2 X1=2 SUB: X1+ X2>=4 X2=2 2 X1+ X2>=5 X1, X2 >=0 Z=8 Min Z=183-44 X1-42 X2+8 X1^2-12 X1 X2^2 X1=3.8 SUB: 2 X1+ X2<=10 X2=2.4 X1, X2>=10 Z=19 Max Z= 2 X1+3 X2 X1=2 SUB: X1^2+ X2^2<=20 X2=4 X1 X2<=8 Z=16 X1, X2>=0 Max 2 X1+2 X2-2 X2^2 X1=2 SUB : X1+4X2<=4 X2=0 X1+ X2<=2 Z=4 221
  • 5. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October (2013), © IAEME Table 2. Comparison of Quadratic Programming Problems solved by using GA and SASPSO Eq No Solution by GA[10] Gen. [10] Optimize using GA[10] Accu racy [10] Gen. Optimize using SASPSO Accuracy 3 8.00208 100 X1 1.90715 4 8.01732 100 2.15473 2.05038 1.84527 1.94965 4 4 8.04788 8.00519 100 100 1.95916 1.95270 2.05151 2.04818 3 3 8.00470 8.00081 100 100 2.14182 2.01181 1.8582 1.98821 4 4 8.0403 8.00038 100 100 1.95688 1.96214 2.05713 2.05779 3 3 8.06115 8.08449 100 100 1.95293 1.95116 2.05772 2.05428 3 3 8.00048 8.02708 100 100 1.94477 1.95201 1 X2 2.09287 Solution by SASPSO X1 X2 1.95539 2.04873 2.05895 2.06040 3 3 8.02144 8.00555 100 100 2.05079 2.36760 3 3 8.00377 19.00165 100 100 3.81998 5 19.002 100 3.80427 3.79966 2.39102 2.40058 6 4 19.00247 19.00061 100 100 3.80799 3.81026 2.37445 2.37094 3 3 19.00714 19.00020 100 100 3.79831 3.80224 2.40337 2.39492 8 7 19.00035 19.0042 100 100 3.79655 3.81848 2.39886 2.35490 4 6 19.00018 19.00029 100 100 3.82026 3.80526 2.35451 2.3736 7 6 19.00793 19.00008 100 100 3.79655 3.80526 2 2.36005 1.95908 3.81169 2.39886 2.37368 7 5 19.00048 19.00108 100 100 2.35260 4.00526 7 2 19.09185 16.02632 100 100 2.09653 5 15.64055 97.75 1.99 1.91904 4.00379 4.039 3 4 15.99137 15.95508 99.94 99.71 2.00526 2.00526 4.00526 4.00526 2 2 16.02632 16.02632 100 100 1.72685 1.9912 4.12527 4.00436 5 5 15.82953 15.99548 98.93 99.97 2.00526 2.00526 4.00526 4.00526 2 2 16.02632 16.02632 100 100 2.00526 2.00526 4.00526 4.00526 2 2 16.02632 16.02632 100 100 2.00526 2.00526 3 3.81583 3.82048 2.00526 4.00526 4.00526 2 2 16.02632 16.02632 100 100 1.95734 3 3.99635 99.9 2.00526 2.00500 4.00526 0.00100 2 2 16.02632 4.01300 100 100 1.97025 1.86849 4 0.04266 0.02975 0.13161 3 3 3.99823 3.9975 99.95 99.93 2.00500 2.00500 0.00100 0.00100 2 2 4.01300 4.01300 100 100 1.94342 1.89092 0.05658 0.10902 3 3 3.9936 3.9761 99.93 99.4 2.00500 2.00500 0.00100 0.00100 2 2 4.01300 4.01300 100 100 2.00500 2.00500 0.00100 0.00100 2 2 4.01300 4.01300 100 100 2.00500 2.00500 0.00100 0.00100 2 2 4.01300 4.01300 100 100 2.00500 0.00100 2 4.01300 100 222
  • 6. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October (2013), © IAEME Number of Generations Comparision of Number of Generations required by PSO and SASPSO 7 6 5 4 3 2 1 0 PSO SASPSO 1 2 3 4 Equation Number Fig. 1. Number of Generations Required by PSO and SASPSO V. CONCLUSION The author introduced Self Accelerated Smart Particle Swarm Optimization (SASPSO) to optimize difficult nonlinear programming problems (NLP) with fast convergence and better accuracy.. The main advantages of SASPSO are that it doesn’t require velocity equation. In addition, it does not require any additional parameter like acceleration coefficients and inertia weight as in case other PSO algorithms. Momentum factor is introduced in SASPSO which can prevent particles from out of defined region without checking the validity of positions at every iterations result in saving of computational cost. Using SASPSO, we get large combinations of values of decision variables satisfying all the given constraints in very short time. The results of SASPSO are good in terms of are accuracy of optimal solution with less number of generations as compared GA. The proposed technique is more efficient for improving the quality of global optima of Nonlinear programming problems (NLP), unimodal and multimodal functions with less computational requirement and better accuracy. VI. REFERENCES [1] Boeringer D.W., Werner D.H., Particle swarm optimization versus genetic algorithms for phased array synthesis, IEEE Transactions Antennas Propagation, 52(3), 2004, 771–779. Eberhart R.C., Shi Y.: Comparison between genetic algorithm and particle swarm optimization, In proc. IEEE Int. Conf. Computt., Anchorage, AK, 1998, 611-616. Kennedy J. and Eberhart R.C., Particle Swarm Optimization” Proc York: IEEE International conference on neural networks, Springer-Verlag 1995, Piscataway; 4, 1985, 1942-1948. Shi Y.H. And Eberhart R.C., Parameter Selection in Particle Swarm Optimization Annual Conference on Evolutionary Computation, 1999, 101-106. Liu Yu, Zheng Qin, and Xingshi He., Supervisor-Student Model in Particle Swarm Optimization, IEEE Congress on Evolutionary Computation, 2004 (CEC 2004), 1, 2004, 542-547. Shi Y. and Eberhart R.C., A modified particle swarm optimizer, Proceedings of the IEEE Congress on Evolutionary Computation (CEC 1998), Piscataway, NI., 1998, pp.69-73. [2] [3] [4] [5] [6] 223
  • 7. International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 – 6464(Print), ISSN 0976 – 6472(Online) Volume 4, Issue 5, September – October (2013), © IAEME [7] [8] [9] [10] [11] [12] [13] Pasupuleti Srinivas and Roberto Bhattiti, The Gregarious Particle Swarm Optimizer (G-PSO), GECCO 2006, Seattle, Washington, USA, 2006. Arumugam M. Senthil, Rao M. V. C., Chandramohan Aarthi, A new and improved version of particle swarm optimization algorithm with global-local best parameters, Journal of Knowledge and Information System (KAIS), Springer. 16(3), 2008, 324-350 Yang Ge,Rubo Zhang,: An Emotional Particle Swarm Optimization Algorithm, Advances in Natural Computation, Lecture notes in Computer Science, Springer-Verlag, Berlin, Germany, 3612, 2005,.553-561 P.S. Revenkar, Smita Kasar, Abhilasha Mishra, Optimization of Non Linear Programming Problems using non traditional method: Genetic Algorithms, International conference and work shop on emerging trends in technology, ACM newyork, ny, USA, 2010, 1002-2002. Chandramouli.H, Dr. Somashekhar C Desai, K S Jagadeesh and Kashyap D Dhruve, “Elephant Swarm Optimization for Wireless Sensor Networks –A Cross Layer Mechanism”, International Journal of Computer Engineering & Technology (IJCET), Volume 4, Issue 2, 2013, pp. 45 - 60, ISSN Print: 0976 – 6367, ISSN Online: 0976 – 6375. R. Arivoli and Dr. I. A. Chidambaram, “Multi-Objective Particle Swarm Optimization Based Load-Frequency Control of a Two-Area Power System with Smes Inter Connected using Ac-Dc Tie-Lines”, International Journal of Electrical Engineering & Technology (IJEET), Volume 3, Issue 1, 2012, pp. 1 - 20, ISSN Print : 0976-6545, ISSN Online: 0976-6553. A.Sri Rama Chandra Murty and M. Surendra Prasad Babu, “Implementation of Particle Swarm Optimization (Pso) Algorithm on Potato Expert System”, International Journal of Computer Engineering & Technology (IJCET), Volume 4, Issue 4, 2013, pp. 82 - 90, ISSN Print: 0976 – 6367, ISSN Online: 0976 – 6375. 224