Modelling and Advanced Control of a Biological Wastewater Treatment Plant

Size: px
Start display at page:

Download "Modelling and Advanced Control of a Biological Wastewater Treatment Plant"

Transcription

1 Modelling and Advanced Control of a Biological Wastewater Treatment Plant Goal After completing this exercise you should know how to model the sedimentation process and how to simulate it using Matlab and its built-in numerical solvers. Furthermore, you should have some experiences of controlling the sludge recycle flow rate (Q r ), the nitrate (internal) recirculation flow rate (Q intr ) and the excess sludge flow rate (Q w ). Introduction This exercise is divided into two steps: the implementation of a rather realistic settling model and the control of the sludge concentration in the bioreactors together with the sludge blanket level in the settler. In the earlier exercises you have used the IAWQ Activated Sludge Model No.1 together with an ideal settler model. The IAWQ No.1 model only describes the biological mechanisms in an activated sludge plant and nothing with regard to the sedimentation process. In order to have a more realistic description of the entire plant, the ideal settling process must be replaced with a more complex settler model. Plant Configuration A real plant often has a principal outline according to Figure 1, with one flow into the settler (Q f ) and two flows leaving the settler (Q e and Q u ). At the plant where we have gathered the data, the biological part (including sedimentation) is not the only one, instead it is followed by a polishing step with chemical precipitation, flocculation and flotation. Consequently, the volume (and area) of the settler is not dimensioned to remove all suspended solids (SS) and therefore you may sense that the effluent suspended solids concentration is rather high. However, this is a common configuration and may often be an efficient solution, which reduces the total volume requirement. Q intr Q in Q f Q e Anox Aerob Aerob Aerob Q u Q r Q w Figure 1: Principal layout of the modelled WWTP. 1

2 Modelling Sedimentation A fairly simple and well functioning model of the settling process is the multi-layer model. In this one-dimensional model (only dynamics in one dimension is modelled) the settler is divided into a number of layers, usually between 10 and 50. The transport of sludge between each layer depends on bulk flow, which is related to the water flow (upwards or downwards), and gravitational flow, which depends on the influence of gravity on the sludge flocs and is always directed downwards. Above the layer which receives the influent flow (Q f ) of sludge (i.e. the feed layer), the bulk flow is always directed upwards and below the feed layer the bulk flow is directed downwards. This means that the flow upwards (Q e ) is equal to the the effluent flow, while the flow downwards (Q u ) is equal to the sum of the recycled flow (Q r ) and the excess sludge flow (Q w ) (see Figure 2). Top layer Bulk movement Q e X e /A 1 Gravity settling Layers above the feed layer J up,2 = Q e X 2 / A J up,3 = Q e X 3 /A 2 J s,1 = min (v s,1 X 1, v 2 X 2 ) J s,2 = min (v s,2 X 2, v 3 X 3 ) J up,m = Q e X m /A J s,m-1 = min (v s,m-1 X m-1, v s,m X m ) Feed layer Layers below the feed layer Q f X f /A J dn,m = Q u X m /A J dn,m1 = Q u X m1 /A m m1 J s,m = min (v s,m X m, v s,m1 X m1 ) J s,m1 = min (v s,m1 X m1, v s,m2 X m2 ) J dn,n-1 = Q u X n-1 /A J s,n-1 = min (v s,n-1 X n-1, v s,n X n ) Bottom layer n Q u X u /A Figure 2: The principle for the multi-layer model describing the settling process. The changes in concentration within each layer above layer m can be expressed as: dx i = J up,i1 J s,i 1 J up,i J s,i (1) dt z i where z i is the height of layer i. Equivalently, the changes in concentration within all other layers are described (simple mass balances according to 2

3 Figure 2). The relations between the different flows are, in accordance with Figure 1, given as: Q f = Q in Q r (2) Q e = Q in Q w (3) Q u = Q r Q w (4) Different alternatives exist to describe the particulate material (X): either let X denote a composite variable of all different particulate components in the biological model or use a separate state variable, X I, to describe each particulate fraction. The first alternative gives a small error of how the proportions between the different fractions propagate through the settler during dynamic conditions but requires significantly fewer state variables (in a 10-layer model 10 state variables are needed for alternative 1 and 40 state variables for alternative 2). In steady state both alternatives will produce identical results. Furthermore, in our settler model the suspended solids are given in the unit mg SS/l and not, as in the biological model, in mg COD/l and consequently the units must be transformed. In this exercise, alternative 1 will be used and the different particulate fractions will be added together and transformed according to: X f = 0.75(X S X IP ) 0.9(X BA X BH ) (5) where X f is the SS-concentration entering the settler and the other variables describes the concentrations in the last biological reactor. X ND is treated in a special way. The reason for this is that X ND is actually a part of X BA and X BH, but is described as a separate variable in the biological model for special technical reasons. When the sludge is returned to the anoxic reactor, X u (the SS-concentration in the sludge recirculation stream) must again be divided into the different fraction using the same principle as above. This means that for example X S in the sludge recycle flow is calculated as (X S,r is the concentration of the X S which is reintroduced into the anoxic reactor and X S,f is the concentration of X S which enters the settler with the flow Q f ): X S,r = X u X f X S,f (6) Using the same method the concentrations for each particulate fraction is calculated, including X ND although it is not a part of X f. However, it is reasonable to assume that also this fraction is concentrated in the settler in the same proportion as the other fractions. An important parameter for the sedimentation is the settling velocity, v s. It is not constant instead it depends on the SS-concentration. In the literature many different functions can be found, which are considered to describe the settling velocity as a function of the SS-concentration. One commonly used function is the double-exponential function: ( ( v s = 0, min (v ))) 0, v 0 e r h(x X min ) e r p(x X min ) (7) 3

4 This function takes into account that the settling velocity does not increase exponentially when the concentration is lower than a limit value, instead it decreases (see Figure 3). In this exercise we will use a simplified version of the double-exponential function, i.e.: v s = max ( 0, v 0 ( e r h X e rp X )) (8) This simplification implies that the settling velocity is zero when the concentration is equal to zero and immediately increases when the concentration increases and it does not have the flat top given by v 0 (compare Figure 3). Suggested parameter values are: v 0 =150 m/d, r h = m 3 /g and r p =0.005 m 3 /g. settling velocity v 0 x min suspended solids concentration Figure 3: The principal behaviour of the double-exponential function. To simplify the model we assume that the dissolved fractions are not affected by the sedimentation, i.e. all soluble concentrations in the effluent water (Q e ) and in Q u are identical to the concentrations in the settler feed flow (Q f ). More information about settler models can be found in the course textbook Wastewater Treatment Systems, pages The Controllers and Their Default Values In the earlier exercises, two different controllers for oxygen have been developed. To make sure that you are using reasonable values for the controller parameters we provide a set of parameters together with the complete code for the controllers (see below). If you use the parameter set presented below you should achieve identical results as we present as the correct solution (for verification purposes). 1) Traditional PI-oxygen control exemplified for reactor 2, i.e. the first aerobic reactor (use the same set of parameters for the other reactors but use the different offset values presented in Exercise 3). 4

