SlideShare a Scribd company logo
IOSR Journal of Mechanical and Civil Engineering (IOSR-JMCE)
e-ISSN: 2278-1684,p-ISSN: 2320-334X, Volume 12, Issue 6 Ver. I (Nov. - Dec. 2015), PP 21-28
www.iosrjournals.org
DOI: 10.9790/1684-12612128 www.iosrjournals.org 21 | Page
Multi-objective optimization of water distribution system using
particle swarm optimization
Minakshi Shrivatava1
, Dr. Vishnu Prasad2
, Dr. Ruchi Khare3
1, 2, 3
(Department of Civil Engineering, M.A. National institute of technology Bhopal- 462003, India)
Abstract: The cost of water distribution system includes cost of pipes, pumping system, civil works and
pumping energy. Out of these, cost of civil works and pumping system are nearly fixed for any specific water
supply project. The cost of pipes and pumping energy are variable and can be minimized by suitable selection
of pipe size, material of pipes and staging of elevated service reservoir. In the present work, the cost of pipes
and energy have been optimized using Particle Swarm Optimization (PSO) method for a water supply system
having large pipe network. In addition to this, the effect of swarm size and different inertia weights of PSO is
also studied on the optimized cost of the system.
Key words: Water supply system, Particle swarm optimization, Inertia weight function
I. Introduction
Water is a vital commodity for all living beings on earth surface next to air [15]. Therefore water
supply systems are the most important public utility for safe supply of potable water. To supply the adequate
amount of water at desired pressure with minimum cost is a big challenge for researchers. The pipe and energy
cost involved in the water supply contribute major share of any water supply project [7]. These two cost are
variable and depend on the commercial pipe sizes, pipe material available and the staging of service reservoir.
Many investigators have worked on the minimization of pipe cost taking constant height of reservoir. In this
process, the pipes sizes selected for optimization may not be hydraulically efficient. The pipes selected may be
either oversized or undersized to give minimum cost. Various deterministic as well as stochastic methods have
been used for optimization of water distribution system [3]. Literature reveals that stochastic method are faster
and gives good results for optimizing water distribution system.[1]
Particle swarm optimization is one of the best stochastic techniques for optimizing water distribution
system as it has very simple features and has very fast rate of convergence. It is developed by James Kennedy
and Russell Eberhart in 1995[2]. The inertia weighted function ‘w’ is very important parameter in PSO [5, 6].
In the present work, height of service reservoir is also minimized along with pipe cost after putting constraints
on hydraulic gradient. It is seen that most of optimization of pipe network using PSO has been done using a
single inertia weight function. The effect of different inertia weights on network optimization has also been
presented in this paper. A computer program has been developed for the optimisation of network and analysis
has been done by finite element method. The code developed is validated with existing optimised network
given in literature with fixed tank staging and results are closely matching.
II. Problem formulation
The optimisation has been achieved by minimisation of pipe cost as well as energy cost by
minimising height of service reservoir using following two objective functions:
2.1 Minimization of pipe cost:
The commercially available ductile iron pipes are used in design of network and objective function
for minimization of pipe cost is:




