Determining the Pressure Distribution on Water Pipeline Networks Using the Firefly Algorithm

Size: px
Start display at page:

Download "Determining the Pressure Distribution on Water Pipeline Networks Using the Firefly Algorithm"

Transcription

1 2016 7th International Conference on Intelligent Systems, Modelling and Simulation Determining the Pressure Distribution on Water Pipeline Networks Using the Firefly Algorithm Lala Septem Riza, Jajang Kusnar, Munir Department of Computer Science Education Universitas Pidikan Indonesia Indonesia Riyan Naufal Hays Department of Information Technology Universitas Serang Raya Indonesia Kuntjoro Adji Sidarto Department of Mathematics Institut Teknologi Bandung Indonesia Abstract Along with the increase of population, companies delivering clean water to customers are dealing with some problems on their networks, e.g., flow assurance. It is to guarantee the availability of water on customers or to provide sufficient pressure distribution at any points on the network. This study aims to model and calculate the pressure distribution on the water pipeline networks. Using the analogy of Kirchoff s Law for the electrical current to the flow of water in pipelines, we construct a non-linear equation system for representing the water distribution system. In this research, we consider the Hazen- Williams equation for modeling fluid dynamics. Then, it is solved by using a method of swarm intelligence, namely the firefly algorithm. To provide a better illustration, a case using the Hanoi network is presented. A model and computation determining pressure distribution/head at each point of the network are obtained, along with a comparison with EPANET. Keywords water distribution system; swarm intelligence; model and simulation; pressure distribution I. Introduction It cannot be denied that the human need for clean water is increasing. Since along with the increase of population, the water pipeline networks are growing, the companies are facing many issues related to the networks. One of these problems that should be solved is to ensure the availability of clean water for all consumers, called flow assurance. It is an important task since companies must fulfill the contract with customers. Before analyzing the flow assurance, determining the distribution of the pressure/head at each point is a critical task. Usually, a model of the pressure distribution consists of equations of water flow in the pipes, which are assumed to be steady-state. So, the continuity equation at every point always occurs. According to the assumption, we can construct a non-linear equation system for representing the water distribution system. Here, the system contains non-linear equations since fluid dynamics is expressed in the following equations. For example, we can use Darcy-Weisbach [1], [2], Hazen- Williams [3], Chezy-Manning [3], etc. It is obvious that the more complex distribution pipelinenetworkswehave,thehardersystemofequations to be solved. Several techniques have been carried out by researchers, such as using Jacobian matrix to solve non-linear systems based on the Darcy-Weisbach head-loss models [4]. Genetic Algorithms have been used to solve the equations of water distribution systems [5]. Then, the research using Genetic Algorithms was improved by using Multi Objective Genetic Algorithms [6]. In this study we attempt to implement the firefly algorithm [7] for solving a non-linear equation system constructed on the water distribution system. The firefly algorithm is one of methods included in nature-inspired metaheuristic algorithms based on swarm intelligence. It is inspired by the flashing pattern of tropical fireflies [8]. The remainder of this paper is structured as follows. Section II gives briefly an introduction to fluid dynamics used in this research. Section III presents the firefly algorithm and its pseudocode. In secton IV, we illustrate construction of a model based on the Hazen-William equation. An example of the Hanoi network and its result and discussion are shown in Sections V and VI. Finally, Section VII concludes the paper. II. Fluid Dynamics A. The Bernoulli Equation Therearethreeelementsoffluiddynamicsthatneed to be considered in a pipeline: an elevation (z), a speed (v), and a pressure (p). From these fluid elements, there are three forms of energy as follows: 1) Kinetic or motion energy, which is the energy contained in fluid that has velocity. It can be represented as E K = wv2 2g, (1) where w is a weight of fluid and g is the specific weight. 2) Potential energy, which is the energy that deps on the elevation/position of the object, which is /16 $ IEEE DOI /ISMS

2 expressed by E P = wz. (2) 3) Flow energy, which is the energy required to move the fluid element to other locations: E A = wp g. (3) So the whole energy of the fluid dynamics is the sum of the three energy above as follows: E = E A + E P + E K = wp wv2 + wz + g 2g, (4) where each element has the following units: Newtonmeter (N.m) on SI or foot-pounds (ft lb) on U.S. Customary System. Based on the law of conservation, we can consider the following system of energy on two different points: E 1 = E 2 p 1 g + z 1 + v 2 1 2g = p 2 g + z 2 + v 2 2 2g, (5) which is known as the Bernoulli equation [9]. It should be noted that the unit of force (or weight (w)) are both in the numerator and the denominator so as to mutually eliminated. Thus obtained only unit in meters (m) orfoot(ft) and can be interpreted as the height (height). It is often expressed as head which states height against a reference level. B. The Hazen-William Equation The Hazen-William formula (SI) representing head loss can be expressed by Q =0.2787C k D 0.63 ( hl L ) (6) By considering head loss due to friction (L) on two different points, h L can be expressed by h L = p i p j + z i z j. (7) g Therefore, we have the following equation in U.S. Customary System [3]: ( ( )) Q i j =0.4329C k D 0.63 pi p j + z i z j. L g (8) As in Equation 8, a pipeline connects two nodes: i and j, with length L and diameter D. Then, the rate Q i j declares the water flow rate in the pipeline connecting the node i to j in ft 3 /s while p i and p j denote the pressure at the nodes i and j in lb/ft 2. The elevations, z i and z j,areinft. Moreover, the equation uses the specific weight g, which is equal to 62.4 lb/ft 3 on the temperature of 60 o F. III. The Firefly Algorithm The firefly algorithm is one of swarm-intelligence methods based on nature-inspired metaheuristic inspired by the flashing pattern of tropical fireflies [8]. In particular, although the firefly algorithm has many similarities with other algorithms that are based on swarm intelligence, such as the famous Particle Swarm Optimization [10], Artificial Bee Colony optimization [11], Genetic Algorithms [12], and Bacterial Foraging Algorithm [13], it is very efficient and simple to solve many optimization problems. The firefly algorithm assumes the following three rules [7]: 1) all firelies are unisex so that they can attract each other; 2) attractiveness is proportional to their brightness, which deps on their distances; 3) the objective function determines the brightness of afirefly. According to the assumptions above, we can construct Algorithm 1. There are two aspects including in the input : Objective function f(x), x =(x 1,...,x d ) T output: The best fireflies x Generate initial population of fireflies x i (i =1, 2,...n); Light intensity I i at x i is determined by f(x i ); Define light absorption coefficient γ; while t<maxgeneration do for i =1:n do for j =1:n do if (I j >I i ) then Move firefly i towards j in d-dimension; Calculate attractiveness varies with distance r via exp γr; Calculate evaluate new solutions and update light intensity; Rank the fireflies and find the current best; Algorithm 1: Pseudo code of the firefly algorithm [7]. algorithm above: attractiveness and movement. The first is the function β representing a level of brightness of a firefly to others. It can be expressed as β(r) =β 0 e γr2, (9) where r is a distance of fireflies. Moreover, β 0 is the attractiveness at r = 0 for a given medium with a 32

