SlideShare a Scribd company logo
1 of 9
Download to read offline
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 –
6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME
43
EFFECT OF INERTIA WEIGHT FUNCTIONS OF PSO IN
OPTIMIZATION OF WATER DISTRIBUTION NETWORK
Minakshi Shrivastava1
, Dr. Vishnu Prasad2
, Dr. Ruchi Khare3
1,2,3
Maulana Azad National Institute of Technology, Bhopal, 462051, India
ABSTRACT
Water distribution in adequate quantity at required pressure is the prime requirement of design
of network. It is found from the literature, that stochastic methods gives better results in optimizing
the water distribution network (WDN) than deterministic methods. The optimize solution obtained
from any stochastic method depends on the parameter values associated with that method. In the
present work a program is developed in MATLAB environment to optimize the water distribution
system using Particle Swarm Optimization (PSO) technique. The analysis is carried out using finite
element method. The validity of developed program is demonstrated by comparing results with a
benchmark water distribution network. Different values of inertia weight function in Partial swarm
optimization has been used to study the effect of this variant on the cost of water distribution network.
Key words: Optimization; Water Distribution Network; Particle Swarm Optimization; Inertia Weight
Function
1. INTRODUCTION
A safe supply of potable water is the basic necessity of mankind in the industrialized society,
therefore water supply systems are the most important public utility. A huge amount of money is
spent every year around the world for providing or upgrading drinking water facilities. The major
share of capital investment in a water supply system goes to the water conveyance and water
distribution network. [Wu et al,2001]. Therefore it is very important to optimized the network. The
methods used for optimization of water distribution network may be deterministic or stochastic
[Keedwell et al,2004l].Optimization of the network aims to find out the best diameter size from the
available commercial diameter sizes to get the minimum cost of the network within head and velocity
constraints. Conventional methods gives global optimal solution but they are tedious and time
consuming while the stochastic method are more efficient methods[[Afasher et al, 2003]].
INTERNATIONAL JOURNAL OF ADVANCED RESEARCH IN ENGINEERING
AND TECHNOLOGY (IJARET)
ISSN 0976 - 6480 (Print)
ISSN 0976 - 6499 (Online)
Volume 6, Issue 5, May (2015), pp. 43-51
© IAEME: www.iaeme.com/ IJARET.asp
Journal Impact Factor (2015): 8.5041 (Calculated by GISI)
www.jifactor.com
IJARET
© I A E M E
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 –
6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME
44
It can be seen from the previous work that stochastic methods work successfully for water
distribution network. Various optimization techniques e.g. Genetic Algorithm, Ant Colony
optimization, artificial neural network etc have been successfully used to optimize the water
distribution network but they have their own limitations of rate of convergence, difference between
the shortest and the longest optimization response time etc [Izquierdoa, 2014]. Optimization of pipe
network by using GA also has limitations like poor convergence, unrealistic global optimum solution
etc. To overcome theses limitation, James Kennedy and Russell Eberhart [1995] developed the
concept of Particle Swarm Optimization (PSO) to overcome the limitations of GA.
Particle swarm optimization is a robust stochastic technique for optimization [Mahor et al,
2009]. In this method, the co-ordinates of each particle represent the possible solution and after each
iteration, the particle moves towards optimal solution. Particle swarm optimization is comparatively
topical, very simple and has very fast rate of convergence for various optimization problems.
Literature reveals that PSO is successfully worked for optimization of water distribution network. It is
seen that optimization of pipe network using PSO has been done taking a particular inertia weight
function and effect of other weight function on the optimized results are not studied.
In present work coding is done for optimizing water distribution network using PSO. The
network analysis is carried out by finite element method using Darcy Weishback head loss equation
the results are validated for two loop water distribution network. The results obtained are having good
agreement with the results obtained for the same network by using other stochastic methods of
optimization.
The inertia weighted function ‘w’ is one of the important parameter in particle swarm
optimization [Bansal et al, 2009, 2011]. In the present paper the cost optimization using eight
different variants of inertia weight function are compared and presented in graphical and tabulated
form.
2. PROBLEM FORMULATION
Objective function: It is to minimize the cost of water distribution network by selecting
commercially available pipe diameter and the objective function is given as;
1
( , )
m
i
MinZ C L D
=
= ∑
Where Z = total cost ,m = no of pipe in the network C= cost of the pipe having length L and
diameter D. The constraints to be satisfied for minimizing the cost of network are;
Constraint 1: Diameter constraint
The diameter of the pipe should be selected from the available commercial pipe diameters.
Commercially available pipe size and cost of unit length is given in table 1.
Constraint 2: Head constraint
The head available at each junction must be greater than the minimum required head to supply
sufficient amount of water at the junction.i.e.
minkH H≥
where k=1,2,3………………..n
Apart from these two constraints, the network is analysed to meet the following requirement.
1. The continuity equation i.e the amount of water entering to the junction must be equal to the
amount of water leaving from the junction.
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 –
6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME
45
1
j n
j
Q
=
=
∑ = 0 ……… (a)
Where n=no of pipe meeting at any junction
2. Net head loss within the loop must be zero.
1
p nop
LP
p
H
=
=
∑ = 0 ……….. (b)
Where nop= no of pipes in any loop
Particle Swarm Optimization
Partical swarm optimization is bio inspired met heuristic technique for optimization. James
Kennedy and Russell Eberhart developed the concept of PSO in 1995 [Shrivastava et al, 2014]. In this
method the co-ordinates of each particle represents the possible solution. After each iteration the
objective function is evaluated to help particle to move towards optimal solution
In this method the initial population is generated randomly and based on the objective function
it is updated for the best optimal solution. If the initial position of the particle is xi(t),then after the
next iteration it will move to the next position of xi(t+1). The particle moves toward the best optimal
solution using velocity update from vi(t) to vi(t+1) as in equation 1 and equation 2.[Izquierdoa et al,
2014].
vi(t+1) = w*vi(t) +C1*R1*(pbest- xi(t))+C2*R2*(gbest- xi(t)) -------I
xi(t+1) = xi(t)+ vi(t+1) -------II
Where C1 and C2 are the positive constants named as cognitive learning rate and social
learning rate respectively, they are used to accelerate the particle towards the optimal solution. R1 and
R2 are the uniform random number ranging from 0 to 1. 'pbest' is the best solution obtained by the
individual particle and gbest is the best value of objective function from the entire swarm. ‘w’ is the
inertia weight function.
3. METHODOLOGY
The MAT LAB environment is used for developing program for optimizing water distribution.
The program is developed in two parts. The first part calculates the head and flow in the network for
the given set of diameters by using Finite Element methods whereas the optimization is done in the
second part. The flow chart for the complete calculation is shown in fig. 1.
Table 1: Commercially available HDPE pipe dia and their cost [Babu Jinesh et al, 2009]
S.No Commercially available dia size(mm) Cost per unit length (units)
1 25.40 2
2 50.80 5
3 76.20 8
4 101.60 11
5 152.40 16
6 203.20 23
7 254.00 32
8 304.80 50
9 355.60 60
10 406.40 90
11 457.20 130
12 508.00 170
13 558.80 300
14 609.60 550
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 –
6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME
46
Iteration1:k
Fig.1 Flowchart of optimization using PSO
The two loop network used for validation is shown fig.2. It has 8 pipe and 7 nodes (including
reservoir). Head at node 1 is to be maintained as 210 m [Babu Jinesh et al, 2009]. Commercially
available diameters, used for the network are given in table 1. Elevation and demand at each junction
and pipe length for each pipe is shown in fig 2. Minimum head at each junction is required to be
maintained as 30 m.
As seen in fig.2 that all pipes of network are of constant length of 1000m. The finite element
method is used for calculating head and velocity in pipe network, using Darcy Weishbach equation:
for head loss.
hf= f*L*V2
/ (2*D*g) -------(III)
yes
yes
Initialize:Partical and their flight velocity
No
No
Analysis : analyze the network using FEM
Evaluate: fitness value
Initialize:Pbest and gbest
Iteration=1:k
Partical 1:s
Compute flight velocity
Update partical position
Analyze the network
Evaluate fitness value
Update pbest position
Update gbest position
Terminate and print the result
Is the last partical?
Termination criteria meet?
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 –
6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME
47
Fig.2 Two loop water distribution network [Babu Jinesh et al, 2009]
Optimization of the network for minimum cost is done for eight different variants of inertia
weight function of PSO [Bansal et al, 2011].Following variants of inertia weight are used in present
work:
Type Name of Inertia Weight Function Formulae of Inertia Weight
1 Constant Inertia Weight ω1=.7
2 Random inertia weight 1
(1)
.5
2
rand
w = +
3 Linear decreasing inertia weight
( max min
max1
w - w )
w = - [ ] iterationw
maxiteration
×
4 Logrithmic inertia weight 1
1
.5 (1 )
1 log( )
w
iteration
= × +
+
5.
Natural exponent inertia weight strategy
e-1 PSO
max
10
1 m in max min
( ).e
iter
iteration
w w w w
  
  
  −
  
  
  