5 K2=1; Ti2=0.1; Soref2=2; e2=(soref2-so2); dipart2 = K2/Ti2*e2; u2 = K2*e2ipart20.27; u2 = max(min(1,u2),0); qair2=u2*7; 2) Cascade control of oxygen level. The controller below calculates a reference value for a traditional PI-controller according to (1). The control is based on measurements of the ammonia concentration in the actual reactor (in the example below reactor 4, i.e. the last aerobic reactor). Tasks Kkaskad=0.25; Snhref = 1.0; Soref4 = Kkaskad*(Snh4-Snhref); Soref4 = max(min(5,soref4),0.5); 1) Extend your model from Exercise 3 (i.e. four biological reactors in series, use the same physical dimensions in this exercise) with a multi-layer settler model. Use ten layers with equal height and assume that the cross-sectional area of the settler is 600 m 2 and the total height is 4 m. The settler feed flow, Q f, enters into layer 5 from the top. (NOTE! min is available as a predefined function in Matlab for determining min-values). 2) To be able to test the model you must define a value for the excess sludge flow rate, i.e. Q w. A reasonable value is 280 m 3 /d, which corresponds to a sludge age of approximately 7 days if the model is correctly implemented. Assume constant characteristics of the influent wastewater as given in Table 1, Exercise 2. Test your model by simulating until steady state is reached and determine the exact sludge age of the system. Report how you did the calculations. NOTE! X ND shall not be considered to be part of the SS-concentration and the sludge age calculations shall be based on the SS-concentration and not the COD-concentration. You can verify that your model is working correctly by comparing your results with the steady state results provided in Table 1. 3) When the amount of sludge in the settler increases it creates a rising sludge blanket level, i.e. the interface between high and low sludge concentration, often defined as the uppermost layer where the sludge concentration is higher than 3000 mg SS/l. If the sludge blanket rises too much then the concentration of suspended solids in the effluent water will increase, which should naturally be avoided. To compensate for the sludge increase the excess sludge must be removed from the system. Normally this is done in specific time intervals during the work day, since the plant operators want to monitor the operation. Implement an on-off control for removing excess sludge, which starts when the SS-concentration in layer 6 (the fifth layer from the bottom) surpasses 3000 mg/l and stops when the SS-concentration in layer 8 is below 3000 mg/l. One possible algorithm to use is: 5

6 Reaktor 1 Reaktor 3 Q u S I S S X IP X S X BH X BA S O S NO S NH S ND X ND Table 1: Steady state-values with Q w =280 m 3 /d, SO2 ref = SO3 ref = 2 mg/l (PI control), SNH4 ref = 1 mg N/l (cascade control). global qw if X6>3000 qw=2000; elseif X8<3000 qw=0; end; Note that Q w must be defined as a global variable. In the m-file that calls ode15s Q w must also be defined as a global variable and given an initial value (Q w =0). A global variable is created with the command global variable_name prior to its use. How is the sludge concentration in the bioreactors affected by the intermittent excess sludge pumping? Assume constant influent characteristics according to Table 1, Exercise 2 and control the rest of the plant according to task 2. Start the simulation in the steady state that was calculated in task 2 and test the new controller by simulating the system 10 days forward. 4) To avoid the large variations of the SS-concentration in the reactors caused by the step wise on-off control of the excess sludge, it is beneficial to control the return sludge flow rate so that the problem is compensated for. By measuring the SS-concentration in the first reactor and then calculate the difference between the true and the wanted SS-concentration, a simple proportional controller can be implemented. Add a controller, which controls the SS-concentration in reactor 1 (anoxic) to a reference value of 3000 mg SS/l by manipulating Q r (a suitable gain is 100 and a good offset value is m 3 /d). Allow Q r to vary between 0 and m 3 /d. Do you achieve a more stable SS-concentration? Assume constant influent characteristics according to Table 1, Exercise 2 and control the rest of the plant according to task 3. Start the simulation in the steady state that was calculated in task 2 and test the new controller by simulating the system 10 days forward. 6

7 5) The internal recirculation (Q intr ) has until now been controlled proportional to the influent flow rate (qintr=2*qin). This is not always the optimum choice. The purpose of the internal recirculation is to make sure that nitrate is returned to the anoxic reactor. If the nitrate concentration in the last aerobic reactor is too high then this can be compensated for by increasing the internal recirculation flow rate. Such an action is only relevant if there is denitrification capacity left in the anoxic reactor. Add a controller for the internal recirculation, which uses measurements of the nitrate concentration in the last aerobic reactor and calculates the difference between the true and the wanted nitrate concentration. A simple proportional controller is enough (a suitable gain is and a good offset value is m 3 /d). Try the controller with nitrate reference values of 5 and 10 mg (NO 3 -N)/l. Is it possible to achieve 5 and 10 mg (NO 3 -N)/l, respectively? Assume constant influent characteristics according to Table 1, Exercise 2 and control the rest of the plant according to task 4. Start the simulation in the steady state that was calculated in task 2 and test the new controller by simulating the system 10 days forward. 6) Simulate the plant with a varying influent flow according to task 4, Exercise 2 (apply the variation of influent S NH and Q in simultaneously) and use all the controllers you have implemented until now (use a reference value for the nitrate concentration of 8 mg (NO 3 -N)/l). Start the simulation in the steady state that was calculated in task 2 and test all the controllers by simulating the system 5 days forward. How well do all the control actions work together? Comment the results and provide a suitable selection of graphs to illustrate your comments. Reporting The results of the exercise may be reported either by or handing in a traditional hard copy report. If the report is submitted by (as an attached file) it should be in MS Word, pdf or PostScript format. The report should contain listings of all your m-files (commented code), a reasonable selection of Matlab plots and describing comments and discussion of the results. As the reports of the five exercises are the basis for passing the course, they should be carried out individually and every student should hand in individual reports. The deadline for submitting the report is Friday 14 February Reports by are sent to: jon.bolmstedt@iea.lth.se Jon Bolmstedt will be available for questions with regard to the exercise on Thursdays between and If you require assistance at other times you may visit Jon (but there is no guarantee that he will be available). A better way is to send your questions by and they will be answered as soon as possible. 7

