SlideShare ist ein Scribd-Unternehmen logo
1 von 5
Downloaden Sie, um offline zu lesen
IOSR Journal of Computer Engineering (IOSR-JCE)
e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 3, Ver. II (May – Jun. 2015), PP 115-119
www.iosrjournals.org
DOI: 10.9790/0661-1732115119 www.iosrjournals.org 115 | Page
Artificial Intelligence in Robot Path Planning
Pranav Reddy Kambam1
, Rahul Brungi2
, Prof. Gopichand G3
1
(Electronics and Instrumentation, VIT University, India)
2
(Computer Science, VIT University, India)
3
(Computer Science, VIT University, India)
Abstract: Mobile robot path planning problem is an important combinational content of artificial intelligence
and robotics. Its mission is to be independently movement from the starting point to the target point make robots
in their work environment while satisfying certain constraints. Constraint conditions are as follows: not a
collision with known and unknown obstacles, as far as possible away from the obstacle, sports the shortest path,
the shortest time, robot-consuming energy minimization and so on. In essence, the mobile robot path planning
problem can be seen as a conditional constraint optimization problem. To overcome this problem, ant colony
optimization algorithm is used.
Keywords: Particle Swarm Optimization (PSO), Genetic Algorithm(GA), Tabu Search, Simulated Annealing
(SA), Reactive Search Optimization (RSO), Proportional–Integral–Derivative(PID).
I. Introduction
Robot path planning is about finding a collision free motion from one position to another. Efficient
algorithms for solving problems of this type have important applications in areas such as: industrial robotics,
computer animation, drug design, and automated surveillance [1,2]. By representing synthetic, simulated
humans as robots, we can use motion planning algorithms to develop convincing computer generated animation.
There are many traditional techniques used in past in robot control such as PID. Problem with PID control is
that they perform process efficiently over very limited range of environment. It is very difficult to have highly
accurate performance especially at high speed of processes. This is because of PID control i.e. PID is linear and
not suitable for non-linear system with varying dynamic parameters and PID requires precise knowledge of
dynamic model. This may explain the dominant role of soft computing techniques in robotics. During the last
four decades, researchers have proposed many techniques for control and automation. There are various step
involved in designing of control system. These are modeling, analysis, simulation, implementation and
verification. In conventional/traditional techniques of control, the prime objectives had been precision and
uncertainty. However, in soft computing, the precision and certainty can be achieved by techniques of fuzzy
logic, neural network, evolutionary algorithm, and hybrid. The main emphasis of the paper is to explore the
efficient and accurate procedure based on soft-computing algorithm to provide the online learning mechanism
which performs better in dynamic, unstructured environment of robot [3]. Many techniques are used for this.
1.1 Particle Swarm Optimization (PSO)
Particle Swarm Optimization (PSO) is a computational method that optimizes a problem by iteratively
trying to improve a candidate solution with regard to a given measure of quality. PSO optimizes a problem by
having a population of candidate solutions, with dubbed particles, and moving these particles around in the
search-space according to simple mathematical formulae over the particle's position and velocity. Each particle's
movement is influenced by its local best known position and is also guided toward the best known positions in
the search-space, which are updated as better positions are found by other particles. This is expected to move the
swarm toward the best solutions. PSO is a meta heuristic as it makes few or no assumptions about the problem
being optimized and can search very large spaces of candidate solutions. However, meta heuristics such as PSO
do not guarantee an optimal solution is ever found. More specifically, PSO does not use the gradient of the
problem being optimized, which means PSO does not require that the optimization problem be differentiable as
is required by classic optimization methods such as gradient descent and Quasi-Newton methods. PSO can
therefore also be used on optimization problems that are partially irregular, noisy, change over time.
1.2 Genetic Algorithm (GA)
A genetic algorithm (GA) is a search heuristic that mimics the process of natural evolution. This
heuristic is routinely used to generate useful solutions to optimization and search problems. Genetic algorithms
belong to the larger class of evolutionary algorithms (EA), which generate solutions to optimization problems
using techniques inspired by natural evolution, such as inheritance, mutation, selection, and crossover. In a
genetic algorithm, a population of strings called chromosomes or the genotype of the genome, which encodes
candidate solutions called individuals, creatures, or phenotypes to an optimization problem, evolves toward
Artificial Intelligence in Robot Path Planning
DOI: 10.9790/0661-1732115119 www.iosrjournals.org 116 | Page
better solutions. Traditionally, solutions are represented in binary as strings of 0s and 1s, but other encodings are
also possible. The evolution usually starts from a population of randomly generated individuals and happens in
generations. In each generation, the fitness of every individual in the population is evaluated, multiple
individuals are stochastically selected from the current population (based on their fitness), and modified
(recombined and possibly randomly mutated) to form a new population. The new population is then used in the
next iteration of the algorithm. Commonly, the algorithm terminates when either a maximum number of
generations has been produced, or a satisfactory fitness level has been reached for the population. If the
algorithm has terminated due to a maximum number of generations, a satisfactory solution may or may not have
been reached.
1.3 Tabu Search
Tabu search is a local search method used for mathematical optimization. Local searches take a
potential solution to a problem and check its immediate neighbors in the hope of finding an improved solution.
Local search methods have a tendency to become stuck in suboptimal regions or on plateaus where many
solutions are equally fit. Tabu search enhances the performance of these techniques by using memory structures
that describe the visited solutions or user-provided sets of rule. If a potential solution has been previously visited
within a certain short-term period or if it has violated a rule, it is marked as "taboo" so that the algorithm does
not consider that possibility repeatedly.
1.4 Simulated Annealing (SA)
Simulated annealing (SA) is a generic probabilistic meta heuristic for the global optimization problem
of locating a good approximation to the global optimum of a given function in a large search space. It is often
used when the search space is discrete. For certain problems, simulated annealing may be more efficient than
exhaustive enumeration— provided that the goal is merely to find an acceptably good solution in a fixed amount
of time, rather than the best possible solution. The name and inspiration come from annealing in metallurgy, a
technique involving heating and controlled cooling of a material to increase the size of its crystals and reduce
their defects. The heat causes the atoms to become unstuck from their initial positions (a local minimum of the
internal energy) and wander randomly through states of higher energy; the slow cooling gives them more
chances of finding configurations with lower internal energy than the initial one.
By analogy with this physical process, each step of the SA algorithm attempts to replace the current
solution by a random solution (chosen according to a candidate distribution, often constructed to sample from
solutions near the current solution). The new solution may then be accepted with a probability that depends both
on the difference between the corresponding function values and also on a global parameter T (called the
temperature), that is gradually decreased during the process. The dependency is such that the choice between
the previous and current solution is almost random when T is large, but increasingly selects the better or
"downhill" solution (for a minimization problem) as T goes to zero. The allowance for "uphill" moves
potentially saves the method from becoming stuck at local optima—which are the bane of greedier methods.
1.5 Reactive Search Optimization (RSO)
Reactive Search Optimization (RSO) defines local-search heuristics based on machine learning, a
family of optimization algorithms based on the local search techniques. It refers to a class of heuristics that
automatically adjust their working parameters during the optimization phase. Reactive Search Optimization
(RSO), like all local search techniques, is applied to the problem of finding the optimal configuration of a
system; such configuration is usually composed of continuously or discretely varying parameters, while the
optimality criterion is a numerical value associated to each configuration. In most cases, an optimization
problem can be reduced to finding the (global) minimum of a function whose arguments are the configuration
parameters, seen as free variables in the function's domain space.
Reactive Search Optimization advocates the integration of sub-symbolic machine learning techniques
into search heuristics for solving complex optimization problems. The word reactive hints at a ready response to
events during the search through an internal feedback loop for online self-tuning and dynamic adaptation. In
Reactive Search the past history of the search and the knowledge accumulated while moving in the
configuration space is used for self-adaptation in an autonomic manner: the algorithm maintains the internal
flexibility needed to address different situations during the search, but the adaptation is automated, and executed
while the algorithm runs on a single instance and reflects on its past experience.
1.6 Ant colony algorithms
In the natural world, ants (initially) wander randomly, and upon finding food return to their colony
while laying down pheromone trails. If other ants find such a path, they are likely not to keep traveling at
random, but to instead follow the trail, returning and reinforcing it if they eventually find food.
Artificial Intelligence in Robot Path Planning
DOI: 10.9790/0661-1732115119 www.iosrjournals.org 117 | Page
Over time, however, the pheromone trail starts to evaporate, thus reducing its attractive strength. The
more time it takes for an ant to travel down the path and back again, the more time the pheromones have to
evaporate. A short path, by comparison, gets marched over more frequently, and thus the pheromone density
becomes higher on shorter paths than longer ones. Pheromone evaporation also has the advantage of avoiding
the convergence to a locally optimal solution. If there were no evaporation at all, the paths chosen by the first
ants would tend to be excessively attractive to the following ones. In that case, the exploration of the solution
space would be constrained.
II. Overcoming The Problem Of ACO
Various approaches to overcome the problem of ACO i.e. mitigating stagnation which include:- evaporation,
aging and pheromone smoothing .
The Approaches to alleviate stagnation is pheromone control. Pheromone control adopts several
approaches to reduce the influence from past experience and encourage the exploration of new paths that are
non-optimal.
2.1 Evaporation
To reduce the effect of past experience, an approach called evaporation is used in conjunction in
optimal path from being excessively high and preventing ants from exploring the other paths. In each iteration,
the pheromone value ij in all edges are decremented by a factor p such that ij ←ij (1-p)
2.2 Aging
A past experience can also be reduced by controlling the amount of pheromone deposited for each ant
according to its age. This approach is known as aging. In aging, an ant deposits lesser and lesser amount of
pheromone as it moves from one obstacle to other obstacle. Aging is based on the rationale that ―old ants are
less successful in locating the optimal paths since they take longer time to reach their destination. Both aging
and evaporation encourage discoveries of new paths that are previously non-optimal
2.3 Limiting and smoothing pheromone
Limiting the amount of pheromone in every path, by placing an upper bound on the amount of
pheromone for every edge(i,j), the preference of an ant for optimal path is reduced. This approach prevents the
situation of generating a dominant path. A variation of such an approach is called pheromone smoothing.
III. Proposed Solution For Robotic Path Planning
Fig1: Layout of Robot Path Planning
3.1 Source
Robot starts walking from source point (Xs,Ys) and it is fixed
3.2 Robot Moves one step
From source point(Xs,Ys), Robot is moving towards the destination point by taking one step ahead and
changes the value of (Xs,Ys) to (Xsnew,Ysnew) by using the below equations :
Artificial Intelligence in Robot Path Planning
DOI: 10.9790/0661-1732115119 www.iosrjournals.org 118 | Page
Xsnew = Xprev + step*cos(e) (1)
Ysnew = Yprev + step*sin(e) (2)
Where, Xprev,Yprev denotes where the robot is currently situated in which we add the step size multiplied by
cos(ө)and sin(ө) respectively which will gives the robot’s next position. Where ө is dynamic angle and it can be
calculated by :
Ө = Tan-1
(Xprev/Yprev) (3)
3.3 Flag Setting
Robot sees the value of the flag, if it's value is zero, it indicates that there is no obstacle and robot can
take a step ahead and can reach to the destination point.
3.4 Encounter with obstacle
Whenever the robot encounter with obstacle, it has to stop moving means there is no increase in the
step size and robot has to take three steps back. In our proposed work, twenty obstacle are generated randomly
which is of rectangular shape. Number of obstacles is fixed which is a constraint in our work.
Obstacle (oopsV) can be generated by the following pseudo code :
oopsV=20;
x=100*rand(1,oopsV);
y=100*rand(1,oopsV);
l=10*rand(1,oopsV);
w=10*rand(1,oopsV); for m=1:oopsV
plot([x(1,m) x(1,m)+w(1,m)], [y(1,m) y(1,m)]); plot([x(1,m) x(1,m)], [y(1,m) y(1,m)+l(1,m)]); plot[x(1,m)
x(1,m)+w(1,m)],[y(1,m)+l(1,m) y(1,m)+l(1,m)]);
plot([x(1,m)+w(1,m)x(1,m)+w(1,m)],[y(1,m) y(1,m)+l(1,m)]);
end
In this pseudo code initialize the number of obstacles oopsV=20 and obstacles are generated in the moving
space of 100*100 and whose length and width varies between 0 1o 10 dynamically.
3.5Take three step back
Whenever the robot encounter with obstacle, robot stop moving and take three step back by using the
following equation :
Xsnew = Xprev-3*step*cos(e) (4)
Ysnew = Yprev-3*step*sin(e)  (5)
Ө =Tan-1
(Xprev/Yprev)  (6)
3.6Destination
Finally robot has to reach at the point (XT,YT), which is fixed. Robot has to bypass the obstacle and by
following optimal.
Path has to reach to target point.
3.7Apply the ACO algorithm to bypass the obstacle
ACO is a met heuristic algorithm inspired by the real ant for the forage for food. ACO is applied to the
problems which can be described by the graphs so that feasible solution can be expressed in terms of paths on
the graph. It was first applied to TSP. Among the feasible paths, ACO is used to find out the optimal one i.e.
locally or globally optimal. This algorithm is implemented in two steps. In first step, the edge is selected on the
basis of probability formula. Assume that ant k is located at node i, uses the pheromone ij deposited on the
edge (i,j) to compute the probability of choosing next node.
 ij