= + −
6
Natural exponent inertia weight strategy
e2-pso
2
max
4
1 min max min
( ).e
iter
iteration
w w w w
    
  −  
  
   
= + −
7.
Simulated annealing inertia weight 1 min max min
( ) ^ ( 1)w w w w iterλ= + − × −
Here ƛ = 0.95
8. Time varying inertia weight 1 max min min
(max )
[( ) ]
max
iteration iter
w w w w
iteration
−
= − × +
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 –
6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME
48
4. RESULTS AND DISCUSSION
The optimization of network shown in fig 1 is done with the minimum pressure head
constraint of 30 m at all juctions of network. PSO is used for optimization and coding is done in
matlab environment. The result obtained after 100 iterations, for 15 trials of different swarm sizes are
shown in Fig. 3:
Fig.3 Variation of cost with swarm size
Table 2: Comparison of diameter and Head with the previous results of the same net work
Pipe no
Dia(present
work)
(m)
Dia(Jinesh et al
2014)
(m)
Node
no
Head(present
work)(m)
Head(Jinesh et
al 2014)(m)
1 0.457 0.457 1 210.00 -
2 0.254 0.254 2 53.1931 53.25
3 0.4064 0.4064 3 30.2319 30.46
4 0.1016 0.1016 4 43.3534 43.45
5 0.4064 0.4064 5 33.4958 33.81
6 0.2540 0.2540 6 30.2767 30.44
7 0.254 0.254 7 30.4233 30.55
8 0.254 0.254
410000
420000
430000
440000
450000
460000
470000
480000
490000
500000
0 10 20 30 40 50 60 70 80 90 100
Cost(units)
Swarm size
Variation of cost with swarm size
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976
6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp.
Fig.4.variation of cost with no of runs for various swarm size
It is observed from the fig.3 that cost of network is varying with swarm size and the least cost
of network is obtained for swarm size of 50.The cost obtained with number of runs for each swarm
size is represented graphically in fig.4, which shows that the least cost is at swarm size 50 .The
pressure head at junction are closely matching with the results obtained by jinesh et
Further the network is optimized for 50 swarm size and 15 runs by using eight variant
weighted function. It is observed that the
(Fig.5). It is least i,e, Rs 4,19,000 for 4th type of
as it is highest in case of random inertia weight (2nd type) varient.
convergence is high in case of logarithmic
work is also observed as 419000 units.
Fig 5.Variation
441000
462000
390000
400000
410000
420000
430000
440000
450000
460000
470000
1 2
cost(units)
Variation of cost for different variants
0
200000
400000
600000
800000
1000000
1200000
1400000
1600000
0 5
Cost(units)
Variation of cost with no. of runs
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976
6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME
49
variation of cost with no of runs for various swarm size
It is observed from the fig.3 that cost of network is varying with swarm size and the least cost
swarm size of 50.The cost obtained with number of runs for each swarm
size is represented graphically in fig.4, which shows that the least cost is at swarm size 50 .The
pressure head at junction are closely matching with the results obtained by jinesh et
Further the network is optimized for 50 swarm size and 15 runs by using eight variant
nction. It is observed that the network cost considerably varies with type of variant
(Fig.5). It is least i,e, Rs 4,19,000 for 4th type of variant which is logarithmic
in case of random inertia weight (2nd type) varient. It is because
logarithmic inertia weight (Bansal et al). Minimum cost in previous
ed as 419000 units.
Variation of cost for different types of variants
447000
419000
462000
441000
459000
3 4 5 6 7
Type of variant
Variation of cost for different variants
10 15 20
No . of runs
Variation of cost with no. of runs
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 –
© IAEME
variation of cost with no of runs for various swarm size
It is observed from the fig.3 that cost of network is varying with swarm size and the least cost
swarm size of 50.The cost obtained with number of runs for each swarm
size is represented graphically in fig.4, which shows that the least cost is at swarm size 50 .The
pressure head at junction are closely matching with the results obtained by jinesh et al.
Further the network is optimized for 50 swarm size and 15 runs by using eight variants of
network cost considerably varies with type of variant
logarithmic Inertia weight, where
It is because the rate of
Minimum cost in previous
459000
447000
8
Variation of cost for different variants
swarm size 10
swarm size 30
swarm size 50
swarm size 70
swarm size 90
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 –
6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME
50
Table 3:Diameter and flow for different pipe.
No of pipe Diameter(m) Flow(L/sec.)
1 0.457 0.311
2 0.254 0.0934
3 0.4064 0.1899
4 0.1016 0.0092
5 0.4064 0.1474
6 0.2540 0.0557
7 0.254 0.0656
8 0.254 0.0002
The optimum set of diameters (for best result i.e. 4th
variant) for each pipe of two loop network
is given in table 3. The pressure head at each junctions (the pressure head at junction 1 is fixed i.e,
210m) is depicited in table 4. It is seen that the lowest value of pressure heads are at type 4 inertia
weight (Logrithmic Inertia weight). This is because no. of iterations and swarm size is fixed for all
types of inertia weights in this analysis, but the rate of convergence is high for logrithmic inertia
weight. Others may also achieve the low pressure head values at higher number of iterations.
Table 4: Values of pressure head at all junctions for different types of Inertia weights
Node
No.
Pressure
head for
Type 1
variant
Pressure
head for
Type 2
variant
Pressure
head for
Type 3
variant
Pressure
head for
Type 4
variant
Pressure
head for
Type 5
variant
Pressure
head for
Type 6
variant
Pressure
head for
Type 7
variant
Pressure
head for
Type 8
variant
2 53.1931 53.1931 53.1931 53.1931 55.9806 53.1931 53.1931 53.1931
3 39.6279 37.5225 33.9689 30.2319 38.1285 39.6279 38.9799 33.9689
4 43.3403 44.5384 44.8001 43.3534 45.028 43.3403 43.4327 44.8001
5 38.3232 42.0028 41.2598 33.4958 44.972 38.3232 44.2504 41.2598
6 30.2666 30.3286 30.4528 30.2767 30.764 30.2666 30.232 30.4528
7 30.4258 30.5032 30.002 30.4233 30.6955 30.4258 30.0902 30.002
5. CONCLUSION
The present pipe network optimization concludes that the type of weighted integral plays an
important role in network optimization. The logrithmic weighted integral is most suitable for fast
convergence and cost minimization in case of water distribution network. However the suitable
swarm size and number of iterations are also significant in PSO. It can be seen that forth variant gives
best result with minimum cost of 419000 unit.
Notations
Hk - head available at each junction
Hmin - Min head required to be available at the junction
K - total no. of junction in the network
hf - head loss
f - friction factor
L - length of the pipe
V - velocity in the pipe
D - diameter of the pipe
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 –
6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME
51
REFERENCES
1. Wu Z.Y. and Simpson A.R. (2001), Competent genetic evolutionary optimization of water
distribution system, Journal of computing in civil engineering, volume 15(2), pp 89-101.
2. Keedwell Edward and Thiam Khu Soon, (2004)” A hybrid genetic algorithm for the design of
water distribution networks”, Engineering applications of artificial intelligence, volume 18, pp
461-472.
3. Afasher M.H. and Marino M.A. (2005),”A convergent genetic algorithm for pipe network
optimization”, Scientia Iranica,volume 12(4),pp-392-401.
4. Mahor Amita, Prasad Vishnu, Rangnekar Saroj (2009),” Economic dispatch using particle
swarm optimization: A review”, Renewable and sustainable energy reviews, volume 13,pp.
2134-2141.
5. Bansal Jagdish Chand and Deep Kusum,(2009) ”Optimal design of water distribution networks
via partical swarm optimization”, IEEE International advance computing conferece,pp-1314-
1316
6. Bansal J. C,Singh P.K,Saraswat Mukesh,Verma Abhishek,Singh Jodan shimpi and Abraham
Ajith,(2011),” Inertia weight strategies in partical swarm optimization”, Proceedings of Third
World Congress on Nature and Biologically Inspired 978-1-4577-1123-7/11,pp-640-647.
7. Babu Jinesh K.S. and Vijayalakshmi D.P(2013),”Self adaptive PSO-GA hybrid model for
combinatorial water distribution network design”, Journal of pipeline systems engineering and
practice,volume-4(1),pp. 57-67.
8. Izquierdoa J.*, Montalvob I., Pérez-Garcíaa R., Campbella E.(2014),” Mining solution spaces
for decision making in water distribution systems”, Science direct,12th
International conference
on computing and control for the water industry,CCWI2013,volume-70,pp-864-871.
9. Manual on water supply and treatment (1991), Published by central public health and
environmental engineering organization, Ministry of urban development, Third edition.
10. Shrivastava Minakshi,Khare Ruchi and Prasad Vishnu(2014),”Effect of pressure dependent
demand on pipe network analysis:A case study”, International Journal of Engineering Science
and Technology, volume 6(1),pp 7-12.
11. A.Raja Jeya Chandra Bose, Dr.T.R.Neelakantan, Dr.P.Mariappan, “Peak Factor In The Design
of water Distribution- An Analysis” International Journal of Civil Engineering & Technology
(IJCIET), Volume 3, Issue 2, 2012, pp. 123 - 129, ISSN Print: 0976 – 6308, ISSN Online: 0976
– 6316.
12. A.Sri Rama Chandra Murty and M. Surendra Prasad Babu, “Implementation of Particle Swarm
Optimization (PSO) Algorithm on Potato Expert System” International Journal of Civil
Engineering & Technology (IJCIET), Volume 4, Issue 4, 2013, pp. 82 - 90, ISSN Print: 0976 –
6308, ISSN Online: 0976 – 6316.

