I/O format for 2D Steady Seepage Flow Analysis

Size: px
Start display at page:

Download "I/O format for 2D Steady Seepage Flow Analysis"

Transcription

1 I/O format for 2D Steady Seepage Flow Analysis (f90 FEM SEEP.f90) December 2, Outline of a program f90 FEM SEEP.f90 This is a program for 2D Steady Seepage Flow Analysis. This program can not treat unsteady problem. This program can do the saturated-unsaturated seepage flow analysis in the vertical section, and saturated seepage flow analysis in the horizontal and vertical section. Von Genuchten model is used as a unsaturated ground model. In this program, 3 node element or 4 node element can be used. Mixed model of 3 node elements and 4 node elements can not be solved. User of this program needs to choose either 3 node model or 4 node model. Linear triangular element is used as a 3 node element. 1 node has 2 degrees of freedom in horizontal direction and vertical direction. 4 node isoparametric element with 4 Gauss points is used as a 4 node element. 1 node has 2 degrees of freedom in horizontal direction and vertical direction. Thickness of the element is unit thickness and it is not changeable. As boundary conditions, impervious boundary, given total head boundary, given discharge boundary and saturation point boundary can be considered. In coordinate system, x-direction is defined as right direction and z-direction is defined as upward direction. Only an isotropic material can be treated. Nodal head must be inputted as total head and solution of simultaneous equations is described as total head. Pressure head is calculated as the difference between total head and position head. Simultaneous linear equations are solved using Cholesky method for banded matrix. Convergence criterion is that the case change of pressure head becomes less than Upper limit of iteration is set to 100 times. Input/Output file name can be defined arbitrarily with the format of csv and those are inputted from command line of MS-Windows. Used language for program is Fortran 90 and used compiler is MinGW gfortran. 1

2 2. Format of input file ( csv format) Items for input nod,nodt,nelt,matel,koh,koq,kou,idan Ak0,alpha,em...(1 MATEL)... node-1,node-2,node-3(,node-4),matno...(1 MATEL)... x,z,hvec...(1 NODT)... nokh,hinp...(1 KOH)... nokq,qinp...(1 KOQ)... noku...(1 KOU)... basic values for analysis Material properties Remarks Element-nodes relationship, material set number (counterclockwise order of node numbers) Node coordinate, initial value of total head (x: right-direction, z: upward-direction) Node number of given total head boundary, total head of node (Omit data input if KOH=0) Node number of given discharge boundary, discharge of node (Omit data input if KOQ=0) Node number of saturation point (Omit data input if KOU=0) nod : Number of nodes of each element (3 or 4) nokh : Node number with given total head NODT : Number of nodes nokq : Node number with given discharge NELT : Number of elements noqu : Node number with saturation point MATEL : Number of material sets Hinp : Total head at specified node KOH : Number of nodes with given total head Qinp : Discharge at specified node KOQ : Number of nodes with given discharge (positive: in-flow, negative: out-flow) KOU : Number of nodes with saturation point Ak0 : Permeability coefficient of element (saturated) idan : Section (0: Vertical, 1: horizontal) alpha : Unsaturated property (α) of element matno : Material set number em : Unsaturated property (m) of element Notice Unsaturated properties are α and m on van Genuchten model. { } m 1 S e = 1 + (α h s ) n n = 1 (0 < m < 1) 1 m { ( ) m} 2 K r = (S e ) 0.5 1/m 1 1 S e (0 S r, K r 1) K = K r K 0 K : Permeability coefficient S e : Degree of saturation K 0 : Saturated permeability coefficient h s : Suction head K r : Relative hydraulic conductivity function α : Scaling parameter m : Non-dimensional parameter Condition of node at which noting is inputted is no discharge. (in-flow discharge + out-flow discharge = 0) If input of in-flow or out-flow discharge is wanted especially, the values of KOQ, nokq and Qinp should be inputted. The discharge is known if total head is unknown at a node, and total head is known if discharge is unknown at a node. This condition is maintained except the node with saturation point. Nodes which have the possibility becoming saturation point such as downstream slope of embankment dam shall be specified as saturation point boundary with input of KOU and noku. It is necessary to input initial total heads for all nodes for iterative process of saturates-unsaturated analysis. It is better to input minimum total head in the domain. If proper initial total heads are not inputted, unsuitable results may be obtained. 2

3 2.1 Format of output file ( csv format) nod,nodt,nelt,matel,koh,koq,kou,idan (Each value of above items) *node characteristics node,x,z,koh,koq,kou,hinp,qinp node : Node number x,z : (x,z) Coordinate of node KOH : Node with given total head (1: yes, 0: no) KOQ : Node with given discharge (1: yes, 0: no) KOU : Node with saturation point (1: yes, 0: no) Hinp : Given total head (if KOH=0, value=0) Qinp : Given discharge (if KOQ=0, value=0)...(1 NODT)... *element characteristics element,node-1,node-2,node-3(,node-4),ak0,alpha,em,matno element : Element number node-1,node-2,node-3(,node-4) : Element-nodes relationship Ak0 : Permeability coefficient of element (saturated) alpha : Unsaturated property α em : Unsaturated property m matno : material set number...(1 NELT)... *node value node,x,z,hvec,qvec,pvec node : Node number x : x-coordinate of node z : z-coordinate of node hvec : Total head of node qvec : Discharge of node pvec : Pressure head of node (total head position head)...(1 NODT)... *element value element,xg,zg,vx,vz,vm,ak0,akr,matno element : Element number xg : x-coordinate of COG of element zg : z-coordinate of COG of element vx : x-direction mean velocity in global coordinate system vz : z-direction mean velocity in global coordinate system vm : Combined mean velocity in global coordinate system Ak0 : Permeability coefficient (saturated) Akr : Relative hydraulic conductivity function of element matno : Material set number...(1 NELT)... #,Summary #,item,qti,qto #,discharge,sum total of in-flow,sum total of out-flow #,item,ne,vmax,xg,zg #,vmmax,element number,max.velocity in all elements,x-coordinate of COG,,z-coordinate of COG #,vimax,element number,max.velocity in in-flow elements,x-coordinate of COG,,z-coordinate of COG #,vomax,element number,max.velocity in out-flow elements,x-coordinate of COG,,z-coordinate of COG #,NELT=(Number of elements), NODT=(Number of nodes), nt=(nt), mm=(mm), ib=(ib) #,nnn=(number of iteration), icount=(number of converged degrees of freedom) #,Calculation time=(calculation time) #,Date time=(date of execution) nt mm ib : Total degrees of freedom of FE equation : Dimension of reduced FE equation : band width of reduced FE equation 3