if j N k 


ij

i
 (7)Pij = 

j
N
( k )
i
Artificial Intelligence in Robot Path Planning
DOI: 10.9790/0661-1732115119 www.iosrjournals.org 119 | Page
0 otherwise

Where α denotes the degree of importance of pheromone trail and Ni
(k)
indicates the set of neighbors of
ant k when located at node i except the predecessor node i.e. the last node visited by ant k. This will prevent the
ant k from returning to the same node. An ant travels from node to node until it reaches the destination node
and comes back to the source node. In second step, once all the ants complete their tour, then global
optimization of the pheromone trail takes place.
N
ij =(1- ) + ij
(k)
k 1  (8)
Where, (0,1] is the evaporation rate and ij ( k ) is the amount of pheromone deposited on the
edge (i,j) selected by the best ant k. The aim of pheromone updating is to increase the pheromone value
associated with optimal path. The pheromone deposited on arc (i, j) by the best ant k is ij ( k ) .
Where,

( k )
=
Q
(9)
Lk
ij
Here Q is a constant and Lk is the length of the path traversed by the best ant k. This equation is also
implemented as :


f
best (10)( k ) 
if (i, j)  global best tour

ij



f
worst
 0
otherwis
e
IV. Conclusion
Ant colony optimization is to be applied for robot–motion control such as navigation and obstacle
avoidance in an efficient manner. From this, money can be saved and reliability can be increased by allowing
them to adapt themselves according to the environment without further programming. Ant colony optimization
(ACO) takes inspiration from the foraging behavior of ant species. These ants deposit pheromone on the ground
in order to mark some favorable path.
References
[1]. Yao-hong Qu, Quan Pan, Jian-guo Yan, ―Flight Path Planning of UAV Based on Heuristically Search and Genetic Algorithms‖,
Annual Conference of IEEE on Industrial Electronics Society, (IECON),pp:5,2005.
[2]. Chih-Lyang Hwang, Member, IEEE, and Li-Jui Chang, ―Internet-Based Smart-Space Navigation of a Car-Like Wheeled Robot
Using Fuzzy-Neural Adaptive Control‖, IEEE Transactions on Fuzzy Systems, pp: 1271 – 1284,2008
[3]. Abdullah Zawawi MOHAMED, Sang Heon LEE, Mahfuz AZIZ, Hung Yao HSU, Wahid Md FERDOUS, ―A Proposal on
Development of Intelligent PSO Based Path Planning and Image Based Obstacle Avoidance for Real Multi Agents Robotics System
Application‖, International Conference on Electronic Computer Technology (ICECT), pp: 128 – 132, 2010.