More Related Content

What's hot

Artificial Intelligence based optimization of weld bead geometry in laser wel...
Artificial Intelligence based optimization of weld bead geometry in laser wel...Artificial Intelligence based optimization of weld bead geometry in laser wel...
Artificial Intelligence based optimization of weld bead geometry in laser wel...IJMER
 
Capacitor Placement Using Bat Algorithm for Maximum Annual Savings in Radial ...
Capacitor Placement Using Bat Algorithm for Maximum Annual Savings in Radial ...Capacitor Placement Using Bat Algorithm for Maximum Annual Savings in Radial ...
Capacitor Placement Using Bat Algorithm for Maximum Annual Savings in Radial ...IJERA Editor
 
Peak- and Average-Power Reduction in Check-Based BIST by using Bit-Swapping ...
Peak- and Average-Power Reduction in Check-Based BIST by  using Bit-Swapping ...Peak- and Average-Power Reduction in Check-Based BIST by  using Bit-Swapping ...
Peak- and Average-Power Reduction in Check-Based BIST by using Bit-Swapping ...IOSR Journals
 
Cross-layer Design of an Asymmetric Loadpower Control Protocol in Ad hoc Netw...
Cross-layer Design of an Asymmetric Loadpower Control Protocol in Ad hoc Netw...Cross-layer Design of an Asymmetric Loadpower Control Protocol in Ad hoc Netw...
Cross-layer Design of an Asymmetric Loadpower Control Protocol in Ad hoc Netw...IDES Editor
 
Optimum Relay Node Selection in Clustered MANET
Optimum Relay Node Selection in Clustered MANETOptimum Relay Node Selection in Clustered MANET
Optimum Relay Node Selection in Clustered MANETIRJET Journal
 
Security constrained optimal load dispatch using hpso technique for thermal s...
Security constrained optimal load dispatch using hpso technique for thermal s...Security constrained optimal load dispatch using hpso technique for thermal s...
Security constrained optimal load dispatch using hpso technique for thermal s...eSAT Publishing House
 
Identification of isomorphism and detection of distinct mechanism of kinemati...
Identification of isomorphism and detection of distinct mechanism of kinemati...Identification of isomorphism and detection of distinct mechanism of kinemati...
Identification of isomorphism and detection of distinct mechanism of kinemati...eSAT Journals
 
Identification of isomorphism and detection of distinct mechanism of kinemati...
Identification of isomorphism and detection of distinct mechanism of kinemati...Identification of isomorphism and detection of distinct mechanism of kinemati...
Identification of isomorphism and detection of distinct mechanism of kinemati...eSAT Publishing House
 
Optimization of Corridor Observation Method to Solve Environmental and Econom...
Optimization of Corridor Observation Method to Solve Environmental and Econom...Optimization of Corridor Observation Method to Solve Environmental and Econom...
Optimization of Corridor Observation Method to Solve Environmental and Econom...ijceronline
 
COMPARISON OF HIERARCHICAL AGGLOMERATIVE ALGORITHMS FOR CLUSTERING MEDICAL DO...
COMPARISON OF HIERARCHICAL AGGLOMERATIVE ALGORITHMS FOR CLUSTERING MEDICAL DO...COMPARISON OF HIERARCHICAL AGGLOMERATIVE ALGORITHMS FOR CLUSTERING MEDICAL DO...
COMPARISON OF HIERARCHICAL AGGLOMERATIVE ALGORITHMS FOR CLUSTERING MEDICAL DO...ijseajournal
 

