SlideShare uma empresa Scribd logo
1 de 10
Baixar para ler offline
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-
6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME
485
COST OPTIMIZATION OF PIPELINE SYSTEMS USING GENETIC
ALGORITHM
Palak Sharma, Shelza, Gurjit Singh Randhawa, Rajinder Singh Virk
Department of Computer Science & Engineering,
Guru Nanak Dev University, Amritsar, India.
ABSTRACT
The aim of this paper is optimization of cost of irrigation networks using genetic algorithms.
The genetic algorithm presented in this paper tries to find layout of irrigation network that incurs
minimum cost by optimizing diameters of pipes. Along with that, algorithm is implemented. The
method starts with a predefined network layout, which include all links and then tries to optimize
pipe diameter. In this paper GA has been used to solve pipe network problem in steady state,
considering all constraints like head requirements.
Keywords: Genetic Algorithm, Irrigation Network, Optimization, Pipeline System
1. INTRODUCTION
Pipe networks are essential almost everywhere, like for gas, sewer, irrigation, etc. The cost of
construction of these networks is very high. So, a decrease in cost can lead to a huge saving.
Optimization of pipe network cost involves analysis of hydraulic, quality requirements. Optimization
techniques used can be deterministic or stochastic. Deterministic techniques include linear, non-
linear techniques and dynamic programming, and the stochastic techniques include simulated
annealing and genetic algorithms. Deterministic techniques always guarantee an optimal solution but
need the system to satisfy a number of constraints, which is difficult to achieve in an irrigation
system. So, genetic algorithms are used, which always try to optimize the objective function and can
produce acceptable near optimal or near optimal solution in comparatively lesser time.
2. PROBLEM DEFINITION
When designing or rehabilitating a water distribution system using trial-and-error methods or
with formal optimization tools, a broad range of concerns can be considered. Cost is likely to be the
INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING &
TECHNOLOGY (IJCET)
ISSN 0976 – 6367(Print)
ISSN 0976 – 6375(Online)
Volume 4, Issue 4, July-August (2013), pp. 485-494
© IAEME: www.iaeme.com/ijcet.asp
Journal Impact Factor (2013): 6.1302 (Calculated by GISI)
www.jifactor.com
IJCET
© I A E M E
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-
6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME
486
primary emphasis and includes the costs for construction, operation, and maintenance. The initial
capital investment is for system components: pipes, pumps, tanks, and valves. Energy consumption
occurs over time to operate the system. The main constraints are that the desired demands are
supplied with adequate pressure head being maintained at withdrawal locations. Also, the flow of
water in a distribution network and the nodal pressure heads must satisfy the governing laws of
conservation of energy and mass. In summary, the problem can be verbally stated as: Minimize
capital investment plus energy costs, subject to:
• Meeting hydraulic constraints,
• Fulfilling water demands and
• Satisfying pressure requirements
3. COST AND CONSTRAINTS IN A PIPELINE NETWORK
Pipeline system design problem taken in this paper is solved by optimizing the pipe diameter.
The cost of system is subject to minimization by optimizing pipe diameter. The main objective of
minimizing cost is achieved by optimizing pipe diameter under steady state flow constraints.
The total network cost [4] is given by:
Subject to
Where, TC= total cost of network
Li= Length of ith
pipe in meter
Ci(di)= Cost per unit length for that diameter of ith
pipe in Rs.
n = total no. of pipes in network
α = penalty parameter in Rs.
HAj = Head available at jth
node in meter
k = total no. of outlets in network
HRj = Head required at jth
node in meter = (1.1*f*Li*Qi
2
)/(3*d5
A)
f = Friction constant
Qi = Discharge required in ith
outlet in lps
di = diameter of ith
pipe in meter
dA= commercially available diameter in meter
Head Loss:
Head loss is the measure of the reduction in the total head of the liquid as it moves through a
system. The total head is the sum of the elevation head, velocity head and pressure head, where
Pressure head is a term used in fluid mechanics to represent the internal energy of a fluid due to
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-
6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME
487
the pressure exerted on its container. It is usually expressed as:
Where, p is fluid pressure, ρ is density of fluid and g is acceleration due to gravity
The elevation head is energy possessed by a liquid due its height above some reference level
and velocity head is because of bulk motion of fluid. Head losses in a pipe system are unavoidable
and are present because of friction between fluid and walls of pipes and are present between fluid
particles as they move along the pipe. Head loss in a pipe is directly proportional to length of pipe.
The minimization of objective function [1] is most of times subject to:
(a) Mass balance constraint:
Where, Qj represents the discharges into or out of the node j.
(b) Energy balance constraint:
……… (6)
The conservation of energy states that the total head loss around any loop must equal to zero
or is equal to the energy delivered by a pump p, E, if there is any. The head loss due to friction in a
pipe hf is expressed by the Hazen-William formula:
Where, Qi is the pipe flow (ft3
/s), Di is pipe diameter (ft), Li is pipe length (ft) and Ci is the Hazen-
Williams coefficient.
(c) Decision variables constraint:
The design constraints (the pipe diameter bounds (maximum and minimum)) and the hydraulic
constraints are given respectively as:
Where, Di is the discrete pipe diameter selected from the set of commercially available pipe
sizes.
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-
6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME
488
4. DESIGN CONSIDEARTION
The Data required for pipe network is total number of links, irrigable area at each outlet,
discharge required at each outlet diameters of pipes, length of pipes, available head losses. The
network layout considered is shown in Fig. 1.
Fig 1: Network Layout
5. VARIOUS OPTIMIZATION METHODS
i. Branched network:
In branched networks, pipe systems are optimized using linear programming. Pipes are
broken into parts of different diameter and then pipe length of each diameter is optimized [3].
ii. Looped system via Linearization:
Iterative methods are applied by fixing pipes flow rate, after that optimizing the pipe size for
that flow and then updating the flow rate and then re- optimizing [3].
iii. Non linear Programming
Non linear programming (NLP) is the process of solving an optimization problem
defined by a system of equalities and inequalities, constraints, along with an objective function to be
maximized or minimized, where some of the constraints or the objective function are nonlinear.
According to this method, the minimal value of the pipe network is obtained from the minimal value
of the objective function by determining the optimal friction losses meeting the specific functional
and non negativity constraints [2,6].
iv. Stochastic Techniques
In case of stochastic optimization techniques, objective value is evaluated for a set of
solutions. New decision vectors are generated, based upon the objective values of previous solutions.
Genetic algorithms come under this category [3].
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-
6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME
489
6. PROPOSED GENETIC ALGORITHM APPROACH FOR COST OPTIMIZATION OF
IRRIGATION NETWORK
A genetic algorithm (GA) [5] is a search heuristic that mimics the process of natural
evolution. GA’s are based on Darwin’s principle of “survival of fittest”. GA’s use operators like
crossover for evolving solutions [7]. The brief idea of GA is to select population of initial solution
points scattered randomly in the optimized space, then converge to better solutions by applying in
iterative manner the following three processes ( reproduction / selection, crossover and mutation)
until a desired termination criteria is achieved [8].
The following sequences of steps are taken to apply GA for cost optimization of pipeline systems:
• Initial population generation:
For generating initial populations, first of all chromosomes are produced. The structure of
chromosome used for this problem is:
D1 D2 . . . Dn-1
Where, D1, D2, …, Dn-1 are diameters of pipes and n is number of pipes in system. So, length of
chromosome is taken as number of pipes in the network. By picking up random values from
commercially available diameter values, chromosomes are generated. The commercially available
diameter values are called allele values.
Fig 2: Chromosome representation
Chromosomes for a particular number of pipes and commercially available diameter values
are randomly generated as shown in Fig. 2. Input parameters are given as shown in Fig 3. Proposed
algorithm is implemented and tested with different population sizes and at the end population size is
taken as 6.
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-
6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME
490
Fig 3: Different Parameters Input
• Calculate initial cost:
After initial population generation, initial cost of network is calculated using the formula:
….. (9)
The initial cost is calculated on the basis of initial parameter values and using the same formula
system cost is calculated for all chromosomes.
• Check for constraints:
Penalty cost is added to system’s initial cost if system doesn’t meet all constraints.
• Calculate Fitness:
Fitness value of a chromosome is calculated as:
……… (10)
Where, fitness_valuei represents fitness value of ith
chromosome and costi, shows system cost for ith
chromosome.
• Selection:
Selection of chromosomes for mating pool is done by using roulette wheel selection method. A
chromosome is selected with probability:
... (11)
Where, selectioni stands for probability of selection of ith
chromosome.
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-
6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME
491
• Crossover:
One point crossover f is used to generate new population from chromosomes selected as parent in
mating pool. Crossover point is generated randomly which lies between 0 and length of
chromosome. Crossover probability for this problem is taken as 0.7.
• Mutation:
Mutation generally takes place because of some environmental changes. One or more bits of
chromosomes get changed with a very small probability. Mutation probability for this problem is
taken as 0.6.
• New population:
After crossover new population is generated and whole procedure is repeated for specific number of
generations.
• Termination and Results:
After a termination criterion (specific number of generations) is met, the algorithm is terminated to
obtain final fitness function value as cost of pipeline network. Fig. 4 shows cost reduction
improvement in final solution as compared to the initial solution.
Fig 4: Final Result obtained Show improvement in Cost Reduction
7. GENERAL OUTLINE OF PROPOSED APPROACH
The performance of the proposed system with time i.e. the effect of deviation in probability
of crossover and mutation on the number of generations required to generate final solution, as well as
the comparison of proposed genetic algorithm approach with available deterministic algorithms for
this problem has been studied. The results of these comparisons have been represented in form of
comparison charts.
The effect of deviation in crossover probability is analyzed, by keeping the population size,
number of generations and the mutation probability fixed at a certain value. The Fig. 5 shows that the
probability of crossover, pc, gives better results at a value pc= 0.6 to pc= 0.8. Hence, a crossover
probability of 0.7 has been chosen.
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-
6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME
492
Fig 5: Crossover Probability Deviation Graph
The effect of deviation in probability of mutation has been analyzed by keeping the size of
the population, the number of generations and the crossover probability fixed at a certain value. The
analysis graph in Fig. 6 shows that, the probability of mutation pm, gives optimal results at a value
pm= 0.4 to pm= 0.6. Thus for this problem, the mutation probability is chosen to be 0.6
Fig 6: Mutation Probability Deviation Graph
The effect on the number of generations has been analyzed with respect to the probability of
crossover and mutation, by keeping the population size fixed and varying the probability of
crossover and mutation from 0.1 to 1. The Fig. 7 shows that the near optimal results are achieved at
crossover probability, pc= 0.7 and mutation probability, pm= 0.6.
Fig 7: Effect on number of generations
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-
6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME
493
A comparative analysis of using proposed genetic algorithm approach and the other available
deterministic algorithms has been shown in Fig. 8. The graphical analysis shows that, the
performance of genetic algorithms up to the number of pipes in the network ≈ 4 increases slowly and
steadily. The deterministic search algorithms give better results up to the number of pipes in the
network < 4, as they take less time to obtain final optimal solution whereas, the genetic algorithms
take comparatively more time to reach at solution.
However, at the number of pipes in the network = 4, the performance of genetic algorithms
improves exponentially, as they show better results, taking less time to obtain the final result.
Whereas, the performance of deterministic algorithms deteriorates after this point as they take much
time to obtain final solution as the number of pipes increases in the network.
Hence, for this problem, where the numbers of pipes in the network are greater than or equal
to 4, the genetic algorithms have been chosen to provide near optimal results.
Fig 8: Comparison of Proposed GA Approach with Deterministic Algorithms
8. CONCLUSIONS
In this paper, cost of a pipeline network is achieved by using genetic algorithms. Pipe
diameter is used for encoding of parameters, as various types of losses like frictional losses etc.
depends on diameters. By randomly generating different layouts, cost of network can be calculated.
Cost of network gets reduced by a large factor after a specific number of generations. Comparative
analysis of proposed Genetic Algorithm approach with available deterministic algorithms shows that,
GA takes comparatively less time than deterministic approaches as number of pipes in the network
increases.
9. REFERENCES
[1] Berge Djebedjian, Mohamed S. Mohamed, Abdel-Gawad Mondy, and Magdy Abou Rayan,
“Cost optimization of water distribution systems subjected to water Hammer”, Thirteenth
International Water Technology Conference, IWTC13 2009, Hurghada, Egypt.
[2] Christos Tzimopoulos, Maria Sakellariou- Makrantonaki, Stavros Yannopoulos, and Ioannis
Meletiou, “Design of Branched Water Supply Networks Using Labye’s Method and Nonlinear
Programming Optimization Method”, Technical Educational Institution of Epirus, Dep. of
Crop Production, 47100 Arta, Greece.
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-
6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME
494
[3] Kevin E. Lansey, “Optimal Design of Water Distribution”, Department of Civil Engineering
and Engineering Mechanics, University of Arizona.
[4] Maya S. Kulkarni, K. A. Patil, “Optimization of Pipe Distribution Network for Irrigation by
Genetic Algorithm”, International Journal of Earth Sciences and Engineering ISSN 0974-
5904, Volume 04, No 06 SPL, October 2011, pp. 231-234.
[5] Tom V. Mathew, “Genetic Algorithm” Department of Civil Engineering, Indian Institute of
Technology Bombay.
[6] Jennifer P. L. Campbell and Nancy A. Day, “High-level optimization of pipeline design”,
IEEE High Level Validation and Test Workshop (HLDVT), San Francisco, California,
November 2003.
[7] Pratibha Bajpai et al., “Genetic Algorithm- an Approach to Solve Global Optimization
Problems”, Indian Journal of Computer Science and Engineering, 2010.
[8] David E. Goldberg, Genetic Algorithms in Search, Optimization and Machine Learning,
Pearson Education, Dorling Kindersley(India) Pvt. Ltd., Eighth impression, 2012.
[9] A.Raja Jeya Chandra Bose, Dr.T.R.Neelakantan and 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.
[10] Mahmoud Ali Refaey Eltoukhy, “Effect of Pipe Inclination on the Pipe Flow Head Losses for
Different Sand Concentrations”, International Journal of Civil Engineering & Technology
(IJCIET), Volume 4, Issue 3, 2013, pp. 45 - 56, ISSN Print: 0976 – 6308, ISSN Online:
0976 – 6316.