mi
i
ii
DLCZMin
1
1
),( (1)
2.2 Minimization of energy cost:
The pumping energy required to lift water to service reservoir depends on height of service reservoir
for specific flow rate and annual energy cost is given by
Multi-objective optimization of water distribution system using particle swarm optimization
DOI: 10.9790/1684-12612128 www.iosrjournals.org 22 | Page
1000/3652 p
TEQYMinZ  (2)
In this equation, the energy cost minimized by optimizing the staging of service reservoir ‘Y’.
The present worth of optimized energy cost for the design period of 20 years is computed using annuity
method as:
t
t
r
r
r
Z
Z
)1(
1)1(2
3


 (3)
2.3 Constraints and bounds:
2.3.1 Constraint 1: Diameter constraint
The commercial pipe sizes are to be used in network design optimization and the diameter chosen for
design of network must be commercially available. Hence
Dj Є [Dk] (4)
where Dk is the diameter of commercial available pipe set.
2.3.2 Constraint 2: Head constraint
Head at each junction must be greater than the minimum head required at each junction.
Hk ≥ Hmin (5)
2.3.3 Constraint 3: Reservoir height
The staging of elevated reservoir must be within the minimum and maximum specified heights of
reservoir
Ymin ≤ Y ≤ Ymax (6)
III. Partical swarm optimization
Partical swarm optimization is Meta heuristic technique for optimization. It is developed by James
Kennedy and Russell Eberhart in 1995 [10]. After each iteration, the objective function is evaluated and pbest
and gbest are updated to move towards optimal solution.
In this method the initially swarm sizes are generated randomly. 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 7 and equation 8.[8].
vi(t+1) = w*vi(t) +C1*R1*(pbest- xi(t))+C2*R2*(gbest- xi(t)) (7)
xi(t+1) = xi(t)+ vi(t+1) (8)
Where C1 and C2 are the positive constants termed as cognitive learning rate and social learning rate
respectively and accelerate the particle towards the optimal solution. It is found from the literature that
C1=C2=2 gives the best results for optimization and same is taken for in present work. 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 size. ‘w’ is the inertia weight
function.[4] The different form of inertial weight functions used in PSO are tabulated in Table -1.
Multi-objective optimization of water distribution system using particle swarm optimization
DOI: 10.9790/1684-12612128 www.iosrjournals.org 23 | Page
Table 1: Different inertia weight functions of PSO [6,11]
S. No. Inertia weight function Function Equation
1 Constant inertia weight ω1=.7
2 Random inertia weight
1
(1)
.5
2
ra n d
w  
3 Linear decreasing inertia weight ( w - w )
m a x m in
w = - [ ] itera tio nw m a x1 m a xitera tio n

4 Logarithmic inertia weight
1
1
.5 (1 )
1 lo g ( )
w
itera tio n
  

5. Natural exponent inertia weight strategy e-1
m a x
1 0
( ) . e1 m in m a x m in
ite r
ite r a tio n
w w w w
  
  
   
  
    
  
6 Natural exponent inertia weight strategy e2 2
m a x
4
( ) . e1 m i n m a x m i n
i t e r
i t e r a t i o n
w w w w
 
 
 
 
 
  
 
 
  
   
  
7. Simulated annealing inertia weight
1 m in m ax m in
( ) ^ ( 1)w w w w iter    
Here ƛ = 0.95
8. Time varying inertia weight (m a x )
[( ) ]
1 m a x m in m inm a x
ite r a tio n ite r
w w w w
ite r a tio n

  
IV. Network design data
A residential colony developed in Bhopal, Madhya Pradesh, India with plot size 1000-1200 sqft. is
taken for optimization. There is 3 floor building on each plot. The demand for network has been computed for
4 people per floor. The per capita demand per day is taken 150 liters. The ductile iron pipes are to be used for
network. The layout of pipes is shown in fig.1. The complete network consists of 107 pipes and 75 nodes. The
minimum head to be maintained at each junction is 17 m. Total supply hour is taken as 6 hours and pumping is
done for 16 hours. The total length of pipes of network is 3796 m.
Fig1: Water distribution network .
Multi-objective optimization of water distribution system using particle swarm optimization
DOI: 10.9790/1684-12612128 www.iosrjournals.org 24 | Page
V. Computational procedure
i. Input network parameters like pipe length, junction demand and elevation, commercial pipe sizes, cost,
design period and rate of interest, unit energy cost.
ii. Choose the swarm size and generation random number for diameter of pipes between given range of
commercially available pipe diameter set.
iii. Replace the random number to nearest commercial pipe diameter by considering the permissible hydraulic
gradient.
iv. Carry out network analysis by finite element method.
v. Find out pbest, gbest and fitness cost.
vi. Update the tank height.
vii. Update diameter set.
viii. Repeat steps (iii) to (viii) till the solution converges to specified accuracy for pbest, gbest and reservoir
staging for all inertia weights of PSO and gives same optimized cost for at least 60 iterations.
The commercial ductile iron pipes used in present network optimization are 100mm, 125mm,
150mm, 200mm, 250mm, 300mm, 350mm, 400mm, 450mm, 500mm and their corresponding unit costs are
Rs.775, Rs.948, Rs.1120, Rs.1550, Rs.2100, Rs.2900, Rs.2900, Rs.3445, Rs.4015, Rs.4853, 5753[13]. The
design period, rate of interest and unit energy cost are taken as 20 years, 10 % and Rs.5 respectively.
VI. Result and discussions
The analysis has been carried out for 6 swarm size ranging from 150 to 250 at interval of 20 for 8
different inertia weight function of PSO. The optimized cost of pipes, energy and sum of these two cost as
total cost are presented in form of bar chart for different swarm size in fig.2 to fig.7.
It is observed from the minimum cost obtained with different swarm size and inertia weight functions
that the ratio of average energy cost to pipe cost is about 45:35. It indicates that energy cost minimization is
more important for economic design of pipe network however the energy cost is also dependent on the energy
charges and rate of interest and design period.
It is seen from the cost variation in fig.2 to fig.7 that minimum energy cost is nearly same and found
to be independent of weight function and swarm size. The lowest value of minimum cost achieved is Rs.45.01
lakhs for 5
swarm size and weight functions and highest value is Rs.45.31 lakhs at swam size 170 (fig.3) and constant
weight functions. The maximum difference between the optimized energy cost from different inertia weight
functions and swarm size is 8.12% at swarm size 170 while minimum difference is 0.29% at swam size 190.
The overall standard deviation is 2.93
There is large variation in the minimum pipe cost obtained from optimization for different swarm size
and weight functions. The highest value of optimized pipe cost is Rs.38.76 lakhs at 210 swarm size for
logarithmic weight function (fig.5) while lowest cost is Rs.34.10 lakhs at swarm size 170 and random weight
function (fig.3). The maximum difference between highest and lowest minimum cost is 9.21% at swarm size
210 and minimum difference is 3.82% at swarm size 230 with overall standard deviation of 2.07.
The minimum optimized total cost is again achieved at swarm size and weight functions other than
where minimum optimized pipe and energy cost is obtained. The highest value of minimum cost is Rs.83.95
lakhs for logarithmic weight function at swam size 170, while lowest value is Rs.79.85 lakhs for natural
exponent e-1 weight function at same swarm size 170 (Fig.3). The percentage variations in highest and lowest
optimized cost at different weight function and swarm size are 5.13 % and 1.49 % respectively. The standard
deviation of the percentage cost variation is 1.33.
Multi-objective optimization of water distribution system using particle swarm optimization
DOI: 10.9790/1684-12612128 www.iosrjournals.org 25 | Page
Fig 2: Variation of costs for different variant at swarm size 150
Fig 3: variation of costs for different variant at swarm size 170
Fig. 4: Variation of costs for different variant at swarm size 190
Multi-objective optimization of water distribution system using particle swarm optimization
DOI: 10.9790/1684-12612128 www.iosrjournals.org 26 | Page
Fig. 5: Variation of costs for different variant at swarm size 210
Fig. 6: Variation of costs for different variant at swarm size 230
Multi-objective optimization of water distribution system using particle swarm optimization
DOI: 10.9790/1684-12612128 www.iosrjournals.org 27 | Page
Fig. 7: Variation of costs for different variant at swarm size 250
Table 2: Highest and lowest values of optimised cost at different inertia weight functions
Table 3: Highest and lowest values of optimised cost at different swarm size
Swarm
size Energy cost (Rs. in Lakhs) Pipe cost (Rs. in Lakhs) Total cost(Rs. in Lakhs)
Highest Lowest Difference
(%)
Highest Lowest Difference
(%)
Highest Lowest Difference
(%)
150 45.47 45.01 1.02 37.50 35.64 5.21 82.51 80.65 2.31
170 48.99 45.31 8.12 36.88 34.10 8.15 83.95 79.85 5.13
190 45.14 45.01 0.29 37.14 35.35 5.06 82.15 80.47 2.09
210 45.36 45.01 0.78 38.76 35.49 9.21 83.77 80.85 3.61
230 45.75 45.01 1.64 36.06 34.73 3.82 81.16 79.97 1.49
250 45.62 45.01 1.36 36.83 34.95 5.37 81.94 80.17 2.21
Standard
deviation
2.93 2.07 1.33
Inertia weight
function
Energy cost (Rs. in Lakhs) Pipe cost (Rs. in Lakhs) Total cost (Rs. in Lakhs)
Highest Lowest Difference
(%)
Highest Lowest Difference
(%)
Highest Lowest Difference
(%)
Constant 45.75 45.01 1.64 37.89 34.84 8.75 83.1 80.59 3.11
Random 47.19 45.01 4.84 36.92 34.10 8.27 82.06 80.65 1.75
Linear
decreasing
45.36 45.01 0.78 35.88 34.86 2.93 80.86 80.07 0.99
Logarithmic 48.99 45.01 8.84 39.47 34.96 12.90 83.95 80.98 3.67
Natural
exponent
strategy e-1
45.47 45.01 1.02 36.28 34.71 4.52 81.84 79.98 2.33
Natural
exponent
strategy e-2
45.42 45.01 0.91 36.47 34.43 5.93 81.85 79.85 2.50
Simulated
annealing
47.56 45.01 5.67 39.77 34.53 15.18 82.49 80.58 2.37
Time varying 45.36 45.01 0.78 35.88 34.86 2.93 80.89 80.07 1.02
Multi-objective optimization of water distribution system using particle swarm optimization
DOI: 10.9790/1684-12612128 www.iosrjournals.org 28 | Page
VII. Conclusions
It is observed from the results of optimization of pipe network that total cost and pipe cost are
affected by both swarm size and PSO variant. The optimized lowest cost energy of is nearly independent of
swarm size and weight function. The capitalized energy cost over the design period is more than pipe cost and
affect the optimization to large extent. The minimum optimized cost of energy is Rs.45.01Lakhs at all weight
function and swarm size except swarm size 170 but optimized cost of pipe is Rs.34.10 Lakhs for swarm size
170 and random weight function . The minimum optimized total cost is Rs.79.85 Lakhs at swarm size 170 and
natural exponent strategy e-2 weight function. The for maximum difference of 9.21% between highest and
lowest optimized cost is seen for the pipe cost while the minimum difference 0.29% is there for energy cost.
The swarm size and weight function to be chosen for optimization will depend on the size of network.
Notations:
Ep - Unit energy cost (Rs.)
Hk - Head available at each junction
Hmin
-
Minimum required head at every junction
K - Total no. of junctions
hf - Head loss (m)
f - Friction factor
L - Length of the pipe (m)
V - Velocity in the pipe (m/s)
D - Diameter of the pipe (m)
r - Rate of interest
T - Design period (Years)
Y - Staging of over head tank(m)
References
[1]. Yunus A. Cengel. And John M. Cimbala, Fluid mechanics, fundamental and applications, Mc Graw hill publications, New
Delhi.2014.
[2]. Jinesh K. S. Babu and D.P .Vijayalakshmi , Self adaptive PSO-GA hybrid model for combinatorial water distribution network
design, Journal of pipeline systems engineering and practice,volume-4(1),2013, 57-67.
[3]. M.H. Afasher and M.A.Marino, A convergent genetic algorithm for pipe network optimization, Scientia Iranica, volume 12(4),
2005, 392-401.
[4]. Z.Y. WU and A.R. Simpson, competent genetic evolutionary optimization of water distribution system, Journal of computing in
civil engineering, volume 15(2), 2001, 89-101.
[5]. Edward Keedwell and Khu Soon Thiam, A hybrid genetic algorithm for the design of water distribution networks, Engineering
applications of artificial intelligence, volume 18, 2004, 461-472.
[6]. Jagdish Chand Bansal and Kusum Deep, Optimal design of water distribution networks via particle swarm optimization”, IEEE
International advance computing conferece,2009,1314-1316
[7]. J. C, Bansal P.K Singh, Mukesh Saraswat , Abhishek Verma , Jodan shimpi Singh and Ajith Abraham, Inertia weight strategies in
particle swarm optimization, Proceedings of Third World Congress on Nature and Biologically Inspired 978-1-4577-1123-
7/11,2011, 640-647.
[8]. Minakshi Shrivastava, Ruchi Khare and Vishnu Prasad ,Effect of pressure dependent demand on pipe network analysis: A case
study, International Journal of Engineering Science and Technology, volume 6(1), 2014, 7-12.
[9]. J. Izquierdoa, I. Montalvob, R. Pérez- Garcíaa, E. Campbella , 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,2014, 864-871.
[10]. Amita Mahor, Vishnu Prasad, Saroj Rangnekar, Economic dispatch using particle swarm optimization: A review, Renewable and
sustainable energy reviews, volume 13, 2009, 2134-2141.
[11]. Minakshi Shrivastava, Vishnu Prasad and Ruchi Khare, Effect of inertia weight functions of PSO in optimization of water
distribution network, International journal of advanced research in engineering and technology ,volume 6(5), 2015, 43-51
ISSN:6480.
[12]. Delhi Schedule of rates, 2014.
[13]. Plinth area rates, 2012, CPWD
[14]. Kirloshkar pump manual.
[15]. Manual on water supply and treatment, Published by central public health and environmental engineering organization, Ministry
of urban development, Third edition.1991.

More Related Content

PDF
Cost optimization of pipeline systems using genetic algorithm
PDF
Capacitor Placement and Reconfiguration of Distribution System with hybrid Fu...
PDF
Cost Aware Expansion Planning with Renewable DGs using Particle Swarm Optimiz...
PDF
Optimizing location and size of capacitors for power loss reduction in radial...
PDF
Seismic vulnerability of hydrogen pipelines
PDF
Multi Objective Directed Bee Colony Optimization for Economic Load Dispatch W...
PDF
HYDROTHERMAL COORDINATION FOR SHORT RANGE FIXED HEAD STATIONS USING FAST GENE...
PDF
Evaluation of Morphometric Parameters Derived from CartoDEM and Aster GDEM wi...
Cost optimization of pipeline systems using genetic algorithm
Capacitor Placement and Reconfiguration of Distribution System with hybrid Fu...
Cost Aware Expansion Planning with Renewable DGs using Particle Swarm Optimiz...
Optimizing location and size of capacitors for power loss reduction in radial...
Seismic vulnerability of hydrogen pipelines
Multi Objective Directed Bee Colony Optimization for Economic Load Dispatch W...
HYDROTHERMAL COORDINATION FOR SHORT RANGE FIXED HEAD STATIONS USING FAST GENE...
Evaluation of Morphometric Parameters Derived from CartoDEM and Aster GDEM wi...

What's hot (17)

PPTX
Final presentation (2)
PDF
CFD investigation of coal gasification: Effect of particle size
PDF
Optimization techniques for water supply network a critical review
PDF
A MULTIPURPOSE MATRICES METHODOLOGY FOR TRANSMISSION USAGE, LOSS AND RELIABIL...
PDF
Cost Optimal Design of a Single-Phase Dry Power Transformer
PDF
E NERGY D EGREE D ISTANCE C LUSTERING A LGORITHM FOR W Sns
PPTX
Garg_Nitin_Poster
PDF
International Journal of Engineering Research and Development (IJERD)
PDF
An Effectively Modified Firefly Algorithm for Economic Load Dispatch Problem
PDF
Electric potential energy fractal dimension for characterizing permo carbonif...
PDF
Laboratory Assessment of Energy Efficiency in Vibraotry Compaction of Granula...
PDF
MINIATURIZATION OF BRANCH-LINE COUPLERS USING OPEN STUBS AND STEPPED IMPEDANC...
PDF
Multi Area Economic Dispatch Using Secant Method and Tie Line Matrix
PDF
https:::arxiv.org:pdf:2105.13813.pdf
PDF
Capacitor Placement Using Bat Algorithm for Maximum Annual Savings in Radial ...
PDF
Determining optimal location and size of capacitors in radial distribution ne...
PDF
techTransmission usage and cost allocation using shapley value and tracing me...
Final presentation (2)
CFD investigation of coal gasification: Effect of particle size
Optimization techniques for water supply network a critical review
A MULTIPURPOSE MATRICES METHODOLOGY FOR TRANSMISSION USAGE, LOSS AND RELIABIL...
Cost Optimal Design of a Single-Phase Dry Power Transformer
E NERGY D EGREE D ISTANCE C LUSTERING A LGORITHM FOR W Sns
Garg_Nitin_Poster
International Journal of Engineering Research and Development (IJERD)
An Effectively Modified Firefly Algorithm for Economic Load Dispatch Problem
Electric potential energy fractal dimension for characterizing permo carbonif...
Laboratory Assessment of Energy Efficiency in Vibraotry Compaction of Granula...
MINIATURIZATION OF BRANCH-LINE COUPLERS USING OPEN STUBS AND STEPPED IMPEDANC...
Multi Area Economic Dispatch Using Secant Method and Tie Line Matrix
https:::arxiv.org:pdf:2105.13813.pdf
Capacitor Placement Using Bat Algorithm for Maximum Annual Savings in Radial ...
Determining optimal location and size of capacitors in radial distribution ne...
techTransmission usage and cost allocation using shapley value and tracing me...
Ad

Similar to Multi-objective optimization of water distribution system using particle swarm optimization (20)

PDF
Effect of inertia weight functions of pso in optimization of water distributi...
PDF
Effect of inertia weight functions of pso in optimization of water distributi...
PDF
Effect of inertia weight functions of pso in optimization of water distributi...
PDF
Optimizing pumping rate in pipe networks supplied by groundwater sources
PDF
A suggestion of optimization process for water pipe networks design
PDF
EFFECT OF DIMPLES ON FLOW PERFORMANCE OF ENHANCED SURFACE TUBES
PDF
International Journal of Computational Engineering Research(IJCER)
DOCX
RESEARCH PAPER ARPIT
DOCX
Optimal design of storm sewer networks
PDF
Numerical flow simulation using star ccm+
PDF
06 3
PDF
IRJET- An Investigation of Axial Hydrofoil Tidal Turbine
PDF
Optimization of Closure Law of Guide Vanes for an Operational Hydropower Plan...
PDF
Cost Optimization of Elevated Circular Water Storage Tank
PDF
Cost Optimization of Elevated Circular Water Storage Tank
PDF
Ijariie1181
PDF
Distribution network reconfiguration for loss reduction using PSO method
PDF
NUMERICAL SIMULATION OF FLOW INSIDE THE SQUARE CAVITY
PDF
30120140505001 2
PDF
EFFECT OF DIFFUSER LENGTH ON PERFORMANCE CHARACTERISTICS OF ELBOW DRAFT TUBE ...
Effect of inertia weight functions of pso in optimization of water distributi...
Effect of inertia weight functions of pso in optimization of water distributi...
Effect of inertia weight functions of pso in optimization of water distributi...
Optimizing pumping rate in pipe networks supplied by groundwater sources
A suggestion of optimization process for water pipe networks design
EFFECT OF DIMPLES ON FLOW PERFORMANCE OF ENHANCED SURFACE TUBES
International Journal of Computational Engineering Research(IJCER)
RESEARCH PAPER ARPIT
Optimal design of storm sewer networks
Numerical flow simulation using star ccm+
06 3
IRJET- An Investigation of Axial Hydrofoil Tidal Turbine
Optimization of Closure Law of Guide Vanes for an Operational Hydropower Plan...
Cost Optimization of Elevated Circular Water Storage Tank
Cost Optimization of Elevated Circular Water Storage Tank
Ijariie1181
Distribution network reconfiguration for loss reduction using PSO method
NUMERICAL SIMULATION OF FLOW INSIDE THE SQUARE CAVITY
30120140505001 2
EFFECT OF DIFFUSER LENGTH ON PERFORMANCE CHARACTERISTICS OF ELBOW DRAFT TUBE ...
Ad

More from iosrjce (20)

PDF
An Examination of Effectuation Dimension as Financing Practice of Small and M...
PDF
Does Goods and Services Tax (GST) Leads to Indian Economic Development?
PDF
Childhood Factors that influence success in later life
PDF
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...
PDF
Customer’s Acceptance of Internet Banking in Dubai
PDF
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...
PDF
Consumer Perspectives on Brand Preference: A Choice Based Model Approach
PDF
Student`S Approach towards Social Network Sites
PDF
Broadcast Management in Nigeria: The systems approach as an imperative
PDF
A Study on Retailer’s Perception on Soya Products with Special Reference to T...
PDF
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...
PDF
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
PDF
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...
PDF
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...
PDF
Media Innovations and its Impact on Brand awareness & Consideration
PDF
Customer experience in supermarkets and hypermarkets – A comparative study
PDF
Social Media and Small Businesses: A Combinational Strategic Approach under t...
PDF
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...
PDF
Implementation of Quality Management principles at Zimbabwe Open University (...
PDF
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...
An Examination of Effectuation Dimension as Financing Practice of Small and M...
Does Goods and Services Tax (GST) Leads to Indian Economic Development?
Childhood Factors that influence success in later life
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...
Customer’s Acceptance of Internet Banking in Dubai
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...
Consumer Perspectives on Brand Preference: A Choice Based Model Approach
Student`S Approach towards Social Network Sites
Broadcast Management in Nigeria: The systems approach as an imperative
A Study on Retailer’s Perception on Soya Products with Special Reference to T...
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...
Media Innovations and its Impact on Brand awareness & Consideration
Customer experience in supermarkets and hypermarkets – A comparative study
Social Media and Small Businesses: A Combinational Strategic Approach under t...
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...
Implementation of Quality Management principles at Zimbabwe Open University (...
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...

Recently uploaded (20)

PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PDF
Well-logging-methods_new................
PDF
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPTX
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PDF
PPT on Performance Review to get promotions
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
PPTX
Geodesy 1.pptx...............................................
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
Fundamentals of Mechanical Engineering.pptx
PDF
PREDICTION OF DIABETES FROM ELECTRONIC HEALTH RECORDS
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PPTX
Sustainable Sites - Green Building Construction
PPT
introduction to datamining and warehousing
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PPT
Mechanical Engineering MATERIALS Selection
PPTX
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
Well-logging-methods_new................
null (2) bgfbg bfgb bfgb fbfg bfbgf b.pdf
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PPT on Performance Review to get promotions
Automation-in-Manufacturing-Chapter-Introduction.pdf
Geodesy 1.pptx...............................................
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
Internet of Things (IOT) - A guide to understanding
Fundamentals of Mechanical Engineering.pptx
PREDICTION OF DIABETES FROM ELECTRONIC HEALTH RECORDS
R24 SURVEYING LAB MANUAL for civil enggi
Sustainable Sites - Green Building Construction
introduction to datamining and warehousing
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
Mechanical Engineering MATERIALS Selection
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx

Multi-objective optimization of water distribution system using particle swarm optimization

  • 1. IOSR Journal of Mechanical and Civil Engineering (IOSR-JMCE) e-ISSN: 2278-1684,p-ISSN: 2320-334X, Volume 12, Issue 6 Ver. I (Nov. - Dec. 2015), PP 21-28 www.iosrjournals.org DOI: 10.9790/1684-12612128 www.iosrjournals.org 21 | Page Multi-objective optimization of water distribution system using particle swarm optimization Minakshi Shrivatava1 , Dr. Vishnu Prasad2 , Dr. Ruchi Khare3 1, 2, 3 (Department of Civil Engineering, M.A. National institute of technology Bhopal- 462003, India) Abstract: The cost of water distribution system includes cost of pipes, pumping system, civil works and pumping energy. Out of these, cost of civil works and pumping system are nearly fixed for any specific water supply project. The cost of pipes and pumping energy are variable and can be minimized by suitable selection of pipe size, material of pipes and staging of elevated service reservoir. In the present work, the cost of pipes and energy have been optimized using Particle Swarm Optimization (PSO) method for a water supply system having large pipe network. In addition to this, the effect of swarm size and different inertia weights of PSO is also studied on the optimized cost of the system. Key words: Water supply system, Particle swarm optimization, Inertia weight function I. Introduction Water is a vital commodity for all living beings on earth surface next to air [15]. Therefore water supply systems are the most important public utility for safe supply of potable water. To supply the adequate amount of water at desired pressure with minimum cost is a big challenge for researchers. The pipe and energy cost involved in the water supply contribute major share of any water supply project [7]. These two cost are variable and depend on the commercial pipe sizes, pipe material available and the staging of service reservoir. Many investigators have worked on the minimization of pipe cost taking constant height of reservoir. In this process, the pipes sizes selected for optimization may not be hydraulically efficient. The pipes selected may be either oversized or undersized to give minimum cost. Various deterministic as well as stochastic methods have been used for optimization of water distribution system [3]. Literature reveals that stochastic method are faster and gives good results for optimizing water distribution system.[1] Particle swarm optimization is one of the best stochastic techniques for optimizing water distribution system as it has very simple features and has very fast rate of convergence. It is developed by James Kennedy and Russell Eberhart in 1995[2]. The inertia weighted function ‘w’ is very important parameter in PSO [5, 6]. In the present work, height of service reservoir is also minimized along with pipe cost after putting constraints on hydraulic gradient. It is seen that most of optimization of pipe network using PSO has been done using a single inertia weight function. The effect of different inertia weights on network optimization has also been presented in this paper. A computer program has been developed for the optimisation of network and analysis has been done by finite element method. The code developed is validated with existing optimised network given in literature with fixed tank staging and results are closely matching. II. Problem formulation The optimisation has been achieved by minimisation of pipe cost as well as energy cost by minimising height of service reservoir using following two objective functions: 2.1 Minimization of pipe cost: The commercially available ductile iron pipes are used in design of network and objective function for minimization of pipe cost is:     mi i ii DLCZMin 1 1 ),( (1) 2.2 Minimization of energy cost: The pumping energy required to lift water to service reservoir depends on height of service reservoir for specific flow rate and annual energy cost is given by
  • 2. Multi-objective optimization of water distribution system using particle swarm optimization DOI: 10.9790/1684-12612128 www.iosrjournals.org 22 | Page 1000/3652 p TEQYMinZ  (2) In this equation, the energy cost minimized by optimizing the staging of service reservoir ‘Y’. The present worth of optimized energy cost for the design period of 20 years is computed using annuity method as: t t r r r Z Z )1( 1)1(2 3    (3) 2.3 Constraints and bounds: 2.3.1 Constraint 1: Diameter constraint The commercial pipe sizes are to be used in network design optimization and the diameter chosen for design of network must be commercially available. Hence Dj Є [Dk] (4) where Dk is the diameter of commercial available pipe set. 2.3.2 Constraint 2: Head constraint Head at each junction must be greater than the minimum head required at each junction. Hk ≥ Hmin (5) 2.3.3 Constraint 3: Reservoir height The staging of elevated reservoir must be within the minimum and maximum specified heights of reservoir Ymin ≤ Y ≤ Ymax (6) III. Partical swarm optimization Partical swarm optimization is Meta heuristic technique for optimization. It is developed by James Kennedy and Russell Eberhart in 1995 [10]. After each iteration, the objective function is evaluated and pbest and gbest are updated to move towards optimal solution. In this method the initially swarm sizes are generated randomly. 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 7 and equation 8.[8]. vi(t+1) = w*vi(t) +C1*R1*(pbest- xi(t))+C2*R2*(gbest- xi(t)) (7) xi(t+1) = xi(t)+ vi(t+1) (8) Where C1 and C2 are the positive constants termed as cognitive learning rate and social learning rate respectively and accelerate the particle towards the optimal solution. It is found from the literature that C1=C2=2 gives the best results for optimization and same is taken for in present work. 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 size. ‘w’ is the inertia weight function.[4] The different form of inertial weight functions used in PSO are tabulated in Table -1.
  • 3. Multi-objective optimization of water distribution system using particle swarm optimization DOI: 10.9790/1684-12612128 www.iosrjournals.org 23 | Page Table 1: Different inertia weight functions of PSO [6,11] S. No. Inertia weight function Function Equation 1 Constant inertia weight ω1=.7 2 Random inertia weight 1 (1) .5 2 ra n d w   3 Linear decreasing inertia weight ( w - w ) m a x m in w = - [ ] itera tio nw m a x1 m a xitera tio n  4 Logarithmic inertia weight 1 1 .5 (1 ) 1 lo g ( ) w itera tio n     5. Natural exponent inertia weight strategy e-1 m a x 1 0 ( ) . e1 m in m a x m in ite r ite r a tio n w w w w                      6 Natural exponent inertia weight strategy e2 2 m a x 4 ( ) . e1 m i n m a x m i n i t e r i t e r a t i o n w w w w                            7. Simulated annealing inertia weight 1 m in m ax m in ( ) ^ ( 1)w w w w iter     Here ƛ = 0.95 8. Time varying inertia weight (m a x ) [( ) ] 1 m a x m in m inm a x ite r a tio n ite r w w w w ite r a tio n     IV. Network design data A residential colony developed in Bhopal, Madhya Pradesh, India with plot size 1000-1200 sqft. is taken for optimization. There is 3 floor building on each plot. The demand for network has been computed for 4 people per floor. The per capita demand per day is taken 150 liters. The ductile iron pipes are to be used for network. The layout of pipes is shown in fig.1. The complete network consists of 107 pipes and 75 nodes. The minimum head to be maintained at each junction is 17 m. Total supply hour is taken as 6 hours and pumping is done for 16 hours. The total length of pipes of network is 3796 m. Fig1: Water distribution network .
  • 4. Multi-objective optimization of water distribution system using particle swarm optimization DOI: 10.9790/1684-12612128 www.iosrjournals.org 24 | Page V. Computational procedure i. Input network parameters like pipe length, junction demand and elevation, commercial pipe sizes, cost, design period and rate of interest, unit energy cost. ii. Choose the swarm size and generation random number for diameter of pipes between given range of commercially available pipe diameter set. iii. Replace the random number to nearest commercial pipe diameter by considering the permissible hydraulic gradient. iv. Carry out network analysis by finite element method. v. Find out pbest, gbest and fitness cost. vi. Update the tank height. vii. Update diameter set. viii. Repeat steps (iii) to (viii) till the solution converges to specified accuracy for pbest, gbest and reservoir staging for all inertia weights of PSO and gives same optimized cost for at least 60 iterations. The commercial ductile iron pipes used in present network optimization are 100mm, 125mm, 150mm, 200mm, 250mm, 300mm, 350mm, 400mm, 450mm, 500mm and their corresponding unit costs are Rs.775, Rs.948, Rs.1120, Rs.1550, Rs.2100, Rs.2900, Rs.2900, Rs.3445, Rs.4015, Rs.4853, 5753[13]. The design period, rate of interest and unit energy cost are taken as 20 years, 10 % and Rs.5 respectively. VI. Result and discussions The analysis has been carried out for 6 swarm size ranging from 150 to 250 at interval of 20 for 8 different inertia weight function of PSO. The optimized cost of pipes, energy and sum of these two cost as total cost are presented in form of bar chart for different swarm size in fig.2 to fig.7. It is observed from the minimum cost obtained with different swarm size and inertia weight functions that the ratio of average energy cost to pipe cost is about 45:35. It indicates that energy cost minimization is more important for economic design of pipe network however the energy cost is also dependent on the energy charges and rate of interest and design period. It is seen from the cost variation in fig.2 to fig.7 that minimum energy cost is nearly same and found to be independent of weight function and swarm size. The lowest value of minimum cost achieved is Rs.45.01 lakhs for 5 swarm size and weight functions and highest value is Rs.45.31 lakhs at swam size 170 (fig.3) and constant weight functions. The maximum difference between the optimized energy cost from different inertia weight functions and swarm size is 8.12% at swarm size 170 while minimum difference is 0.29% at swam size 190. The overall standard deviation is 2.93 There is large variation in the minimum pipe cost obtained from optimization for different swarm size and weight functions. The highest value of optimized pipe cost is Rs.38.76 lakhs at 210 swarm size for logarithmic weight function (fig.5) while lowest cost is Rs.34.10 lakhs at swarm size 170 and random weight function (fig.3). The maximum difference between highest and lowest minimum cost is 9.21% at swarm size 210 and minimum difference is 3.82% at swarm size 230 with overall standard deviation of 2.07. The minimum optimized total cost is again achieved at swarm size and weight functions other than where minimum optimized pipe and energy cost is obtained. The highest value of minimum cost is Rs.83.95 lakhs for logarithmic weight function at swam size 170, while lowest value is Rs.79.85 lakhs for natural exponent e-1 weight function at same swarm size 170 (Fig.3). The percentage variations in highest and lowest optimized cost at different weight function and swarm size are 5.13 % and 1.49 % respectively. The standard deviation of the percentage cost variation is 1.33.
  • 5. Multi-objective optimization of water distribution system using particle swarm optimization DOI: 10.9790/1684-12612128 www.iosrjournals.org 25 | Page Fig 2: Variation of costs for different variant at swarm size 150 Fig 3: variation of costs for different variant at swarm size 170 Fig. 4: Variation of costs for different variant at swarm size 190
  • 6. Multi-objective optimization of water distribution system using particle swarm optimization DOI: 10.9790/1684-12612128 www.iosrjournals.org 26 | Page Fig. 5: Variation of costs for different variant at swarm size 210 Fig. 6: Variation of costs for different variant at swarm size 230
  • 7. Multi-objective optimization of water distribution system using particle swarm optimization DOI: 10.9790/1684-12612128 www.iosrjournals.org 27 | Page Fig. 7: Variation of costs for different variant at swarm size 250 Table 2: Highest and lowest values of optimised cost at different inertia weight functions Table 3: Highest and lowest values of optimised cost at different swarm size Swarm size Energy cost (Rs. in Lakhs) Pipe cost (Rs. in Lakhs) Total cost(Rs. in Lakhs) Highest Lowest Difference (%) Highest Lowest Difference (%) Highest Lowest Difference (%) 150 45.47 45.01 1.02 37.50 35.64 5.21 82.51 80.65 2.31 170 48.99 45.31 8.12 36.88 34.10 8.15 83.95 79.85 5.13 190 45.14 45.01 0.29 37.14 35.35 5.06 82.15 80.47 2.09 210 45.36 45.01 0.78 38.76 35.49 9.21 83.77 80.85 3.61 230 45.75 45.01 1.64 36.06 34.73 3.82 81.16 79.97 1.49 250 45.62 45.01 1.36 36.83 34.95 5.37 81.94 80.17 2.21 Standard deviation 2.93 2.07 1.33 Inertia weight function Energy cost (Rs. in Lakhs) Pipe cost (Rs. in Lakhs) Total cost (Rs. in Lakhs) Highest Lowest Difference (%) Highest Lowest Difference (%) Highest Lowest Difference (%) Constant 45.75 45.01 1.64 37.89 34.84 8.75 83.1 80.59 3.11 Random 47.19 45.01 4.84 36.92 34.10 8.27 82.06 80.65 1.75 Linear decreasing 45.36 45.01 0.78 35.88 34.86 2.93 80.86 80.07 0.99 Logarithmic 48.99 45.01 8.84 39.47 34.96 12.90 83.95 80.98 3.67 Natural exponent strategy e-1 45.47 45.01 1.02 36.28 34.71 4.52 81.84 79.98 2.33 Natural exponent strategy e-2 45.42 45.01 0.91 36.47 34.43 5.93 81.85 79.85 2.50 Simulated annealing 47.56 45.01 5.67 39.77 34.53 15.18 82.49 80.58 2.37 Time varying 45.36 45.01 0.78 35.88 34.86 2.93 80.89 80.07 1.02
  • 8. Multi-objective optimization of water distribution system using particle swarm optimization DOI: 10.9790/1684-12612128 www.iosrjournals.org 28 | Page VII. Conclusions It is observed from the results of optimization of pipe network that total cost and pipe cost are affected by both swarm size and PSO variant. The optimized lowest cost energy of is nearly independent of swarm size and weight function. The capitalized energy cost over the design period is more than pipe cost and affect the optimization to large extent. The minimum optimized cost of energy is Rs.45.01Lakhs at all weight function and swarm size except swarm size 170 but optimized cost of pipe is Rs.34.10 Lakhs for swarm size 170 and random weight function . The minimum optimized total cost is Rs.79.85 Lakhs at swarm size 170 and natural exponent strategy e-2 weight function. The for maximum difference of 9.21% between highest and lowest optimized cost is seen for the pipe cost while the minimum difference 0.29% is there for energy cost. The swarm size and weight function to be chosen for optimization will depend on the size of network. Notations: Ep - Unit energy cost (Rs.) Hk - Head available at each junction Hmin - Minimum required head at every junction K - Total no. of junctions hf - Head loss (m) f - Friction factor L - Length of the pipe (m) V - Velocity in the pipe (m/s) D - Diameter of the pipe (m) r - Rate of interest T - Design period (Years) Y - Staging of over head tank(m) References [1]. Yunus A. Cengel. And John M. Cimbala, Fluid mechanics, fundamental and applications, Mc Graw hill publications, New Delhi.2014. [2]. Jinesh K. S. Babu and D.P .Vijayalakshmi , Self adaptive PSO-GA hybrid model for combinatorial water distribution network design, Journal of pipeline systems engineering and practice,volume-4(1),2013, 57-67. [3]. M.H. Afasher and M.A.Marino, A convergent genetic algorithm for pipe network optimization, Scientia Iranica, volume 12(4), 2005, 392-401. [4]. Z.Y. WU and A.R. Simpson, competent genetic evolutionary optimization of water distribution system, Journal of computing in civil engineering, volume 15(2), 2001, 89-101. [5]. Edward Keedwell and Khu Soon Thiam, A hybrid genetic algorithm for the design of water distribution networks, Engineering applications of artificial intelligence, volume 18, 2004, 461-472. [6]. Jagdish Chand Bansal and Kusum Deep, Optimal design of water distribution networks via particle swarm optimization”, IEEE International advance computing conferece,2009,1314-1316 [7]. J. C, Bansal P.K Singh, Mukesh Saraswat , Abhishek Verma , Jodan shimpi Singh and Ajith Abraham, Inertia weight strategies in particle swarm optimization, Proceedings of Third World Congress on Nature and Biologically Inspired 978-1-4577-1123- 7/11,2011, 640-647. [8]. Minakshi Shrivastava, Ruchi Khare and Vishnu Prasad ,Effect of pressure dependent demand on pipe network analysis: A case study, International Journal of Engineering Science and Technology, volume 6(1), 2014, 7-12. [9]. J. Izquierdoa, I. Montalvob, R. Pérez- Garcíaa, E. Campbella , 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,2014, 864-871. [10]. Amita Mahor, Vishnu Prasad, Saroj Rangnekar, Economic dispatch using particle swarm optimization: A review, Renewable and sustainable energy reviews, volume 13, 2009, 2134-2141. [11]. Minakshi Shrivastava, Vishnu Prasad and Ruchi Khare, Effect of inertia weight functions of PSO in optimization of water distribution network, International journal of advanced research in engineering and technology ,volume 6(5), 2015, 43-51 ISSN:6480. [12]. Delhi Schedule of rates, 2014. [13]. Plinth area rates, 2012, CPWD [14]. Kirloshkar pump manual. [15]. Manual on water supply and treatment, Published by central public health and environmental engineering organization, Ministry of urban development, Third edition.1991.