4 3. Sample model analysis 3.1 Outline of model Consider rectangular saturated area with 10m-length and 4m-width. Total heads of 10m are given at left side nodes and total heads of 0m are given at right side nodes. Permeability coefficients of all elements are m/s y distance (m) x distance (m) 3.2 Input data sample Seepage-test1 4,18,10,1,6,0,0,1 nod,nodt,nelt,matel,koh,koq,kou,idan 1e-7,0.1,0.7 Material properties (k,alpha,m) for material set No.1 1, 2, 8, 7,1 Element-nodes relationship for element No.1, Material set number (No.1) 2, 3, 9, 8,1 Element-nodes relationship for element No.2, Material set number (No.1) 3, 4,10, 9,1 Element-nodes relationship for element No.3, Material set number (No.1) 4, 5,11,10,1 Element-nodes relationship for element No.4, Material set number (No.1) 5, 6,12,11,1 Element-nodes relationship for element No.5, Material set number (No.1) 7, 8,14,13,1 Element-nodes relationship for element No.6, Material set number (No.1) 8, 9,15,14,1 Element-nodes relationship for element No.7, Material set number (No.1) 9,10,16,15,1 Element-nodes relationship for element No.8, Material set number (No.1) 10,11,17,16,1 Element-nodes relationship for element No.9, Material set number (No.1) 11,12,18,17,1 Element-nodes relationship for element No.10, Material set number (No.1) 0,0,0 Coordinates (x,z) and initial total head for node No.1 2,0,0 Coordinates (x,z) and initial total head for node No.2 4,0,0 Coordinates (x,z) and initial total head for node No.3 6,0,0 Coordinates (x,z) and initial total head for node No.4 8,0,0 Coordinates (x,z) and initial total head for node No.5 10,0,0 Coordinates (x,z) and initial total head for node No.6 0,2,0 Coordinates (x,z) and initial total head for node No.7 2,2,0 Coordinates (x,z) and initial total head for node No.8 4,2,0 Coordinates (x,z) and initial total head for node No.9 6,2,0 Coordinates (x,z) and initial total head for node No.10 8,2,0 Coordinates (x,z) and initial total head for node No.11 10,2,0 Coordinates (x,z) and initial total head for node No.12 0,4,0 Coordinates (x,z) and initial total head for node No.13 2,4,0 Coordinates (x,z) and initial total head for node No.14 4,4,0 Coordinates (x,z) and initial total head for node No.15 6,4,0 Coordinates (x,z) and initial total head for node No.16 8,4,0 Coordinates (x,z) and initial total head for node No.17 10,4,0 Coordinates (x,z) and initial total head for node No.18 1,10 Node number and given total head (Node No. 1, total head 10m) 7,10 Node number and given total head (Node No. 7, total head 10m) 13,10 Node number and given total head (Node No.10, total head 10m) 6, 0 Node number and given total head (Node No. 6, total head 0m) 12, 0 Node number and given total head (Node No.12, total head 0m) 18, 0 Node number and given total head (Node No.18, total head 0m) 4

5 3.3 Output data sample Output data sample is shown below. The significant figure is set to 3 due to space arrangement. *node value node, coord-x, coord-z, hvec, qvec, pvec 1, 0.000E+00, 0.000E+00, 0.100E+02, 0.100E-06, 0.100E+02 2, 0.200E+01, 0.000E+00, 0.800E+01, 0.000E+00, 0.800E+01 3, 0.400E+01, 0.000E+00, 0.600E+01, 0.000E+00, 0.600E+01 4, 0.600E+01, 0.000E+00, 0.400E+01, 0.000E+00, 0.400E+01 5, 0.800E+01, 0.000E+00, 0.200E+01, 0.000E+00, 0.200E+01 6, 0.100E+02, 0.000E+00, 0.000E+00,-0.100E-06, 0.000E+00 7, 0.000E+00, 0.200E+01, 0.100E+02, 0.200E-06, 0.100E+02 8, 0.200E+01, 0.200E+01, 0.800E+01, 0.000E+00, 0.800E+01 9, 0.400E+01, 0.200E+01, 0.600E+01, 0.000E+00, 0.600E+01 10, 0.600E+01, 0.200E+01, 0.400E+01, 0.000E+00, 0.400E+01 11, 0.800E+01, 0.200E+01, 0.200E+01, 0.000E+00, 0.200E+01 12, 0.100E+02, 0.200E+01, 0.000E+00,-0.200E-06, 0.000E+00 13, 0.000E+00, 0.400E+01, 0.100E+02, 0.100E-06, 0.100E+02 14, 0.200E+01, 0.400E+01, 0.800E+01, 0.000E+00, 0.800E+01 15, 0.400E+01, 0.400E+01, 0.600E+01, 0.000E+00, 0.600E+01 16, 0.600E+01, 0.400E+01, 0.400E+01, 0.000E+00, 0.400E+01 17, 0.800E+01, 0.400E+01, 0.200E+01, 0.000E+00, 0.200E+01 18, 0.100E+02, 0.400E+01, 0.000E+00,-0.100E-06, 0.000E+00 *element value elem, xg, zg, vx, vz, vm, Ak0, Akr, matno 1, 0.100E+01, 0.100E+01, 0.100E-06, 0.638E-22, 0.100E-06, 0.100E-06, 0.100E+01, 1 2, 0.300E+01, 0.100E+01, 0.100E-06, 0.277E-22, 0.100E-06, 0.100E-06, 0.100E+01, 1 3, 0.500E+01, 0.100E+01, 0.100E-06,-0.249E-22, 0.100E-06, 0.100E-06, 0.100E+01, 1 4, 0.700E+01, 0.100E+01, 0.100E-06,-0.277E-23, 0.100E-06, 0.100E-06, 0.100E+01, 1 5, 0.900E+01, 0.100E+01, 0.100E-06,-0.277E-23, 0.100E-06, 0.100E-06, 0.100E+01, 1 6, 0.100E+01, 0.300E+01, 0.100E-06,-0.360E-22, 0.100E-06, 0.100E-06, 0.100E+01, 1 7, 0.300E+01, 0.300E+01, 0.100E-06,-0.555E-22, 0.100E-06, 0.100E-06, 0.100E+01, 1 8, 0.500E+01, 0.300E+01, 0.100E-06, 0.277E-23, 0.100E-06, 0.100E-06, 0.100E+01, 1 9, 0.700E+01, 0.300E+01, 0.100E-06, 0.360E-22, 0.100E-06, 0.100E-06, 0.100E+01, 1 10, 0.900E+01, 0.300E+01, 0.100E-06, 0.416E-23, 0.100E-06, 0.100E-06, 0.100E+01, 1 #,Summary #,item, QTi, QTo #,discharge, 0.400E-06, E-06 #,item, ne, vmax, xg, zg #,vmmax, 1, 0.100E-06, 0.100E+01, 0.100E+01 #,vimax, 1, 0.100E-06, 0.100E+01, 0.100E+01 #,vomax, 5, 0.100E-06, 0.900E+01, 0.100E+01 #,NELT=10 NODT=18 nt=18 mm=12 ib=6 #,Convergence nnn=2 icount=18 #,Calculation time= 0.000(sec) #,Date_time= _20:16:51_(gfortran) 5