Weitere ähnliche Inhalte

Was ist angesagt?

A Genetic Algorithm on Optimization Test Functions
A Genetic Algorithm on Optimization Test FunctionsA Genetic Algorithm on Optimization Test Functions
A Genetic Algorithm on Optimization Test FunctionsIJMERJOURNAL
 
Software Testing Using Genetic Algorithms
Software Testing Using Genetic AlgorithmsSoftware Testing Using Genetic Algorithms
Software Testing Using Genetic AlgorithmsIJCSES Journal
 
Performance Analysis of Genetic Algorithm as a Stochastic Optimization Tool i...
Performance Analysis of Genetic Algorithm as a Stochastic Optimization Tool i...Performance Analysis of Genetic Algorithm as a Stochastic Optimization Tool i...
Performance Analysis of Genetic Algorithm as a Stochastic Optimization Tool i...paperpublications3
 
Genetic Approach to Parallel Scheduling
Genetic Approach to Parallel SchedulingGenetic Approach to Parallel Scheduling
Genetic Approach to Parallel SchedulingIOSR Journals
 
LearningKit.ppt
LearningKit.pptLearningKit.ppt
LearningKit.pptbutest
 
Optimal rule set generation using pso algorithm
Optimal rule set generation using pso algorithmOptimal rule set generation using pso algorithm
Optimal rule set generation using pso algorithmcsandit
 
The potential role of ai in the minimisation and mitigation of project delay
The potential role of ai in the minimisation and mitigation of project delayThe potential role of ai in the minimisation and mitigation of project delay
The potential role of ai in the minimisation and mitigation of project delayPieter Rautenbach
 
Collocation Extraction Performance Ratings Using Fuzzy logic
Collocation Extraction Performance Ratings Using Fuzzy logicCollocation Extraction Performance Ratings Using Fuzzy logic
Collocation Extraction Performance Ratings Using Fuzzy logicWaqas Tariq
 