What's hot (12)

Artificial Intelligence based optimization of weld bead geometry in laser wel...
Artificial Intelligence based optimization of weld bead geometry in laser wel...Artificial Intelligence based optimization of weld bead geometry in laser wel...
Artificial Intelligence based optimization of weld bead geometry in laser wel...
 
Capacitor Placement Using Bat Algorithm for Maximum Annual Savings in Radial ...
Capacitor Placement Using Bat Algorithm for Maximum Annual Savings in Radial ...Capacitor Placement Using Bat Algorithm for Maximum Annual Savings in Radial ...
Capacitor Placement Using Bat Algorithm for Maximum Annual Savings in Radial ...
 
Peak- and Average-Power Reduction in Check-Based BIST by using Bit-Swapping ...
Peak- and Average-Power Reduction in Check-Based BIST by  using Bit-Swapping ...Peak- and Average-Power Reduction in Check-Based BIST by  using Bit-Swapping ...
Peak- and Average-Power Reduction in Check-Based BIST by using Bit-Swapping ...
 
Cross-layer Design of an Asymmetric Loadpower Control Protocol in Ad hoc Netw...
Cross-layer Design of an Asymmetric Loadpower Control Protocol in Ad hoc Netw...Cross-layer Design of an Asymmetric Loadpower Control Protocol in Ad hoc Netw...
Cross-layer Design of an Asymmetric Loadpower Control Protocol in Ad hoc Netw...
 
Optimum Relay Node Selection in Clustered MANET
Optimum Relay Node Selection in Clustered MANETOptimum Relay Node Selection in Clustered MANET
Optimum Relay Node Selection in Clustered MANET
 
Security constrained optimal load dispatch using hpso technique for thermal s...
Security constrained optimal load dispatch using hpso technique for thermal s...Security constrained optimal load dispatch using hpso technique for thermal s...
Security constrained optimal load dispatch using hpso technique for thermal s...
 
Calculation of Torsion Capacity of the Reinforced Concrete Beams Using Artifi...
Calculation of Torsion Capacity of the Reinforced Concrete Beams Using Artifi...Calculation of Torsion Capacity of the Reinforced Concrete Beams Using Artifi...
Calculation of Torsion Capacity of the Reinforced Concrete Beams Using Artifi...
 
Identification of isomorphism and detection of distinct mechanism of kinemati...
Identification of isomorphism and detection of distinct mechanism of kinemati...Identification of isomorphism and detection of distinct mechanism of kinemati...
Identification of isomorphism and detection of distinct mechanism of kinemati...
 
Identification of isomorphism and detection of distinct mechanism of kinemati...
Identification of isomorphism and detection of distinct mechanism of kinemati...Identification of isomorphism and detection of distinct mechanism of kinemati...
Identification of isomorphism and detection of distinct mechanism of kinemati...
 
Development of Intelligent Systems to Predict Diamond Wire Saw Performance
Development of Intelligent Systems to Predict Diamond Wire Saw PerformanceDevelopment of Intelligent Systems to Predict Diamond Wire Saw Performance
Development of Intelligent Systems to Predict Diamond Wire Saw Performance
 
Optimization of Corridor Observation Method to Solve Environmental and Econom...
Optimization of Corridor Observation Method to Solve Environmental and Econom...Optimization of Corridor Observation Method to Solve Environmental and Econom...
Optimization of Corridor Observation Method to Solve Environmental and Econom...
 
COMPARISON OF HIERARCHICAL AGGLOMERATIVE ALGORITHMS FOR CLUSTERING MEDICAL DO...
COMPARISON OF HIERARCHICAL AGGLOMERATIVE ALGORITHMS FOR CLUSTERING MEDICAL DO...COMPARISON OF HIERARCHICAL AGGLOMERATIVE ALGORITHMS FOR CLUSTERING MEDICAL DO...
COMPARISON OF HIERARCHICAL AGGLOMERATIVE ALGORITHMS FOR CLUSTERING MEDICAL DO...
 

Viewers also liked

Aviones de ataque y bombarderos. horacio stiusso
Aviones de ataque y bombarderos. horacio stiussoAviones de ataque y bombarderos. horacio stiusso
Aviones de ataque y bombarderos. horacio stiussoAntonioCabrala
 
Monteiro lobato -_O_Saci
Monteiro lobato -_O_SaciMonteiro lobato -_O_Saci
Monteiro lobato -_O_SaciTânia Sampaio
 
Publicatie kwaliteitsverbetering OCW
Publicatie kwaliteitsverbetering OCWPublicatie kwaliteitsverbetering OCW
Publicatie kwaliteitsverbetering OCWMonique Nederstigt
 
Contenido científico español
Contenido científico españolContenido científico español
Contenido científico españolMin Escobedo R
 
Sintese dos eixos marília sp 2013
Sintese dos eixos marília   sp 2013Sintese dos eixos marília   sp 2013
Sintese dos eixos marília sp 2013Rosemary Batista
 
La ParticipacióN Electoral Como Objeto De AnáLisis (Dieter Nohlen)
La ParticipacióN Electoral Como Objeto De AnáLisis (Dieter Nohlen)La ParticipacióN Electoral Como Objeto De AnáLisis (Dieter Nohlen)
La ParticipacióN Electoral Como Objeto De AnáLisis (Dieter Nohlen)Fernando Tuesta Soldevilla
 
Orienta eso 2[1]
Orienta eso 2[1]Orienta eso 2[1]
Orienta eso 2[1]patri2512
 
CHILDHOOD MENTAL DISORDERS - Unit 4
CHILDHOOD MENTAL DISORDERS - Unit 4  CHILDHOOD MENTAL DISORDERS - Unit 4
CHILDHOOD MENTAL DISORDERS - Unit 4 Rupesh Nath
 
A life history of a former boston gang leader risk factor analysis (public)
A life history of a former boston gang leader risk factor analysis (public)A life history of a former boston gang leader risk factor analysis (public)
A life history of a former boston gang leader risk factor analysis (public)Howie Sorett
 
42702 exemplars & commentaries
42702 exemplars & commentaries42702 exemplars & commentaries
42702 exemplars & commentariesdave_windsor
 
Comunicação e cidadania uma análise dos projetos de extensão do curso de comu...
Comunicação e cidadania uma análise dos projetos de extensão do curso de comu...Comunicação e cidadania uma análise dos projetos de extensão do curso de comu...
Comunicação e cidadania uma análise dos projetos de extensão do curso de comu...UNEB
 
Aspectos Administrativos da Segurança Pública.
Aspectos Administrativos da Segurança Pública.Aspectos Administrativos da Segurança Pública.
Aspectos Administrativos da Segurança Pública.Ricardo Dias
 

Viewers also liked (20)

Aviones de ataque y bombarderos. horacio stiusso
Aviones de ataque y bombarderos. horacio stiussoAviones de ataque y bombarderos. horacio stiusso
Aviones de ataque y bombarderos. horacio stiusso
 
Obesidad
ObesidadObesidad
Obesidad
 
Educacion Virtual
Educacion VirtualEducacion Virtual
Educacion Virtual
 
Monteiro lobato -_O_Saci
Monteiro lobato -_O_SaciMonteiro lobato -_O_Saci
Monteiro lobato -_O_Saci
 