3 Figure 1. A simple network containing 6 nodes fixed light absorption coefficient γ. The movement of the firefly i to the firefly j is defined by with x i = x i + β 0 e γrij 2 (x j x i )+α(rand 1 2 ) (10) r ij = x i x j = d (x i,k x j,k ) 2, (11) k=1 α representing the randomization parameter, and the random number generator rand being uniformly distributed in [0, 1]. IV. The Model Development A. Water Distribution Networks Water distribution networks consist of a number of pipelines that connect nodes. A node represents a branching point or the inlet/outlet of the water flow to/from the system. The water flows through a pipeline due to differences of head on both s of the pipeline. In some nodes, amount of pressures are known, while the rest will be calculated. For simplicity, here it is assumed the system was in a steady state, isothermal conditions, and no pumps and control valves on the network. Using the analogy of Kirchoff s Law for the electrical current in an electric circuit on the water flow in pipeline networks, we can state that the sum of the amount of water into and out of a node is equal to zero. For example, we have a simple network as shown in Figure 1. By considering Kirchoff s Law, we obtain a non-linear system consisting of six equations (i.e., f) corresponding tosixnodes,asfollows: f 1 = Q N1 Q 1 2 =0, f 2 = Q 1 2 Q 2 3 Q 2 5 Q 2 6 Q 2N =0, f 3 = Q 2 3 Q 3 4 Q 3 5 Q 3N =0, f 4 = Q 3 4 Q 4N =0, f 5 = Q Q 3 5 Q 5N =0, f 6 = Q 2 6 Q 6N =0, (12) where Q N1 is a flow rate of reservoir/supplier while Q 2N, Q 3N, Q 4N, Q 5N,andQ 6N are given flow rates on the outlets2,3,4,5,and6.moreover,q i j,substituted by Equation 8, is a flow rate on the pipeline connecting the following nodes: i and j. Inthiscase,weneedto determine pressure/head on each node (i.e., p) thatgives the values f closed to 0. B. A Solution Using the Firefly Algorithm As we mentioned, in this research we attempt to solve the non-linear equation system by performing the firefly algorithm for determining pressure distribution on each node. Basically, three following steps need to be considered to do this task: defining the fitness function, initializing the firefly parameters, and following the algorithm. First, we can set the fitness function as F (x) = 1 1+f(x) with f(x) = f 1 (x) +f 2 (x) f N (x). Therefore, we transform the problem to be an optimization task by maximizing the value F, which is closed to 1. Then, the parameters required to assign are β 0, γ, and α representing the initial attractiveness, the fixed light absorption coefficient, and the randomization parameter, respectively. Lastly, we just follow the steps as shown in Algorithm 1. V. Experimental Study: Hanoi Network Hanoi Network [14] is a model that is often used by many researchers as a study case and their benchmarking. For example, Tabu search algorihtm was used for water network optimization on Hanoi network [15]. In the study [16], by using Hanoi network, a genetic algorithm was conducted for design of water distribution networks. Optimal design using shuffled complex evolution with the study case Hanoi network has been studied as well [17]. A. Data Gathering Hanoi Network has one reservoir, 31 customers, and no elevation on each node as shown in Figure 2. In this experiment, the following data need to be assigned: pressure/head on reservoir, flow rates on each node, diameter, and length. While the flow rate and pressure on reservoir (i.e., Node 1) are ft 3 /s and lb/ft 2, rates on other nodes are illustrated in Table I. It should be noted that negative means the rate goes out of the system. Table II shows sizes of diameter and length of each pipeline. B. Firefly Parameters Table III illustrates parameter values of the firefly algorithm used on this experiment. It can be seen that we perform 10 simulations with variation on firefly populations and maximum iterations, in order to do sensitivity analysis and to obtain the best result. 33

4 TABLE I Input data: Rate on customers. Node Rate (ft 3 /s) Node Rate (ft 3 /s) Figure 2. The Hanoi network TABLE II Input data: Diameter and length on Hanoi Network. Pipe Name From To D (ft) L (ft) TABLE III Parameters of the firefly algorithm. Parameters Values Number of simulation 10 Pairs of population and iteration {40,4000}, {50,250}, {100,500}, {200,1000}, {40,200}, {500,5000}, {50,5000}, {100,1000}, {200,2000}, {1000,10000} The initial attractiveness 1 (β 0 ) The fixed light absorption 1 coefficient (γ) The randomization parameter 0.2 (α) VI. Results and Discussion As mentioned on Section IV-A, the non-linear equation system is constructed according to the networks. Since we have 32 nodes in Hanoi network, we obtain a system consisting of 32 non-linear equations as shown in Table IV. It should be noted that the equations in Table IV are automatically generated by the firefly algorithm with considering the fitness function. Moreover, since the Hanoi network contains looping pipelines, there are many options of flow directions. So, before finishing a simulation, we do not know which flow direction is correct and met with the equations. It means signs of Q i j can be positive of negative. Again, the firefly algorithm determines the correct one, which is represented by signs on the equation shown in Table IV. Besides constructing the model, we also compare the results with EPANET, which a software used for developing model of water distribution system. It was 34

5 TABLE IV The Model of Hanoi Network. Node Equations 1 f 1 = Q N1 Q 1 2 =0 2 f 2 = Q 1 2 Q 2 3 Q 2N =0 3 f 3 = Q 2 3 Q 3 4 Q 3 19 Q 3 20 Q 3N =0 4 f 4 = Q 3 4 Q 4 5 Q 4N =0 5 f 5 = Q 4 5 Q 5 6 Q 5N =0 6 f 6 = Q 5 6 Q 6 7 Q 6N =0 7 f 7 = Q 6 7 Q 7 8 Q 7N =0 8 f 8 = Q 7 8 Q 8 9 Q 8N =0 9 f 9 = Q 8 9 Q 9 10 Q 9N =0 10 f 10 = Q 9 10 Q Q Q 10N =0 11 f 11 = Q Q Q 11N =0 12 f 12 = Q Q Q 12N =0 13 f 13 = Q Q 13N =0 14 f 14 = Q Q Q 14N =0 15 f 15 = Q Q Q 15N =0 16 f 16 = Q Q Q Q 16N =0 17 f 17 = Q Q Q 18N =0 18 f 18 = Q Q Q 18N =0 19 f 19 = Q 3 19 Q Q 19N =0 20 f 20 = Q 3 20 Q Q Q 20N =0 21 f 21 = Q Q Q 21N =0 22 f 22 = Q Q 22N =0 23 f 23 = Q Q Q Q 23N =0 24 f 24 = Q Q Q 24N =0 25 f 25 = Q Q Q Q 25N =0 26 f 26 = Q Q Q 26N =0 27 f 27 = Q Q Q 27N =0 28 f 28 = Q Q Q 28N =0 29 f 29 = Q Q Q 29N =0 30 f 30 = Q Q Q 30N =0 31 f 31 = Q Q Q 31N =0 32 f 32 = Q Q Q 32N =0 TABLE V Result and Comparison with EPANET Node Head (m) EPANET s head (m) Margin (%) developed by the United States Environmental Protection agency s (EPA) Water Supply and Water Resources Division in 1993 [18]. After performing 10 simulation, we obtain the best pressure distribution if it is compared with EPANET as illustrated in Table V. We only compare with EPANET because the actual pressures/heads obtained from a measurement are not available. According to Table V, the biggest margin, which is 2.87, is on Node 9 and 17 while the most similar head is on Node 25. Furthermore, we provide the average margin of 10 simulations compared with EPANET as depicted on Table VI. In general speaking, all simulations show consistent results even though higher values of population and iteration do not mean providing better results since the firefly algorithm is a stochastic method. VII. Conclusion and Future Work The main constribution on this research is to provide a model for pressure distributions on water pipeline networks. The model expressed in a non-linear equation system is solved by the firefly algorithm. The pressure distribution obtained from 10 simulations show consistent and reasonable results. Therefore, the firefly algorithm can be used as an alternative method to perfom TABLE VI The average margin of 10 simulations compared with EPANET. No Population of Fireflies Max Iteration The Average Margin compared with EPANET (%) optimization problems, such as determining pressure distribution of water pipeline networks. As future work, we plan to implement other algorithms, such as Particle Swarm Optimization and Genetic Algorithm, for the same task. Moreover, determining optimal design of networks considering behavior pressure on nodes and pipelines is interesting to investigate. In this case, we might transform the optimization into regression task, and then solve it by using several machine-learning methods, such as fuzzy rule based sys- 35