I/O data format for 2D Unsteady Heat Conduction Analysis

I/O data format for 2D Unsteady Heat Conduction Analysis December 2, 2012 I/O data format for 2D Unsteady Heat Conduction Analysis (f90 FEM HEAT.f90) 1. Outline of a program f90 FEM HEAT.f90 This is a program for 2D Unsteady Heat Conduction Analysis. This program

More information

Developer s Tips. Groundwater analysis using Slide

Developer s Tips. Groundwater analysis using Slide Developer s Tips Groundwater analysis using Slide In this article we introduce the new groundwater/seepage analysis module, which was built into version 5.0 of Slide. The groundwater module uses a finite

More information

Stability with FE Pore-Water Pressure

Stability with FE Pore-Water Pressure 1 Introduction Stability with FE Pore-Water Pressure One of the most powerful features of GeoStudio is the smooth integration that exists between all the individual programs. For simple pore-water pressure

More information

lecture 8 Groundwater Modelling -1

lecture 8 Groundwater Modelling -1 The Islamic University of Gaza Faculty of Engineering Civil Engineering Department Water Resources Msc. Groundwater Hydrology- ENGC 6301 lecture 8 Groundwater Modelling -1 Instructor: Dr. Yunes Mogheir

More information

Seepage Flow through Homogeneous Earth Dams

Seepage Flow through Homogeneous Earth Dams Seepage Flow through Homogeneous Earth Dams In order to draw flow net to find quantity of seepage through the body of the earth dam it is essential to locate top line of seepage. This upper boundary is

More information

Tutorial 7 Finite Element Groundwater Seepage. Steady state seepage analysis Groundwater analysis mode Slope stability analysis

Tutorial 7 Finite Element Groundwater Seepage. Steady state seepage analysis Groundwater analysis mode Slope stability analysis Tutorial 7 Finite Element Groundwater Seepage Steady state seepage analysis Groundwater analysis mode Slope stability analysis Introduction Within the Slide program, Slide has the capability to carry out

More information

SOIL PEMEABILITY AND SEEPAGE

SOIL PEMEABILITY AND SEEPAGE SOIL PEMEABILITY AND SEEPAGE The elevation head (z) is equal to the vertical distance of the point above the datum. The pressure head (p/γ w)is equal to the head indicated by a piezometer with its tip

More information

Determination of Free Surface in Steady-State Seepage through a Dam with Toe Drain by the Boundary Element Method

Determination of Free Surface in Steady-State Seepage through a Dam with Toe Drain by the Boundary Element Method Determination of Free Surface in Steady-State Seepage through a Dam with Toe Drain by the Boundary Element Method Somchart Chantasiriwan Faculty of Engineering, Thammasat University, Rangsit Campus, Pathum

More information

Seepage_CSM8. A spreadsheet tool implementing the Finite Difference Method (FDM) for the solution of twodimensional steady-state seepage problems.

Seepage_CSM8. A spreadsheet tool implementing the Finite Difference Method (FDM) for the solution of twodimensional steady-state seepage problems. Seepage_CSM8 A spreadsheet tool implementing the Finite Difference Method (FDM) for the solution of twodimensional steady-state seepage problems. USER S MANUAL J. A. Knappett (2012) This user s manual

More information

HYDRUS (2D/3D) Software Package for Simulating the Two- and Three-Dimensional Movement of Water, Heat, and Multiple Solutes

HYDRUS (2D/3D) Software Package for Simulating the Two- and Three-Dimensional Movement of Water, Heat, and Multiple Solutes HYDRUS (2D/3D) Software Package for Simulating the Two- and Three-Dimensional Movement of Water, Heat, and Multiple Solutes in Variably-Saturated Media User Manual Version 1.02 March 2007 PC-Progress,

More information

GEOSTUDIO Tutorials Results and Procedure Comparison

GEOSTUDIO Tutorials Results and Procedure Comparison GEOSTUDIO Tutorials Results and Procedure Comparison Angel Francisco Martinez Application Engineer MIDAS IT Estados Unidos Integrated Solver Optimized for the next generation 64-bit platform Finite Element

More information

Objectives Build a 3D mesh and a FEMWATER flow model using the conceptual model approach. Run the model and examine the results.

Objectives Build a 3D mesh and a FEMWATER flow model using the conceptual model approach. Run the model and examine the results. v. 10.0 GMS 10.0 Tutorial Build a FEMWATER model to simulate flow Objectives Build a 3D mesh and a FEMWATER flow model using the conceptual model approach. Run the model and examine the results. Prerequisite

More information

Transient Groundwater Analysis

Transient Groundwater Analysis Transient Groundwater Analysis 18-1 Transient Groundwater Analysis A transient groundwater analysis may be important when there is a time-dependent change in pore pressure. This will occur when groundwater

More information

2D & 3D Semi Coupled Analysis Seepage-Stress-Slope

2D & 3D Semi Coupled Analysis Seepage-Stress-Slope D & D Semi Coupled Analysis Seepage-Stress-Slope MIDASoft Inc. Angel Francisco Martinez Civil Engineer MIDASoft NY office Integrated Solver Optimized for the next generation 6-bit platform Finite Element

More information

Implementation of the skyline algorithm in finite-element computations of Saint-Venant equations

Implementation of the skyline algorithm in finite-element computations of Saint-Venant equations P a g e 61 Journal of Applied Research in Water and Wastewater (14) 61-65 Original paper Implementation of the skyline algorithm in finite-element computations of Saint-Venant equations Reza Karimi 1,

More information

Water seepage through a dam: A finite element approach

Water seepage through a dam: A finite element approach Water seepage through a dam: A finite element approach Ashley B. Pitcher Student Number 250098269 AM466b Final Project (Undergraduate) University of Western Ontario April 15, 2005 Abstract We consider

More information

SOLUTION OF CONFINED SEEPAGE PROBLEMS BELOW HYDRAULIC STRUCTURES BY FINITE ELEMENT METHOD