Mais conteúdo relacionado

Mais procurados

A MULTIPURPOSE MATRICES METHODOLOGY FOR TRANSMISSION USAGE, LOSS AND RELIABIL...
A MULTIPURPOSE MATRICES METHODOLOGY FOR TRANSMISSION USAGE, LOSS AND RELIABIL...A MULTIPURPOSE MATRICES METHODOLOGY FOR TRANSMISSION USAGE, LOSS AND RELIABIL...
A MULTIPURPOSE MATRICES METHODOLOGY FOR TRANSMISSION USAGE, LOSS AND RELIABIL...ecij
 
IEEE 2014 NS2 NETWORKING PROJECTS Proportional fair coding for wireless mesh...
IEEE 2014 NS2 NETWORKING PROJECTS  Proportional fair coding for wireless mesh...IEEE 2014 NS2 NETWORKING PROJECTS  Proportional fair coding for wireless mesh...
IEEE 2014 NS2 NETWORKING PROJECTS Proportional fair coding for wireless mesh...IEEEBEBTECHSTUDENTPROJECTS
 
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
 
Performance of CBR Traffic on Node Overutilization in MANETs
Performance of CBR Traffic on Node Overutilization in MANETsPerformance of CBR Traffic on Node Overutilization in MANETs
Performance of CBR Traffic on Node Overutilization in MANETsRSIS International
 