6 tems implemented in the frbs package [19] and rough set theory and fuzzy rough set theory which are available in the Roughsets packages [20]. [20] L. S. Riza, A. Janusz, C. Bergmeir, C. Cornelis, F. Herrera, D. Śle, J. M. Benítez et al., Implementing algorithms of rough set theory and fuzzy rough set theory in the r package roughsets, Information Sciences, vol. 287, pp , References [1] H. Darcy, Recherches expérimentales relatives au mouvement de l eau dans les tuyaux. Mallet-Bachelier, 1857, vol. 1. [2] J. L. Weisbach, Lehrbuch der ingenieur-und maschinenmechanik: Statik der bauwerke & mechanik der umtriebsmaschinen. Vieweg, [3] T. M. Walski, D. V. Chase, D. A. Savic, W. M. Grayman, S. Beckwith, E. Koelle et al., Advanced water distribution modeling and management. Haestad press, [4] A. Simpson and S. Elhay, Jacobian matrix for solving water distribution system equations with the darcy-weisbach headloss model, Journal of Hydraulic Engineering, [5] D. A. Savic and G. A. Walters, Genetic algorithms for leastcost design of water distribution networks, Journal of water resources planning and management, vol.123,no.2,pp.67 77, [6] T. D. Prasad and N.-S. Park, Multiobjective genetic algorithms for design of water distribution networks, Journal of Water Resources Planning and Management, [7] X.-S. Yang, Firefly algorithms for multimodal optimization, in Stochastic algorithms: foundations and applications. Springer, 2009, pp [8], Nature-inspired metaheuristic algorithms. Luniver press, [9] D. Bernoulli, Danielis Bernoulli... Hydrodynamica, sive De viribus et motibus fluidorum commentarii. Opus academicum ab auctore, dum Petropoli ageret, congestum. Sumptibus Johannis Reinholdi Dulseckeri, [10] J. Kennedy, Particle swarm optimization, in Encyclopedia of Machine Learning. Springer, 2010, pp [11] D. Karaboga and B. Basturk, A powerful and efficient algorithm for numerical function optimization: artificial bee colony (abc) algorithm, Journal of global optimization, vol. 39, no. 3, pp , [12] D. E. Goldberg and J. H. Holland, Genetic algorithms and machine learning, Machine learning, vol. 3, no. 2, pp , [13] A. Brabazon, M. O Neill, and S. McGarraghy, Bacterial foraging algorithms, in Natural Computing Algorithms. Springer, 2015, pp [14] O. Fujiwara and D. B. Khang, A two-phase decomposition method for optimal design of looped water distribution networks, Water resources research, vol. 26, no. 4, pp , [15] M. da Conceicao Cunha and L. Ribeiro, Tabu search algorithms for water network optimization, European Journal of Operational Research, vol. 157, no. 3, pp , [16] P. L. Iglesias, D. Mora, F. J. Martínez, and V. S. Fuertes, Study of sensitivity of the parameters of a genetic algorithm for design of water distribution networks (doi: /juee v1n ), Journal of Urban and Environmental Engineering (JUEE), vol. 1, no. 2, [17] S.-Y. Liong and M. Atiquzzaman, Optimal design of water distribution network using shuffled complex evolution, Journal of The Institution of Engineers, Singapore, vol.44,no.1, pp , [18] L. Rossman, The epanet water quality model, Environmental Protection Agency, Cincinnati, OH (United States), Tech. Rep., [19] L. S. Riza, C. Bergmeir, F. Herrera, and J. M. Benítez, frbs: Fuzzy rule-based systems for classification and regression in r, Journal of Statistical Software, vol. 65, no. 1, pp. 1 30,

Firefly algorithm in optimization of queueing systems

Firefly algorithm in optimization of queueing systems BULLETIN OF THE POLISH ACADEMY OF SCIENCES TECHNICAL SCIENCES, Vol. 60, No. 2, 2012 DOI: 10.2478/v10175-012-0049-y VARIA Firefly algorithm in optimization of queueing systems J. KWIECIEŃ and B. FILIPOWICZ

More information

Saudi Journal of Engineering and Technology. DOI: /sjeat ISSN (Print)

Saudi Journal of Engineering and Technology. DOI: /sjeat ISSN (Print) DOI:10.21276/sjeat.2017.2.3.1 Saudi Journal of Engineering and Technology Scholars Middle East Publishers Dubai, United Arab Emirates Website: http://scholarsmepub.com/ ISSN 2415-6272 (Print) ISSN 2415-6264

More information

STEADY FLOW THROUGH PIPES DARCY WEISBACH EQUATION FOR FLOW IN PIPES. HAZEN WILLIAM S FORMULA, LOSSES IN PIPELINES, HYDRAULIC GRADE LINES AND ENERGY

STEADY FLOW THROUGH PIPES DARCY WEISBACH EQUATION FOR FLOW IN PIPES. HAZEN WILLIAM S FORMULA, LOSSES IN PIPELINES, HYDRAULIC GRADE LINES AND ENERGY STEADY FLOW THROUGH PIPES DARCY WEISBACH EQUATION FOR FLOW IN PIPES. HAZEN WILLIAM S FORMULA, LOSSES IN PIPELINES, HYDRAULIC GRADE LINES AND ENERGY LINES 1 SIGNIFICANCE OF CONDUITS In considering the convenience

More information

The Darcy-Weisbach Jacobian and avoiding zero flow failures in the Global Gradient Algorithm for the water network equations

The Darcy-Weisbach Jacobian and avoiding zero flow failures in the Global Gradient Algorithm for the water network equations The Darcy-Weisbach Jacobian and avoiding zero flow failures in the Global Gradient Algorithm for the water network equations by Elhay, S. and A.R. Simpson World Environmental & Water Resources Congress

More information

Optimising water distribution systems using a weighted penalty in a genetic algorithm

Optimising water distribution systems using a weighted penalty in a genetic algorithm Optimising water distribution systems using a weighted penalty in a genetic algorithm M van Dijk 1 *, SJ van Vuuren 1 and JE van Zyl 2 1 Department of Civil & Biosystems Engineering, University of Pretoria,

More information

Why the Fluid Friction Factor should be Abandoned, and the Moody Chart Transformed

Why the Fluid Friction Factor should be Abandoned, and the Moody Chart Transformed The Open Mechanical Engineering Journal, 2009, 3, 43-48 43 Open Access Why the Fluid Friction Factor should be Abandoned, and the Moody Chart Transformed Eugene F. Adiutori * Ventuno Press, Green Valley,

More information