SOLUTION OF CONFINED SEEPAGE PROBLEMS BELOW HYDRAULIC STRUCTURES BY FINITE ELEMENT METHOD NIJOTECH VOL. 9 NO. 1 SEPTEMBER 1985 RAO 55 SOLUTION OF CONFINED SEEPAGE PROBLEMS BELOW HYDRAULIC STRUCTURES BY FINITE ELEMENT METHOD By L. H. Rao Department of Civil Engineering University of Nigeria,

More information

1. Create a SEEP2D conceptual model. 3. Define conditions for both a saturated and unsaturated zone. 4. Convert the model to SEEP2D and run SEEP2D.

1. Create a SEEP2D conceptual model. 3. Define conditions for both a saturated and unsaturated zone. 4. Convert the model to SEEP2D and run SEEP2D. GMS TUTORIALS SEEP 2D Unconfined SEEP2D can be used for both confined and unconfined problems. The steps involved in performing a SEEP2D simulation for the unconfined condition are described in this tutorial.

More information

GEO-SLOPE International Ltd, Calgary, Alberta, Canada Lysimeters

GEO-SLOPE International Ltd, Calgary, Alberta, Canada   Lysimeters 1 Introduction Lysimeters This steady state SEEP/W example illustrates how to model a lysimeter from construction of the model to interpretation of the results. Lysimeters are used to measure flow through

More information

Contents. I The Basic Framework for Stationary Problems 1

Contents. I The Basic Framework for Stationary Problems 1 page v Preface xiii I The Basic Framework for Stationary Problems 1 1 Some model PDEs 3 1.1 Laplace s equation; elliptic BVPs... 3 1.1.1 Physical experiments modeled by Laplace s equation... 5 1.2 Other

More information

MIDAS Geotechnical Training Series

MIDAS Geotechnical Training Series MIDAS Geotechnical Training Series Fully Coupled vs Consolidation Analysis Seongwan Bae Angel F. Martinez MIDAS Information Technology Integrated Solver Optimized for the next generation 6-bit platform

More information

HYDRUS (2D/3D) Computer Session

HYDRUS (2D/3D) Computer Session HYDRUS (2D/3D) Computer Session Three-Dimensional Water Flow and Solute Transport This tutorial considers water flow and solute transport in a simple three-dimensional transport domain. The transport domain

More information

Lateral Loading of Suction Pile in 3D

Lateral Loading of Suction Pile in 3D Lateral Loading of Suction Pile in 3D Buoy Chain Sea Bed Suction Pile Integrated Solver Optimized for the next generation 64-bit platform Finite Element Solutions for Geotechnical Engineering 00 Overview

More information

GRADUALLY VARIED FLOW

GRADUALLY VARIED FLOW CVE 341 Water Resources Lecture Notes 5: (Chapter 14) GRADUALLY VARIED FLOW FLOW CLASSIFICATION Uniform (normal) flow: Depth is constant at every section along length of channel Non-uniform (varied) flow:

More information

INTRODUCTION TO HEC-RAS

INTRODUCTION TO HEC-RAS INTRODUCTION TO HEC-RAS HEC- RAS stands for Hydrologic Engineering Center s River Analysis System By U.S. Army Corps of Engineers One dimensional analysis of : 1. Steady flow 2. Unsteady flow 3. Sediment

More information

RAPID DRAWDOWN ANALYSIS

RAPID DRAWDOWN ANALYSIS RAPID DRAWDOWN ANALYSIS 6 RAPID DRAWDOWN ANALYSIS This example concerns the stability of a reservoir dam under conditions of drawdown. Fast reduction of the reservoir level may lead to instability of the

More information

Terrain settlement analysis

Terrain settlement analysis Engineering manual No. 21 Updated: 02/2018 Terrain settlement analysis Program: File: FEM Demo_manual_21.gmk This example contains the solution to terrain settlement under surcharge loading using the Finite

More information

v GMS 10.0 Tutorial SEEP2D Sheet Pile Use SEEP2D to create a flow net around a sheet pile Prerequisite Tutorials Feature Objects

v GMS 10.0 Tutorial SEEP2D Sheet Pile Use SEEP2D to create a flow net around a sheet pile Prerequisite Tutorials Feature Objects v. 10.0 GMS 10.0 Tutorial Use SEEP2D to create a flow net around a sheet pile Objectives Learn how to set up and solve a seepage problem involving flow around a sheet pile using the SEEP2D interface in

More information

EXTENSION. a 1 b 1 c 1 d 1. Rows l a 2 b 2 c 2 d 2. a 3 x b 3 y c 3 z d 3. This system can be written in an abbreviated form as