Cross Layer Solution for Energy and Delay Optimization in MANETs
Cross Layer Solution for Energy and Delay Optimization  in MANETs Cross Layer Solution for Energy and Delay Optimization  in MANETs
Cross Layer Solution for Energy and Delay Optimization in MANETs IJECEIAES
 
ANGLE ROUTING:A FULLY ADAPTIVE PACKET ROUTING FOR NOC
ANGLE ROUTING:A FULLY ADAPTIVE PACKET ROUTING FOR NOCANGLE ROUTING:A FULLY ADAPTIVE PACKET ROUTING FOR NOC
ANGLE ROUTING:A FULLY ADAPTIVE PACKET ROUTING FOR NOCijcsa
 

Mais procurados (6)

A MULTIPURPOSE MATRICES METHODOLOGY FOR TRANSMISSION USAGE, LOSS AND RELIABIL...
A MULTIPURPOSE MATRICES METHODOLOGY FOR TRANSMISSION USAGE, LOSS AND RELIABIL...A MULTIPURPOSE MATRICES METHODOLOGY FOR TRANSMISSION USAGE, LOSS AND RELIABIL...
A MULTIPURPOSE MATRICES METHODOLOGY FOR TRANSMISSION USAGE, LOSS AND RELIABIL...
 
IEEE 2014 NS2 NETWORKING PROJECTS Proportional fair coding for wireless mesh...
IEEE 2014 NS2 NETWORKING PROJECTS  Proportional fair coding for wireless mesh...IEEE 2014 NS2 NETWORKING PROJECTS  Proportional fair coding for wireless mesh...
IEEE 2014 NS2 NETWORKING PROJECTS Proportional fair coding for wireless mesh...
 
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 ...
 