PIPES, hydraulic devices (pumps, valves, etc.) and reservoirs. Optimal Design of Water Distribution Networks by Discrete State Transition Algorithm

PIPES, hydraulic devices (pumps, valves, etc.) and reservoirs. Optimal Design of Water Distribution Networks by Discrete State Transition Algorithm JOURNAL OF L A TEX CLASS FILES, VOL., NO., JANUARY 2013 1 Optimal Design of Water Distribution Networks by Discrete State Transition Algorithm Xiaojun Zhou David Yang Gao, and Angus R. Simpson arxiv:1304.7622v2

More information

An overview of the Hydraulics of Water Distribution Networks

An overview of the Hydraulics of Water Distribution Networks An overview of the Hydraulics of Water Distribution Networks June 21, 2017 by, P.E. Senior Water Resources Specialist, Santa Clara Valley Water District Adjunct Faculty, San José State University 1 Outline

More information

Relationship between Hazen-William coefficient and Colebrook-White friction factor: Application in water network analysis

Relationship between Hazen-William coefficient and Colebrook-White friction factor: Application in water network analysis European Water 58: 513-520, 2017. 2017 E.W. Publications Relationship between Hazen-William coefficient and Colebrook-White friction factor: Application in water network analysis M. Niazkar 1, N. Talebbeydokhti

More information

International Journal of Advance Research in Engineering, Science & Technology

International Journal of Advance Research in Engineering, Science & Technology Impact Factor (SJIF): 3.632 International Journal of Advance Research in Engineering, Science & Technology e-issn: 2393-9877, p-issn: 2394-2444 Volume 3, Issue 7, July-2016 Water Supply Network Study of

More information

Analysis of Complex Pipe Networks with Multiple Loops and Inlets and Outlets

Analysis of Complex Pipe Networks with Multiple Loops and Inlets and Outlets Analysis of Complex Pipe Networks with Multiple Loops and Inlets and Outlets The techniques described previously for analysis of pipe flow are satisfactory if the pipe system is simple, consisting of one

More information

Fluids Engineering. Pipeline Systems 2. Course teacher Dr. M. Mahbubur Razzaque Professor Department of Mechanical Engineering BUET

Fluids Engineering. Pipeline Systems 2. Course teacher Dr. M. Mahbubur Razzaque Professor Department of Mechanical Engineering BUET COURSE NUMBER: ME 423 Fluids Engineering Pipeline Systems 2 Course teacher Dr. M. Mahbubur Razzaque Professor Department of Mechanical Engineering BUET 1 SERIES PIPE FLOW WITH PUMP(S) 2 3 4 Colebrook-

More information

Calculation of Pipe Friction Loss

Calculation of Pipe Friction Loss Doc.No. 6122-F3T071 rev.2 Calculation of Pipe Friction Loss Engineering Management Group Development Planning Department Standard Pump Business Division EBARA corporation October 16th, 2013 1 / 33 2 /

More information

SIMULTANEOUS ANALYSIS, DESIGN AND OPTIMIZATION OF WATER DISTRIBUTION SYSTEMS USING SUPERVISED CHARGED SYSTEM SEARCH

SIMULTANEOUS ANALYSIS, DESIGN AND OPTIMIZATION OF WATER DISTRIBUTION SYSTEMS USING SUPERVISED CHARGED SYSTEM SEARCH INTERNATIONAL JOURNAL OF OPTIMIZATION IN CIVIL ENGINEERING Int. J. Optim. Civil Eng., 23; 3(): 37-55 SIMULTANEOUS ANALYSIS, DESIGN AND OPTIMIZATION OF WATER DISTRIBUTION SYSTEMS USING SUPERVISED CHARGED

More information

Chapter (3) Water Flow in Pipes

Chapter (3) Water Flow in Pipes Chapter (3) Water Flow in Pipes Water Flow in Pipes Bernoulli Equation Recall fluid mechanics course, the Bernoulli equation is: P 1 ρg + v 1 g + z 1 = P ρg + v g + z h P + h T + h L Here, we want to study

More information

Review of pipe flow: Friction & Minor Losses

Review of pipe flow: Friction & Minor Losses ENVE 204 Lecture -1 Review of pipe flow: Friction & Minor Losses Assist. Prof. Neslihan SEMERCİ Marmara University Department of Environmental Engineering Important Definitions Pressure Pipe Flow: Refers

More information

OPTIMIZATION OF THE SUPPLIER SELECTION PROBLEM USING DISCRETE FIREFLY ALGORITHM

OPTIMIZATION OF THE SUPPLIER SELECTION PROBLEM USING DISCRETE FIREFLY ALGORITHM Advanced Logistic Systems Vol. 6. No. 1. (2012) pp. 117-126. OPTIMIZATION OF THE SUPPLIER SELECTION PROBLEM USING DISCRETE FIREFLY ALGORITHM LÁSZLÓ KOTA 1 Abstract: In this article I show a firefly optimization

More information

Lesson 6 Review of fundamentals: Fluid flow

Lesson 6 Review of fundamentals: Fluid flow Lesson 6 Review of fundamentals: Fluid flow The specific objective of this lesson is to conduct a brief review of the fundamentals of fluid flow and present: A general equation for conservation of mass

More information

ACCEPTED VERSION American Society of Civil Engineers /41203(425)72

ACCEPTED VERSION American Society of Civil Engineers /41203(425)72 ACCEPTED VERSION Feifei Zheng, Angus R. Simpson and Aaron C. Zecchin A method for assessing the performance of genetic algorithm optimization for water distribution design Water Distribution Systems Analysis

More information

Assessment of Unaccounted-for Water in Municipal Water Networks Using GIS and Modeling

Assessment of Unaccounted-for Water in Municipal Water Networks Using GIS and Modeling 24 Assessment of Unaccounted-for Water in Municipal Water Networks Using GIS and Modeling Homayoun Motiee, Ali Motiei, Ahmad Hejranfar and M.Reza Delavar This chapter presents a study to calculate Unaccounted-for

More information

graddescentr: An R Package Implementing Gradient Descent and Its Variants for Regression Tasks

graddescentr: An R Package Implementing Gradient Descent and Its Variants for Regression Tasks graddescentr: An R Package Implementing Gradient Descent and Its Variants for Regression Tasks Lala Septem Riza, Imam Fachmi Nasrulloh, and Enjun Junaeti Department of Computer Science Education Universitas

More information

Journal of Hydraulic Engineering

Journal of Hydraulic Engineering Journal of Hydraulic Engineering Discussion of "Method to Cope with Zero Flows in Newton Solvers for Water Distribution Systems" by Nikolai B. Gorev, Inna F. Kodzhespirov, Yuriy Kovalenko, Eugenio Prokhorov

More information

WATER DISTRIBUTION NETWORKS

WATER DISTRIBUTION NETWORKS WATER DISTRIBUTION NETWORKS CE 370 1 Components of Water Supply System 2 1 Water Distribution System Water distribution systems are designed to adequately satisfy the water requirements for a combinations

More information

FIRE FLY AND ARTIFICIAL BEES COLONY ALGO- RITHM FOR SYNTHESIS OF SCANNED AND BROAD- SIDE LINEAR ARRAY ANTENNA

