Transport Processes in a 1D System

Slides:



Advertisements
Similar presentations
Chapter 3: Steady uniform flow in open channels
Advertisements

OPEN-CHANNEL FLOW Introduction Ch-10 of HH
Willem Botes: WAMTechnology cc A Milnerton Estuary Study (Diep River), during 2004 was used as an example. Click to continue A demonstration.
Advective Flows. Watershed & Water Quality Modeling Technical Support Center Surface Water Flow Options 1.Specified river, tributary flows (net flow)
WinTR-20 Course February Muskingum-Cunge Flood Routing Procedure in NRCS Hydrologic Models Prepared by William Merkel USDA-NRCS National Water Quality.
Aula Teórica 9&10 Equação de Evolução. Exemplos. Caso 1D.
Ground-Water Flow and Solute Transport for the PHAST Simulator Ken Kipp and David Parkhurst.
About Estuarine Dynamics
Free vs. Forced ConvectionFEFLOW ® Exercise Salt intrusion from top Vertical cross section.
Fluid Dynamics.
MECH 221 FLUID MECHANICS (Fall 06/07) Chapter 10: OPEN CHANNEL FLOWS
Derivation of the Gaussian plume model Distribution of pollutant concentration c in the flow field (velocity vector u ≡ u x, u y, u z ) in PBL can be generally.
Freshwater – IB Geography
Janusz Podliński, Artur Berendt, Jerzy Mizeraczyk Centre for Plasma and Laser Engineering The Szewalski Institute of Fluid-Flow Machinery Polish Academy.
11/02/2012PHY 711 Fall Lecture 281 PHY 711 Classical Mechanics and Mathematical Methods 10-10:50 AM MWF Olin 103 Plan for Lecture 28: Introduction.
Radionuclide dispersion modelling
Lecture Objectives: Review discretization methods for advection diffusion equation Accuracy Numerical Stability Unsteady-state CFD Explicit vs. Implicit.
UNIFORM FLOW AND DESIGN OF CHANNELS
PRINCIPLES OF OPEN CHANNEL FLOW
SELFE: Semi-implicit Eularian- Lagrangian finite element model for cross scale ocean circulation Paper by Yinglong Zhang and Antonio Baptista Presentation.
FNR 402 – Forest Watershed Management
Hydraulic Engineering
Lesson 2 How To Create a MOHID Project 19 Março 2013
Regional Advanced School on Physical and Mathematical Tools for the study of Marine Processes of Coastal Areas Physical and Biogeochemical Coupled Modelling.
A cell-integrated semi-Lagrangian dynamical scheme based on a step-function representation Eigil Kaas, Bennert Machenhauer and Peter Hjort Lauritzen Danish.
March 2009WinTR-20 Course1 Muskingum-Cunge Flood Routing Procedure in NRCS Hydrologic Models Prepared by William Merkel USDA-NRCS National Water Quality.
Mathematical Background
MIKE 11 IntroductionNovember 2002Part 1 Introduction to MIKE 11 Part 1 General Hydrodynamics within MIKE 11 –Basic Equations –Flow Types Numerical Scheme.
Grid or Mesh or Adaptive Procedure Fluid Dynamics is Made for This And this was developed in the Early 1970s.
ERT 349 SOIL AND WATER ENGINEERING
Hydraulic Routing in Rivers Reference: HEC-RAS Hydraulic Reference Manual, Version 4.1, Chapters 1 and 2 Reading: HEC-RAS Manual pp. 2-1 to 2-12 Applied.
Aula Teórica 9&10 Equação de Evolução. Exemplos. Caso 1D.
Flood Plain Modelling. Flood Plain Model Options Flood Plain Model Options: 1 - D : 1 - D : - Lump River and Flood Plain as Single branch ( Limitation:
Lecture Objectives: Review discretization methods for advection diffusion equation –Accuracy –Numerical Stability Unsteady-state CFD –Explicit vs. Implicit.
 It is the type of V. F. in which the width of throat is decreased to such an extent that the depth of water in throat is equal to critical depth. 
RIVER CHANNEL CALCULATIONS
Chapter 8: Internal Forced Convection
Open Channel Hydraulic
Internal Flow: General Considerations. Entrance Conditions Must distinguish between entrance and fully developed regions. Hydrodynamic Effects: Assume.
Algebra 1 Section 6.4 Solve absolute Value Equations and Inequalities
Project Describing Methods.
EXAMPLE Water flows uniformly in a 2m wide rectangular channel at a depth of 45cm. The channel slope is and n= Find the flow rate in cumecs.
UNIFORM FLOW AND DESIGN OF CHANNELS
Free vs. Forced Convection
VARIATION OF CHANNEL GEOMETRY
A Multiscale Approach to Mesh-based Surface Tension Flows
TEM – Lectures 21 to 23.
Approaches to Continental Scale River Flow Routing
ERT 349 SOIL AND WATER ENGINEERING
Map-Based Hydrology and Hydraulics
Distributed Flow Routing
Advection – Diffusion Equation
Lecture Objectives Learn about Implementation of Boundary Conditions
Chapter 3 Conics 3.4 The Ellipse MATHPOWERTM 12, WESTERN EDITION
Advection – Diffusion Equation
Transport Processes in a 1D System
Discharge, stream flow & channel shape
Fundamentals of Convection
Heat Transfer Coefficient
Surface Water Chapter 9.
Evolution from VBA V1 to V2 (Numerics)
E. Papanikolaou, D. Baraldi
Lecture Objectives: Boundary Conditions Project 1 (software)
Heat Transfer In Channels Flow
Internal Flow: General Considerations
Hydrodynamic Concepts
Chapter 3 Conics 3.4 The Ellipse MATHPOWERTM 12, WESTERN EDITION
Convective Heat Transfer
PHY 711 Classical Mechanics and Mathematical Methods
Transport Processes in a 1D System. Case of a River
Presentation transcript:

Transport Processes in a 1D System Case of a River

What is a river? 'grid definition Type grid 'Channel Length Length As Double 'Channel cross Section AreaVertical As Double waterdepth As Double 'Channel Horizontal Surface width As Double HorizontalArea As Double 'number of cells NC As Integer ‘cells length (spatial step) dx As Double 'distance of cell center to origin xc() As Double End Type

How to describe the Flow in a River Type Flow_properties Velocity As Double Discharge As Double Diffusivity As Double FourierNr As Double DiffusionNr As Double CourantNr As Double End Type In a real river the flow changes along the river. In this course we are going to consider a schematic river where the flow is uniform along the river.

Control Parameters Type Controls t As Double TimeDays As Double dt As Double tstart As Double tend As Double printtime As Double Printnumber As Double NumberOfOutputs As Integer DtPrint As Double PrintLine As Integer FirstPrintLine As Long FirstOutput As Boolean Advection As Boolean Diffusion As Boolean AdvType As String Explicit As Boolean End Type Control Parameters

Boundary Conditions Type Discharge_properties Type BoundaryCondition LeftType As Integer LeftValue As Double   RightType As Integer RightValue As Double PropDischarges As Discharges End Type Type Discharge_properties Number As Integer Name As String Cell As Integer VolumeRate As Double SpecificValue As Double End Type Type Discharges NumberOfDischarges As Integer Discharge() As Discharge_properties End Type

A Property Type Property Old() As Double NewValue() As Double   Default As Double minimum As Double maximum As Double MinimumActive As Boolean MaximumActive As Boolean RatioToC As Double RatioToPlot As Double DecayRate As Double GrowthRate As Double GrazingRate As Double GrazingEff As Double GrazingKsat As Double ExcretionRate As Double   TminToGrow As Double TmaxToGrow As Double ToptToGrow As Double LminToGrow As Double LmaxToGrow As Double LoptToGrow As Doub Boundary As BoundaryCondition SheetName As String Calc_As As PropCalcMethod InitCell As Integer End Type Type PropCalcMethod Method As String Imposed_TimeSeries() As Double N_Instants As Double N_interval As Integer SinusAmplitude As Double SinusPhaseVel As Double SinusPhase As Double SinusAverage As Double End Type

Properties Type Properties ' Prey As Property ' Predator As Property ' Detritus As Property Temperature As Property Generic As Property ' Nutrient As Property End Type

Equations Type Equation_Coef Left2Coef() As Double Ci Ci-1 Ci+1 Type Equation_Coef Left2Coef() As Double LeftCoef() As Double CenterCoef() As Double RigthCoef() As Double Rigth2Coef() As Double TiCoef() As Double End Type

Atmosphere Type Atmosphere Atm_Temp_Default As Double Atm_Humidity_Default As Double Atm_Radiation_Default As Double Atm_Wind_Default As Double Sky_Temp_Default As Double   Atm_Temperature () As Double Atm_Humidity () As Double Atm_Radiation () As Double Atm_Wind () As Double Sky_Temp () As Double  Calc_As As PropCalcMethod End Type