Performance of CBR Traffic on Node Overutilization in MANETs
Performance of CBR Traffic on Node Overutilization in MANETsPerformance of CBR Traffic on Node Overutilization in MANETs
Performance of CBR Traffic on Node Overutilization in MANETs
 
Cross Layer Solution for Energy and Delay Optimization in MANETs
Cross Layer Solution for Energy and Delay Optimization  in MANETs Cross Layer Solution for Energy and Delay Optimization  in MANETs
Cross Layer Solution for Energy and Delay Optimization in MANETs
 
ANGLE ROUTING:A FULLY ADAPTIVE PACKET ROUTING FOR NOC
ANGLE ROUTING:A FULLY ADAPTIVE PACKET ROUTING FOR NOCANGLE ROUTING:A FULLY ADAPTIVE PACKET ROUTING FOR NOC
ANGLE ROUTING:A FULLY ADAPTIVE PACKET ROUTING FOR NOC
 

Destaque

Optimization of water distribution systems design parameters using genetic al...
Optimization of water distribution systems design parameters using genetic al...Optimization of water distribution systems design parameters using genetic al...
Optimization of water distribution systems design parameters using genetic al...Tanay Kulkarni
 
Barcode latest technology1
Barcode latest technology1Barcode latest technology1
Barcode latest technology1dhananajay95
 
Second Project PPT
Second Project PPTSecond Project PPT
Second Project PPTAmar Dhillon
 
Class GA. Genetic Algorithm,Genetic Algorithm
Class GA. Genetic Algorithm,Genetic AlgorithmClass GA. Genetic Algorithm,Genetic Algorithm
Class GA. Genetic Algorithm,Genetic Algorithmraed albadri
 
Sustainable Manufacturing: Optimization of single pass Turning machining oper...
Sustainable Manufacturing: Optimization of single pass Turning machining oper...Sustainable Manufacturing: Optimization of single pass Turning machining oper...
Sustainable Manufacturing: Optimization of single pass Turning machining oper...sajal dixit
 
Genetic Algo. for Radial Distribution System to reduce Losses
Genetic Algo. for Radial Distribution System to reduce LossesGenetic Algo. for Radial Distribution System to reduce Losses
Genetic Algo. for Radial Distribution System to reduce LossesAbhishek Jangid
 
Genetic algorithm
Genetic algorithmGenetic algorithm
Genetic algorithmgarima931
 
Genetic Algorithm by Example
Genetic Algorithm by ExampleGenetic Algorithm by Example
Genetic Algorithm by ExampleNobal Niraula
 
Contact Bar Code Readers
Contact Bar Code ReadersContact Bar Code Readers
Contact Bar Code Readersadil529
 

Destaque (10)

Optimization of water distribution systems design parameters using genetic al...
Optimization of water distribution systems design parameters using genetic al...Optimization of water distribution systems design parameters using genetic al...
Optimization of water distribution systems design parameters using genetic al...
 
Barcode latest technology1
Barcode latest technology1Barcode latest technology1
Barcode latest technology1
 
Second Project PPT
Second Project PPTSecond Project PPT
Second Project PPT
 
Bar Code
Bar CodeBar Code
Bar Code
 
Class GA. Genetic Algorithm,Genetic Algorithm
Class GA. Genetic Algorithm,Genetic AlgorithmClass GA. Genetic Algorithm,Genetic Algorithm
Class GA. Genetic Algorithm,Genetic Algorithm
 