FIRE FLY AND ARTIFICIAL BEES COLONY ALGO- RITHM FOR SYNTHESIS OF SCANNED AND BROAD- SIDE LINEAR ARRAY ANTENNA Progress In Electromagnetics Research B, Vol. 32, 169 190, 2011 FIRE FLY AND ARTIFICIAL BEES COLONY ALGO- RITHM FOR SYNTHESIS OF SCANNED AND BROAD- SIDE LINEAR ARRAY ANTENNA B. Basu and G. K. Mahanti *

More information

spatial water demand (population density) spatial junctions distribution (building density) digital elevation map

spatial water demand (population density) spatial junctions distribution (building density) digital elevation map SYSTEM ID: WDS-Designer NARRATIVE DESCRIPTION With the WDS Designer a tool for the algorithmic generation of synthetic water distribution systems (swds) based on GIS data was presented (Sitzenfrei et al.,

More information

ABSTRACT 1 INTRODUCTION

ABSTRACT 1 INTRODUCTION Water distribution network steady state simulation AQUANET model H. Rahal Laboratory of Hydraulics, K. U. Leuven, de Croylaan 2, B-3001 Heverlee, Belgium ABSTRACT This article is devoted to the description

More information

Chapter (3) Water Flow in Pipes

Chapter (3) Water Flow in Pipes Chapter (3) Water Flow in Pipes Water Flow in Pipes Bernoulli Equation Recall fluid mechanics course, the Bernoulli equation is: P 1 ρg + v 1 g + z 1 = P ρg + v g + z h P + h T + h L Here, we want to study

More information

Piping Systems and Flow Analysis (Chapter 3)

Piping Systems and Flow Analysis (Chapter 3) Piping Systems and Flow Analysis (Chapter 3) 2 Learning Outcomes (Chapter 3) Losses in Piping Systems Major losses Minor losses Pipe Networks Pipes in series Pipes in parallel Manifolds and Distribution

More information

Capacitor Placement for Economical Electrical Systems using Ant Colony Search Algorithm

Capacitor Placement for Economical Electrical Systems using Ant Colony Search Algorithm Capacitor Placement for Economical Electrical Systems using Ant Colony Search Algorithm Bharat Solanki Abstract The optimal capacitor placement problem involves determination of the location, number, type

More information

PUMPING STATION SCHEDULING FOR WATER DISTRIBUTION NETWORKS IN EPANET

PUMPING STATION SCHEDULING FOR WATER DISTRIBUTION NETWORKS IN EPANET U.P.B. Sci. Bull., Series D, Vol. 77, Iss., 05 ISSN 454-58 PUMPING STATION SCHEDULING FOR WATER DISTRIBUTION NETWORKS IN EPANET Sanda-Carmen GEORGESCU, Andrei-Mugur GEORGESCU Pumping station scheduling

More information

LOSSES DUE TO PIPE FITTINGS

LOSSES DUE TO PIPE FITTINGS LOSSES DUE TO PIPE FITTINGS Aim: To determine the losses across the fittings in a pipe network Theory: The resistance to flow in a pipe network causes loss in the pressure head along the flow. The overall

More information

Fuzzy Cognitive Maps Learning through Swarm Intelligence

Fuzzy Cognitive Maps Learning through Swarm Intelligence Fuzzy Cognitive Maps Learning through Swarm Intelligence E.I. Papageorgiou,3, K.E. Parsopoulos 2,3, P.P. Groumpos,3, and M.N. Vrahatis 2,3 Department of Electrical and Computer Engineering, University

More information

FLOW FRICTION CHARACTERISTICS OF CONCRETE PRESSURE PIPE

FLOW FRICTION CHARACTERISTICS OF CONCRETE PRESSURE PIPE 11 ACPPA TECHNICAL SERIES FLOW FRICTION CHARACTERISTICS OF CONCRETE PRESSURE PIPE This paper presents formulas to assist in hydraulic design of concrete pressure pipe. There are many formulas to calculate

More information

Hydraulics Prof Dr Arup Kumar Sarma Department of Civil Engineering Indian Institute of Technology, Guwahati

Hydraulics Prof Dr Arup Kumar Sarma Department of Civil Engineering Indian Institute of Technology, Guwahati Hydraulics Prof Dr Arup Kumar Sarma Department of Civil Engineering Indian Institute of Technology, Guwahati Module No # 08 Pipe Flow Lecture No # 04 Pipe Network Analysis Friends, today we will be starting

More information

ACTA UNIVERSITATIS APULENSIS No 11/2006

ACTA UNIVERSITATIS APULENSIS No 11/2006 ACTA UNIVERSITATIS APULENSIS No /26 Proceedings of the International Conference on Theory and Application of Mathematics and Informatics ICTAMI 25 - Alba Iulia, Romania FAR FROM EQUILIBRIUM COMPUTATION

More information

Intuitionistic Fuzzy Estimation of the Ant Methodology

Intuitionistic Fuzzy Estimation of the Ant Methodology BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 9, No 2 Sofia 2009 Intuitionistic Fuzzy Estimation of the Ant Methodology S Fidanova, P Marinov Institute of Parallel Processing,

More information

Pressure and Flow Characteristics

Pressure and Flow Characteristics Pressure and Flow Characteristics Continuing Education from the American Society of Plumbing Engineers August 2015 ASPE.ORG/ReadLearnEarn CEU 226 READ, LEARN, EARN Note: In determining your answers to

More information

ENHANCING THE CUCKOO SEARCH WITH LEVY FLIGHT THROUGH POPULATION ESTIMATION

ENHANCING THE CUCKOO SEARCH WITH LEVY FLIGHT THROUGH POPULATION ESTIMATION ENHANCING THE CUCKOO SEARCH WITH LEVY FLIGHT THROUGH POPULATION ESTIMATION Nazri Mohd Nawi, Shah Liyana Shahuddin, Muhammad Zubair Rehman and Abdullah Khan Soft Computing and Data Mining Centre, Faculty

More information

Analysis Methods for Water Distribution Systems-3 rd Class )طرق تحليل أنظمة توزيع المياه( Dr. Sataa A. Al-Bayati (10-11)

Analysis Methods for Water Distribution Systems-3 rd Class )طرق تحليل أنظمة توزيع المياه( Dr. Sataa A. Al-Bayati (10-11) تسم هللا الزحمه الزحيم Analysis Methods for Water Distribution Systems-3 rd Class )طرق تحليل أنظمة توزيع المياه( Dr. Sataa A. Al-Bayati (10-11) Methods of analysis are: )المقاطغ( Sectioning.1 )االوثىب

More information

Numerical experiments for inverse analysis of material properties and size in functionally graded materials using the Artificial Bee Colony algorithm

Numerical experiments for inverse analysis of material properties and size in functionally graded materials using the Artificial Bee Colony algorithm High Performance and Optimum Design of Structures and Materials 115 Numerical experiments for inverse analysis of material properties and size in functionally graded materials using the Artificial Bee

More information

REE 307 Fluid Mechanics II. Lecture 1. Sep 27, Dr./ Ahmed Mohamed Nagib Elmekawy. Zewail City for Science and Technology

REE 307 Fluid Mechanics II. Lecture 1. Sep 27, Dr./ Ahmed Mohamed Nagib Elmekawy. Zewail City for Science and Technology REE 307 Fluid Mechanics II Lecture 1 Sep 27, 2017 Dr./ Ahmed Mohamed Nagib Elmekawy Zewail City for Science and Technology Course Materials drahmednagib.com 2 COURSE OUTLINE Fundamental of Flow in pipes

More information

A Spreadsheet Tool for the Analysis of Flows in Small-scale Water Piping Networks