Performance Analysis of Metaheuristics and Hybrid Metaheuristics for the Trav...
Performance Analysis of Metaheuristics and Hybrid Metaheuristics for the Trav...Performance Analysis of Metaheuristics and Hybrid Metaheuristics for the Trav...
Performance Analysis of Metaheuristics and Hybrid Metaheuristics for the Trav...IJCSIS Research Publications
 
Prediction of Euro 50 Using Back Propagation Neural Network (BPNN) and Geneti...
Prediction of Euro 50 Using Back Propagation Neural Network (BPNN) and Geneti...Prediction of Euro 50 Using Back Propagation Neural Network (BPNN) and Geneti...
Prediction of Euro 50 Using Back Propagation Neural Network (BPNN) and Geneti...AI Publications
 
Dowload Paper.doc.doc
Dowload Paper.doc.docDowload Paper.doc.doc
Dowload Paper.doc.docbutest
 
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
 
EFFICIENT FEATURE SUBSET SELECTION MODEL FOR HIGH DIMENSIONAL DATA
EFFICIENT FEATURE SUBSET SELECTION MODEL FOR HIGH DIMENSIONAL DATAEFFICIENT FEATURE SUBSET SELECTION MODEL FOR HIGH DIMENSIONAL DATA
EFFICIENT FEATURE SUBSET SELECTION MODEL FOR HIGH DIMENSIONAL DATAIJCI JOURNAL
 
Nature-Inspired Metaheuristic Algorithms
Nature-Inspired Metaheuristic AlgorithmsNature-Inspired Metaheuristic Algorithms
Nature-Inspired Metaheuristic AlgorithmsXin-She Yang
 
A Review of Constraint Programming
A Review of Constraint ProgrammingA Review of Constraint Programming
A Review of Constraint ProgrammingEditor IJCATR
 

Was ist angesagt? (18)

A Genetic Algorithm on Optimization Test Functions
A Genetic Algorithm on Optimization Test FunctionsA Genetic Algorithm on Optimization Test Functions
A Genetic Algorithm on Optimization Test Functions
 
Metaheuristics
MetaheuristicsMetaheuristics
Metaheuristics
 
Software Testing Using Genetic Algorithms
Software Testing Using Genetic AlgorithmsSoftware Testing Using Genetic Algorithms
Software Testing Using Genetic Algorithms
 
Performance Analysis of Genetic Algorithm as a Stochastic Optimization Tool i...
Performance Analysis of Genetic Algorithm as a Stochastic Optimization Tool i...Performance Analysis of Genetic Algorithm as a Stochastic Optimization Tool i...
Performance Analysis of Genetic Algorithm as a Stochastic Optimization Tool i...
 
call for papers, research paper publishing, where to publish research paper, ...
call for papers, research paper publishing, where to publish research paper, ...call for papers, research paper publishing, where to publish research paper, ...
call for papers, research paper publishing, where to publish research paper, ...
 
Genetic Approach to Parallel Scheduling
Genetic Approach to Parallel SchedulingGenetic Approach to Parallel Scheduling
Genetic Approach to Parallel Scheduling
 
LearningKit.ppt
LearningKit.pptLearningKit.ppt
LearningKit.ppt
 
Optimal rule set generation using pso algorithm
Optimal rule set generation using pso algorithmOptimal rule set generation using pso algorithm
Optimal rule set generation using pso algorithm
 
The potential role of ai in the minimisation and mitigation of project delay
The potential role of ai in the minimisation and mitigation of project delayThe potential role of ai in the minimisation and mitigation of project delay
The potential role of ai in the minimisation and mitigation of project delay
 
Collocation Extraction Performance Ratings Using Fuzzy logic
Collocation Extraction Performance Ratings Using Fuzzy logicCollocation Extraction Performance Ratings Using Fuzzy logic
Collocation Extraction Performance Ratings Using Fuzzy logic
 
Performance Analysis of Metaheuristics and Hybrid Metaheuristics for the Trav...
Performance Analysis of Metaheuristics and Hybrid Metaheuristics for the Trav...Performance Analysis of Metaheuristics and Hybrid Metaheuristics for the Trav...
Performance Analysis of Metaheuristics and Hybrid Metaheuristics for the Trav...
 
Prediction of Euro 50 Using Back Propagation Neural Network (BPNN) and Geneti...
Prediction of Euro 50 Using Back Propagation Neural Network (BPNN) and Geneti...Prediction of Euro 50 Using Back Propagation Neural Network (BPNN) and Geneti...
Prediction of Euro 50 Using Back Propagation Neural Network (BPNN) and Geneti...
 
Dowload Paper.doc.doc
Dowload Paper.doc.docDowload Paper.doc.doc
Dowload Paper.doc.doc
 
50120140504022
5012014050402250120140504022
50120140504022
 
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
 
EFFICIENT FEATURE SUBSET SELECTION MODEL FOR HIGH DIMENSIONAL DATA
EFFICIENT FEATURE SUBSET SELECTION MODEL FOR HIGH DIMENSIONAL DATAEFFICIENT FEATURE SUBSET SELECTION MODEL FOR HIGH DIMENSIONAL DATA
EFFICIENT FEATURE SUBSET SELECTION MODEL FOR HIGH DIMENSIONAL DATA
 
Nature-Inspired Metaheuristic Algorithms
Nature-Inspired Metaheuristic AlgorithmsNature-Inspired Metaheuristic Algorithms
Nature-Inspired Metaheuristic Algorithms
 
A Review of Constraint Programming
A Review of Constraint ProgrammingA Review of Constraint Programming
A Review of Constraint Programming
 

Andere mochten auch (20)

F012515059
F012515059F012515059
F012515059
 
C017241316
C017241316C017241316
C017241316
 
N012267983
N012267983N012267983
N012267983
 
E010132736
E010132736E010132736
E010132736
 
T01231121125
T01231121125T01231121125
T01231121125
 
B012230917
B012230917B012230917
B012230917
 
L017257987
L017257987L017257987
L017257987
 
D010212029
D010212029D010212029
D010212029
 
H010335459
H010335459H010335459
H010335459
 
J012256367
J012256367J012256367
J012256367
 
N1303047887
N1303047887N1303047887
N1303047887
 
H010344552
H010344552H010344552
H010344552
 