Budget Options for NYC 2014
Budget Options for NYC 2014Budget Options for NYC 2014
Budget Options for NYC 2014
 
Polimero
PolimeroPolimero
Polimero
 
Publicatie kwaliteitsverbetering OCW
Publicatie kwaliteitsverbetering OCWPublicatie kwaliteitsverbetering OCW
Publicatie kwaliteitsverbetering OCW
 
Redes sociales
Redes socialesRedes sociales
Redes sociales
 
Unidad iv apuntes nov12
Unidad iv  apuntes nov12Unidad iv  apuntes nov12
Unidad iv apuntes nov12
 
Contenido científico español
Contenido científico españolContenido científico español
Contenido científico español
 
Sintese dos eixos marília sp 2013
Sintese dos eixos marília   sp 2013Sintese dos eixos marília   sp 2013
Sintese dos eixos marília sp 2013
 
Trabajo colaborativo en el aula
Trabajo colaborativo en el aulaTrabajo colaborativo en el aula
Trabajo colaborativo en el aula
 
La ParticipacióN Electoral Como Objeto De AnáLisis (Dieter Nohlen)
La ParticipacióN Electoral Como Objeto De AnáLisis (Dieter Nohlen)La ParticipacióN Electoral Como Objeto De AnáLisis (Dieter Nohlen)
La ParticipacióN Electoral Como Objeto De AnáLisis (Dieter Nohlen)
 
Orienta eso 2[1]
Orienta eso 2[1]Orienta eso 2[1]
Orienta eso 2[1]
 
CHILDHOOD MENTAL DISORDERS - Unit 4
CHILDHOOD MENTAL DISORDERS - Unit 4  CHILDHOOD MENTAL DISORDERS - Unit 4
CHILDHOOD MENTAL DISORDERS - Unit 4
 
A life history of a former boston gang leader risk factor analysis (public)
A life history of a former boston gang leader risk factor analysis (public)A life history of a former boston gang leader risk factor analysis (public)
A life history of a former boston gang leader risk factor analysis (public)
 
42702 exemplars & commentaries
42702 exemplars & commentaries42702 exemplars & commentaries
42702 exemplars & commentaries
 
Comunicação e cidadania uma análise dos projetos de extensão do curso de comu...
Comunicação e cidadania uma análise dos projetos de extensão do curso de comu...Comunicação e cidadania uma análise dos projetos de extensão do curso de comu...
Comunicação e cidadania uma análise dos projetos de extensão do curso de comu...
 
Dewey UNESCO
Dewey UNESCO Dewey UNESCO
Dewey UNESCO
 
Aspectos Administrativos da Segurança Pública.
Aspectos Administrativos da Segurança Pública.Aspectos Administrativos da Segurança Pública.
Aspectos Administrativos da Segurança Pública.
 

Similar to Effect of inertia weight functions of pso in optimization of water distribution network

Multi-objective optimization of water distribution system using particle swar...
Multi-objective optimization of water distribution system using particle swar...Multi-objective optimization of water distribution system using particle swar...
Multi-objective optimization of water distribution system using particle swar...iosrjce
 
Distribution network reconfiguration for loss reduction using PSO method
Distribution network reconfiguration for loss reduction  using PSO method Distribution network reconfiguration for loss reduction  using PSO method
Distribution network reconfiguration for loss reduction using PSO method IJECEIAES
 
Optimization techniques for water supply network a critical review
Optimization techniques for water supply network a critical reviewOptimization techniques for water supply network a critical review
Optimization techniques for water supply network a critical reviewIAEME Publication
 
Cost optimization of pipeline systems using genetic algorithm
Cost optimization of pipeline systems using genetic algorithmCost optimization of pipeline systems using genetic algorithm
Cost optimization of pipeline systems using genetic algorithmIAEME Publication
 
OPTIMIZATION TECHNIQUES FOR WATER SUPPLY NETWORK: A CRITICAL REVIEW
OPTIMIZATION TECHNIQUES FOR WATER SUPPLY NETWORK: A CRITICAL REVIEW OPTIMIZATION TECHNIQUES FOR WATER SUPPLY NETWORK: A CRITICAL REVIEW
OPTIMIZATION TECHNIQUES FOR WATER SUPPLY NETWORK: A CRITICAL REVIEW IAEME Publication
 
A suggestion of optimization process for water pipe networks design
A suggestion of optimization process for water pipe networks designA suggestion of optimization process for water pipe networks design
A suggestion of optimization process for water pipe networks designMedhat Elzahar
 
Optimal design of storm sewer networks
Optimal design of storm sewer networksOptimal design of storm sewer networks
Optimal design of storm sewer networksBhanu Pratap
 
Improvement in Quality of Power by PI Controller Hybrid PSO using STATCOM
Improvement in Quality of Power by PI Controller Hybrid PSO using STATCOMImprovement in Quality of Power by PI Controller Hybrid PSO using STATCOM
Improvement in Quality of Power by PI Controller Hybrid PSO using STATCOMIRJET Journal
 
A NOVEL FULL ADDER CELL BASED ON CARBON NANOTUBE FIELD EFFECT TRANSISTORS
A NOVEL FULL ADDER CELL BASED ON CARBON NANOTUBE FIELD EFFECT TRANSISTORSA NOVEL FULL ADDER CELL BASED ON CARBON NANOTUBE FIELD EFFECT TRANSISTORS
A NOVEL FULL ADDER CELL BASED ON CARBON NANOTUBE FIELD EFFECT TRANSISTORSVLSICS Design
 
Model Order Reduction of an ISLANDED MICROGRID using Single Perturbation, Dir...
Model Order Reduction of an ISLANDED MICROGRID using Single Perturbation, Dir...Model Order Reduction of an ISLANDED MICROGRID using Single Perturbation, Dir...
Model Order Reduction of an ISLANDED MICROGRID using Single Perturbation, Dir...IRJET Journal
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)ijceronline
 
Optimal placement of facts devices to reduce power system losses using evolu...
Optimal placement of facts devices to reduce power system  losses using evolu...Optimal placement of facts devices to reduce power system  losses using evolu...
Optimal placement of facts devices to reduce power system losses using evolu...nooriasukmaningtyas
 
An approach to Measure Transition Density of Binary Sequences for X-filling b...
An approach to Measure Transition Density of Binary Sequences for X-filling b...An approach to Measure Transition Density of Binary Sequences for X-filling b...
An approach to Measure Transition Density of Binary Sequences for X-filling b...IJECEIAES
 
Numerical flow simulation using star ccm+
Numerical flow simulation using star ccm+Numerical flow simulation using star ccm+
Numerical flow simulation using star ccm+Alexander Decker
 
Comparison of MOC and Lax FDE for simulating transients in Pipe Flows
Comparison of  MOC and Lax FDE for simulating transients in Pipe FlowsComparison of  MOC and Lax FDE for simulating transients in Pipe Flows
Comparison of MOC and Lax FDE for simulating transients in Pipe FlowsIRJET Journal
 
APPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINES
APPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINESAPPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINES
APPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINEScseij
 

Similar to Effect of inertia weight functions of pso in optimization of water distribution network (20)

Multi-objective optimization of water distribution system using particle swar...
Multi-objective optimization of water distribution system using particle swar...Multi-objective optimization of water distribution system using particle swar...
Multi-objective optimization of water distribution system using particle swar...
 
D012612128
D012612128D012612128
D012612128
 