Chapter 6: Solid-Liquid Separation in WWTPs. Raúl Muñoz Pedro García Encina

Chapter 6: Solid-Liquid Separation in WWTPs. Raúl Muñoz Pedro García Encina Chapter 6: Solid-Liquid Separation in WWTPs Raúl Muñoz Pedro García Encina 1 Introduction to Solid-Liquid Separation 2 Introduction: Separation Methods Solid/liquid separation technologies Ensure good

More information

Inflow Qin, Sin. S, X Outflow Qout, S, X. Volume V

Inflow Qin, Sin. S, X Outflow Qout, S, X. Volume V UPPSALA UNIVERSITET AVDELNINGEN FÖR SYSTEMTEKNIK BC,PSA 9809, Last rev August 17, 2000 SIMULATION OF SIMPLE BIOREACTORS Computer laboratory work in Wastewater Treatment W4 1. Microbial growth in a "Monode"

More information

Control Introduction. Gustaf Olsson IEA Lund University.

Control Introduction. Gustaf Olsson IEA Lund University. Control Introduction Gustaf Olsson IEA Lund University Gustaf.Olsson@iea.lth.se Lecture 3 Dec Nonlinear and linear systems Aeration, Growth rate, DO saturation Feedback control Cascade control Manipulated

More information

Stationary phase. Time

Stationary phase. Time An introduction to modeling of bioreactors Bengt Carlsson Dept of Systems and Control Information Technology Uppsala University August 19, 2002 Abstract This material is made for the course Wastewater

More information

Discrete particle settling. Flocculent settling. Compression

Discrete particle settling. Flocculent settling. Compression An introduction to sedimentation theory in wastewater treatment Bengt Carlsson Systems and Control Group Uppsala University Nov 96, rev Okt 98 Abstract This material is made for the course \Wastewater

More information

INCLUDING THE EFFECTS OF BIOLOGICAL BULKING SLUDGE DURING THE SIMULATION OF WWTP ALTERNATIVES USING A GREY BOX MODEL

INCLUDING THE EFFECTS OF BIOLOGICAL BULKING SLUDGE DURING THE SIMULATION OF WWTP ALTERNATIVES USING A GREY BOX MODEL INCLUDING THE EFFECTS OF BIOLOGICAL BULKING SLUDGE DURING THE SIMULATION OF WWTP ALTERNATIVES USING A GREY BOX MODEL Xavier Flores-Alsina, Joaquim Comas, Ignasi Rodriguez-Roda and Krist V. Gernaey Laboratory

More information

SEDIMENTATION INTRODUCTION

SEDIMENTATION INTRODUCTION SEDIMENTATION INTRODUCTION Sedimentation is removal of particulate materials suspended in water by quiescent settling due to gravity Commonly used unit operation in water and wastewater treatment plants

More information

Investigation of Anaerobic Digestion Alternatives for Henriksdal s WWTP

Investigation of Anaerobic Digestion Alternatives for Henriksdal s WWTP CODEN:LUTEDX/(TEIE-7225)/1-111/(2007) Investigation of Anaerobic Digestion Alternatives for Henriksdal s WWTP Ulf Jeppsson Dept. of Industrial Electrical Engineering and Automation Lund University Investigation

More information

Nonlinear PI control for dissolved oxygen tracking at wastewater treatment plant

Nonlinear PI control for dissolved oxygen tracking at wastewater treatment plant Proceedings of the 7th World Congress The International Federation of Automatic Control Seoul, Korea, July 6-, 008 Nonlinear PI control for dissolved oxygen tracking at wastewater treatment plant Y. Han

More information

THINK FLUID DYNAMIX CFD Simulation of Clarifiers. THINK Fluid Dynamix

THINK FLUID DYNAMIX CFD Simulation of Clarifiers. THINK Fluid Dynamix THINK FLUID DYNAMIX CFD Simulation of Clarifiers Provided by: THINK Fluid Dynamix Am Pestalozziring 21 D-91058 Erlangen (Germany) Tel. +49 (0)9131 69098-00 http://www.think-fd.com CFD ENGINEERING & CONSULTING

More information

A systematic methodology for controller tuning in wastewater treatment plants

A systematic methodology for controller tuning in wastewater treatment plants Downloaded from orbit.dtu.dk on: Dec 2, 217 A systematic methodology for controller tuning in wastewater treatment plants Mauricio Iglesias, Miguel; Jørgensen, Sten Bay; Sin, Gürkan Publication date: 212

More information

Using a Genetic Algorithm to Solve a Bi-Objective WWTP Process Optimization

Using a Genetic Algorithm to Solve a Bi-Objective WWTP Process Optimization Using a Genetic Algorithm to Solve a Bi-Objective WWTP Process Optimization Lino Costa, Isabel A. C. P. Espírito-Santo, Edite M. G. P. Fernandes, and Roman Denysiuk Abstract When modeling an activated

More information

Sedimentation. Several factors affect the separation of settleable solids from water. Some of the more common types of factors to consider are:

Sedimentation. Several factors affect the separation of settleable solids from water. Some of the more common types of factors to consider are: Sedimentation Sedimentation, or clarification, is the process of letting suspended material settle by gravity. Suspended material may be particles, such as clay or silts, originally present in the source

More information

Illustrating ph Modeling in BioWin - Titrations of Acids and Bases

Illustrating ph Modeling in BioWin - Titrations of Acids and Bases Illustrating ph Modeling in BioWin - Titrations of Acids and Bases Volume 7 Number 1 : January 2018 Illustrating ph Modeling in BioWin - Titrations of Acids and Bases EnviroSim Associates McMaster Innovation

More information

Modelling hindered batch settling Part I: A model for linking zone settling velocity and stirred sludge volume index

Modelling hindered batch settling Part I: A model for linking zone settling velocity and stirred sludge volume index Modelling hindered batch settling Part I: A model for linking zone settling velocity and stirred sludge volume index Esa K Renko* Laboratory of Environmental Engineering, Helsinki University of Technology,

More information

Sensitivity of Optimal Operation of an Activated Sludge Process Model

Sensitivity of Optimal Operation of an Activated Sludge Process Model UKACC International Conference on Control 2012 Cardiff, UK, 3-5 September 2012 Sensitivity of Optimal Operation of an Activated Sludge Process Model Antonio Araujo, Simone Gallani, Michela Mulas and Sigurd

More information

THEORY: SETTLING PROCESSES