EXTENSION. a 1 b 1 c 1 d 1. Rows l a 2 b 2 c 2 d 2. a 3 x b 3 y c 3 z d 3. This system can be written in an abbreviated form as EXTENSION Using Matrix Row Operations to Solve Systems The elimination method used to solve systems introduced in the previous section can be streamlined into a systematic method by using matrices (singular:

More information

2016(v1.1) Release Notes

2016(v1.1) Release Notes 2016(v1.1) Release Notes Ver 4.0.0. 개정내용 2016(v1.1) Release Notes Copyright c 1989~2014. MIDAS Information Technology Co., Ltd. ALL RIGHTS RESERVED. 1 / 21 Release Note 2016(v1.1) Release Notes Pre-Processing

More information

v SEEP2D Sheet Pile Use SEEP2D to create a flow net around a sheet pile GMS Tutorials Time minutes Prerequisite Tutorials Feature Objects

v SEEP2D Sheet Pile Use SEEP2D to create a flow net around a sheet pile GMS Tutorials Time minutes Prerequisite Tutorials Feature Objects v. 10.1 GMS 10.1 Tutorial Use SEEP2D to create a flow net around a sheet pile Objectives Learn how to set up and solve a seepage problem involving flow around a sheet pile using the SEEP2D interface in

More information

f xx + f yy = F (x, y)

f xx + f yy = F (x, y) Application of the 2D finite element method to Laplace (Poisson) equation; f xx + f yy = F (x, y) M. R. Hadizadeh Computer Club, Department of Physics and Astronomy, Ohio University 4 Nov. 2013 Domain

More information

Chapter 3 Analysis of Original Steel Post

Chapter 3 Analysis of Original Steel Post Chapter 3. Analysis of original steel post 35 Chapter 3 Analysis of Original Steel Post This type of post is a real functioning structure. It is in service throughout the rail network of Spain as part

More information

SEEP2D & GMS: Simple Tools for Solving a Variety of Seepage Problems. Clarissa Hansen, ERDC-CHL

SEEP2D & GMS: Simple Tools for Solving a Variety of Seepage Problems. Clarissa Hansen, ERDC-CHL SEEP2D & GMS: Simple Tools for Solving a Variety of Seepage Problems Clarissa Hansen, ERDC-CHL CHL Fred Tracy, ERDC-ITL Eileen Glynn, ERDC-GSL Cary Talbot, ERDC-CHL CHL Earl Edris,, ERDC-CHL CHL SEEP2D

More information

CHAPTER 7 FLOOD HYDRAULICS & HYDROLOGIC VIVEK VERMA

CHAPTER 7 FLOOD HYDRAULICS & HYDROLOGIC VIVEK VERMA CHAPTER 7 FLOOD HYDRAULICS & HYDROLOGIC VIVEK VERMA CONTENTS 1. Flow Classification 2. Chezy s and Manning Equation 3. Specific Energy 4. Surface Water Profiles 5. Hydraulic Jump 6. HEC-RAS 7. HEC-HMS

More information

Groundwater hydraulics numerical modelling

Groundwater hydraulics numerical modelling Groundwater hydraulics numerical modelling Martin Šanda, B673 martin.sanda@fsv.cvut.cz Martina Sobotková, B609 martina.sobotkova@fsv.cvut.cz CTU in Prague, FCE, Dept. of Irrigation, Drainage and landscape

More information

v. 9.0 GMS 9.0 Tutorial SEEP2D Sheet Pile Use SEEP2D to create a flow net around a sheet pile Prerequisite Tutorials None Time minutes

v. 9.0 GMS 9.0 Tutorial SEEP2D Sheet Pile Use SEEP2D to create a flow net around a sheet pile Prerequisite Tutorials None Time minutes v. 9.0 GMS 9.0 Tutorial Use SEEP2D to create a flow net around a sheet pile Objectives Learn how to set up and solve a seepage problem involving flow around a sheet pile using the SEEP2D interface in GMS.

More information

RESCDAM DEVELOPMENT OF RESCUE ACTIONS BASED ON DAM BREAK FLOOD ANALYSI A PREVENTION PROJECT UNDER THE EUROPEAN COMMUNITY ACTION PROGRAMME

RESCDAM DEVELOPMENT OF RESCUE ACTIONS BASED ON DAM BREAK FLOOD ANALYSI A PREVENTION PROJECT UNDER THE EUROPEAN COMMUNITY ACTION PROGRAMME RESCDAM DEVELOPMENT OF RESCUE ACTIONS BASED ON DAM BREAK FLOOD ANALYSI A PREVENTION PROJECT UNDER THE EUROPEAN COMMUNITY ACTION PROGRAMME 1-DIMENSIONAL FLOW SIMULATIONS FOR THE KYRKÖSJÄRVI DAM BREAK HAZARD

More information

Prepared for CIVE 401 Hydraulic Engineering By Kennard Lai, Patrick Ndolo Goy & Dr. Pierre Julien Fall 2015

Prepared for CIVE 401 Hydraulic Engineering By Kennard Lai, Patrick Ndolo Goy & Dr. Pierre Julien Fall 2015 Prepared for CIVE 401 Hydraulic Engineering By Kennard Lai, Patrick Ndolo Goy & Dr. Pierre Julien Fall 2015 Contents Introduction General Philosophy Overview of Capabilities Applications Computational

More information

Guidelines for proper use of Plate elements

Guidelines for proper use of Plate elements Guidelines for proper use of Plate elements In structural analysis using finite element method, the analysis model is created by dividing the entire structure into finite elements. This procedure is known

More information

Kansas Geological Survey

Kansas Geological Survey Kansas Geological Survey Recent MODFLOW developments for groundwater modeling Ashok KC and Marios Sophocleous Case Study P=0.0055 m/day T=0.001 m/day E=0.0005 m/day 100 m 98 m -4 m 3 /day 95 m 25 m 25

More information

Isotropic Porous Media Tutorial

Isotropic Porous Media Tutorial STAR-CCM+ User Guide 3927 Isotropic Porous Media Tutorial This tutorial models flow through the catalyst geometry described in the introductory section. In the porous region, the theoretical pressure drop

More information

APPENDIX B STEP-BY-STEP APPLICATIONS OF THE FEMWATER-LHS

APPENDIX B STEP-BY-STEP APPLICATIONS OF THE FEMWATER-LHS APPENDIX B STEP-BY-STEP APPLICATIONS OF THE FEMWATER-LHS Steady Two-Dimensional Drainage Problem 1. Double-click on the Argus ONE icon to open Argus ONE. 2. From the PIEs menu found along the top of the

More information

Wall thickness= Inlet: Prescribed mass flux. All lengths in meters kg/m, E Pa, 0.3,

Wall thickness= Inlet: Prescribed mass flux. All lengths in meters kg/m, E Pa, 0.3, Problem description Problem 30: Analysis of fluid-structure interaction within a pipe constriction It is desired to analyze the flow and structural response within the following pipe constriction: 1 1

More information

POTATO FIELD MOISTURE CONTENT

POTATO FIELD MOISTURE CONTENT 11 POTATO FIELD MOISTURE CONTENT This tutorial demonstrates the applicability of PLAXIS to agricultural problems. The potato field tutorial involves a loam layer on top of a sandy base. The water level

More information

1.2 Numerical Solutions of Flow Problems

1.2 Numerical Solutions of Flow Problems 1.2 Numerical Solutions of Flow Problems DIFFERENTIAL EQUATIONS OF MOTION FOR A SIMPLIFIED FLOW PROBLEM Continuity equation for incompressible flow: 0 Momentum (Navier-Stokes) equations for a Newtonian

More information

CHAPTER 5 FINITE ELEMENT METHOD

CHAPTER 5 FINITE ELEMENT METHOD CHAPTER 5 FINITE ELEMENT METHOD 5.1 Introduction to Finite Element Method Finite element analysis is a computer based numerical method to deduce engineering structures strength and behaviour. Its use can

More information

Melting Using Element Death

Melting Using Element Death Melting Using Element Death Introduction This tutorial was completed using ANSYS 7.0 The purpose of the tutorial is to outline the steps required to use element death to model melting of a material. Element

More information

Linear Equation Systems Iterative Methods

Linear Equation Systems Iterative Methods Linear Equation Systems Iterative Methods Content Iterative Methods Jacobi Iterative Method Gauss Seidel Iterative Method Iterative Methods Iterative methods are those that produce a sequence of successive

More information

Module 1 Lecture Notes 2. Optimization Problem and Model Formulation

Module 1 Lecture Notes 2. Optimization Problem and Model Formulation Optimization Methods: Introduction and Basic concepts 1 Module 1 Lecture Notes 2 Optimization Problem and Model Formulation Introduction In the previous lecture we studied the evolution of optimization

More information

Period #10: Multi dimensional Fluid Flow in Soils (II)

Period #10: Multi dimensional Fluid Flow in Soils (II) Period #10: Multi dimensional Fluid Flow in Soils (II) A. Review Our objective is to solve multi dimensional fluid flow problems in soils. Last time, mass conservation and Darcy s Law were used to derive

More information

Introducion to Hydrologic Engineering Centers River Analysis System (HEC- RAS) Neena Isaac Scientist D CWPRS, Pune -24

Introducion to Hydrologic Engineering Centers River Analysis System (HEC- RAS) Neena Isaac Scientist D CWPRS, Pune -24 Introducion to Hydrologic Engineering Centers River Analysis System (HEC- RAS) Neena Isaac Scientist D CWPRS, Pune -24 One dimensional river models (1-D models) Assumptions Flow is one dimensional Streamline

More information

The DRM-MD integral equation method for the numerical solution of convection-diffusion

The DRM-MD integral equation method for the numerical solution of convection-diffusion The DRM-MD integral equation method for the numerical solution of convection-diffusion equation V. Popov & H. Power Wessex Institute of Technology, Ashurst Lodge, Ashurst, Abstract This work presents a

More information

Adarsh Krishnamurthy (cs184-bb) Bela Stepanova (cs184-bs)

Adarsh Krishnamurthy (cs184-bb) Bela Stepanova (cs184-bs) OBJECTIVE FLUID SIMULATIONS Adarsh Krishnamurthy (cs184-bb) Bela Stepanova (cs184-bs) The basic objective of the project is the implementation of the paper Stable Fluids (Jos Stam, SIGGRAPH 99). The final

More information

Lesson: An introduction to TFEM

Lesson: An introduction to TFEM Lesson: An introduction to TFEM January 10, 2018 Contents 1 Introduction 2 2 A first run 3 3 Mesh generation 3 4 Mesh reading 4 5 Problem definition 6 6 Building the system matrix and right hand side and

More information

Chapter 20. Finite Element Method (FEM) Introduction

Chapter 20. Finite Element Method (FEM) Introduction Chapter 20. Finite Element Method (FEM) Introduction The objective of this chapter is to explain basic terms of the particular field of problems and practical application of GEO 5 FEM program to solve

More information

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Lecture - 36

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Lecture - 36 Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras Lecture - 36 In last class, we have derived element equations for two d elasticity problems

More information

Module 1: Introduction to Finite Element Analysis. Lecture 4: Steps in Finite Element Analysis

Module 1: Introduction to Finite Element Analysis. Lecture 4: Steps in Finite Element Analysis 25 Module 1: Introduction to Finite Element Analysis Lecture 4: Steps in Finite Element Analysis 1.4.1 Loading Conditions There are multiple loading conditions which may be applied to a system. The load

More information

Finite Element Method. Chapter 7. Practical considerations in FEM modeling

Finite Element Method. Chapter 7. Practical considerations in FEM modeling Finite Element Method Chapter 7 Practical considerations in FEM modeling Finite Element Modeling General Consideration The following are some of the difficult tasks (or decisions) that face the engineer

More information

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Lecture - 24

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Lecture - 24 Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras Lecture - 24 So in today s class, we will look at quadrilateral elements; and we will

More information

Beams. Lesson Objectives:

Beams. Lesson Objectives: Beams Lesson Objectives: 1) Derive the member local stiffness values for two-dimensional beam members. 2) Assemble the local stiffness matrix into global coordinates. 3) Assemble the structural stiffness