A Spreadsheet Tool for the Analysis of Flows in Small-scale Water Piping Networks A Spreadsheet Tool for the Analysis of Flows in Small-scale Water Piping Networks Kazeem B. Adedeji 1, Yskandar Hamam 1, Bolanle T. Abe 1 and Adnan M. Abu-Mahfouz 1,2 1 Department of Electrical Engineering,

More information

Available online at ScienceDirect. Procedia Computer Science 20 (2013 ) 90 95

Available online at  ScienceDirect. Procedia Computer Science 20 (2013 ) 90 95 Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 20 (2013 ) 90 95 Complex Adaptive Systems, Publication 3 Cihan H. Dagli, Editor in Chief Conference Organized by Missouri

More information

Research Article Hydraulic Analysis of Water Distribution Network Using Shuffled Complex Evolution

Research Article Hydraulic Analysis of Water Distribution Network Using Shuffled Complex Evolution Fluids, Article ID 9906, pages http://dx.doi.org/0./0/9906 Research Article Hydraulic Analysis of Water Distribution Network Using Shuffled Complex Evolution Naser Moosavian and Mohammad Reza Jaefarzadeh

More information

FE Fluids Review March 23, 2012 Steve Burian (Civil & Environmental Engineering)

FE Fluids Review March 23, 2012 Steve Burian (Civil & Environmental Engineering) Topic: Fluid Properties 1. If 6 m 3 of oil weighs 47 kn, calculate its specific weight, density, and specific gravity. 2. 10.0 L of an incompressible liquid exert a force of 20 N at the earth s surface.

More information

Engineers Edge, LLC PDH & Professional Training

Engineers Edge, LLC PDH & Professional Training 510 N. Crosslane Rd. Monroe, Georgia 30656 (770) 266-6915 fax (678) 643-1758 Engineers Edge, LLC PDH & Professional Training Copyright, All Rights Reserved Engineers Edge, LLC Pipe Flow-Friction Factor

More information

1.060 Engineering Mechanics II Spring Problem Set 8

1.060 Engineering Mechanics II Spring Problem Set 8 1.060 Engineering Mechanics II Spring 2006 Due on Monday, May 1st Problem Set 8 Important note: Please start a new sheet of paper for each problem in the problem set. Write the names of the group members

More information

Applied Fluid Mechanics

Applied Fluid Mechanics Applied Fluid Mechanics 1. The Nature of Fluid and the Study of Fluid Mechanics 2. Viscosity of Fluid 3. Pressure Measurement 4. Forces Due to Static Fluid 5. Buoyancy and Stability 6. Flow of Fluid and

More information

Research Article A Hybrid Backtracking Search Optimization Algorithm with Differential Evolution

Research Article A Hybrid Backtracking Search Optimization Algorithm with Differential Evolution Mathematical Problems in Engineering Volume 2015, Article ID 769245, 16 pages http://dx.doi.org/10.1155/2015/769245 Research Article A Hybrid Backtracking Search Optimization Algorithm with Differential

More information

Group Decision-Making with Incomplete Fuzzy Linguistic Preference Relations

Group Decision-Making with Incomplete Fuzzy Linguistic Preference Relations Group Decision-Making with Incomplete Fuzzy Linguistic Preference Relations S. Alonso Department of Software Engineering University of Granada, 18071, Granada, Spain; salonso@decsai.ugr.es, F.J. Cabrerizo

More information

Optimization of Gas Injection Allocation in Multi Gas Lift Wells System

Optimization of Gas Injection Allocation in Multi Gas Lift Wells System EngOpt 2008 - International Conference on Engineering Optimization Rio de Janeiro, Brazil, 01-05 June 2008. Optimization of Gas Injection Allocation in Multi Gas Lift Wells System Deni Saepudin 1,4, Pudjo

More information

Exam #1. A. Answer any 1 of the following 2 questions. CEE 371 October 8, Please grade the following questions: 1 or 2

Exam #1. A. Answer any 1 of the following 2 questions. CEE 371 October 8, Please grade the following questions: 1 or 2 CEE 37 October 8, 009 Exam # Closed Book, one sheet of notes allowed Please answer one question from the first two, one from the second two and one from the last three. The total potential number of points

More information

Pressure Head: Pressure head is the height of a column of water that would exert a unit pressure equal to the pressure of the water.

Pressure Head: Pressure head is the height of a column of water that would exert a unit pressure equal to the pressure of the water. Design Manual Chapter - Stormwater D - Storm Sewer Design D- Storm Sewer Sizing A. Introduction The purpose of this section is to outline the basic hydraulic principles in order to determine the storm

More information

Available online at ScienceDirect. Procedia Engineering 89 (2014 )

Available online at   ScienceDirect. Procedia Engineering 89 (2014 ) Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 89 (2014 ) 648 655 16th Conference on Water Distribution System Analysis, WDSA 2014 Artificial Neural Networks and Entropy-Based

More information

Applied Fluid Mechanics

Applied Fluid Mechanics Applied Fluid Mechanics 1. The Nature of Fluid and the Study of Fluid Mechanics 2. Viscosity of Fluid 3. Pressure Measurement 4. Forces Due to Static Fluid 5. Buoyancy and Stability 6. Flow of Fluid and

More information

Improved Method for Converting Equivalent Sand-grain Roughness to Hazen-Williams Coefficient