Distribution network reconfiguration for loss reduction using PSO method
Distribution network reconfiguration for loss reduction  using PSO method Distribution network reconfiguration for loss reduction  using PSO method
Distribution network reconfiguration for loss reduction using PSO method
 
Optimization techniques for water supply network a critical review
Optimization techniques for water supply network a critical reviewOptimization techniques for water supply network a critical review
Optimization techniques for water supply network a critical review
 
Cost optimization of pipeline systems using genetic algorithm
Cost optimization of pipeline systems using genetic algorithmCost optimization of pipeline systems using genetic algorithm
Cost optimization of pipeline systems using genetic algorithm
 
40220140507005
4022014050700540220140507005
40220140507005
 
40220140507005
4022014050700540220140507005
40220140507005
 
OPTIMIZATION TECHNIQUES FOR WATER SUPPLY NETWORK: A CRITICAL REVIEW
OPTIMIZATION TECHNIQUES FOR WATER SUPPLY NETWORK: A CRITICAL REVIEW OPTIMIZATION TECHNIQUES FOR WATER SUPPLY NETWORK: A CRITICAL REVIEW
OPTIMIZATION TECHNIQUES FOR WATER SUPPLY NETWORK: A CRITICAL REVIEW
 
A suggestion of optimization process for water pipe networks design
A suggestion of optimization process for water pipe networks designA suggestion of optimization process for water pipe networks design
A suggestion of optimization process for water pipe networks design
 
Optimal design of storm sewer networks
Optimal design of storm sewer networksOptimal design of storm sewer networks
Optimal design of storm sewer networks
 
Improvement in Quality of Power by PI Controller Hybrid PSO using STATCOM
Improvement in Quality of Power by PI Controller Hybrid PSO using STATCOMImprovement in Quality of Power by PI Controller Hybrid PSO using STATCOM
Improvement in Quality of Power by PI Controller Hybrid PSO using STATCOM
 
A NOVEL FULL ADDER CELL BASED ON CARBON NANOTUBE FIELD EFFECT TRANSISTORS
A NOVEL FULL ADDER CELL BASED ON CARBON NANOTUBE FIELD EFFECT TRANSISTORSA NOVEL FULL ADDER CELL BASED ON CARBON NANOTUBE FIELD EFFECT TRANSISTORS
A NOVEL FULL ADDER CELL BASED ON CARBON NANOTUBE FIELD EFFECT TRANSISTORS
 
Energy management system
Energy management systemEnergy management system
Energy management system
 
Model Order Reduction of an ISLANDED MICROGRID using Single Perturbation, Dir...
Model Order Reduction of an ISLANDED MICROGRID using Single Perturbation, Dir...Model Order Reduction of an ISLANDED MICROGRID using Single Perturbation, Dir...
Model Order Reduction of an ISLANDED MICROGRID using Single Perturbation, Dir...
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
Optimal placement of facts devices to reduce power system losses using evolu...
Optimal placement of facts devices to reduce power system  losses using evolu...Optimal placement of facts devices to reduce power system  losses using evolu...
Optimal placement of facts devices to reduce power system losses using evolu...
 
An approach to Measure Transition Density of Binary Sequences for X-filling b...
An approach to Measure Transition Density of Binary Sequences for X-filling b...An approach to Measure Transition Density of Binary Sequences for X-filling b...
An approach to Measure Transition Density of Binary Sequences for X-filling b...
 
Numerical flow simulation using star ccm+
Numerical flow simulation using star ccm+Numerical flow simulation using star ccm+
Numerical flow simulation using star ccm+
 
Comparison of MOC and Lax FDE for simulating transients in Pipe Flows
Comparison of  MOC and Lax FDE for simulating transients in Pipe FlowsComparison of  MOC and Lax FDE for simulating transients in Pipe Flows
Comparison of MOC and Lax FDE for simulating transients in Pipe Flows
 
APPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINES
APPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINESAPPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINES
APPLICATION OF PARTICLE SWARM OPTIMIZATION TO MICROWAVE TAPERED MICROSTRIP LINES
 

More from 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
 

More from 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
 

Recently uploaded

SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 

Recently uploaded (20)

SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 