Sustainable Manufacturing: Optimization of single pass Turning machining oper...
Sustainable Manufacturing: Optimization of single pass Turning machining oper...Sustainable Manufacturing: Optimization of single pass Turning machining oper...
Sustainable Manufacturing: Optimization of single pass Turning machining oper...
 
Genetic Algo. for Radial Distribution System to reduce Losses
Genetic Algo. for Radial Distribution System to reduce LossesGenetic Algo. for Radial Distribution System to reduce Losses
Genetic Algo. for Radial Distribution System to reduce Losses
 
Genetic algorithm
Genetic algorithmGenetic algorithm
Genetic algorithm
 
Genetic Algorithm by Example
Genetic Algorithm by ExampleGenetic Algorithm by Example
Genetic Algorithm by Example
 
Contact Bar Code Readers
Contact Bar Code ReadersContact Bar Code Readers
Contact Bar Code Readers
 

Semelhante a Cost optimization of pipeline systems using genetic algorithm

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
 
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...
Effect of inertia weight functions of pso in optimization of water distributi...IAEME Publication
 
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...
Effect of inertia weight functions of pso in optimization of water distributi...IAEME Publication
 
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...
Effect of inertia weight functions of pso in optimization of water distributi...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
 
A comparative study of full adder using static cmos logic style
A comparative study of full adder using static cmos logic styleA comparative study of full adder using static cmos logic style
A comparative study of full adder using static cmos logic styleeSAT Publishing House
 
Efficient implementation of full adder for power analysis in cmos technology
Efficient implementation of full adder for power analysis in cmos technologyEfficient implementation of full adder for power analysis in cmos technology
Efficient implementation of full adder for power analysis in cmos technologyIJARIIT
 
Optimal design of storm sewer networks
Optimal design of storm sewer networksOptimal design of storm sewer networks
Optimal design of storm sewer networksBhanu Pratap
 
Application of a software programme language called python in determining the...
Application of a software programme language called python in determining the...Application of a software programme language called python in determining the...
Application of a software programme language called python in determining the...eSAT Journals
 
Numerical analysis of velocity vectors plots and turbulent kinetic energy
Numerical analysis of velocity vectors plots and turbulent kinetic energyNumerical analysis of velocity vectors plots and turbulent kinetic energy
Numerical analysis of velocity vectors plots and turbulent kinetic energyIAEME Publication
 
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...IRJET Journal
 
Analysis of Genetic Algorithm for Effective power Delivery and with Best Upsurge
Analysis of Genetic Algorithm for Effective power Delivery and with Best UpsurgeAnalysis of Genetic Algorithm for Effective power Delivery and with Best Upsurge
Analysis of Genetic Algorithm for Effective power Delivery and with Best Upsurgeijeei-iaes
 
Vitality productivity Multipath Routing for Wireless Sensor Networks: A Genet...
Vitality productivity Multipath Routing for Wireless Sensor Networks: A Genet...Vitality productivity Multipath Routing for Wireless Sensor Networks: A Genet...
Vitality productivity Multipath Routing for Wireless Sensor Networks: A Genet...dbpublications
 
FLOW DISTRIBUTION NETWORK ANALYSIS FOR DISCHARGE SIDE OF CENTRIFUGAL PUMP
FLOW DISTRIBUTION NETWORK ANALYSIS FOR DISCHARGE SIDE OF CENTRIFUGAL PUMPFLOW DISTRIBUTION NETWORK ANALYSIS FOR DISCHARGE SIDE OF CENTRIFUGAL PUMP
FLOW DISTRIBUTION NETWORK ANALYSIS FOR DISCHARGE SIDE OF CENTRIFUGAL PUMPijiert bestjournal
 

Semelhante a Cost optimization of pipeline systems using genetic algorithm (20)

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
 
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...
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...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...
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...
 
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
 
40220140507005
4022014050700540220140507005
40220140507005
 
40220140507005
4022014050700540220140507005
40220140507005
 
D012612128
D012612128D012612128
D012612128
 
RESEARCH PAPER ARPIT
RESEARCH PAPER ARPITRESEARCH PAPER ARPIT
RESEARCH PAPER ARPIT
 
A comparative study of full adder using static cmos logic style
A comparative study of full adder using static cmos logic styleA comparative study of full adder using static cmos logic style
A comparative study of full adder using static cmos logic style
 
Efficient implementation of full adder for power analysis in cmos technology
Efficient implementation of full adder for power analysis in cmos technologyEfficient implementation of full adder for power analysis in cmos technology
Efficient implementation of full adder for power analysis in cmos technology
 
9511
95119511
9511
 
20320130405018
2032013040501820320130405018
20320130405018
 
Optimal design of storm sewer networks
Optimal design of storm sewer networksOptimal design of storm sewer networks
Optimal design of storm sewer networks
 
Application of a software programme language called python in determining the...
Application of a software programme language called python in determining the...Application of a software programme language called python in determining the...
Application of a software programme language called python in determining the...
 