Improved Method for Converting Equivalent Sand-grain Roughness to Hazen-Williams Coefficient Proceedings of the 2 nd World Congress on Mechanical, Chemical, and Material Engineering (MCM'16) Budapest, Hungary August 22 23, 2016 Paper No. HTFF 119 OI: 10.11159/htff16.119 Improved Method for Converting

More information

A PSO APPROACH FOR PREVENTIVE MAINTENANCE SCHEDULING OPTIMIZATION

A PSO APPROACH FOR PREVENTIVE MAINTENANCE SCHEDULING OPTIMIZATION 2009 International Nuclear Atlantic Conference - INAC 2009 Rio de Janeiro,RJ, Brazil, September27 to October 2, 2009 ASSOCIAÇÃO BRASILEIRA DE ENERGIA NUCLEAR - ABEN ISBN: 978-85-99141-03-8 A PSO APPROACH

More information

Optimal Compensation of Reactive Power in Transmission Networks using PSO, Cultural and Firefly Algorithms

Optimal Compensation of Reactive Power in Transmission Networks using PSO, Cultural and Firefly Algorithms Volume 114 No. 9 2017, 367-388 ISSN: 1311-8080 (printed version); ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu Optimal Compensation of Reactive Power in Transmission Networks using

More information

IBM Research Report. Valve Placement in Water Networks: Mixed-Integer Non-Linear Optimization with Quadratic Pipe Friction

IBM Research Report. Valve Placement in Water Networks: Mixed-Integer Non-Linear Optimization with Quadratic Pipe Friction RC25307 (IRE1209-014) September 28, 2012 Computer Science IBM Research Report Valve Placement in Water Networks: Mixed-Integer Non-Linear Optimization with Quadratic Pipe Friction Bradley J. Eck, Martin

More information

The Recent Progress and Potential Applications of Corpuscular Method in LS-DYNA

The Recent Progress and Potential Applications of Corpuscular Method in LS-DYNA 11 th International LS-DYNA Users Conference Automotive (3) The Recent Progress and Potential Applications of Corpuscular Method in LS-DYNA Hailong Teng, Jason Wang, Dilip Bhalsod Livermore Software Technology

More information

Determining Liquid Capacity 4 th Annual Pipeline Knowledge Retention Chris Sonneborn November 7, 2013

Determining Liquid Capacity 4 th Annual Pipeline Knowledge Retention Chris Sonneborn November 7, 2013 Determining Liquid Capacity 4 th Annual Pipeline Knowledge Retention Chris Sonneborn November 7, 2013 Outline What is important? Liquid Properties Thermal Conditions Hydraulic Gradient Flow Regime in Liquids

More information

A Method of HVAC Process Object Identification Based on PSO

A Method of HVAC Process Object Identification Based on PSO 2017 3 45 313 doi 10.3969 j.issn.1673-7237.2017.03.004 a a b a. b. 201804 PID PID 2 TU831 A 1673-7237 2017 03-0019-05 A Method of HVAC Process Object Identification Based on PSO HOU Dan - lin a PAN Yi

More information

V/ t = 0 p/ t = 0 ρ/ t = 0. V/ s = 0 p/ s = 0 ρ/ s = 0

V/ t = 0 p/ t = 0 ρ/ t = 0. V/ s = 0 p/ s = 0 ρ/ s = 0 UNIT III FLOW THROUGH PIPES 1. List the types of fluid flow. Steady and unsteady flow Uniform and non-uniform flow Laminar and Turbulent flow Compressible and incompressible flow Rotational and ir-rotational

More information

Chapter 2 Linear Optimization

Chapter 2 Linear Optimization Chapter 2 Linear Optimization Abstract The purpose of this chapter is to cover the basic concept of linear optimization analysis and its applications in water resources engineering. The graphical and simplex

More information

Understand How Valves & Fittings Affect Head Loss

Understand How Valves & Fittings Affect Head Loss Understand How Valves & Fittings Affect Head Loss by Ray Hardee (Engineered Software, Inc.) This column discusses valves and fittings and evaluates how these devices affect the operation of piping systems.

More information

Chapter 6. Losses due to Fluid Friction

Chapter 6. Losses due to Fluid Friction Chapter 6 Losses due to Fluid Friction 1 Objectives To measure the pressure drop in the straight section of smooth, rough, and packed pipes as a function of flow rate. To correlate this in terms of the

More information

Basics of fluid flow. Types of flow. Fluid Ideal/Real Compressible/Incompressible

Basics of fluid flow. Types of flow. Fluid Ideal/Real Compressible/Incompressible Basics of fluid flow Types of flow Fluid Ideal/Real Compressible/Incompressible Flow Steady/Unsteady Uniform/Non-uniform Laminar/Turbulent Pressure/Gravity (free surface) 1 Basics of fluid flow (Chapter

More information

Vedant V. Sonar 1, H. D. Mehta 2. Abstract

Vedant V. Sonar 1, H. D. Mehta 2. Abstract Load Shedding Optimization in Power System Using Swarm Intelligence-Based Optimization Techniques Vedant V. Sonar 1, H. D. Mehta 2 1 Electrical Engineering Department, L.D. College of Engineering Ahmedabad,

More information

1-Reynold s Experiment

1-Reynold s Experiment Lect.No.8 2 nd Semester Flow Dynamics in Closed Conduit (Pipe Flow) 1 of 21 The flow in closed conduit ( flow in pipe ) is differ from this occur in open channel where the flow in pipe is at a pressure

More information

Basic Hydraulics. Rabi H. Mohtar ABE 325

Basic Hydraulics. Rabi H. Mohtar ABE 325 Basic Hydraulics Rabi H. Mohtar ABE 35 The river continues on its way to the sea, broken the wheel of the mill or not. Khalil Gibran The forces on moving body of fluid mass are:. Inertial due to mass (ρ

More information

Applied Fluid Mechanics

Applied Fluid Mechanics Applied Fluid Mechanics 1. The Nature of Fluid and the Study of Fluid Mechanics 2. Viscosity of Fluid 3. Pressure Measurement 4. Forces Due to Static Fluid 5. Buoyancy and Stability 6. Flow of Fluid and

More information

Use of a smoothed model for pipe friction loss

Use of a smoothed model for pipe friction loss Use of a smoothed model for pipe friction loss Bradley J. Eck, M.ASCE Please cite this as: Eck, B. (2016). Use of a Smoothed Model for Pipe Friction Loss. J. Hydraul. Eng., 10.1061/(ASCE)HY.1943-7900.0001239,

More information

A New Technique for Solving Sets of Coupled. Nonlinear Algebraic and Integro-Differential. Equations Encountered in Hydraulics

A New Technique for Solving Sets of Coupled. Nonlinear Algebraic and Integro-Differential. Equations Encountered in Hydraulics Int. J. Contemp. Math. Sciences, Vol. 3, 2008, no. 33, 1611-1617 A New Technique for Solving Sets of Coupled Nonlinear Algebraic and Integro-Differential Equations Encountered in Hydraulics Amir Nassirharand

More information

PRESENTATION OUTLINE. FIG Working Week INTRODUCTION 2.0 LITERATURE REVIEW 3.0 RESEARCH METHODOLOGY 4.0 RESULTS AND DISCUSSION

PRESENTATION OUTLINE. FIG Working Week INTRODUCTION 2.0 LITERATURE REVIEW 3.0 RESEARCH METHODOLOGY 4.0 RESULTS AND DISCUSSION Geospatial Techniques in Water Distribution Network Mapping and Modelling in Warri Port Complex (Nigeria) PRESENTED BY Henry Agbomemeh AUDU 1, Nigeria and Jacob Odeh EHIOROBO 2, Nigeria PRESENTATION OUTLINE

More information

ACCOUNTING FOR FRICTION IN THE BERNOULLI EQUATION FOR FLOW THROUGH PIPES

ACCOUNTING FOR FRICTION IN THE BERNOULLI EQUATION FOR FLOW THROUGH PIPES ACCOUNTING FOR FRICTION IN THE BERNOULLI EQUATION FOR FLOW THROUGH PIPES Some background information first: We have seen that a major limitation of the Bernoulli equation is that it does not account for

More information

Research Article A Novel Differential Evolution Invasive Weed Optimization Algorithm for Solving Nonlinear Equations Systems

Research Article A Novel Differential Evolution Invasive Weed Optimization Algorithm for Solving Nonlinear Equations Systems Journal of Applied Mathematics Volume 2013, Article ID 757391, 18 pages http://dx.doi.org/10.1155/2013/757391 Research Article A Novel Differential Evolution Invasive Weed Optimization for Solving Nonlinear

More information

Major and Minor Losses

Major and Minor Losses Abstract Major and Minor Losses Caitlyn Collazo, Team 2 (1:00 pm) A Technovate fluid circuit system was used to determine the pressure drop across a pipe section and across an orifice. These pressure drops

More information

PumpTech Customer Education

PumpTech Customer Education PumpTech Customer Education http://www.pumptechnw.com Bellevue Moses Lake Canby PumpTech Product Lines UL Listed Packaged Systems Two full time Mechanical Engineers Licensed in OR, WA & ID SolidWorks &

More information

Chapter 6. Losses due to Fluid Friction

Chapter 6. Losses due to Fluid Friction Chapter 6 Losses due to Fluid Friction 1 Objectives ä To measure the pressure drop in the straight section of smooth, rough, and packed pipes as a function of flow rate. ä To correlate this in terms of

More information

EXPERIMENT NO: F5. Losses in Piping Systems

EXPERIMENT NO: F5. Losses in Piping Systems SJSU ME115 - THERMAL ENGINEERING LAB EXPERIMENT NO: F5 Losses in Piping Systems Objective One of the most common problems in fluid mechanics is the estimation of pressure loss. It is the objective of this

More information

CIE4491 Lecture. Hydraulic design

CIE4491 Lecture. Hydraulic design CIE4491 Lecture. Hydraulic design Marie-claire ten Veldhuis 19-9-013 Delft University of Technology Challenge the future Hydraulic design of urban stormwater systems Focus on sewer pipes Pressurized and

More information

Chapter 7 The Energy Equation

Chapter 7 The Energy Equation Chapter 7 The Energy Equation 7.1 Energy, Work, and Power When matter has energy, the matter can be used to do work. A fluid can have several forms of energy. For example a fluid jet has kinetic energy,

More information

Rate of Flow Quantity of fluid passing through any section (area) per unit time

Rate of Flow Quantity of fluid passing through any section (area) per unit time Kinematics of Fluid Flow Kinematics is the science which deals with study of motion of liquids without considering the forces causing the motion. Rate of Flow Quantity of fluid passing through any section

More information

Chapter 3 Water Flow in Pipes

Chapter 3 Water Flow in Pipes The Islamic University o Gaza Faculty o Engineering Civil Engineering Department Hydraulics - ECI 33 Chapter 3 Water Flow in Pipes 3. Description o A Pipe Flow Water pipes in our homes and the distribution

More information

We will assume straight channels with simple geometries (prismatic channels) and steady state flow (in time).

We will assume straight channels with simple geometries (prismatic channels) and steady state flow (in time). 56 Review Drag & Lift Laminar vs Turbulent Boundary Layer Turbulent boundary layers stay attached to bodies longer Narrower wake! Lower pressure drag! 8. Open-Channel Flow Pipe/duct flow closed, full,

More information

When water (fluid) flows in a pipe, for example from point A to point B, pressure drop will occur due to the energy losses (major and minor losses).

When water (fluid) flows in a pipe, for example from point A to point B, pressure drop will occur due to the energy losses (major and minor losses). PRESSURE DROP AND OSSES IN PIPE When water (luid) lows in a pipe, or example rom point A to point B, pressure drop will occur due to the energy losses (major and minor losses). A B Bernoulli equation:

More information

Algorithms and Complexity theory

Algorithms and Complexity theory Algorithms and Complexity theory Thibaut Barthelemy Some slides kindly provided by Fabien Tricoire University of Vienna WS 2014 Outline 1 Algorithms Overview How to write an algorithm 2 Complexity theory

More information

GIS Applications for Water Distribution Systems

GIS Applications for Water Distribution Systems 21 GIS Applications for Water Distribution Systems Uzair(Sam) Shamsi This chapter describes the geographic information system (GIS) applications for water distribution systems. The GIS applications that

More information

UNIVERSITY OF CINCINNATI

UNIVERSITY OF CINCINNATI UNIVERSITY OF CINCINNATI Date: I,, hereby submit this work as part of the requirements for the degree of: in: It is entitled: This work and its defense approved by: Chair: Path-dependent Approach to Estimate

More information

ME 201 Engineering Mechanics: Statics. Unit 1.1 Mechanics Fundamentals Newton s Laws of Motion Units

ME 201 Engineering Mechanics: Statics. Unit 1.1 Mechanics Fundamentals Newton s Laws of Motion Units ME 201 Engineering Mechanics: Statics Unit 1.1 Mechanics Fundamentals Newton s Laws of Motion Units Additional Assistance Tutoring Center Mck 272 Engineering Walk-In Help Lab Aus??? Schedule to

More information

Modeling of Head Loss Components in Water Distribution to a Group of Buildings

Modeling of Head Loss Components in Water Distribution to a Group of Buildings J. Basic. Appl. Sci. Res., 3(1)34-351, 013 013, TextRoad Publication ISSN 090-4304 Journal of Basic and Applied Scientific Research www.textroad.com Modeling of Head Components in Water Distribution to

More information

Hydraulics for Urban Storm Drainage

Hydraulics for Urban Storm Drainage Urban Hydraulics Hydraulics for Urban Storm Drainage Learning objectives: understanding of basic concepts of fluid flow and how to analyze conduit flows, free surface flows. to analyze, hydrostatic pressure

More information

Research Article Data-Driven Fault Diagnosis Method for Power Transformers Using Modified Kriging Model

Research Article Data-Driven Fault Diagnosis Method for Power Transformers Using Modified Kriging Model Hindawi Mathematical Problems in Engineering Volume 2017, Article ID 3068548, 5 pages https://doi.org/10.1155/2017/3068548 Research Article Data-Driven Fault Diagnosis Method for Power Transformers Using

More information

AN INTRODUCTION TO HYDRODYNAMICS AND WATER WAVES

AN INTRODUCTION TO HYDRODYNAMICS AND WATER WAVES AN INTRODUCTION TO HYDRODYNAMICS AND WATER WAVES HYDRODYNAMICA SIVE DE VIRIBUS ET MOTIBUS FLUIDORUM COMMENTARII 'Remember, when discoursing about water, to induce first experience, then reason.' - Leonardo

More information

Basics of reinforcement learning

Basics of reinforcement learning Basics of reinforcement learning Lucian Buşoniu TMLSS, 20 July 2018 Main idea of reinforcement learning (RL) Learn a sequential decision policy to optimize the cumulative performance of an unknown system

More information

Hydraulics and hydrology

Hydraulics and hydrology Hydraulics and hydrology - project exercises - Class 4 and 5 Pipe flow Discharge (Q) (called also as the volume flow rate) is the volume of fluid that passes through an area per unit time. The discharge

More information

Fluid Mechanics Prof. S.K. Som Department of Mechanical Engineering Indian Institute of Technology, Kharagpur

Fluid Mechanics Prof. S.K. Som Department of Mechanical Engineering Indian Institute of Technology, Kharagpur Fluid Mechanics Prof. S.K. Som Department of Mechanical Engineering Indian Institute of Technology, Kharagpur Lecture - 42 Flows with a Free Surface Part II Good morning. I welcome you to this session

More information

Hydraulic Considerations for Citrus Microirrigation Systems 1

Hydraulic Considerations for Citrus Microirrigation Systems 1 Cir1425 Hydraulic Considerations for Citrus Microirrigation Systems 1 Brian Boman and Sanjay Shukla 2 Introduction Hydraulics is the study of the behavior of liquids as they move through channels or pipes.

More information

UNIFORM FLOW CRITICAL FLOW GRADUALLY VARIED FLOW

UNIFORM FLOW CRITICAL FLOW GRADUALLY VARIED FLOW UNIFORM FLOW CRITICAL FLOW GRADUALLY VARIED FLOW Derivation of uniform flow equation Dimensional analysis Computation of normal depth UNIFORM FLOW 1. Uniform flow is the flow condition obtained from a

More information

Linear Regression. S. Sumitra

Linear Regression. S. Sumitra Linear Regression S Sumitra Notations: x i : ith data point; x T : transpose of x; x ij : ith data point s jth attribute Let {(x 1, y 1 ), (x, y )(x N, y N )} be the given data, x i D and y i Y Here D

More information