Effect of inertia weight functions of pso in optimization of water distribution network

  • 1. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME 43 EFFECT OF INERTIA WEIGHT FUNCTIONS OF PSO IN OPTIMIZATION OF WATER DISTRIBUTION NETWORK Minakshi Shrivastava1 , Dr. Vishnu Prasad2 , Dr. Ruchi Khare3 1,2,3 Maulana Azad National Institute of Technology, Bhopal, 462051, India ABSTRACT Water distribution in adequate quantity at required pressure is the prime requirement of design of network. It is found from the literature, that stochastic methods gives better results in optimizing the water distribution network (WDN) than deterministic methods. The optimize solution obtained from any stochastic method depends on the parameter values associated with that method. In the present work a program is developed in MATLAB environment to optimize the water distribution system using Particle Swarm Optimization (PSO) technique. The analysis is carried out using finite element method. The validity of developed program is demonstrated by comparing results with a benchmark water distribution network. Different values of inertia weight function in Partial swarm optimization has been used to study the effect of this variant on the cost of water distribution network. Key words: Optimization; Water Distribution Network; Particle Swarm Optimization; Inertia Weight Function 1. INTRODUCTION A safe supply of potable water is the basic necessity of mankind in the industrialized society, therefore water supply systems are the most important public utility. A huge amount of money is spent every year around the world for providing or upgrading drinking water facilities. The major share of capital investment in a water supply system goes to the water conveyance and water distribution network. [Wu et al,2001]. Therefore it is very important to optimized the network. The methods used for optimization of water distribution network may be deterministic or stochastic [Keedwell et al,2004l].Optimization of the network aims to find out the best diameter size from the available commercial diameter sizes to get the minimum cost of the network within head and velocity constraints. Conventional methods gives global optimal solution but they are tedious and time consuming while the stochastic method are more efficient methods[[Afasher et al, 2003]]. INTERNATIONAL JOURNAL OF ADVANCED RESEARCH IN ENGINEERING AND TECHNOLOGY (IJARET) ISSN 0976 - 6480 (Print) ISSN 0976 - 6499 (Online) Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME: www.iaeme.com/ IJARET.asp Journal Impact Factor (2015): 8.5041 (Calculated by GISI) www.jifactor.com IJARET © I A E M E
  • 2. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME 44 It can be seen from the previous work that stochastic methods work successfully for water distribution network. Various optimization techniques e.g. Genetic Algorithm, Ant Colony optimization, artificial neural network etc have been successfully used to optimize the water distribution network but they have their own limitations of rate of convergence, difference between the shortest and the longest optimization response time etc [Izquierdoa, 2014]. Optimization of pipe network by using GA also has limitations like poor convergence, unrealistic global optimum solution etc. To overcome theses limitation, James Kennedy and Russell Eberhart [1995] developed the concept of Particle Swarm Optimization (PSO) to overcome the limitations of GA. Particle swarm optimization is a robust stochastic technique for optimization [Mahor et al, 2009]. In this method, the co-ordinates of each particle represent the possible solution and after each iteration, the particle moves towards optimal solution. Particle swarm optimization is comparatively topical, very simple and has very fast rate of convergence for various optimization problems. Literature reveals that PSO is successfully worked for optimization of water distribution network. It is seen that optimization of pipe network using PSO has been done taking a particular inertia weight function and effect of other weight function on the optimized results are not studied. In present work coding is done for optimizing water distribution network using PSO. The network analysis is carried out by finite element method using Darcy Weishback head loss equation the results are validated for two loop water distribution network. The results obtained are having good agreement with the results obtained for the same network by using other stochastic methods of optimization. The inertia weighted function ‘w’ is one of the important parameter in particle swarm optimization [Bansal et al, 2009, 2011]. In the present paper the cost optimization using eight different variants of inertia weight function are compared and presented in graphical and tabulated form. 2. PROBLEM FORMULATION Objective function: It is to minimize the cost of water distribution network by selecting commercially available pipe diameter and the objective function is given as; 1 ( , ) m i MinZ C L D = = ∑ Where Z = total cost ,m = no of pipe in the network C= cost of the pipe having length L and diameter D. The constraints to be satisfied for minimizing the cost of network are; Constraint 1: Diameter constraint The diameter of the pipe should be selected from the available commercial pipe diameters. Commercially available pipe size and cost of unit length is given in table 1. Constraint 2: Head constraint The head available at each junction must be greater than the minimum required head to supply sufficient amount of water at the junction.i.e. minkH H≥ where k=1,2,3………………..n Apart from these two constraints, the network is analysed to meet the following requirement. 1. The continuity equation i.e the amount of water entering to the junction must be equal to the amount of water leaving from the junction.
  • 3. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME 45 1 j n j Q = = ∑ = 0 ……… (a) Where n=no of pipe meeting at any junction 2. Net head loss within the loop must be zero. 1 p nop LP p H = = ∑ = 0 ……….. (b) Where nop= no of pipes in any loop Particle Swarm Optimization Partical swarm optimization is bio inspired met heuristic technique for optimization. James Kennedy and Russell Eberhart developed the concept of PSO in 1995 [Shrivastava et al, 2014]. In this method the co-ordinates of each particle represents the possible solution. After each iteration the objective function is evaluated to help particle to move towards optimal solution In this method the initial population is generated randomly and based on the objective function it is updated for the best optimal solution. If the initial position of the particle is xi(t),then after the next iteration it will move to the next position of xi(t+1). The particle moves toward the best optimal solution using velocity update from vi(t) to vi(t+1) as in equation 1 and equation 2.[Izquierdoa et al, 2014]. vi(t+1) = w*vi(t) +C1*R1*(pbest- xi(t))+C2*R2*(gbest- xi(t)) -------I xi(t+1) = xi(t)+ vi(t+1) -------II Where C1 and C2 are the positive constants named as cognitive learning rate and social learning rate respectively, they are used to accelerate the particle towards the optimal solution. R1 and R2 are the uniform random number ranging from 0 to 1. 'pbest' is the best solution obtained by the individual particle and gbest is the best value of objective function from the entire swarm. ‘w’ is the inertia weight function. 3. METHODOLOGY The MAT LAB environment is used for developing program for optimizing water distribution. The program is developed in two parts. The first part calculates the head and flow in the network for the given set of diameters by using Finite Element methods whereas the optimization is done in the second part. The flow chart for the complete calculation is shown in fig. 1. Table 1: Commercially available HDPE pipe dia and their cost [Babu Jinesh et al, 2009] S.No Commercially available dia size(mm) Cost per unit length (units) 1 25.40 2 2 50.80 5 3 76.20 8 4 101.60 11 5 152.40 16 6 203.20 23 7 254.00 32 8 304.80 50 9 355.60 60 10 406.40 90 11 457.20 130 12 508.00 170 13 558.80 300 14 609.60 550
  • 4. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME 46 Iteration1:k Fig.1 Flowchart of optimization using PSO The two loop network used for validation is shown fig.2. It has 8 pipe and 7 nodes (including reservoir). Head at node 1 is to be maintained as 210 m [Babu Jinesh et al, 2009]. Commercially available diameters, used for the network are given in table 1. Elevation and demand at each junction and pipe length for each pipe is shown in fig 2. Minimum head at each junction is required to be maintained as 30 m. As seen in fig.2 that all pipes of network are of constant length of 1000m. The finite element method is used for calculating head and velocity in pipe network, using Darcy Weishbach equation: for head loss. hf= f*L*V2 / (2*D*g) -------(III) yes yes Initialize:Partical and their flight velocity No No Analysis : analyze the network using FEM Evaluate: fitness value Initialize:Pbest and gbest Iteration=1:k Partical 1:s Compute flight velocity Update partical position Analyze the network Evaluate fitness value Update pbest position Update gbest position Terminate and print the result Is the last partical? Termination criteria meet?
  • 5. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME 47 Fig.2 Two loop water distribution network [Babu Jinesh et al, 2009] Optimization of the network for minimum cost is done for eight different variants of inertia weight function of PSO [Bansal et al, 2011].Following variants of inertia weight are used in present work: Type Name of Inertia Weight Function Formulae of Inertia Weight 1 Constant Inertia Weight ω1=.7 2 Random inertia weight 1 (1) .5 2 rand w = + 3 Linear decreasing inertia weight ( max min max1 w - w ) w = - [ ] iterationw maxiteration × 4 Logrithmic inertia weight 1 1 .5 (1 ) 1 log( ) w iteration = × + + 5. Natural exponent inertia weight strategy e-1 PSO max 10 1 m in max min ( ).e iter iteration w w w w         −          = + − 6 Natural exponent inertia weight strategy e2-pso 2 max 4 1 min max min ( ).e iter iteration w w w w        −          = + − 7. Simulated annealing inertia weight 1 min max min ( ) ^ ( 1)w w w w iterλ= + − × − Here ƛ = 0.95 8. Time varying inertia weight 1 max min min (max ) [( ) ] max iteration iter w w w w iteration − = − × +
  • 6. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME 48 4. RESULTS AND DISCUSSION The optimization of network shown in fig 1 is done with the minimum pressure head constraint of 30 m at all juctions of network. PSO is used for optimization and coding is done in matlab environment. The result obtained after 100 iterations, for 15 trials of different swarm sizes are shown in Fig. 3: Fig.3 Variation of cost with swarm size Table 2: Comparison of diameter and Head with the previous results of the same net work Pipe no Dia(present work) (m) Dia(Jinesh et al 2014) (m) Node no Head(present work)(m) Head(Jinesh et al 2014)(m) 1 0.457 0.457 1 210.00 - 2 0.254 0.254 2 53.1931 53.25 3 0.4064 0.4064 3 30.2319 30.46 4 0.1016 0.1016 4 43.3534 43.45 5 0.4064 0.4064 5 33.4958 33.81 6 0.2540 0.2540 6 30.2767 30.44 7 0.254 0.254 7 30.4233 30.55 8 0.254 0.254 410000 420000 430000 440000 450000 460000 470000 480000 490000 500000 0 10 20 30 40 50 60 70 80 90 100 Cost(units) Swarm size Variation of cost with swarm size
  • 7. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. Fig.4.variation of cost with no of runs for various swarm size It is observed from the fig.3 that cost of network is varying with swarm size and the least cost of network is obtained for swarm size of 50.The cost obtained with number of runs for each swarm size is represented graphically in fig.4, which shows that the least cost is at swarm size 50 .The pressure head at junction are closely matching with the results obtained by jinesh et Further the network is optimized for 50 swarm size and 15 runs by using eight variant weighted function. It is observed that the (Fig.5). It is least i,e, Rs 4,19,000 for 4th type of as it is highest in case of random inertia weight (2nd type) varient. convergence is high in case of logarithmic work is also observed as 419000 units. Fig 5.Variation 441000 462000 390000 400000 410000 420000 430000 440000 450000 460000 470000 1 2 cost(units) Variation of cost for different variants 0 200000 400000 600000 800000 1000000 1200000 1400000 1600000 0 5 Cost(units) Variation of cost with no. of runs International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME 49 variation of cost with no of runs for various swarm size It is observed from the fig.3 that cost of network is varying with swarm size and the least cost swarm size of 50.The cost obtained with number of runs for each swarm size is represented graphically in fig.4, which shows that the least cost is at swarm size 50 .The pressure head at junction are closely matching with the results obtained by jinesh et Further the network is optimized for 50 swarm size and 15 runs by using eight variant nction. It is observed that the network cost considerably varies with type of variant (Fig.5). It is least i,e, Rs 4,19,000 for 4th type of variant which is logarithmic in case of random inertia weight (2nd type) varient. It is because logarithmic inertia weight (Bansal et al). Minimum cost in previous ed as 419000 units. Variation of cost for different types of variants 447000 419000 462000 441000 459000 3 4 5 6 7 Type of variant Variation of cost for different variants 10 15 20 No . of runs Variation of cost with no. of runs International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – © IAEME variation of cost with no of runs for various swarm size It is observed from the fig.3 that cost of network is varying with swarm size and the least cost swarm size of 50.The cost obtained with number of runs for each swarm size is represented graphically in fig.4, which shows that the least cost is at swarm size 50 .The pressure head at junction are closely matching with the results obtained by jinesh et al. Further the network is optimized for 50 swarm size and 15 runs by using eight variants of network cost considerably varies with type of variant logarithmic Inertia weight, where It is because the rate of Minimum cost in previous 459000 447000 8 Variation of cost for different variants swarm size 10 swarm size 30 swarm size 50 swarm size 70 swarm size 90
  • 8. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME 50 Table 3:Diameter and flow for different pipe. No of pipe Diameter(m) Flow(L/sec.) 1 0.457 0.311 2 0.254 0.0934 3 0.4064 0.1899 4 0.1016 0.0092 5 0.4064 0.1474 6 0.2540 0.0557 7 0.254 0.0656 8 0.254 0.0002 The optimum set of diameters (for best result i.e. 4th variant) for each pipe of two loop network is given in table 3. The pressure head at each junctions (the pressure head at junction 1 is fixed i.e, 210m) is depicited in table 4. It is seen that the lowest value of pressure heads are at type 4 inertia weight (Logrithmic Inertia weight). This is because no. of iterations and swarm size is fixed for all types of inertia weights in this analysis, but the rate of convergence is high for logrithmic inertia weight. Others may also achieve the low pressure head values at higher number of iterations. Table 4: Values of pressure head at all junctions for different types of Inertia weights Node No. Pressure head for Type 1 variant Pressure head for Type 2 variant Pressure head for Type 3 variant Pressure head for Type 4 variant Pressure head for Type 5 variant Pressure head for Type 6 variant Pressure head for Type 7 variant Pressure head for Type 8 variant 2 53.1931 53.1931 53.1931 53.1931 55.9806 53.1931 53.1931 53.1931 3 39.6279 37.5225 33.9689 30.2319 38.1285 39.6279 38.9799 33.9689 4 43.3403 44.5384 44.8001 43.3534 45.028 43.3403 43.4327 44.8001 5 38.3232 42.0028 41.2598 33.4958 44.972 38.3232 44.2504 41.2598 6 30.2666 30.3286 30.4528 30.2767 30.764 30.2666 30.232 30.4528 7 30.4258 30.5032 30.002 30.4233 30.6955 30.4258 30.0902 30.002 5. CONCLUSION The present pipe network optimization concludes that the type of weighted integral plays an important role in network optimization. The logrithmic weighted integral is most suitable for fast convergence and cost minimization in case of water distribution network. However the suitable swarm size and number of iterations are also significant in PSO. It can be seen that forth variant gives best result with minimum cost of 419000 unit. Notations Hk - head available at each junction Hmin - Min head required to be available at the junction K - total no. of junction in the network hf - head loss f - friction factor L - length of the pipe V - velocity in the pipe D - diameter of the pipe
  • 9. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online), Volume 6, Issue 5, May (2015), pp. 43-51 © IAEME 51 REFERENCES 1. Wu Z.Y. and Simpson A.R. (2001), Competent genetic evolutionary optimization of water distribution system, Journal of computing in civil engineering, volume 15(2), pp 89-101. 2. Keedwell Edward and Thiam Khu Soon, (2004)” A hybrid genetic algorithm for the design of water distribution networks”, Engineering applications of artificial intelligence, volume 18, pp 461-472. 3. Afasher M.H. and Marino M.A. (2005),”A convergent genetic algorithm for pipe network optimization”, Scientia Iranica,volume 12(4),pp-392-401. 4. Mahor Amita, Prasad Vishnu, Rangnekar Saroj (2009),” Economic dispatch using particle swarm optimization: A review”, Renewable and sustainable energy reviews, volume 13,pp. 2134-2141. 5. Bansal Jagdish Chand and Deep Kusum,(2009) ”Optimal design of water distribution networks via partical swarm optimization”, IEEE International advance computing conferece,pp-1314- 1316 6. Bansal J. C,Singh P.K,Saraswat Mukesh,Verma Abhishek,Singh Jodan shimpi and Abraham Ajith,(2011),” Inertia weight strategies in partical swarm optimization”, Proceedings of Third World Congress on Nature and Biologically Inspired 978-1-4577-1123-7/11,pp-640-647. 7. Babu Jinesh K.S. and Vijayalakshmi D.P(2013),”Self adaptive PSO-GA hybrid model for combinatorial water distribution network design”, Journal of pipeline systems engineering and practice,volume-4(1),pp. 57-67. 8. Izquierdoa J.*, Montalvob I., Pérez-Garcíaa R., Campbella E.(2014),” Mining solution spaces for decision making in water distribution systems”, Science direct,12th International conference on computing and control for the water industry,CCWI2013,volume-70,pp-864-871. 9. Manual on water supply and treatment (1991), Published by central public health and environmental engineering organization, Ministry of urban development, Third edition. 10. Shrivastava Minakshi,Khare Ruchi and Prasad Vishnu(2014),”Effect of pressure dependent demand on pipe network analysis:A case study”, International Journal of Engineering Science and Technology, volume 6(1),pp 7-12. 11. A.Raja Jeya Chandra Bose, Dr.T.R.Neelakantan, Dr.P.Mariappan, “Peak Factor In The Design of water Distribution- An Analysis” International Journal of Civil Engineering & Technology (IJCIET), Volume 3, Issue 2, 2012, pp. 123 - 129, ISSN Print: 0976 – 6308, ISSN Online: 0976 – 6316. 12. A.Sri Rama Chandra Murty and M. Surendra Prasad Babu, “Implementation of Particle Swarm Optimization (PSO) Algorithm on Potato Expert System” International Journal of Civil Engineering & Technology (IJCIET), Volume 4, Issue 4, 2013, pp. 82 - 90, ISSN Print: 0976 – 6308, ISSN Online: 0976 – 6316.