Numerical analysis of velocity vectors plots and turbulent kinetic energy
Numerical analysis of velocity vectors plots and turbulent kinetic energyNumerical analysis of velocity vectors plots and turbulent kinetic energy
Numerical analysis of velocity vectors plots and turbulent kinetic energy
 
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
A Novel Route Optimized Cluster Based Routing Protocol for Pollution Controll...
 
Analysis of Genetic Algorithm for Effective power Delivery and with Best Upsurge
Analysis of Genetic Algorithm for Effective power Delivery and with Best UpsurgeAnalysis of Genetic Algorithm for Effective power Delivery and with Best Upsurge
Analysis of Genetic Algorithm for Effective power Delivery and with Best Upsurge
 
Vitality productivity Multipath Routing for Wireless Sensor Networks: A Genet...
Vitality productivity Multipath Routing for Wireless Sensor Networks: A Genet...Vitality productivity Multipath Routing for Wireless Sensor Networks: A Genet...
Vitality productivity Multipath Routing for Wireless Sensor Networks: A Genet...
 
FLOW DISTRIBUTION NETWORK ANALYSIS FOR DISCHARGE SIDE OF CENTRIFUGAL PUMP
FLOW DISTRIBUTION NETWORK ANALYSIS FOR DISCHARGE SIDE OF CENTRIFUGAL PUMPFLOW DISTRIBUTION NETWORK ANALYSIS FOR DISCHARGE SIDE OF CENTRIFUGAL PUMP
FLOW DISTRIBUTION NETWORK ANALYSIS FOR DISCHARGE SIDE OF CENTRIFUGAL PUMP
 

Mais de IAEME Publication

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

Mais de IAEME Publication (20)

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

Último

The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 

Último (20)

The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 