E010132529
E010132529E010132529
E010132529
 
C017221821
C017221821C017221821
C017221821
 
E010222124
E010222124E010222124
E010222124
 
H1304025762
H1304025762H1304025762
H1304025762
 
F0562732
F0562732F0562732
F0562732
 
G010334554
G010334554G010334554
G010334554
 
L012438186
L012438186L012438186
L012438186
 
B017150823
B017150823B017150823
B017150823
 

Ähnlich wie T01732115119

UNIT-5 Optimization (Part-1).ppt
UNIT-5 Optimization (Part-1).pptUNIT-5 Optimization (Part-1).ppt
UNIT-5 Optimization (Part-1).pptTvVignesh3
 
Nature Inspired Models And The Semantic Web
Nature Inspired Models And The Semantic WebNature Inspired Models And The Semantic Web
Nature Inspired Models And The Semantic WebStefan Ceriu
 
Predictive job scheduling in a connection limited system using parallel genet...
Predictive job scheduling in a connection limited system using parallel genet...Predictive job scheduling in a connection limited system using parallel genet...
Predictive job scheduling in a connection limited system using parallel genet...Mumbai Academisc
 
COMPARISON BETWEEN THE GENETIC ALGORITHMS OPTIMIZATION AND PARTICLE SWARM OPT...
COMPARISON BETWEEN THE GENETIC ALGORITHMS OPTIMIZATION AND PARTICLE SWARM OPT...COMPARISON BETWEEN THE GENETIC ALGORITHMS OPTIMIZATION AND PARTICLE SWARM OPT...
COMPARISON BETWEEN THE GENETIC ALGORITHMS OPTIMIZATION AND PARTICLE SWARM OPT...IAEME Publication
 
Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...
Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...
Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...Xin-She Yang
 
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
 
Optimised random mutations for
Optimised random mutations forOptimised random mutations for
Optimised random mutations forijaia
 
Are Evolutionary Algorithms Required to Solve Sudoku Problems
Are Evolutionary Algorithms Required to Solve Sudoku ProblemsAre Evolutionary Algorithms Required to Solve Sudoku Problems
Are Evolutionary Algorithms Required to Solve Sudoku Problemscsandit
 
Review of Metaheuristics and Generalized Evolutionary Walk Algorithm
Review of Metaheuristics and Generalized Evolutionary Walk AlgorithmReview of Metaheuristics and Generalized Evolutionary Walk Algorithm
Review of Metaheuristics and Generalized Evolutionary Walk AlgorithmXin-She Yang
 
Optimizing Mobile Robot Path Planning and Navigation by Use of Differential E...
Optimizing Mobile Robot Path Planning and Navigation by Use of Differential E...Optimizing Mobile Robot Path Planning and Navigation by Use of Differential E...
Optimizing Mobile Robot Path Planning and Navigation by Use of Differential E...IOSR Journals
 
Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...
Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...
Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...Mumbai Academisc
 
Query Plan Generation using Particle Swarm Optimization
Query Plan Generation using Particle Swarm OptimizationQuery Plan Generation using Particle Swarm Optimization
Query Plan Generation using Particle Swarm OptimizationAkshay Jain
 
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
 
Sample Paper (1).pdf
Sample Paper (1).pdfSample Paper (1).pdf
Sample Paper (1).pdfssusereb55c5
 
A Non-Revisiting Genetic Algorithm for Optimizing Numeric Multi-Dimensional F...
A Non-Revisiting Genetic Algorithm for Optimizing Numeric Multi-Dimensional F...A Non-Revisiting Genetic Algorithm for Optimizing Numeric Multi-Dimensional F...
A Non-Revisiting Genetic Algorithm for Optimizing Numeric Multi-Dimensional F...ijcsa
 
Genetic algorithm fitness function
Genetic algorithm fitness functionGenetic algorithm fitness function
Genetic algorithm fitness functionProf Ansari
 

Ähnlich wie T01732115119 (20)

UNIT-5 Optimization (Part-1).ppt
UNIT-5 Optimization (Part-1).pptUNIT-5 Optimization (Part-1).ppt
UNIT-5 Optimization (Part-1).ppt
 
Nature Inspired Models And The Semantic Web
Nature Inspired Models And The Semantic WebNature Inspired Models And The Semantic Web
Nature Inspired Models And The Semantic Web
 
Predictive job scheduling in a connection limited system using parallel genet...
Predictive job scheduling in a connection limited system using parallel genet...Predictive job scheduling in a connection limited system using parallel genet...
Predictive job scheduling in a connection limited system using parallel genet...
 
COMPARISON BETWEEN THE GENETIC ALGORITHMS OPTIMIZATION AND PARTICLE SWARM OPT...
COMPARISON BETWEEN THE GENETIC ALGORITHMS OPTIMIZATION AND PARTICLE SWARM OPT...COMPARISON BETWEEN THE GENETIC ALGORITHMS OPTIMIZATION AND PARTICLE SWARM OPT...
COMPARISON BETWEEN THE GENETIC ALGORITHMS OPTIMIZATION AND PARTICLE SWARM OPT...
 
M017127578
M017127578M017127578
M017127578
 
Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...
Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...
Applications and Analysis of Bio-Inspired Eagle Strategy for Engineering Opti...
 
C013141723
C013141723C013141723
C013141723
 
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...
 
Optimised random mutations for
Optimised random mutations forOptimised random mutations for
Optimised random mutations for
 
Are Evolutionary Algorithms Required to Solve Sudoku Problems
Are Evolutionary Algorithms Required to Solve Sudoku ProblemsAre Evolutionary Algorithms Required to Solve Sudoku Problems
Are Evolutionary Algorithms Required to Solve Sudoku Problems
 
Review of Metaheuristics and Generalized Evolutionary Walk Algorithm
Review of Metaheuristics and Generalized Evolutionary Walk AlgorithmReview of Metaheuristics and Generalized Evolutionary Walk Algorithm
Review of Metaheuristics and Generalized Evolutionary Walk Algorithm
 