THEORY: SETTLING PROCESSES INTRODUCTION MANY METHODS OF MECHANICAL SEPARATION ARE BASED ON THE MOVEMENT OF THE SOLID PARTICLES OR LIQUID DROPS THROUGH A FLUID. IN THIS TOPIC WE ARE FOCUSING ON SOME SITUATIONS OF THE PARTICLES DELIBERATELY

More information

4 CONTROL OF ACTIVATED SLUDGE WASTEWATER SYSTEM

4 CONTROL OF ACTIVATED SLUDGE WASTEWATER SYSTEM Progress in Process Tomography and Instrumentation System: Series 2 57 4 CONTROL OF ACTIVATED SLUDGE WASTEWATER SYSTEM Norhaliza Abdul Wahab Reza Katebi Mohd Fuaad Rahmat Aznah Md Noor 4.1 INTRODUCTION

More information

Multiobjective optimization for automatic tuning of robust Model Based Predictive Controllers

Multiobjective optimization for automatic tuning of robust Model Based Predictive Controllers Proceedings of the 7th World Congress The International Federation of Automatic Control Multiobjective optimization for automatic tuning of robust Model Based Predictive Controllers P.Vega*, M. Francisco*

More information

BAE 820 Physical Principles of Environmental Systems

BAE 820 Physical Principles of Environmental Systems BAE 820 Physical Principles of Environmental Systems Type of reactors Dr. Zifei Liu Ideal reactors A reactor is an apparatus in which chemical, biological, and physical processes (reactions) proceed intentionally,

More information

CHEMICAL and BIOMOLECULAR ENGINEERING 140 Exam 1 Friday, September 28, 2018 Closed Book. Name: Section:

CHEMICAL and BIOMOLECULAR ENGINEERING 140 Exam 1 Friday, September 28, 2018 Closed Book. Name: Section: CHEMICAL and BIOMOLECULAR ENGINEERING 140 Exam 1 Friday, September 28, 2018 Closed Book Name: Section: Total score: /100 Problem 1: /30 Problem 2: /35 Problem 3: /35 1. (30 points) Short answer questions:

More information

Validation of a multi-phase Plant-Wide Model for the description of the aeration system in a WWTP

Validation of a multi-phase Plant-Wide Model for the description of the aeration system in a WWTP Validation of a multi-phase Plant-Wide Model for the description of the aeration system in a WWTP I. Lizarralde, T. Fernández-Arévalo, S. Beltrán, E. Ayesa and P. Grau Introduction Objectives Fundamentals

More information

Neural Network Control in a Wastewater Treatment Plant