More information

Pseudo 3-D deposition and large-strain consolidation modeling of tailings deep deposits

Pseudo 3-D deposition and large-strain consolidation modeling of tailings deep deposits Pseudo 3-D deposition and large-strain consolidation modeling of tailings deep deposits Murray Fredlund, Matt Donaldson, Krishna Chaudhary SoilVision Systems Ltd ABSTRACT The design of deep deposits requires

More information

Comparison of different solvers for two-dimensional steady heat conduction equation ME 412 Project 2

Comparison of different solvers for two-dimensional steady heat conduction equation ME 412 Project 2 Comparison of different solvers for two-dimensional steady heat conduction equation ME 412 Project 2 Jingwei Zhu March 19, 2014 Instructor: Surya Pratap Vanka 1 Project Description The purpose of this

More information

Study of Convergence of Results in Finite Element Analysis of a Plane Stress Bracket

Study of Convergence of Results in Finite Element Analysis of a Plane Stress Bracket RESEARCH ARTICLE OPEN ACCESS Study of Convergence of Results in Finite Element Analysis of a Plane Stress Bracket Gowtham K L*, Shivashankar R. Srivatsa** *(Department of Mechanical Engineering, B. M.

More information

CHAPTER 4 CFD AND FEA ANALYSIS OF DEEP DRAWING PROCESS

CHAPTER 4 CFD AND FEA ANALYSIS OF DEEP DRAWING PROCESS 54 CHAPTER 4 CFD AND FEA ANALYSIS OF DEEP DRAWING PROCESS 4.1 INTRODUCTION In Fluid assisted deep drawing process the punch moves in the fluid chamber, the pressure is generated in the fluid. This fluid

More information

Numerical Modeling Study for Fish Screen at River Intake Channel ; PH (505) ; FAX (505) ;

Numerical Modeling Study for Fish Screen at River Intake Channel ; PH (505) ; FAX (505) ; Numerical Modeling Study for Fish Screen at River Intake Channel Jungseok Ho 1, Leslie Hanna 2, Brent Mefford 3, and Julie Coonrod 4 1 Department of Civil Engineering, University of New Mexico, Albuquerque,

More information

Revision of the SolidWorks Variable Pressure Simulation Tutorial J.E. Akin, Rice University, Mechanical Engineering. Introduction

Revision of the SolidWorks Variable Pressure Simulation Tutorial J.E. Akin, Rice University, Mechanical Engineering. Introduction Revision of the SolidWorks Variable Pressure Simulation Tutorial J.E. Akin, Rice University, Mechanical Engineering Introduction A SolidWorks simulation tutorial is just intended to illustrate where to

More information

7. Seepage through soils

7. Seepage through soils 7. Seepage through soils 7.1 Introduction 'Seepage' is defined as the flow of a fluid, usually water, through a soil under a hydraulic gradient. A hydraulic gradient is supposed to exist between two points

More information

This is the script for the SEEP/W tutorial movie. Please follow along with the movie, SEEP/W Getting Started.

This is the script for the SEEP/W tutorial movie. Please follow along with the movie, SEEP/W Getting Started. SEEP/W Tutorial This is the script for the SEEP/W tutorial movie. Please follow along with the movie, SEEP/W Getting Started. Introduction Here are some results obtained by using SEEP/W to analyze unconfined

More information

Verification of Laminar and Validation of Turbulent Pipe Flows

Verification of Laminar and Validation of Turbulent Pipe Flows 1 Verification of Laminar and Validation of Turbulent Pipe Flows 1. Purpose ME:5160 Intermediate Mechanics of Fluids CFD LAB 1 (ANSYS 18.1; Last Updated: Aug. 1, 2017) By Timur Dogan, Michael Conger, Dong-Hwan

More information

Groundwater flow modelling (450008)

Groundwater flow modelling (450008) Groundwater flow modelling (450008) Computer laboratories dr. V.E.A. Post Contents Part I: Python 1 1 Calculating heads 5 1.1 Solution methods.......................... 5 1.1.1 Gauss-Seidel iteration

More information

Classwork 5 Using HEC-RAS for computing water surface profiles

Classwork 5 Using HEC-RAS for computing water surface profiles Classwork 5 Using HEC-RAS for computing water surface profiles (in collaboration with Dr. Ing. Luca Milanesi) Why classwork 5? This lecture will give us the possibility to make our first acquaintance with

More information

Backward facing step Homework. Department of Fluid Mechanics. For Personal Use. Budapest University of Technology and Economics. Budapest, 2010 autumn

Backward facing step Homework. Department of Fluid Mechanics. For Personal Use. Budapest University of Technology and Economics. Budapest, 2010 autumn Backward facing step Homework Department of Fluid Mechanics Budapest University of Technology and Economics Budapest, 2010 autumn Updated: October 26, 2010 CONTENTS i Contents 1 Introduction 1 2 The problem

More information

GeoStudio Product Details

GeoStudio Product Details Product Details I. Purchasing Options Universal Professional Standard Vadose Basic Student (Free) Feature Comparison Finite Element Integration No limit 500 elements 500 elements Analysis Methods Ordinary

More information

HYDRUS. User Manual. Version 2

HYDRUS. User Manual. Version 2 HYDRUS User Manual Version 2 Software Package for Simulating the Two- and Three-Dimensional Movement of Water, Heat and Multiple Solutes in Variably-Saturated Media January 2011, PC-Progress, Prague, Czech

More information

The HEC-RAS Model Refresher

The HEC-RAS Model Refresher The HEC-RAS Model Refresher Minmin Shu P.E. Transportation Review Unit Water Resources Division Michigan Department of Environmental Quality 12-6-2018 What Does the HEC-RAS Mean RAS----River Analysis System

More information

Numerical simulation of 3-D seepage field in tailing pond and its practical application

Numerical simulation of 3-D seepage field in tailing pond and its practical application Available online at www.sciencedirect.com Procedia Engineering (0) 70 76 0 SREE Conference on Engineering Modelling and Simulation Numerical simulation of -D seepage field in tailing pond and its practical

More information

LS-DYNA s Linear Solver Development Phase 2: Linear Solution Sequence

LS-DYNA s Linear Solver Development Phase 2: Linear Solution Sequence LS-DYNA s Linear Solver Development Phase 2: Linear Solution Sequence Allen T. Li 1, Zhe Cui 2, Yun Huang 2 1 Ford Motor Company 2 Livermore Software Technology Corporation Abstract This paper continues

More information

Set No. 1 IV B.Tech. I Semester Regular Examinations, November 2010 FINITE ELEMENT METHODS (Mechanical Engineering) Time: 3 Hours Max Marks: 80 Answer any FIVE Questions All Questions carry equal marks

More information

An explicit feature control approach in structural topology optimization

An explicit feature control approach in structural topology optimization th World Congress on Structural and Multidisciplinary Optimisation 07 th -2 th, June 205, Sydney Australia An explicit feature control approach in structural topology optimization Weisheng Zhang, Xu Guo

More information

Introduction to ANSYS CFX

Introduction to ANSYS CFX Workshop 03 Fluid flow around the NACA0012 Airfoil 16.0 Release Introduction to ANSYS CFX 2015 ANSYS, Inc. March 13, 2015 1 Release 16.0 Workshop Description: The flow simulated is an external aerodynamics

More information

Required: 486DX-33, 8MB RAM, HDD w. 20 MB free, VGA, Win95. Recommended: Pentium 60, 16 MB RAM, SVGA, Win95 or NT

Required: 486DX-33, 8MB RAM, HDD w. 20 MB free, VGA, Win95. Recommended: Pentium 60, 16 MB RAM, SVGA, Win95 or NT Evaluation Form Evaluator Information Name: Jeff Hagan Date: Feb. 17, 2000 Software Information Title of Software: Purpose: Publisher: CulvertMaster Culvert Hydraulic Design Haestad Methods, Inc. Version:

More information

µ = Pa s m 3 The Reynolds number based on hydraulic diameter, D h = 2W h/(w + h) = 3.2 mm for the main inlet duct is = 359

µ = Pa s m 3 The Reynolds number based on hydraulic diameter, D h = 2W h/(w + h) = 3.2 mm for the main inlet duct is = 359 Laminar Mixer Tutorial for STAR-CCM+ ME 448/548 March 30, 2014 Gerald Recktenwald gerry@pdx.edu 1 Overview Imagine that you are part of a team developing a medical diagnostic device. The device has a millimeter

More information

TOCHNOG PROFESSIONAL Tutorial manual

TOCHNOG PROFESSIONAL Tutorial manual 1 TOCHNOG PROFESSIONAL Tutorial manual Dennis Roddeman March 7, 2018 2 Contents 1 Conditions 5 2 Basic information 6 3 Tutorial 1: slope safety factor analysis 7 3.1 Mesh generation with Gid................................

More information

Revised Sheet Metal Simulation, J.E. Akin, Rice University

Revised Sheet Metal Simulation, J.E. Akin, Rice University Revised Sheet Metal Simulation, J.E. Akin, Rice University A SolidWorks simulation tutorial is just intended to illustrate where to find various icons that you would need in a real engineering analysis.

More information

Modeling External Compressible Flow

Modeling External Compressible Flow Tutorial 3. Modeling External Compressible Flow Introduction The purpose of this tutorial is to compute the turbulent flow past a transonic airfoil at a nonzero angle of attack. You will use the Spalart-Allmaras

More information

Non-Linear Finite Element Methods in Solid Mechanics Attilio Frangi, Politecnico di Milano, February 3, 2017, Lesson 1

Non-Linear Finite Element Methods in Solid Mechanics Attilio Frangi, Politecnico di Milano, February 3, 2017, Lesson 1 Non-Linear Finite Element Methods in Solid Mechanics Attilio Frangi, attilio.frangi@polimi.it Politecnico di Milano, February 3, 2017, Lesson 1 1 Politecnico di Milano, February 3, 2017, Lesson 1 2 Outline

More information

5.1 Introduction to the Graphs of Polynomials

5.1 Introduction to the Graphs of Polynomials Math 3201 5.1 Introduction to the Graphs of Polynomials In Math 1201/2201, we examined three types of polynomial functions: Constant Function - horizontal line such as y = 2 Linear Function - sloped line,

More information

Stability with FE Stresses

Stability with FE Stresses 1 Introduction Stability with FE Stresses In the finite element stresses stability analysis method, the stresses in the ground can be computed using SIGMA/W, and then SLOPE/W uses the SIGMA/W stresses

More information

ADAPTIVE APPROACH IN NONLINEAR CURVE DESIGN PROBLEM. Simo Virtanen Rakenteiden Mekaniikka, Vol. 30 Nro 1, 1997, s

ADAPTIVE APPROACH IN NONLINEAR CURVE DESIGN PROBLEM. Simo Virtanen Rakenteiden Mekaniikka, Vol. 30 Nro 1, 1997, s ADAPTIVE APPROACH IN NONLINEAR CURVE DESIGN PROBLEM Simo Virtanen Rakenteiden Mekaniikka, Vol. 30 Nro 1, 1997, s. 14-24 ABSTRACT In recent years considerable interest has been shown in the development

More information

v GMS 10.0 Tutorial UTEXAS Dam with Seepage Use SEEP2D and UTEXAS to model seepage and slope stability of an earth dam

v GMS 10.0 Tutorial UTEXAS Dam with Seepage Use SEEP2D and UTEXAS to model seepage and slope stability of an earth dam v. 10.0 GMS 10.0 Tutorial Use SEEP2D and UTEXAS to model seepage and slope stability of an earth dam Objectives Learn how to build an integrated SEEP2D/UTEXAS model in GMS. Prerequisite Tutorials SEEP2D

More information

HEC-RAS. A Tutorial (Model Development of a Small Flume)

HEC-RAS. A Tutorial (Model Development of a Small Flume) HEC-RAS A Tutorial (Model Development of a Small Flume) HEC-RAS Hydraulic Engineering Center:River Analysis System 1-D step backwater model Utilizes energy equation to compute water surface elevation for

More information

Seepage Modeling. An Engineering Methodology. June 2015 Edition. GEO-SLOPE International Ltd.

Seepage Modeling. An Engineering Methodology. June 2015 Edition. GEO-SLOPE International Ltd. Seepage Modeling with SEEP/W An Engineering Methodology June 2015 Edition GEO-SLOPE International Ltd. Copyright 2004-2015 by GEO-SLOPE International, Ltd. All rights reserved. No part of this work may

More information

v. 9.0 GMS 9.0 Tutorial UTEXAS Dam with Seepage Use SEEP2D and UTEXAS to model seepage and slope stability of a earth dam Prerequisite Tutorials None

v. 9.0 GMS 9.0 Tutorial UTEXAS Dam with Seepage Use SEEP2D and UTEXAS to model seepage and slope stability of a earth dam Prerequisite Tutorials None v. 9.0 GMS 9.0 Tutorial Use SEEP2D and UTEXAS to model seepage and slope stability of a earth dam Objectives Learn how to build an integrated SEEP2D/UTEXAS model in GMS. Prerequisite Tutorials None Required

More information

ENV3104 Hydraulics II 2017 Assignment 1. Gradually Varied Flow Profiles and Numerical Solution of the Kinematic Equations:

ENV3104 Hydraulics II 2017 Assignment 1. Gradually Varied Flow Profiles and Numerical Solution of the Kinematic Equations: ENV3104 Hydraulics II 2017 Assignment 1 Assignment 1 Gradually Varied Flow Profiles and Numerical Solution of the Kinematic Equations: Examiner: Jahangir Alam Due Date: 27 Apr 2017 Weighting: 1% Objectives

More information

A STUDY ON THE INFLUENCE OF BOUNDARY CONDITIONS ON THREE DIMENSIONAL DYNAMIC RESPONSES OF EMBANKMENTS

A STUDY ON THE INFLUENCE OF BOUNDARY CONDITIONS ON THREE DIMENSIONAL DYNAMIC RESPONSES OF EMBANKMENTS October 12-17, 28, Beijing, China A STUDY ON THE INFLUENCE OF BOUNDARY CONDITIONS ON THREE DIMENSIONAL DYNAMIC RESPONSES OF EMBANKMENTS S. Kano 1 a, Y. Yokoi 2, Y. Sasaki 3 and Y. Hata 4 1 Assistant Professor,

More information

Verification and Validation of Turbulent Flow around a Clark-Y Airfoil

Verification and Validation of Turbulent Flow around a Clark-Y Airfoil 1 Verification and Validation of Turbulent Flow around a Clark-Y Airfoil 1. Purpose ME:5160 Intermediate Mechanics of Fluids CFD LAB 2 (ANSYS 19.1; Last Updated: Aug. 7, 2018) By Timur Dogan, Michael Conger,

More information

Chapter 3. Speech segmentation. 3.1 Preprocessing

Chapter 3. Speech segmentation. 3.1 Preprocessing , as done in this dissertation, refers to the process of determining the boundaries between phonemes in the speech signal. No higher-level lexical information is used to accomplish this. This chapter presents

More information

Urban Floodplain modeling- Application of Two-Dimensional Analyses to Refine Results

Urban Floodplain modeling- Application of Two-Dimensional Analyses to Refine Results Urban Floodplain modeling- Application of Two-Dimensional Analyses to Refine Results Prabharanjani Madduri, P.E., CFM Mathini Sreetharan, Ph.D., P.E., CFM Hydraulic modeling of urban areas and issues Modeling

More information

Use of measured and interpolated crosssections

Use of measured and interpolated crosssections Use of measured and interpolated crosssections in hydraulic river modelling Y. Chen/, R. Crowded & R. A. Falconer^ ^ Department of Civil & Environmental Engineering, University ofbradford, Bradford, West

More information