Optimizing Mobile Robot Path Planning and Navigation by Use of Differential E...
Optimizing Mobile Robot Path Planning and Navigation by Use of Differential E...Optimizing Mobile Robot Path Planning and Navigation by Use of Differential E...
Optimizing Mobile Robot Path Planning and Navigation by Use of Differential E...
 
Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...
Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...
Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...
 
Query Plan Generation using Particle Swarm Optimization
Query Plan Generation using Particle Swarm OptimizationQuery Plan Generation using Particle Swarm Optimization
Query Plan Generation using Particle Swarm Optimization
 
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
 
Sample Paper (1).pdf
Sample Paper (1).pdfSample Paper (1).pdf
Sample Paper (1).pdf
 
I045046066
I045046066I045046066
I045046066
 
A Non-Revisiting Genetic Algorithm for Optimizing Numeric Multi-Dimensional F...
A Non-Revisiting Genetic Algorithm for Optimizing Numeric Multi-Dimensional F...A Non-Revisiting Genetic Algorithm for Optimizing Numeric Multi-Dimensional F...
A Non-Revisiting Genetic Algorithm for Optimizing Numeric Multi-Dimensional F...
 
IJCSI-2015-12-2-10138 (1) (2)
IJCSI-2015-12-2-10138 (1) (2)IJCSI-2015-12-2-10138 (1) (2)
IJCSI-2015-12-2-10138 (1) (2)
 
Genetic algorithm fitness function
Genetic algorithm fitness functionGenetic algorithm fitness function
Genetic algorithm fitness function
 

Mehr von IOSR Journals (20)

A011140104
A011140104A011140104
A011140104
 
M0111397100
M0111397100M0111397100
M0111397100
 
L011138596
L011138596L011138596
L011138596
 
K011138084
K011138084K011138084
K011138084
 
J011137479
J011137479J011137479
J011137479
 
I011136673
I011136673I011136673
I011136673
 
G011134454
G011134454G011134454
G011134454
 
H011135565
H011135565H011135565
H011135565
 
F011134043
F011134043F011134043
F011134043
 
E011133639
E011133639E011133639
E011133639
 
D011132635
D011132635D011132635
D011132635
 
C011131925
C011131925C011131925
C011131925
 
B011130918
B011130918B011130918
B011130918
 
A011130108
A011130108A011130108
A011130108
 
I011125160
I011125160I011125160
I011125160
 
H011124050
H011124050H011124050
H011124050
 
G011123539
G011123539G011123539
G011123539
 
F011123134
F011123134F011123134
F011123134
 
E011122530
E011122530E011122530
E011122530
 
D011121524
D011121524D011121524
D011121524
 

Kürzlich hochgeladen

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 

Kürzlich hochgeladen (20)

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 