Cost optimization of pipeline systems using genetic algorithm

  • 1. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976- 6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME 485 COST OPTIMIZATION OF PIPELINE SYSTEMS USING GENETIC ALGORITHM Palak Sharma, Shelza, Gurjit Singh Randhawa, Rajinder Singh Virk Department of Computer Science & Engineering, Guru Nanak Dev University, Amritsar, India. ABSTRACT The aim of this paper is optimization of cost of irrigation networks using genetic algorithms. The genetic algorithm presented in this paper tries to find layout of irrigation network that incurs minimum cost by optimizing diameters of pipes. Along with that, algorithm is implemented. The method starts with a predefined network layout, which include all links and then tries to optimize pipe diameter. In this paper GA has been used to solve pipe network problem in steady state, considering all constraints like head requirements. Keywords: Genetic Algorithm, Irrigation Network, Optimization, Pipeline System 1. INTRODUCTION Pipe networks are essential almost everywhere, like for gas, sewer, irrigation, etc. The cost of construction of these networks is very high. So, a decrease in cost can lead to a huge saving. Optimization of pipe network cost involves analysis of hydraulic, quality requirements. Optimization techniques used can be deterministic or stochastic. Deterministic techniques include linear, non- linear techniques and dynamic programming, and the stochastic techniques include simulated annealing and genetic algorithms. Deterministic techniques always guarantee an optimal solution but need the system to satisfy a number of constraints, which is difficult to achieve in an irrigation system. So, genetic algorithms are used, which always try to optimize the objective function and can produce acceptable near optimal or near optimal solution in comparatively lesser time. 2. PROBLEM DEFINITION When designing or rehabilitating a water distribution system using trial-and-error methods or with formal optimization tools, a broad range of concerns can be considered. Cost is likely to be the INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET) ISSN 0976 – 6367(Print) ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), pp. 485-494 © IAEME: www.iaeme.com/ijcet.asp Journal Impact Factor (2013): 6.1302 (Calculated by GISI) www.jifactor.com IJCET © I A E M E
  • 2. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976- 6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME 486 primary emphasis and includes the costs for construction, operation, and maintenance. The initial capital investment is for system components: pipes, pumps, tanks, and valves. Energy consumption occurs over time to operate the system. The main constraints are that the desired demands are supplied with adequate pressure head being maintained at withdrawal locations. Also, the flow of water in a distribution network and the nodal pressure heads must satisfy the governing laws of conservation of energy and mass. In summary, the problem can be verbally stated as: Minimize capital investment plus energy costs, subject to: • Meeting hydraulic constraints, • Fulfilling water demands and • Satisfying pressure requirements 3. COST AND CONSTRAINTS IN A PIPELINE NETWORK Pipeline system design problem taken in this paper is solved by optimizing the pipe diameter. The cost of system is subject to minimization by optimizing pipe diameter. The main objective of minimizing cost is achieved by optimizing pipe diameter under steady state flow constraints. The total network cost [4] is given by: Subject to Where, TC= total cost of network Li= Length of ith pipe in meter Ci(di)= Cost per unit length for that diameter of ith pipe in Rs. n = total no. of pipes in network α = penalty parameter in Rs. HAj = Head available at jth node in meter k = total no. of outlets in network HRj = Head required at jth node in meter = (1.1*f*Li*Qi 2 )/(3*d5 A) f = Friction constant Qi = Discharge required in ith outlet in lps di = diameter of ith pipe in meter dA= commercially available diameter in meter Head Loss: Head loss is the measure of the reduction in the total head of the liquid as it moves through a system. The total head is the sum of the elevation head, velocity head and pressure head, where Pressure head is a term used in fluid mechanics to represent the internal energy of a fluid due to
  • 3. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976- 6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME 487 the pressure exerted on its container. It is usually expressed as: Where, p is fluid pressure, ρ is density of fluid and g is acceleration due to gravity The elevation head is energy possessed by a liquid due its height above some reference level and velocity head is because of bulk motion of fluid. Head losses in a pipe system are unavoidable and are present because of friction between fluid and walls of pipes and are present between fluid particles as they move along the pipe. Head loss in a pipe is directly proportional to length of pipe. The minimization of objective function [1] is most of times subject to: (a) Mass balance constraint: Where, Qj represents the discharges into or out of the node j. (b) Energy balance constraint: ……… (6) The conservation of energy states that the total head loss around any loop must equal to zero or is equal to the energy delivered by a pump p, E, if there is any. The head loss due to friction in a pipe hf is expressed by the Hazen-William formula: Where, Qi is the pipe flow (ft3 /s), Di is pipe diameter (ft), Li is pipe length (ft) and Ci is the Hazen- Williams coefficient. (c) Decision variables constraint: The design constraints (the pipe diameter bounds (maximum and minimum)) and the hydraulic constraints are given respectively as: Where, Di is the discrete pipe diameter selected from the set of commercially available pipe sizes.
  • 4. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976- 6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME 488 4. DESIGN CONSIDEARTION The Data required for pipe network is total number of links, irrigable area at each outlet, discharge required at each outlet diameters of pipes, length of pipes, available head losses. The network layout considered is shown in Fig. 1. Fig 1: Network Layout 5. VARIOUS OPTIMIZATION METHODS i. Branched network: In branched networks, pipe systems are optimized using linear programming. Pipes are broken into parts of different diameter and then pipe length of each diameter is optimized [3]. ii. Looped system via Linearization: Iterative methods are applied by fixing pipes flow rate, after that optimizing the pipe size for that flow and then updating the flow rate and then re- optimizing [3]. iii. Non linear Programming Non linear programming (NLP) is the process of solving an optimization problem defined by a system of equalities and inequalities, constraints, along with an objective function to be maximized or minimized, where some of the constraints or the objective function are nonlinear. According to this method, the minimal value of the pipe network is obtained from the minimal value of the objective function by determining the optimal friction losses meeting the specific functional and non negativity constraints [2,6]. iv. Stochastic Techniques In case of stochastic optimization techniques, objective value is evaluated for a set of solutions. New decision vectors are generated, based upon the objective values of previous solutions. Genetic algorithms come under this category [3].
  • 5. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976- 6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME 489 6. PROPOSED GENETIC ALGORITHM APPROACH FOR COST OPTIMIZATION OF IRRIGATION NETWORK A genetic algorithm (GA) [5] is a search heuristic that mimics the process of natural evolution. GA’s are based on Darwin’s principle of “survival of fittest”. GA’s use operators like crossover for evolving solutions [7]. The brief idea of GA is to select population of initial solution points scattered randomly in the optimized space, then converge to better solutions by applying in iterative manner the following three processes ( reproduction / selection, crossover and mutation) until a desired termination criteria is achieved [8]. The following sequences of steps are taken to apply GA for cost optimization of pipeline systems: • Initial population generation: For generating initial populations, first of all chromosomes are produced. The structure of chromosome used for this problem is: D1 D2 . . . Dn-1 Where, D1, D2, …, Dn-1 are diameters of pipes and n is number of pipes in system. So, length of chromosome is taken as number of pipes in the network. By picking up random values from commercially available diameter values, chromosomes are generated. The commercially available diameter values are called allele values. Fig 2: Chromosome representation Chromosomes for a particular number of pipes and commercially available diameter values are randomly generated as shown in Fig. 2. Input parameters are given as shown in Fig 3. Proposed algorithm is implemented and tested with different population sizes and at the end population size is taken as 6.
  • 6. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976- 6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME 490 Fig 3: Different Parameters Input • Calculate initial cost: After initial population generation, initial cost of network is calculated using the formula: ….. (9) The initial cost is calculated on the basis of initial parameter values and using the same formula system cost is calculated for all chromosomes. • Check for constraints: Penalty cost is added to system’s initial cost if system doesn’t meet all constraints. • Calculate Fitness: Fitness value of a chromosome is calculated as: ……… (10) Where, fitness_valuei represents fitness value of ith chromosome and costi, shows system cost for ith chromosome. • Selection: Selection of chromosomes for mating pool is done by using roulette wheel selection method. A chromosome is selected with probability: ... (11) Where, selectioni stands for probability of selection of ith chromosome.
  • 7. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976- 6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME 491 • Crossover: One point crossover f is used to generate new population from chromosomes selected as parent in mating pool. Crossover point is generated randomly which lies between 0 and length of chromosome. Crossover probability for this problem is taken as 0.7. • Mutation: Mutation generally takes place because of some environmental changes. One or more bits of chromosomes get changed with a very small probability. Mutation probability for this problem is taken as 0.6. • New population: After crossover new population is generated and whole procedure is repeated for specific number of generations. • Termination and Results: After a termination criterion (specific number of generations) is met, the algorithm is terminated to obtain final fitness function value as cost of pipeline network. Fig. 4 shows cost reduction improvement in final solution as compared to the initial solution. Fig 4: Final Result obtained Show improvement in Cost Reduction 7. GENERAL OUTLINE OF PROPOSED APPROACH The performance of the proposed system with time i.e. the effect of deviation in probability of crossover and mutation on the number of generations required to generate final solution, as well as the comparison of proposed genetic algorithm approach with available deterministic algorithms for this problem has been studied. The results of these comparisons have been represented in form of comparison charts. The effect of deviation in crossover probability is analyzed, by keeping the population size, number of generations and the mutation probability fixed at a certain value. The Fig. 5 shows that the probability of crossover, pc, gives better results at a value pc= 0.6 to pc= 0.8. Hence, a crossover probability of 0.7 has been chosen.
  • 8. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976- 6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME 492 Fig 5: Crossover Probability Deviation Graph The effect of deviation in probability of mutation has been analyzed by keeping the size of the population, the number of generations and the crossover probability fixed at a certain value. The analysis graph in Fig. 6 shows that, the probability of mutation pm, gives optimal results at a value pm= 0.4 to pm= 0.6. Thus for this problem, the mutation probability is chosen to be 0.6 Fig 6: Mutation Probability Deviation Graph The effect on the number of generations has been analyzed with respect to the probability of crossover and mutation, by keeping the population size fixed and varying the probability of crossover and mutation from 0.1 to 1. The Fig. 7 shows that the near optimal results are achieved at crossover probability, pc= 0.7 and mutation probability, pm= 0.6. Fig 7: Effect on number of generations
  • 9. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976- 6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME 493 A comparative analysis of using proposed genetic algorithm approach and the other available deterministic algorithms has been shown in Fig. 8. The graphical analysis shows that, the performance of genetic algorithms up to the number of pipes in the network ≈ 4 increases slowly and steadily. The deterministic search algorithms give better results up to the number of pipes in the network < 4, as they take less time to obtain final optimal solution whereas, the genetic algorithms take comparatively more time to reach at solution. However, at the number of pipes in the network = 4, the performance of genetic algorithms improves exponentially, as they show better results, taking less time to obtain the final result. Whereas, the performance of deterministic algorithms deteriorates after this point as they take much time to obtain final solution as the number of pipes increases in the network. Hence, for this problem, where the numbers of pipes in the network are greater than or equal to 4, the genetic algorithms have been chosen to provide near optimal results. Fig 8: Comparison of Proposed GA Approach with Deterministic Algorithms 8. CONCLUSIONS In this paper, cost of a pipeline network is achieved by using genetic algorithms. Pipe diameter is used for encoding of parameters, as various types of losses like frictional losses etc. depends on diameters. By randomly generating different layouts, cost of network can be calculated. Cost of network gets reduced by a large factor after a specific number of generations. Comparative analysis of proposed Genetic Algorithm approach with available deterministic algorithms shows that, GA takes comparatively less time than deterministic approaches as number of pipes in the network increases. 9. REFERENCES [1] Berge Djebedjian, Mohamed S. Mohamed, Abdel-Gawad Mondy, and Magdy Abou Rayan, “Cost optimization of water distribution systems subjected to water Hammer”, Thirteenth International Water Technology Conference, IWTC13 2009, Hurghada, Egypt. [2] Christos Tzimopoulos, Maria Sakellariou- Makrantonaki, Stavros Yannopoulos, and Ioannis Meletiou, “Design of Branched Water Supply Networks Using Labye’s Method and Nonlinear Programming Optimization Method”, Technical Educational Institution of Epirus, Dep. of Crop Production, 47100 Arta, Greece.
  • 10. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976- 6367(Print), ISSN 0976 – 6375(Online) Volume 4, Issue 4, July-August (2013), © IAEME 494 [3] Kevin E. Lansey, “Optimal Design of Water Distribution”, Department of Civil Engineering and Engineering Mechanics, University of Arizona. [4] Maya S. Kulkarni, K. A. Patil, “Optimization of Pipe Distribution Network for Irrigation by Genetic Algorithm”, International Journal of Earth Sciences and Engineering ISSN 0974- 5904, Volume 04, No 06 SPL, October 2011, pp. 231-234. [5] Tom V. Mathew, “Genetic Algorithm” Department of Civil Engineering, Indian Institute of Technology Bombay. [6] Jennifer P. L. Campbell and Nancy A. Day, “High-level optimization of pipeline design”, IEEE High Level Validation and Test Workshop (HLDVT), San Francisco, California, November 2003. [7] Pratibha Bajpai et al., “Genetic Algorithm- an Approach to Solve Global Optimization Problems”, Indian Journal of Computer Science and Engineering, 2010. [8] David E. Goldberg, Genetic Algorithms in Search, Optimization and Machine Learning, Pearson Education, Dorling Kindersley(India) Pvt. Ltd., Eighth impression, 2012. [9] A.Raja Jeya Chandra Bose, Dr.T.R.Neelakantan and 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. [10] Mahmoud Ali Refaey Eltoukhy, “Effect of Pipe Inclination on the Pipe Flow Head Losses for Different Sand Concentrations”, International Journal of Civil Engineering & Technology (IJCIET), Volume 4, Issue 3, 2013, pp. 45 - 56, ISSN Print: 0976 – 6308, ISSN Online: 0976 – 6316.