Neural Network Control in a Wastewater Treatment Plant Neural Network Control in a Wastewater Treatment Plant Miguel A. Jaramillo 1 ; Juan C. Peguero 2, Enrique Martínez de Salazar 1, Montserrat García del alle 1 ( 1 )Escuela de Ingenierías Industriales. (

More information

YTÜ Mechanical Engineering Department

YTÜ Mechanical Engineering Department YTÜ Mechanical Engineering Department Lecture of Special Laboratory of Machine Theory, System Dynamics and Control Division Coupled Tank 1 Level Control with using Feedforward PI Controller Lab Date: Lab

More information

Laboratory 11 Control Systems Laboratory ECE3557. State Feedback Controller for Position Control of a Flexible Joint

Laboratory 11 Control Systems Laboratory ECE3557. State Feedback Controller for Position Control of a Flexible Joint Laboratory 11 State Feedback Controller for Position Control of a Flexible Joint 11.1 Objective The objective of this laboratory is to design a full state feedback controller for endpoint position control

More information

State Feedback Controller for Position Control of a Flexible Link

State Feedback Controller for Position Control of a Flexible Link Laboratory 12 Control Systems Laboratory ECE3557 Laboratory 12 State Feedback Controller for Position Control of a Flexible Link 12.1 Objective The objective of this laboratory is to design a full state

More information

DYNAMIC OPTIMISATION OF ALTERNATING ACTIVATED SLUDGE PROCESSES

DYNAMIC OPTIMISATION OF ALTERNATING ACTIVATED SLUDGE PROCESSES DYNAMIC OPTIMISATION OF ALTERNATING ACTIVATED SLUDGE PROCESSES M. Fikar, B. Chachuat, M. A. Latifi Laboratoire des Sciences du Génie Chimique, CNRS-ENSIC, B.P. 451, 1 rue Grandville, 54001 Nancy Cedex,

More information

ENVIRONMENTAL ENGINEERING. Chemical Engineering department

ENVIRONMENTAL ENGINEERING. Chemical Engineering department ENVIRONMENTAL ENGINEERING Chemical Engineering department WATER TREATMENT Many aquifers and isolated surface waters are of high water quality and may be pumped from the supply and transmission network

More information

Oxygen Diffusion in Animal Cells Slab Model

Oxygen Diffusion in Animal Cells Slab Model 1 Oxygen Diffusion in Animal Cells Slab Model Chemical Engineering Department Student Reg. No. 200863019 Computational Method from the Simulation Naim Hasolli Oxygen Diffusion in Animal Cells 2 Statement:

More information

ECOTAN SERIES. Natural Based Coagulants

ECOTAN SERIES. Natural Based Coagulants ECOTAN SERIES Natural Based Coagulants Results and examples Fruits, Textile, Slaughterhouses. Dairy, Species, PWTP. Ice Cream, Paper & Cardboard, WWTP. In general, ECOTAN series are efficient on both sedimentation

More information

Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon

Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon ME 2016 A Spring Semester 2010 Computing Techniques 3-0-3 Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon Description and Outcomes In

More information

YTÜ Mechanical Engineering Department

YTÜ Mechanical Engineering Department YTÜ Mechanical Engineering Department Lecture of Special Laboratory of Machine Theory, System Dynamics and Control Division Coupled Tank 1 Level Control with using Feedforward PI Controller Lab Report

More information

ADVANCED SEPARATION TECHNOLOGY APPLICATION FOR NOM REMOVAL FROM A FRESHWATER SUPPLY

ADVANCED SEPARATION TECHNOLOGY APPLICATION FOR NOM REMOVAL FROM A FRESHWATER SUPPLY Costa Mesa, July 27, 2011 -, July 29, 2011 ADVANCED SEPARATION TECHNOLOGY APPLICATION FOR NOM REMOVAL FROM A FRESHWATER SUPPLY Andrea G. Capodaglio,, Arianna Callegari and Philippe Sauvignet 650th Anniversary

More information

COMPLEX ANALYTICAL PROCEDURE FOR THE CHARACTERIZATON OF MODIFIED ZEOLIZE AND FOR THE ASSESSMENT ITS EFFECTS ON BIOLOGICAL WASTEWATER TREATMENT

COMPLEX ANALYTICAL PROCEDURE FOR THE CHARACTERIZATON OF MODIFIED ZEOLIZE AND FOR THE ASSESSMENT ITS EFFECTS ON BIOLOGICAL WASTEWATER TREATMENT XVII IMEKO World Congress Metrology in the 3rd Millennium June 22 27, 2003, Dubrovnik, Croatia COMPLEX ANALYTICAL PROCEDURE FOR THE CHARACTERIZATON OF MODIFIED ZEOLIZE AND FOR THE ASSESSMENT ITS EFFECTS

More information

AspenTech: VAPOR PRESSURES

AspenTech: VAPOR PRESSURES AspenTech: VAPOR PRESSURES Technical Memo No. XX-1 Subject: Vapor pressure interpolation error analysis To: Ms. Sam K. Safobeen Submitted by: Student 2 Date: May 11, 2010 Summary: I have compiled vapor

More information

Development of Dynamic Models. Chapter 2. Illustrative Example: A Blending Process

Development of Dynamic Models. Chapter 2. Illustrative Example: A Blending Process Development of Dynamic Models Illustrative Example: A Blending Process An unsteady-state mass balance for the blending system: rate of accumulation rate of rate of = of mass in the tank mass in mass out

More information

WEF Residuals and Biosolids Conference 2017

WEF Residuals and Biosolids Conference 2017 The sludge ozonation for different types of mixed liquor under high and low ph conditions by a plug-flow reactor Xiaoyu Zheng and Eric R. Hall Department of Civil Engineering, The University of British

More information

DYNAMIC MODELING OF FILAMENTOUS BULKING IN LAB-SCALE ACTIVATED SLUDGE PROCESSES

DYNAMIC MODELING OF FILAMENTOUS BULKING IN LAB-SCALE ACTIVATED SLUDGE PROCESSES DYNAMIC MODELING OF FILAMENTOUS BULKING IN LAB-SCALE ACTIVATED SLUDGE PROCESSES E.N. Banadda, I.Y. Smets, R. Jenné, and J.F. Van Impe Chemical Engineering Department Katholieke Universiteit Leuven, B-1

More information

Monitoring and Control of Biological Wastewater Treatment Process ChangKyoo Yoo

Monitoring and Control of Biological Wastewater Treatment Process ChangKyoo Yoo Monitoring and Control of Biological Wastewater Treatment Process ChangKyoo Yoo Department of Chemical Engineering (Process Control and Environmental Engineering Program) Pohang University of Science and

More information

Reprint. Project Summary. Side by Side Evaluation of ChemScan UV-4100 and Hach (Dr. Lange) Optiquant at Littleton-Englewood Colorado

Reprint. Project Summary. Side by Side Evaluation of ChemScan UV-4100 and Hach (Dr. Lange) Optiquant at Littleton-Englewood Colorado ChemScan Process Analyzer Reprint Project Summary Side by Side Evaluation of ChemScan UV-4100 and Hach (Dr. Lange) Optiquant at Littleton-Englewood Colorado Published by: Applied Spectrometry Associates,

More information

Real Time Control to increase Hydraulic Capacity of Wastewater Treatment Plants during rain

Real Time Control to increase Hydraulic Capacity of Wastewater Treatment Plants during rain Real Time Control to increase Hydraulic Capacity of Wastewater Treatment Plants during rain Anders Lynggaard-Jensen, Hans Peter Hansen, DHI Flemming Husum, Jakob Kaltoft, Morten Nygaard, Aarhus Water Prepared

More information

Effects of nanomaterial disposal on wastewater treatment microbial communities and toxicity implications

Effects of nanomaterial disposal on wastewater treatment microbial communities and toxicity implications 2013 Sustainable Nanotechnology Organization Conference Effects of nanomaterial disposal on wastewater treatment microbial communities and toxicity implications Yanjun Ma Jacob Metch, Eric Vejerano, Amy

More information

Sediment Distribution and Characteristics

Sediment Distribution and Characteristics Sediment Distribution and Characteristics Sediments at the bottom of ponds are a source or sink for nutrients in relation to the water column, contribute to turbidity during storm events, serve as the

More information

PRIMARY TREATMENT NATURE

PRIMARY TREATMENT NATURE PRIMARY TREATMENT NATURE Physical and chemical processes. Physical: sedimentation based in density differences Chemical: coagulation and flocculation, ph adjustment, precipitation (formation of insoluble

More information

SRV02-Series Rotary Experiment # 7. Rotary Inverted Pendulum. Student Handout

SRV02-Series Rotary Experiment # 7. Rotary Inverted Pendulum. Student Handout SRV02-Series Rotary Experiment # 7 Rotary Inverted Pendulum Student Handout SRV02-Series Rotary Experiment # 7 Rotary Inverted Pendulum Student Handout 1. Objectives The objective in this experiment is

More information

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK What is SIMULINK? SIMULINK is a software package for modeling, simulating, and analyzing

More information

A novel methodology for the calibration of discrete settling behaviour of activated sludge

A novel methodology for the calibration of discrete settling behaviour of activated sludge A novel methodology for the calibration of discrete settling behaviour of activated sludge E. Torfs*, F. Mahdavi Mazdeh*, G. Bellandi* and I. Nopens* * BIOMATH, Department of Mathematical Modelling, Statistics

More information

A First Course on Kinetics and Reaction Engineering Example 30.1

A First Course on Kinetics and Reaction Engineering Example 30.1 Example 30.1 Problem Purpose This problem will help you determine whether you have mastered the learning objectives for this unit. It illustrates the general approach to solving the design equations for

More information

Name Date Class STUDY GUIDE FOR CONTENT MASTERY. covalent bond molecule sigma bond exothermic pi bond

Name Date Class STUDY GUIDE FOR CONTENT MASTERY. covalent bond molecule sigma bond exothermic pi bond Covalent Bonding Section 9.1 The Covalent Bond In your textbook, read about the nature of covalent bonds. Use each of the terms below just once to complete the passage. covalent bond molecule sigma bond

More information

Controlling the nitrite:ammonium ratio in a SHARON reactor in view of its coupling with an Anammox process

Controlling the nitrite:ammonium ratio in a SHARON reactor in view of its coupling with an Anammox process Controlling the nitrite:ammonium ratio in a SHARON reactor in view of its coupling with an Anammox process E.I.P. Volcke*, M.C.M. van Loosdrecht** and P.A. Vanrolleghem* *BIOMATH, Department of Applied

More information

Delvin DeBoer, Ph.D., PE. MN/ND/SD SWTW April 29, 2014 OUTLINE

Delvin DeBoer, Ph.D., PE. MN/ND/SD SWTW April 29, 2014 OUTLINE Physical/Chemical Process FUNDAMENTALS Delvin DeBoer, Ph.D., PE MN/ND/SD SWTW April 29, 2014 OUTLINE Properties of turbidity and organic matter Mechanisms of coagulation, coagulant chemicals and jar testing

More information

Alonso G Griborio, PhD, PE 1 Randal W Samstag, MS, PE, BCEE 2. Hazen and Sawyer, Hollywood, FL, US

Alonso G Griborio, PhD, PE 1 Randal W Samstag, MS, PE, BCEE 2. Hazen and Sawyer, Hollywood, FL, US Alonso G Griborio, PhD, PE 1 Randal W Samstag, MS, PE, BCEE 2 1 Hazen and Sawyer, Hollywood, FL, US 2 Civil and Sanitary Engineer, Bainbridge Island, WA, US Introduction Clarifier Modeling Options Role

More information

APPLICATION OF METAKAOLIN GEOPOLYMER FOR AMMONIUM REMOVAL IN SMALL-SCALE WASTEWATER TREATMENT SYSTEMS

APPLICATION OF METAKAOLIN GEOPOLYMER FOR AMMONIUM REMOVAL IN SMALL-SCALE WASTEWATER TREATMENT SYSTEMS APPLICATION OF METAKAOLIN GEOPOLYMER FOR AMMONIUM REMOVAL IN SMALL-SCALE WASTEWATER TREATMENT SYSTEMS Tero Luukkonen, Kateřina VĕžnÍková, Emma-Tuulia Tolonen, Hanna Runtti, Juho Yliniemi, Tao Hu, Kimmo

More information

CT4471 Drinking Water 1

CT4471 Drinking Water 1 CT4471 Drinking Water 1 Coagulation & flocculation Dr.ir. J.Q.J.C. Verberk Room 2.98 25 September, 2007 1 Contents 1. Introduction 2. Coagulation: theory 3. Coagulation: practice 4. Flocculation: theory

More information

Forces Part 1: Newton s Laws

Forces Part 1: Newton s Laws Forces Part 1: Newton s Laws Last modified: 13/12/2017 Forces Introduction Inertia & Newton s First Law Mass & Momentum Change in Momentum & Force Newton s Second Law Example 1 Newton s Third Law Common

More information

industrial wastewater applications of coagulants and flocculants

industrial wastewater applications of coagulants and flocculants Water Technologies & Solutions technical paper industrial wastewater applications of coagulants and flocculants Author: Peter E. Norman, SUEZ Water Technologies & Solutions, Trevose, PA Presented at WEFTEC2018

More information

SETTLING VELOCITY OF PARTICLES

SETTLING VELOCITY OF PARTICLES SETTLING VELOCITY OF PARTICLES Equation for one-dimensional motion of particle through fluid Expression for acceleration of a particle settling in a fluid: m du dt = F e F b F D Where, F e = ma e acceleration

More information

CEE 370 Environmental Engineering Principles

CEE 370 Environmental Engineering Principles Updated: 29 September 2015 Print version EE 370 Environmental Engineering Principles Lecture #9 Material Balances I Reading: Mihelcic & Zimmerman, hapter 4 Davis & Masten, hapter 4 David Reckhow EE 370

More information

Chapter 9b: Numerical Methods for Calculus and Differential Equations. Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers

Chapter 9b: Numerical Methods for Calculus and Differential Equations. Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers Chapter 9b: Numerical Methods for Calculus and Differential Equations Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers Acceleration Initial-Value Problems Consider a skydiver

More information

Project Two. Outline. James K. Peterson. March 27, Cooling Models. Estimating the Cooling Rate k. Typical Cooling Project Matlab Session

Project Two. Outline. James K. Peterson. March 27, Cooling Models. Estimating the Cooling Rate k. Typical Cooling Project Matlab Session Project Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 27, 2018 Outline Cooling Models Estimating the Cooling Rate k Typical Cooling

More information

Project Two. James K. Peterson. March 26, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Project Two. James K. Peterson. March 26, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Project Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 26, 2019 Outline 1 Cooling Models 2 Estimating the Cooling Rate k 3 Typical

More information

Lecture 14 - Using the MATLAB Control System Toolbox and Simulink Friday, February 8, 2013

Lecture 14 - Using the MATLAB Control System Toolbox and Simulink Friday, February 8, 2013 Today s Objectives ENGR 105: Feedback Control Design Winter 2013 Lecture 14 - Using the MATLAB Control System Toolbox and Simulink Friday, February 8, 2013 1. introduce the MATLAB Control System Toolbox

More information

Differential Equations and the Parachute Problem

Differential Equations and the Parachute Problem Differential Equations and the Parachute Problem Ronald Phoebus and Cole Reilly May 10, 2004 Abstract The parachute problem is a classical first semester differential equations problem often introduced

More information

These subclasses are to be used according to the following general rules:

These subclasses are to be used according to the following general rules: CPC - B03D - 2017.08 B03D FLOTATION; DIFFERENTIAL SEDIMENTATION (sedimentation in general B01D 21/00; in combination with other separation of solids B03B; sink-float separation B03B 5/28; detergents, soaps

More information

Typical questions that CRE may answer: KGT 002 Kemisk Reactionsteknik I, 5p 1-

Typical questions that CRE may answer: KGT 002 Kemisk Reactionsteknik I, 5p 1- KGT 00 Kemisk Reactionsteknik I, 5p - KGT 00 Chemical Reaction Engineering I, 5p KGT 00 Kemisk Reactionsteknik I, 5p - KGT 00 Chemical Reaction Engineering I, 5p Instructors KGT 00 Kemisk Reaktionsteknik

More information

General Boundary Problem: System of Equations Solution

General Boundary Problem: System of Equations Solution MATH 54 General Boundary Problem: System of Equations Solution Consider again the scenario of a random walk X that starts at positive height j, and on each independent step, moves upward a units with probability

More information

Case Study: The Industrial Manufacture of Ammonia The Haber Process

Case Study: The Industrial Manufacture of Ammonia The Haber Process Case Study: The Industrial Manufacture of Ammonia The Haber Process In the Haber Process, ammonia (NH3) is synthesised from nitrogen and hydrogen gases: N 2 (g) + 3H 2 (g) Ý 2NH3(g), ΔH = 92.4 kjmol -1

More information

Applications of Newton's Laws

Applications of Newton's Laws Applications of Newton's Laws Purpose: To apply Newton's Laws by applying forces to objects and observing their motion; directly measuring these forces that are applied. Apparatus: Pasco track, Pasco cart,

More information

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations Lab 2 Worksheet Problems Problem : Geometry and Linear Equations Linear algebra is, first and foremost, the study of systems of linear equations. You are going to encounter linear systems frequently in

More information

Environmental Engineering Laboratory

Environmental Engineering Laboratory COURSE NO. Environmental Engineering Laboratory Course Introduction Experiment No.1 Experiment No.2 Experiment No.3 Experiment No.4 Experiment No.5 Experiment No.6 Experiment No.7 Experiment No.8 Experiment

More information

Nonlinear Robust PLS Modeling of Wastewater Effluent Quality Indices

Nonlinear Robust PLS Modeling of Wastewater Effluent Quality Indices JOURNAL OF SOFTWARE, VOL. 6, NO. 6, JUNE 0 067 Nonlinear Robust PLS Modeling of Wastewater Effluent Quality Indices Liie Zhao,, Decheng Yuan Shenyang University of chemical technology / Provincial key

More information

Lab 6d: Self-Erecting Inverted Pendulum (SEIP)

Lab 6d: Self-Erecting Inverted Pendulum (SEIP) Lab 6d: Self-Erecting Inverted Pendulum (SEIP) Arthur Schopen- Life swings like a pendulum backward and forward between pain and boredom. hauer 1 Objectives The goal of this project is to design a controller

More information

1 Lecture 8: Interpolating polynomials.

1 Lecture 8: Interpolating polynomials. 1 Lecture 8: Interpolating polynomials. 1.1 Horner s method Before turning to the main idea of this part of the course, we consider how to evaluate a polynomial. Recall that a polynomial is an expression

More information

Pitch Rate CAS Design Project

Pitch Rate CAS Design Project Pitch Rate CAS Design Project Washington University in St. Louis MAE 433 Control Systems Bob Rowe 4.4.7 Design Project Part 2 This is the second part of an ongoing project to design a control and stability

More information

PRESENCE OF PROTOZOA AND METAZOA IN ACTIVATED SLUDGE DURING FAVOURABLE AND UNFAVOURABLE CONDITIONS

PRESENCE OF PROTOZOA AND METAZOA IN ACTIVATED SLUDGE DURING FAVOURABLE AND UNFAVOURABLE CONDITIONS PRESENCE OF PROTOZOA AND METAZOA IN ACTIVATED SLUDGE DURING FAVOURABLE AND UNFAVOURABLE CONDITIONS ABSTRACT Kimoni Dhunpath ethekwini Municipality, Water and Sanitation, Scientific Services, P.O.Box 1038,

More information

Innovative Solutions from the Process Control Professionals

Innovative Solutions from the Process Control Professionals Control Station Innovative Solutions from the Process Control Professionals Software For Process Control Analysis, Tuning & Training Control Station Software For Process Control Analysis, Tuning & Training

More information

Critical analysis of constitutive functions for hindered settling velocity in 1-D settler models

Critical analysis of constitutive functions for hindered settling velocity in 1-D settler models Critical analysis of constitutive functions for hindered settling velocity in 1-D settler models Torfs, E.*, Balemans, S.*, Locatelli, F.**, Laurent, J.**, François, P.**, Bürger, R.***, Diehl, S.****,

More information

TECHNOLOGIES THAT TRANSFORM POLLUTANTS TO INNOCUOUS COMPONENTS: CHEMICAL AND PHYSICOCHEMICAL METHODS

TECHNOLOGIES THAT TRANSFORM POLLUTANTS TO INNOCUOUS COMPONENTS: CHEMICAL AND PHYSICOCHEMICAL METHODS TECHNOLOGIES THAT TRANSFORM POLLUTANTS TO INNOCUOUS COMPONENTS: CHEMICAL AND PHYSICOCHEMICAL METHODS HUANG Xia Tsinghua University, Beijing, P.R. China Keywords: Pollutants, Innocuous Components, Chemical

More information

Traffic Simulation Toolbox User s Manual

Traffic Simulation Toolbox User s Manual User s Manual Jesse Haber-Kucharsky Shreyas Sundaram University of Waterloo Department of Electrical and Computer Engineering May 31, 2011 Contents 1 Introduction 1 2 Basic Use 2 2.1 Quick-Start Example.......................

More information

ETA Recovery Process with Ion Exchange and Evaporation

ETA Recovery Process with Ion Exchange and Evaporation ETA Recovery Process with Ion Exchange and Evaporation IN HYOUNG RHEE, HYUN KYOUNG AHN, HYUN JUN JUNG Department of Energy and Environmental Engineering Soonchunhyang University 646 Eupnae-ri Shinchang-myeon

More information

Effect of ph and Temperature on Condensation and dissolution

Effect of ph and Temperature on Condensation and dissolution Proceedings of the 6th WSEAS International Conference on Signal Processing, Robotics and Automation, Corfu Island, Greece, February 16-19, 2007 288 Effect of ph and Temperature on Condensation and dissolution

More information

Sedimentation of Activated Sludge in Secondary Clarifiers

Sedimentation of Activated Sludge in Secondary Clarifiers Sedimentation of Activated Sludge in Secondary Clarifiers Michael Weiss, Benedek Gy. Plosz, Karim Essemiani, Jens Meinhold Anjou Recherche Veolia Water Chemin de la Digue BP 76 7863 Maisons-Laffitte Cedex,

More information

Example 8: CSTR with Multiple Solutions

Example 8: CSTR with Multiple Solutions Example 8: CSTR with Multiple Solutions This model studies the multiple steady-states of exothermic reactions. The example is from Parulekar (27) which in turn was modified from one by Fogler (1999). The

More information

What is physical treatment? What is chemical treatment?

What is physical treatment? What is chemical treatment? What is physical treatment? What is chemical treatment? Physical : having material existence and subject to the laws of nature. Chemical : any material used in, or produced by chemistry. Chemistry : is

More information

The Spring-Mass Oscillator

The Spring-Mass Oscillator The Spring-Mass Oscillator Goals and Introduction In this experiment, we will examine and quantify the behavior of the spring-mass oscillator. The spring-mass oscillator consists of an object that is free

More information

Hands-on Lab. Damped Compound Pendulum System ID (Experimental and Simulation) L Bar length m d Pivot to CG distance m m Mass of pendulum kg

Hands-on Lab. Damped Compound Pendulum System ID (Experimental and Simulation) L Bar length m d Pivot to CG distance m m Mass of pendulum kg Hands-on Lab Damped Compound Pendulum System ID (Experimental and Simulation) Preamble: c d dt d L Bar length m d Pivot to CG distance m m Mass of pendulum kg L L m g L Sketched above is a damped compound

More information

Shirley E. Clark, Ph.D., P.E., D. WRE Penn State Harrisburg. Robert Pitt, Ph.D., P.E., BCEE, D. WRE University of Alabama

Shirley E. Clark, Ph.D., P.E., D. WRE Penn State Harrisburg. Robert Pitt, Ph.D., P.E., BCEE, D. WRE University of Alabama Shirley E. Clark, Ph.D., P.E., D. WRE Penn State Harrisburg Robert Pitt, Ph.D., P.E., BCEE, D. WRE University of Alabama Site Stormwater Characteristics and Permit Limits Analytes on Permit 90 th percentile

More information

Phys 1401: General Physics I

Phys 1401: General Physics I 1. (0 Points) What course is this? a. PHYS 1401 b. PHYS 1402 c. PHYS 2425 d. PHYS 2426 2. (0 Points) Which exam is this? a. Exam 1 b. Exam 2 c. Final Exam 3. (0 Points) What version of the exam is this?

More information

Updated 2013 (Mathematica Version) M1.1. Lab M1: The Simple Pendulum

Updated 2013 (Mathematica Version) M1.1. Lab M1: The Simple Pendulum Updated 2013 (Mathematica Version) M1.1 Introduction. Lab M1: The Simple Pendulum The simple pendulum is a favorite introductory exercise because Galileo's experiments on pendulums in the early 1600s are

More information

Nutrients; Aerobic Carbon Production and Consumption

Nutrients; Aerobic Carbon Production and Consumption Nutrients; Aerobic Carbon Production and Consumption OCN 623 Chemical Oceanography Reading: Libes, Chapters 8 and 9 Formation and respiration of organic matter DINutrients POM Primary Producers Autotrophs

More information

THE RESEARCH OF ACTIVATED SLUDGE DEWATERING PROCESSES.

THE RESEARCH OF ACTIVATED SLUDGE DEWATERING PROCESSES. THE RESEARCH OF ACTIVATED SLUDGE DEWATERING PROCESSES. M.D. Gomelya, I. V Radovenchyk Department of Ecology and Plant Polymers Technology, National Technical University of Ukraine Kiev Polytechnic Institute.

More information

Dissolved Oxygen Control in Activated Sludge Process Using a Neural Network-Based Adaptive PID Algorithm

Dissolved Oxygen Control in Activated Sludge Process Using a Neural Network-Based Adaptive PID Algorithm applied sciences Article Dissolved Oxygen Control in Activated Sludge Process Using a Neural Network-Based Adaptive PID Algorithm Xianjun Du 1,2,3,4, Junlu Wang 1,3,4, Veeriah Jegatheesan 2, * and Guohua

More information

L-17 Coagulation and Flocculation Part-I. Environmental Engineering-I

L-17 Coagulation and Flocculation Part-I. Environmental Engineering-I L-17 Coagulation and Flocculation Part-I Environmental Engineering-I Content Part-I Coagulation, Types of Coagulant, Part-II dosing, rapid mixing, Flocculation-design parameters. Purpose The primary purpose

More information

Experiment 5: Analysis of Nutrients in Natural Waters CH3600 / ESP 5090: Environmental Chemistry, Plymouth State University

Experiment 5: Analysis of Nutrients in Natural Waters CH3600 / ESP 5090: Environmental Chemistry, Plymouth State University Experiment 5: Analysis of Nutrients in Natural Waters CH3600 / ESP 5090: Environmental Chemistry, Plymouth State University Adapted from "Experiment 3: Analysis of Phosphate in Water," Laboratory Experiments

More information

CSUS Department of Chemistry Experiment 3 Chem.1A

CSUS Department of Chemistry Experiment 3 Chem.1A Experiment 3: Reactions in Aqueous Solutions: Pre lab Name: 10 points Due at the beginning of lab. Section: 1. Precipitation Reactions a. On the reverse side of this page or on a separate piece of paper,

More information

The Islamic University of Gaza- Civil Engineering Department Sanitary Engineering- ECIV 4325 L7. Physical Wastewater Treatment

The Islamic University of Gaza- Civil Engineering Department Sanitary Engineering- ECIV 4325 L7. Physical Wastewater Treatment The Islamic University of Gaza- Civil Engineering Department Sanitary Engineering- ECIV 4325 L7. Physical Wastewater Treatment Based on Dr. Fahid Rabah lecture notes Why do we need to treat wastewater?

More information

Performance Improvement of Activated Sludge Wastewater Treatment by Nonlinear Natural Oscillations

Performance Improvement of Activated Sludge Wastewater Treatment by Nonlinear Natural Oscillations Performance Improvement of Activated Sludge Wastewater Treatment by Nonlinear Natural Oscillations By Shen Jianqiang and Ajay K. Ray* The paper describes a novel operation strategy for improvement in the

More information

Graded Project #1. Part 1. Explicit Runge Kutta methods. Goals Differential Equations FMN130 Gustaf Söderlind and Carmen Arévalo

Graded Project #1. Part 1. Explicit Runge Kutta methods. Goals Differential Equations FMN130 Gustaf Söderlind and Carmen Arévalo 2008-11-07 Graded Project #1 Differential Equations FMN130 Gustaf Söderlind and Carmen Arévalo This homework is due to be handed in on Wednesday 12 November 2008 before 13:00 in the post box of the numerical

More information

TABLE OF CONTENT. Chapter 4 Multiple Reaction Systems 61 Parallel Reactions 61 Quantitative Treatment of Product Distribution 63 Series Reactions 65

TABLE OF CONTENT. Chapter 4 Multiple Reaction Systems 61 Parallel Reactions 61 Quantitative Treatment of Product Distribution 63 Series Reactions 65 TABLE OF CONTENT Chapter 1 Introduction 1 Chemical Reaction 2 Classification of Chemical Reaction 2 Chemical Equation 4 Rate of Chemical Reaction 5 Kinetic Models For Non Elementary Reaction 6 Molecularity

More information

N10/4/CHEMI/SP2/ENG/TZ0/XX CHEMISTRY STANDARD LEVEL PAPER 2. Thursday 11 November 2010 (afternoon) Candidate session number.

N10/4/CHEMI/SP2/ENG/TZ0/XX CHEMISTRY STANDARD LEVEL PAPER 2. Thursday 11 November 2010 (afternoon) Candidate session number. N10/4/CHEMI/SP2/ENG/TZ0/XX 88106105 CHEMISTRY STANDARD LEVEL PAPER 2 Thursday 11 November 2010 (afternoon) 1 hour 15 minutes 0 0 Candidate session number INSTRUCTIONS TO CANDIDATES Write your session number

More information