T01732115119

  • 1. IOSR Journal of Computer Engineering (IOSR-JCE) e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 3, Ver. II (May – Jun. 2015), PP 115-119 www.iosrjournals.org DOI: 10.9790/0661-1732115119 www.iosrjournals.org 115 | Page Artificial Intelligence in Robot Path Planning Pranav Reddy Kambam1 , Rahul Brungi2 , Prof. Gopichand G3 1 (Electronics and Instrumentation, VIT University, India) 2 (Computer Science, VIT University, India) 3 (Computer Science, VIT University, India) Abstract: Mobile robot path planning problem is an important combinational content of artificial intelligence and robotics. Its mission is to be independently movement from the starting point to the target point make robots in their work environment while satisfying certain constraints. Constraint conditions are as follows: not a collision with known and unknown obstacles, as far as possible away from the obstacle, sports the shortest path, the shortest time, robot-consuming energy minimization and so on. In essence, the mobile robot path planning problem can be seen as a conditional constraint optimization problem. To overcome this problem, ant colony optimization algorithm is used. Keywords: Particle Swarm Optimization (PSO), Genetic Algorithm(GA), Tabu Search, Simulated Annealing (SA), Reactive Search Optimization (RSO), Proportional–Integral–Derivative(PID). I. Introduction Robot path planning is about finding a collision free motion from one position to another. Efficient algorithms for solving problems of this type have important applications in areas such as: industrial robotics, computer animation, drug design, and automated surveillance [1,2]. By representing synthetic, simulated humans as robots, we can use motion planning algorithms to develop convincing computer generated animation. There are many traditional techniques used in past in robot control such as PID. Problem with PID control is that they perform process efficiently over very limited range of environment. It is very difficult to have highly accurate performance especially at high speed of processes. This is because of PID control i.e. PID is linear and not suitable for non-linear system with varying dynamic parameters and PID requires precise knowledge of dynamic model. This may explain the dominant role of soft computing techniques in robotics. During the last four decades, researchers have proposed many techniques for control and automation. There are various step involved in designing of control system. These are modeling, analysis, simulation, implementation and verification. In conventional/traditional techniques of control, the prime objectives had been precision and uncertainty. However, in soft computing, the precision and certainty can be achieved by techniques of fuzzy logic, neural network, evolutionary algorithm, and hybrid. The main emphasis of the paper is to explore the efficient and accurate procedure based on soft-computing algorithm to provide the online learning mechanism which performs better in dynamic, unstructured environment of robot [3]. Many techniques are used for this. 1.1 Particle Swarm Optimization (PSO) Particle Swarm Optimization (PSO) is a computational method that optimizes a problem by iteratively trying to improve a candidate solution with regard to a given measure of quality. PSO optimizes a problem by having a population of candidate solutions, with dubbed particles, and moving these particles around in the search-space according to simple mathematical formulae over the particle's position and velocity. Each particle's movement is influenced by its local best known position and is also guided toward the best known positions in the search-space, which are updated as better positions are found by other particles. This is expected to move the swarm toward the best solutions. PSO is a meta heuristic as it makes few or no assumptions about the problem being optimized and can search very large spaces of candidate solutions. However, meta heuristics such as PSO do not guarantee an optimal solution is ever found. More specifically, PSO does not use the gradient of the problem being optimized, which means PSO does not require that the optimization problem be differentiable as is required by classic optimization methods such as gradient descent and Quasi-Newton methods. PSO can therefore also be used on optimization problems that are partially irregular, noisy, change over time. 1.2 Genetic Algorithm (GA) A genetic algorithm (GA) is a search heuristic that mimics the process of natural evolution. This heuristic is routinely used to generate useful solutions to optimization and search problems. Genetic algorithms belong to the larger class of evolutionary algorithms (EA), which generate solutions to optimization problems using techniques inspired by natural evolution, such as inheritance, mutation, selection, and crossover. In a genetic algorithm, a population of strings called chromosomes or the genotype of the genome, which encodes candidate solutions called individuals, creatures, or phenotypes to an optimization problem, evolves toward
  • 2. Artificial Intelligence in Robot Path Planning DOI: 10.9790/0661-1732115119 www.iosrjournals.org 116 | Page better solutions. Traditionally, solutions are represented in binary as strings of 0s and 1s, but other encodings are also possible. The evolution usually starts from a population of randomly generated individuals and happens in generations. In each generation, the fitness of every individual in the population is evaluated, multiple individuals are stochastically selected from the current population (based on their fitness), and modified (recombined and possibly randomly mutated) to form a new population. The new population is then used in the next iteration of the algorithm. Commonly, the algorithm terminates when either a maximum number of generations has been produced, or a satisfactory fitness level has been reached for the population. If the algorithm has terminated due to a maximum number of generations, a satisfactory solution may or may not have been reached. 1.3 Tabu Search Tabu search is a local search method used for mathematical optimization. Local searches take a potential solution to a problem and check its immediate neighbors in the hope of finding an improved solution. Local search methods have a tendency to become stuck in suboptimal regions or on plateaus where many solutions are equally fit. Tabu search enhances the performance of these techniques by using memory structures that describe the visited solutions or user-provided sets of rule. If a potential solution has been previously visited within a certain short-term period or if it has violated a rule, it is marked as "taboo" so that the algorithm does not consider that possibility repeatedly. 1.4 Simulated Annealing (SA) Simulated annealing (SA) is a generic probabilistic meta heuristic for the global optimization problem of locating a good approximation to the global optimum of a given function in a large search space. It is often used when the search space is discrete. For certain problems, simulated annealing may be more efficient than exhaustive enumeration— provided that the goal is merely to find an acceptably good solution in a fixed amount of time, rather than the best possible solution. The name and inspiration come from annealing in metallurgy, a technique involving heating and controlled cooling of a material to increase the size of its crystals and reduce their defects. The heat causes the atoms to become unstuck from their initial positions (a local minimum of the internal energy) and wander randomly through states of higher energy; the slow cooling gives them more chances of finding configurations with lower internal energy than the initial one. By analogy with this physical process, each step of the SA algorithm attempts to replace the current solution by a random solution (chosen according to a candidate distribution, often constructed to sample from solutions near the current solution). The new solution may then be accepted with a probability that depends both on the difference between the corresponding function values and also on a global parameter T (called the temperature), that is gradually decreased during the process. The dependency is such that the choice between the previous and current solution is almost random when T is large, but increasingly selects the better or "downhill" solution (for a minimization problem) as T goes to zero. The allowance for "uphill" moves potentially saves the method from becoming stuck at local optima—which are the bane of greedier methods. 1.5 Reactive Search Optimization (RSO) Reactive Search Optimization (RSO) defines local-search heuristics based on machine learning, a family of optimization algorithms based on the local search techniques. It refers to a class of heuristics that automatically adjust their working parameters during the optimization phase. Reactive Search Optimization (RSO), like all local search techniques, is applied to the problem of finding the optimal configuration of a system; such configuration is usually composed of continuously or discretely varying parameters, while the optimality criterion is a numerical value associated to each configuration. In most cases, an optimization problem can be reduced to finding the (global) minimum of a function whose arguments are the configuration parameters, seen as free variables in the function's domain space. Reactive Search Optimization advocates the integration of sub-symbolic machine learning techniques into search heuristics for solving complex optimization problems. The word reactive hints at a ready response to events during the search through an internal feedback loop for online self-tuning and dynamic adaptation. In Reactive Search the past history of the search and the knowledge accumulated while moving in the configuration space is used for self-adaptation in an autonomic manner: the algorithm maintains the internal flexibility needed to address different situations during the search, but the adaptation is automated, and executed while the algorithm runs on a single instance and reflects on its past experience. 1.6 Ant colony algorithms In the natural world, ants (initially) wander randomly, and upon finding food return to their colony while laying down pheromone trails. If other ants find such a path, they are likely not to keep traveling at random, but to instead follow the trail, returning and reinforcing it if they eventually find food.
  • 3. Artificial Intelligence in Robot Path Planning DOI: 10.9790/0661-1732115119 www.iosrjournals.org 117 | Page Over time, however, the pheromone trail starts to evaporate, thus reducing its attractive strength. The more time it takes for an ant to travel down the path and back again, the more time the pheromones have to evaporate. A short path, by comparison, gets marched over more frequently, and thus the pheromone density becomes higher on shorter paths than longer ones. Pheromone evaporation also has the advantage of avoiding the convergence to a locally optimal solution. If there were no evaporation at all, the paths chosen by the first ants would tend to be excessively attractive to the following ones. In that case, the exploration of the solution space would be constrained. II. Overcoming The Problem Of ACO Various approaches to overcome the problem of ACO i.e. mitigating stagnation which include:- evaporation, aging and pheromone smoothing . The Approaches to alleviate stagnation is pheromone control. Pheromone control adopts several approaches to reduce the influence from past experience and encourage the exploration of new paths that are non-optimal. 2.1 Evaporation To reduce the effect of past experience, an approach called evaporation is used in conjunction in optimal path from being excessively high and preventing ants from exploring the other paths. In each iteration, the pheromone value ij in all edges are decremented by a factor p such that ij ←ij (1-p) 2.2 Aging A past experience can also be reduced by controlling the amount of pheromone deposited for each ant according to its age. This approach is known as aging. In aging, an ant deposits lesser and lesser amount of pheromone as it moves from one obstacle to other obstacle. Aging is based on the rationale that ―old ants are less successful in locating the optimal paths since they take longer time to reach their destination. Both aging and evaporation encourage discoveries of new paths that are previously non-optimal 2.3 Limiting and smoothing pheromone Limiting the amount of pheromone in every path, by placing an upper bound on the amount of pheromone for every edge(i,j), the preference of an ant for optimal path is reduced. This approach prevents the situation of generating a dominant path. A variation of such an approach is called pheromone smoothing. III. Proposed Solution For Robotic Path Planning Fig1: Layout of Robot Path Planning 3.1 Source Robot starts walking from source point (Xs,Ys) and it is fixed 3.2 Robot Moves one step From source point(Xs,Ys), Robot is moving towards the destination point by taking one step ahead and changes the value of (Xs,Ys) to (Xsnew,Ysnew) by using the below equations :
  • 4. Artificial Intelligence in Robot Path Planning DOI: 10.9790/0661-1732115119 www.iosrjournals.org 118 | Page Xsnew = Xprev + step*cos(e) (1) Ysnew = Yprev + step*sin(e) (2) Where, Xprev,Yprev denotes where the robot is currently situated in which we add the step size multiplied by cos(ө)and sin(ө) respectively which will gives the robot’s next position. Where ө is dynamic angle and it can be calculated by : Ө = Tan-1 (Xprev/Yprev) (3) 3.3 Flag Setting Robot sees the value of the flag, if it's value is zero, it indicates that there is no obstacle and robot can take a step ahead and can reach to the destination point. 3.4 Encounter with obstacle Whenever the robot encounter with obstacle, it has to stop moving means there is no increase in the step size and robot has to take three steps back. In our proposed work, twenty obstacle are generated randomly which is of rectangular shape. Number of obstacles is fixed which is a constraint in our work. Obstacle (oopsV) can be generated by the following pseudo code : oopsV=20; x=100*rand(1,oopsV); y=100*rand(1,oopsV); l=10*rand(1,oopsV); w=10*rand(1,oopsV); for m=1:oopsV plot([x(1,m) x(1,m)+w(1,m)], [y(1,m) y(1,m)]); plot([x(1,m) x(1,m)], [y(1,m) y(1,m)+l(1,m)]); plot[x(1,m) x(1,m)+w(1,m)],[y(1,m)+l(1,m) y(1,m)+l(1,m)]); plot([x(1,m)+w(1,m)x(1,m)+w(1,m)],[y(1,m) y(1,m)+l(1,m)]); end In this pseudo code initialize the number of obstacles oopsV=20 and obstacles are generated in the moving space of 100*100 and whose length and width varies between 0 1o 10 dynamically. 3.5Take three step back Whenever the robot encounter with obstacle, robot stop moving and take three step back by using the following equation : Xsnew = Xprev-3*step*cos(e) (4) Ysnew = Yprev-3*step*sin(e)  (5) Ө =Tan-1 (Xprev/Yprev)  (6) 3.6Destination Finally robot has to reach at the point (XT,YT), which is fixed. Robot has to bypass the obstacle and by following optimal. Path has to reach to target point. 3.7Apply the ACO algorithm to bypass the obstacle ACO is a met heuristic algorithm inspired by the real ant for the forage for food. ACO is applied to the problems which can be described by the graphs so that feasible solution can be expressed in terms of paths on the graph. It was first applied to TSP. Among the feasible paths, ACO is used to find out the optimal one i.e. locally or globally optimal. This algorithm is implemented in two steps. In first step, the edge is selected on the basis of probability formula. Assume that ant k is located at node i, uses the pheromone ij deposited on the edge (i,j) to compute the probability of choosing next node.  ij if j N k    ij  i  (7)Pij =   j N ( k ) i
  • 5. Artificial Intelligence in Robot Path Planning DOI: 10.9790/0661-1732115119 www.iosrjournals.org 119 | Page 0 otherwise  Where α denotes the degree of importance of pheromone trail and Ni (k) indicates the set of neighbors of ant k when located at node i except the predecessor node i.e. the last node visited by ant k. This will prevent the ant k from returning to the same node. An ant travels from node to node until it reaches the destination node and comes back to the source node. In second step, once all the ants complete their tour, then global optimization of the pheromone trail takes place. N ij =(1- ) + ij (k) k 1  (8) Where, (0,1] is the evaporation rate and ij ( k ) is the amount of pheromone deposited on the edge (i,j) selected by the best ant k. The aim of pheromone updating is to increase the pheromone value associated with optimal path. The pheromone deposited on arc (i, j) by the best ant k is ij ( k ) . Where,  ( k ) = Q (9) Lk ij Here Q is a constant and Lk is the length of the path traversed by the best ant k. This equation is also implemented as :   f best (10)( k )  if (i, j)  global best tour  ij    f worst  0 otherwis e IV. Conclusion Ant colony optimization is to be applied for robot–motion control such as navigation and obstacle avoidance in an efficient manner. From this, money can be saved and reliability can be increased by allowing them to adapt themselves according to the environment without further programming. Ant colony optimization (ACO) takes inspiration from the foraging behavior of ant species. These ants deposit pheromone on the ground in order to mark some favorable path. References [1]. Yao-hong Qu, Quan Pan, Jian-guo Yan, ―Flight Path Planning of UAV Based on Heuristically Search and Genetic Algorithms‖, Annual Conference of IEEE on Industrial Electronics Society, (IECON),pp:5,2005. [2]. Chih-Lyang Hwang, Member, IEEE, and Li-Jui Chang, ―Internet-Based Smart-Space Navigation of a Car-Like Wheeled Robot Using Fuzzy-Neural Adaptive Control‖, IEEE Transactions on Fuzzy Systems, pp: 1271 – 1284,2008 [3]. Abdullah Zawawi MOHAMED, Sang Heon LEE, Mahfuz AZIZ, Hung Yao HSU, Wahid Md FERDOUS, ―A Proposal on Development of Intelligent PSO Based Path Planning and Image Based Obstacle Avoidance for Real Multi Agents Robotics System Application‖, International Conference on Electronic Computer Technology (ICECT), pp: 128 – 132, 2010.