Parabolic Flow in Parallel Plate Channel ME 412 Project 4

Size: px
Start display at page:

Download "Parabolic Flow in Parallel Plate Channel ME 412 Project 4"

Transcription

1 Parabolic Flow in Parallel Plate Channel ME 412 Project 4 Jingwei Zhu April 12, 2014 Instructor: Surya Pratap Vanka 1 Project Description The objective of this project is to develop and apply a computer program to compute developing parabolic flow in a straight channel. Such a flow is of boundary layer type, and can be computed by solving the boundary layer form of the Navier-Stokes equations shown below: u v + v y = 0 (1) ρ(u u x + v u y ) = dp dx + µ 2 u y 2 (2) where u and v are the two Cartesian velocities, x and y are spatial coordinates, ρ is the density, P is the static pressure, and µ is the dynamic viscosity. Numerical results for different Reynolds numbers of 50, 100 and 200 will be shown. The channel Reynolds number is based on the channel height, mean velocity and the kinematic viscosity of the fluid, as is shown in Equation 3: Re = ρ V H µ where V is the mean velocity and H is the channel height. (3) The flow development and development lengths as a function of the Reynolds number will be studied. Fully-developed length will be taken as the distance when the centerline velocity reaches 0.99 of the fully-developed value. Note that here numerical fully-developed value (i.e. one that has the grid errors) instead of the analytical solution will be used. In this project, we consider a parallel plate channel with a height H of 0.1m and a length of 3m, as is shown in Figure 1. Note that the fully-developed length usually can be approximated as 0.1 Re H. Therefore we set the length to 3m so that the flow has enough space to be fully 1

2 Figure 1: Flow in parallel plate channel developed. µ, the dynamic viscosity, is set to kg/m s and density ρ is set to kg/m 3. The spatial intervals x and y of the grid yield to the following limits: µ ρ x 0.5 (4) u i,j y2 v i,j y µ/ρ < 2 (5) In our project, the spatial intervals in horizontal direction will be generated dynamically to be 0.4ρu i,j y 2 /µ as the explicit scheme marching along the horizontal direction while those in vertical direction are set to 0.002m. 2 Differencing schemes The code uses an explicit form of the marching algorithm, which is shown as follows: u i,j u i+1,j u i,j x + v i,j u i,j+1 u i,j 1 2 y = 1 ρ (dp dx ) i+1 + µ ρ (u i,j+1 2u i,j + u i,j 1 y 2 ) (6) u i+1,j + u i+1,j 1 u i,j u i,j 1 2 x where i and j are the node numbers in x and y direction. + v i+1,j v i+1,j 1 y = 0 (7) Since the flow is internal, ( dp dx ) i+1 is unknown ahead of time. So small adjustments need to be done to the previous algorithm to find ( dp dx ) i+1. We first guess ( dp dx ) i+1 to be equal to ( dp dx ) i and then correct it if needed. Solve the x-direction momentum equation at (i + 1) using ( dp dx ) i. Here we use symbol û i+1,j for this solution. u i,j û i+1,j u i,j x + v i,j u i,j+1 u i,j 1 2 y = 1 ρ (dp dx ) i + µ ρ (u i,j+1 2u i,j + u i,j 1 y 2 ) (8) 2

3 Then we have ny ˆṁ i+1 = ρ (û i+1,j + û i+1,j 1 ) y 2 j=2 (9) Inflow mass ṁ in = ρv in H. ˆṁ i+1 will not equal ṁ in until the dp dx becomes constant in x. Hence ṁ i+1 = ṁ in ˆṁ i+1. We now need to update ( dp dx ) i+1 with ( dp dx ) i + ( dp dx ) i+1. Since we use an explicit scheme, ny ρ ( u i+1,j + u i+1,j 1 ) y 2 = ṁ i+1 (10) j=2 u i+1,j = x ρu i,j ( dp dx ) i+1, j [2, ny 1] (11) u i+1,j = 0, j {1, ny} (12) Therefore we find the relationship between ( dp dx ) i+1 and ṁ i+1 to be x( dp dx ) 1 i+1[ + u i,2 3 Results and Discussion ny u i,ny 1 j=3 ( 1 u i,j + 1 u i,j 1 )] y 2 = ṁ i+1 (13) Reynolds Number Fully Developed Length (m) Table 1: Fully developed length in the parallel plate channel Table 1 shows the fully developed length in the parallel plate channel for different Reynolds numbers. It can be observed that the computed fully developed length has a linear relationship with the Reynolds number. The larger the Reynolds number is, the longer the fully developed distance is. Figure 2 shows a comparison of contour of horizontal velocity in the parallel plate channel for different Reynolds numbers. We can observe the flow becomes uniform in the horizontal direction after going through the entrance length. Moreover the centerline speed when the flow is fully developed is larger than the initial inlet speed. Figure 3 displays plots of horizontal velocity profile in the parallel plate channel for different Reynolds numbers at 30%, 60%, 90% and 120% of the corresponding fully developed length. At the entrance of the parallel channel, horizontal velocity profile is flat around the centerline. When the flow is fully developed, horizontal velocity profile is parabolic. Figure 4 shows plots of vertical velocity profile in the parallel plate channel for different Reynolds numbers at 30%, 60%, 90% and 120% of the corresponding fully developed length. The vertical velocity profile has a shape similar to a sine function. It is flattened out as the flow develops and 3

4 (a) Re=50 (b) Re=100 (c) Re=200 Figure 2: (a)(b)(c): Contours of horizontal velocity in the parallel plate channel for different Reynolds numbers 4

5 (a) Re=50 (b) Re=100 (c) Re=200 Figure 3: (a)(b)(c): Plots of horizontal velocity profile in the parallel plate channel for different Reynolds numbers at four corresponding locations 5

6 eventually vertical velocity becomes zero. Figure 5 shows profiles of dp/dx as a function of distance from the channel inlet for different Reynolds numbers. There is a huge pressure differential drop where the free stream enters the channel as flow velocity at the boundary is zero while velocity elsewhere is not zero. Smaller grid mesh size will result in larger drop in pressure differential. After entering the channel, pressure differential gradually increases and converges to a constant value when the flow is fully developed. 6

7 (a) Re=50 (b) Re=100 (c) Re=200 Figure 4: (a)(b)(c): Plots of vertical velocity profile in the parallel plate channel for different Reynolds numbers at four corresponding locations 7

8 (a) Re=50 (b) Re=100 (c) Re=200 Figure 5: (a)(b)(c): Profiles of dp/dx as a function of distance from the channel inlet for different Reynolds numbers 8

9 4 Summary In this project, we successfully developed a program to solve the boundary layer form of Navier- Stokes equations in a parallel plate channel. Fully developed length as a function of Reynolds number is shown in a table and numerical results for the parabolic flow in the parallel plate channel are displayed with contours and plots. It can be observed that there is a positive linear relationship between fully developed length and Reynolds number. Horizontal velocity profile of the flow has a parabolic shape when the flow is fully developed. Pressure differential will converge to a negative constant value when the flow is fully developed and becomes uniform in the horizontal direction. References [1] Joel H. Ferziger and Milovan Peric, Computational Methods for Fluid Dynamics, 3rd edition. 9

Two-Dimensional Unsteady Flow in a Lid Driven Cavity with Constant Density and Viscosity ME 412 Project 5

Two-Dimensional Unsteady Flow in a Lid Driven Cavity with Constant Density and Viscosity ME 412 Project 5 Two-Dimensional Unsteady Flow in a Lid Driven Cavity with Constant Density and Viscosity ME 412 Project 5 Jingwei Zhu May 14, 2014 Instructor: Surya Pratap Vanka 1 Project Description The objective of

More information

CHAPTER 7 NUMERICAL MODELLING OF A SPIRAL HEAT EXCHANGER USING CFD TECHNIQUE

CHAPTER 7 NUMERICAL MODELLING OF A SPIRAL HEAT EXCHANGER USING CFD TECHNIQUE CHAPTER 7 NUMERICAL MODELLING OF A SPIRAL HEAT EXCHANGER USING CFD TECHNIQUE In this chapter, the governing equations for the proposed numerical model with discretisation methods are presented. Spiral

More information

Project 4: Navier-Stokes Solution to Driven Cavity and Channel Flow Conditions

Project 4: Navier-Stokes Solution to Driven Cavity and Channel Flow Conditions Project 4: Navier-Stokes Solution to Driven Cavity and Channel Flow Conditions R. S. Sellers MAE 5440, Computational Fluid Dynamics Utah State University, Department of Mechanical and Aerospace Engineering

More information

Homework 4 in 5C1212; Part A: Incompressible Navier- Stokes, Finite Volume Methods

Homework 4 in 5C1212; Part A: Incompressible Navier- Stokes, Finite Volume Methods Homework 4 in 5C11; Part A: Incompressible Navier- Stokes, Finite Volume Methods Consider the incompressible Navier Stokes in two dimensions u x + v y = 0 u t + (u ) x + (uv) y + p x = 1 Re u + f (1) v

More information

FEniCS Course. Lecture 6: Incompressible Navier Stokes. Contributors Anders Logg André Massing

FEniCS Course. Lecture 6: Incompressible Navier Stokes. Contributors Anders Logg André Massing FEniCS Course Lecture 6: Incompressible Navier Stokes Contributors Anders Logg André Massing 1 / 11 The incompressible Navier Stokes equations u + u u ν u + p = f in Ω (0, T ] u = 0 in Ω (0, T ] u = g

More information

Laminar Flow. Chapter ZERO PRESSURE GRADIENT

Laminar Flow. Chapter ZERO PRESSURE GRADIENT Chapter 2 Laminar Flow 2.1 ZERO PRESSRE GRADIENT Problem 2.1.1 Consider a uniform flow of velocity over a flat plate of length L of a fluid of kinematic viscosity ν. Assume that the fluid is incompressible

More information

BOUNDARY LAYER ANALYSIS WITH NAVIER-STOKES EQUATION IN 2D CHANNEL FLOW

BOUNDARY LAYER ANALYSIS WITH NAVIER-STOKES EQUATION IN 2D CHANNEL FLOW Proceedings of,, BOUNDARY LAYER ANALYSIS WITH NAVIER-STOKES EQUATION IN 2D CHANNEL FLOW Yunho Jang Department of Mechanical and Industrial Engineering University of Massachusetts Amherst, MA 01002 Email:

More information

Finite Volume Method

Finite Volume Method Finite Volume Method An Introduction Praveen. C CTFD Division National Aerospace Laboratories Bangalore 560 037 email: praveen@cfdlab.net April 7, 2006 Praveen. C (CTFD, NAL) FVM CMMACS 1 / 65 Outline

More information

ME19b. FINAL REVIEW SOLUTIONS. Mar. 11, 2010.

ME19b. FINAL REVIEW SOLUTIONS. Mar. 11, 2010. ME19b. FINAL REVIEW SOLTIONS. Mar. 11, 21. EXAMPLE PROBLEM 1 A laboratory wind tunnel has a square test section with side length L. Boundary-layer velocity profiles are measured at two cross-sections and

More information

Candidates must show on each answer book the type of calculator used. Only calculators permitted under UEA Regulations may be used.

Candidates must show on each answer book the type of calculator used. Only calculators permitted under UEA Regulations may be used. UNIVERSITY OF EAST ANGLIA School of Mathematics May/June UG Examination 2011 2012 FLUID DYNAMICS MTH-3D41 Time allowed: 3 hours Attempt FIVE questions. Candidates must show on each answer book the type

More information

PIPE FLOW. General Characteristic of Pipe Flow. Some of the basic components of a typical pipe system are shown in Figure 1.

PIPE FLOW. General Characteristic of Pipe Flow. Some of the basic components of a typical pipe system are shown in Figure 1. PIPE FLOW General Characteristic of Pipe Flow Figure 1 Some of the basic components of a typical pipe system are shown in Figure 1. They include the pipes, the various fitting used to connect the individual

More information

Pressure Drop Across Orifices in Microchannels

Pressure Drop Across Orifices in Microchannels Pressure Drop Across Orifices in Microchannels Febe Kusmanto ChemE 499 Spring 2003 1 The purpose of doing this paper is to show that Navier-Stokes equation is still able to predict the effect of the thickness

More information

Supplementary Information for Engineering and Analysis of Surface Interactions in a Microfluidic Herringbone Micromixer

Supplementary Information for Engineering and Analysis of Surface Interactions in a Microfluidic Herringbone Micromixer Supplementary Information for Engineering and Analysis of Surface Interactions in a Microfluidic Herringbone Micromixer Thomas P. Forbes and Jason G. Kralj National Institute of Standards and Technology,

More information

Mixing in Flow Devices:

Mixing in Flow Devices: Mixing in Flow Devices: Spiral microchannels in two and three dimensions Prepared by Ha Dinh Mentor: Professor Emeritus Bruce A. Finlayson Department of Chemical Engineering University of Washington June

More information

LEAST-SQUARES FINITE ELEMENT MODELS

LEAST-SQUARES FINITE ELEMENT MODELS LEAST-SQUARES FINITE ELEMENT MODELS General idea of the least-squares formulation applied to an abstract boundary-value problem Works of our group Application to Poisson s equation Application to flows

More information

Basic Aspects of Discretization

Basic Aspects of Discretization Basic Aspects of Discretization Solution Methods Singularity Methods Panel method and VLM Simple, very powerful, can be used on PC Nonlinear flow effects were excluded Direct numerical Methods (Field Methods)

More information

TABLE OF CONTENTS CHAPTER TITLE PAGE

TABLE OF CONTENTS CHAPTER TITLE PAGE v TABLE OF CONTENTS CHAPTER TITLE PAGE TABLE OF CONTENTS LIST OF TABLES LIST OF FIGURES LIST OF SYMBOLS LIST OF APPENDICES v viii ix xii xiv CHAPTER 1 INTRODUCTION 1.1 Introduction 1 1.2 Literature Review

More information

Numerical Heat and Mass Transfer

Numerical Heat and Mass Transfer Master Degree in Mechanical Engineering Numerical Heat and Mass Transfer 15-Convective Heat Transfer Fausto Arpino f.arpino@unicas.it Introduction In conduction problems the convection entered the analysis

More information

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

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

More information

The Effect of Undulated Wall on Natural Convection Heat Transfer in Vertical Channels

The Effect of Undulated Wall on Natural Convection Heat Transfer in Vertical Channels Proceedings of the 3 rd International Conference on Fluid Flow, Heat and Mass Transfer (FFHMT 16) Ottawa, Canada May 2 3, 2016 Paper No. 123 The Effect of Undulated Wall on Natural Convection Heat Transfer

More information

CONVECTIVE HEAT TRANSFER

CONVECTIVE HEAT TRANSFER CONVECTIVE HEAT TRANSFER Mohammad Goharkhah Department of Mechanical Engineering, Sahand Unversity of Technology, Tabriz, Iran CHAPTER 4 HEAT TRANSFER IN CHANNEL FLOW BASIC CONCEPTS BASIC CONCEPTS Laminar

More information

Simplified Model of WWER-440 Fuel Assembly for ThermoHydraulic Analysis

Simplified Model of WWER-440 Fuel Assembly for ThermoHydraulic Analysis 1 Portál pre odborné publikovanie ISSN 1338-0087 Simplified Model of WWER-440 Fuel Assembly for ThermoHydraulic Analysis Jakubec Jakub Elektrotechnika 13.02.2013 This work deals with thermo-hydraulic processes

More information

APPRAISAL OF FLOW SIMULATION BY THE LATTICE BOLTZMANN METHOD

APPRAISAL OF FLOW SIMULATION BY THE LATTICE BOLTZMANN METHOD APPRAISAL OF FLOW SIMULATION BY THE LATTICE BOLTZMANN METHOD Guillermo Izquierdo Bouldstridge Imperial College of London Department of Aeronautics Master s Thesis Supervisor: Dr. Joaquim Peiró September

More information

Candidates must show on each answer book the type of calculator used. Log Tables, Statistical Tables and Graph Paper are available on request.

Candidates must show on each answer book the type of calculator used. Log Tables, Statistical Tables and Graph Paper are available on request. UNIVERSITY OF EAST ANGLIA School of Mathematics Spring Semester Examination 2004 FLUID DYNAMICS Time allowed: 3 hours Attempt Question 1 and FOUR other questions. Candidates must show on each answer book

More information

SENSITIVITY ANALYSIS OF THE FACTORS AFFECTING FORCE GENERATION BY WING FLAPPING MOTION

SENSITIVITY ANALYSIS OF THE FACTORS AFFECTING FORCE GENERATION BY WING FLAPPING MOTION Proceedings of the ASME 2013 International Mechanical Engineering Congress and Exposition IMECE2013 November 15-21, 2013, San Diego, California, USA IMECE2013-65472 SENSITIVITY ANALYSIS OF THE FACTORS

More information

Nicholas Cox, Pawel Drapala, and Bruce F. Finlayson Department of Chemical Engineering, University of Washington, Seattle, WA, USA.

Nicholas Cox, Pawel Drapala, and Bruce F. Finlayson Department of Chemical Engineering, University of Washington, Seattle, WA, USA. Transport Limitations in Thermal Diffusion Nicholas Cox, Pawel Drapala, and Bruce F. Finlayson Department of Chemical Engineering, University of Washington, Seattle, WA, USA Abstract Numerical simulations

More information

Pressure Losses for Fluid Flow Through Abrupt Area. Contraction in Compact Heat Exchangers

Pressure Losses for Fluid Flow Through Abrupt Area. Contraction in Compact Heat Exchangers Pressure Losses for Fluid Flow Through Abrupt Area Contraction in Compact Heat Exchangers Undergraduate Research Spring 004 By Bryan J. Johnson Under Direction of Rehnberg Professor of Ch.E. Bruce A. Finlayson

More information

PRESSURE BOUNDARY CONDITIONS IN MULTI-ZONE AND CFD PROGRAM COUPLING

PRESSURE BOUNDARY CONDITIONS IN MULTI-ZONE AND CFD PROGRAM COUPLING PRESSURE BOUNDARY CONDITIONS IN MULTI-ZONE AND CFD PROGRAM COUPLING Zhiqiang (John) Zhai, Ph.D. Department of Civil, Environmental & Architectural Engineering, University of Colorado 48 UCB, Engineering

More information

Masters in Mechanical Engineering. Problems of incompressible viscous flow. 2µ dx y(y h)+ U h y 0 < y < h,

Masters in Mechanical Engineering. Problems of incompressible viscous flow. 2µ dx y(y h)+ U h y 0 < y < h, Masters in Mechanical Engineering Problems of incompressible viscous flow 1. Consider the laminar Couette flow between two infinite flat plates (lower plate (y = 0) with no velocity and top plate (y =

More information

Validation 3. Laminar Flow Around a Circular Cylinder

Validation 3. Laminar Flow Around a Circular Cylinder Validation 3. Laminar Flow Around a Circular Cylinder 3.1 Introduction Steady and unsteady laminar flow behind a circular cylinder, representing flow around bluff bodies, has been subjected to numerous

More information

Modeling of Humidification in Comsol Multiphysics 4.4

Modeling of Humidification in Comsol Multiphysics 4.4 Modeling of Humidification in Comsol Multiphysics 4.4 Indrajit Wadgaonkar *1 and Suresh Arikapudi 1 1 Tata Motors Ltd. Pimpri, Pune, India, 411018. *Corresponding author: Indrajit Wadgaonkar, Tata Motors

More information

Shell Balances in Fluid Mechanics

Shell Balances in Fluid Mechanics Shell Balances in Fluid Mechanics R. Shankar Subramanian Department of Chemical and Biomolecular Engineering Clarkson University When fluid flow occurs in a single direction everywhere in a system, shell

More information

The effect of Entry Region on Thermal Field

The effect of Entry Region on Thermal Field The effect of Entry Region on Thermal Field Flow Fractionation Nick Cox Supervised by Professor Bruce Finlayson University of Washington Department of Chemical Engineering June 6, 2007 Abstract Achieving

More information

Velocity Fluctuations in a Particle-Laden Turbulent Flow over a Backward-Facing Step

Velocity Fluctuations in a Particle-Laden Turbulent Flow over a Backward-Facing Step Copyright c 2004 Tech Science Press CMC, vol.1, no.3, pp.275-288, 2004 Velocity Fluctuations in a Particle-Laden Turbulent Flow over a Backward-Facing Step B. Wang 1, H.Q. Zhang 1, C.K. Chan 2 and X.L.

More information

Conservation of Mass. Computational Fluid Dynamics. The Equations Governing Fluid Motion

Conservation of Mass. Computational Fluid Dynamics. The Equations Governing Fluid Motion http://www.nd.edu/~gtryggva/cfd-course/ http://www.nd.edu/~gtryggva/cfd-course/ Computational Fluid Dynamics Lecture 4 January 30, 2017 The Equations Governing Fluid Motion Grétar Tryggvason Outline Derivation

More information

B.1 NAVIER STOKES EQUATION AND REYNOLDS NUMBER. = UL ν. Re = U ρ f L μ

B.1 NAVIER STOKES EQUATION AND REYNOLDS NUMBER. = UL ν. Re = U ρ f L μ APPENDIX B FLUID DYNAMICS This section is a brief introduction to fluid dynamics. Historically, a simplified concept of the boundary layer, the unstirred water layer, has been operationally used in the

More information

Fluid Thermal Interaction of High Speed Compressible Viscous Flow Past Uncooled and Cooled Structures by Adaptive Mesh

Fluid Thermal Interaction of High Speed Compressible Viscous Flow Past Uncooled and Cooled Structures by Adaptive Mesh The 20th Conference of echanical Engineering Network of Thailand 18-20 October 2006, Nakhon Ratchasima, Thailand luid Thermal nteraction of High peed Compressible Viscous low Past Uncooled and Cooled tructures

More information

Numerical methods for the Navier- Stokes equations

Numerical methods for the Navier- Stokes equations Numerical methods for the Navier- Stokes equations Hans Petter Langtangen 1,2 1 Center for Biomedical Computing, Simula Research Laboratory 2 Department of Informatics, University of Oslo Dec 6, 2012 Note:

More information

2.3 The Turbulent Flat Plate Boundary Layer

2.3 The Turbulent Flat Plate Boundary Layer Canonical Turbulent Flows 19 2.3 The Turbulent Flat Plate Boundary Layer The turbulent flat plate boundary layer (BL) is a particular case of the general class of flows known as boundary layer flows. The

More information

LATTICE BOLTZMANN SIMULATION OF FLUID FLOW IN A LID DRIVEN CAVITY

LATTICE BOLTZMANN SIMULATION OF FLUID FLOW IN A LID DRIVEN CAVITY LATTICE BOLTZMANN SIMULATION OF FLUID FLOW IN A LID DRIVEN CAVITY M. Y. Gokhale, Ignatius Fernandes Maharashtra Institute of Technology, Pune 4 38, India University of Pune, India Email : mukundyg@yahoo.co.in,

More information

MIXED CONVECTION SLIP FLOW WITH TEMPERATURE JUMP ALONG A MOVING PLATE IN PRESENCE OF FREE STREAM

MIXED CONVECTION SLIP FLOW WITH TEMPERATURE JUMP ALONG A MOVING PLATE IN PRESENCE OF FREE STREAM THERMAL SCIENCE, Year 015, Vol. 19, No. 1, pp. 119-18 119 MIXED CONVECTION SLIP FLOW WITH TEMPERATURE JUMP ALONG A MOVING PLATE IN PRESENCE OF FREE STREAM by Gurminder SINGH *a and Oluwole Daniel MAKINDE

More information

Fundamental Concepts of Convection : Flow and Thermal Considerations. Chapter Six and Appendix D Sections 6.1 through 6.8 and D.1 through D.

Fundamental Concepts of Convection : Flow and Thermal Considerations. Chapter Six and Appendix D Sections 6.1 through 6.8 and D.1 through D. Fundamental Concepts of Convection : Flow and Thermal Considerations Chapter Six and Appendix D Sections 6.1 through 6.8 and D.1 through D.3 6.1 Boundary Layers: Physical Features Velocity Boundary Layer

More information

Basic Fluid Mechanics

Basic Fluid Mechanics Basic Fluid Mechanics Chapter 6A: Internal Incompressible Viscous Flow 4/16/2018 C6A: Internal Incompressible Viscous Flow 1 6.1 Introduction For the present chapter we will limit our study to incompressible

More information

Chapter 9: Differential Analysis

Chapter 9: Differential Analysis 9-1 Introduction 9-2 Conservation of Mass 9-3 The Stream Function 9-4 Conservation of Linear Momentum 9-5 Navier Stokes Equation 9-6 Differential Analysis Problems Recall 9-1 Introduction (1) Chap 5: Control

More information

Modelling the Glass Press-Blow Process

Modelling the Glass Press-Blow Process Modelling the Glass Press-Blow Process S.M.A. Allaart-Bruin, B.J. van der Linden, and R.M.M. Mattheij TUE, CASA, Eindhoven, The Netherlands sbruin@win.tue.nl Summary. For the modelling of the glass press-blow

More information

Numerical investigation of the flow instabilities in centrifugal fan

Numerical investigation of the flow instabilities in centrifugal fan Proceedings of the 4th WSEAS International Conference on Fluid Mechanics and Aerodynamics, Elounda, Greece, August 21-23, 26 (pp282-288) Numerical investigation of the flow instabilities in centrifugal

More information

Numerical analysis of fluid flow and heat transfer in 2D sinusoidal wavy channel

Numerical analysis of fluid flow and heat transfer in 2D sinusoidal wavy channel Numerical analysis of fluid flow and heat transfer in 2D sinusoidal wavy channel Arunanshu Chakravarty 1* 1 CTU in Prague, Faculty of Mechanical Engineering, Department of Process Engineering,Technická

More information

External and Internal Incompressible Viscous Flows Computation using Taylor Series Expansion and Least Square based Lattice Boltzmann Method

External and Internal Incompressible Viscous Flows Computation using Taylor Series Expansion and Least Square based Lattice Boltzmann Method Available online at http://ijim.srbiau.ac.ir/ Int. J. Industrial Mathematics (ISSN 2008-5621) Vol. 10, No. 2, 2018 Article ID IJIM-00726, 8 pages Research Article External and Internal Incompressible Viscous

More information

Performance characteristics of turbo blower in a refuse collecting system according to operation conditions

Performance characteristics of turbo blower in a refuse collecting system according to operation conditions Journal of Mechanical Science and Technology 22 (2008) 1896~1901 Journal of Mechanical Science and Technology www.springerlink.com/content/1738-494x DOI 10.1007/s12206-008-0729-6 Performance characteristics

More information

Lattice Boltzmann Method for Fluid Simulations

Lattice Boltzmann Method for Fluid Simulations Lattice Boltzmann Method for Fluid Simulations Yuanxun Bill Bao & Justin Meskas April 14, 2011 1 Introduction In the last two decades, the Lattice Boltzmann method (LBM) has emerged as a promising tool

More information

Applications of parabolized stability equation for predicting transition position in boundary layers

Applications of parabolized stability equation for predicting transition position in boundary layers Appl. Math. Mech. -Engl. Ed., 33(6), 679 686 (2012) DOI 10.1007/s10483-012-1579-7 c Shanghai University and Springer-Verlag Berlin Heidelberg 2012 Applied Mathematics and Mechanics (English Edition) Applications

More information

Chapter 9: Differential Analysis of Fluid Flow

Chapter 9: Differential Analysis of Fluid Flow of Fluid Flow Objectives 1. Understand how the differential equations of mass and momentum conservation are derived. 2. Calculate the stream function and pressure field, and plot streamlines for a known

More information

SYMMETRY BREAKING PHENOMENA OF PURELY VISCOUS SHEAR-THINNING FLUID FLOW IN A LOCALLY CONSTRICTED CHANNEL

SYMMETRY BREAKING PHENOMENA OF PURELY VISCOUS SHEAR-THINNING FLUID FLOW IN A LOCALLY CONSTRICTED CHANNEL ISSN 1726-4529 Int j simul model 7 (2008) 4, 186-197 Original scientific paper SYMMETRY BREAKING PHENOMENA OF PURELY VISCOUS SHEAR-THINNING FLUID FLOW IN A LOCALLY CONSTRICTED CHANNEL Ternik, P. University

More information

SIMPLE Algorithm for Two-Dimensional Channel Flow. Fluid Flow and Heat Transfer

SIMPLE Algorithm for Two-Dimensional Channel Flow. Fluid Flow and Heat Transfer SIMPLE Algorithm for Two-Dimensional Channel Flow Fluid Flow and Heat Transfer by Professor Jung-Yang San Mechanical Engineering Department National Chung Hsing University Two-dimensional, transient, incompressible

More information

FREE BOUNDARY PROBLEMS IN FLUID MECHANICS

FREE BOUNDARY PROBLEMS IN FLUID MECHANICS FREE BOUNDARY PROBLEMS IN FLUID MECHANICS ANA MARIA SOANE AND ROUBEN ROSTAMIAN We consider a class of free boundary problems governed by the incompressible Navier-Stokes equations. Our objective is to

More information

The Effect Of MHD On Laminar Mixed Convection Of Newtonian Fluid Between Vertical Parallel Plates Channel

The Effect Of MHD On Laminar Mixed Convection Of Newtonian Fluid Between Vertical Parallel Plates Channel The Effect Of MH On Laminar Mixed Convection Of Newtonian Fluid Between Vertical Parallel Plates Channel Rasul alizadeh,alireza darvish behanbar epartment of Mechanic, Faculty of Engineering Science &

More information

Internal Forced Convection. Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display.

Internal Forced Convection. Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Internal Forced Convection Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Introduction Pipe circular cross section. Duct noncircular cross section. Tubes small-diameter

More information

Viscous Fluids. Amanda Meier. December 14th, 2011

Viscous Fluids. Amanda Meier. December 14th, 2011 Viscous Fluids Amanda Meier December 14th, 2011 Abstract Fluids are represented by continuous media described by mass density, velocity and pressure. An Eulerian description of uids focuses on the transport

More information

AA214B: NUMERICAL METHODS FOR COMPRESSIBLE FLOWS

AA214B: NUMERICAL METHODS FOR COMPRESSIBLE FLOWS AA214B: NUMERICAL METHODS FOR COMPRESSIBLE FLOWS 1 / 29 AA214B: NUMERICAL METHODS FOR COMPRESSIBLE FLOWS Hierarchy of Mathematical Models 1 / 29 AA214B: NUMERICAL METHODS FOR COMPRESSIBLE FLOWS 2 / 29

More information

UNIVERSITY OF EAST ANGLIA

UNIVERSITY OF EAST ANGLIA UNIVERSITY OF EAST ANGLIA School of Mathematics May/June UG Examination 2007 2008 FLUIDS DYNAMICS WITH ADVANCED TOPICS Time allowed: 3 hours Attempt question ONE and FOUR other questions. Candidates must

More information

Convection Heat Transfer. Introduction

Convection Heat Transfer. Introduction Convection Heat Transfer Reading Problems 12-1 12-8 12-40, 12-49, 12-68, 12-70, 12-87, 12-98 13-1 13-6 13-39, 13-47, 13-59 14-1 14-4 14-18, 14-24, 14-45, 14-82 Introduction Newton s Law of Cooling Controlling

More information

Analysis of the Cooling Design in Electrical Transformer

Analysis of the Cooling Design in Electrical Transformer Analysis of the Cooling Design in Electrical Transformer Joel de Almeida Mendes E-mail: joeldealmeidamendes@hotmail.com Abstract This work presents the application of a CFD code Fluent to simulate the

More information

Poisson Equation in 2D

Poisson Equation in 2D A Parallel Strategy Department of Mathematics and Statistics McMaster University March 31, 2010 Outline Introduction 1 Introduction Motivation Discretization Iterative Methods 2 Additive Schwarz Method

More information

2 Navier-Stokes Equations

2 Navier-Stokes Equations 1 Integral analysis 1. Water enters a pipe bend horizontally with a uniform velocity, u 1 = 5 m/s. The pipe is bended at 90 so that the water leaves it vertically downwards. The input diameter d 1 = 0.1

More information

Numerical Study of Natural Unsteadiness Using Wall-Distance-Free Turbulence Models

Numerical Study of Natural Unsteadiness Using Wall-Distance-Free Turbulence Models Numerical Study of Natural Unsteadiness Using Wall-Distance-Free urbulence Models Yi-Lung Yang* and Gwo-Lung Wang Department of Mechanical Engineering, Chung Hua University No. 707, Sec 2, Wufu Road, Hsin

More information

Pressure-velocity correction method Finite Volume solution of Navier-Stokes equations Exercise: Finish solving the Navier Stokes equations

Pressure-velocity correction method Finite Volume solution of Navier-Stokes equations Exercise: Finish solving the Navier Stokes equations Today's Lecture 2D grid colocated arrangement staggered arrangement Exercise: Make a Fortran program which solves a system of linear equations using an iterative method SIMPLE algorithm Pressure-velocity

More information

ME 431A/538A/538B Homework 22 October 2018 Advanced Fluid Mechanics

ME 431A/538A/538B Homework 22 October 2018 Advanced Fluid Mechanics ME 431A/538A/538B Homework 22 October 2018 Advanced Fluid Mechanics For Friday, October 26 th Start reading the handout entitled Notes on finite-volume methods. Review Chapter 7 on Dimensional Analysis

More information

DEVELOPED LAMINAR FLOW IN PIPE USING COMPUTATIONAL FLUID DYNAMICS M.

DEVELOPED LAMINAR FLOW IN PIPE USING COMPUTATIONAL FLUID DYNAMICS M. DEVELOPED LAMINAR FLOW IN PIPE USING COMPUTATIONAL FLUID DYNAMICS M. Sahu 1, Kishanjit Kumar Khatua and Kanhu Charan Patra 3, T. Naik 4 1, &3 Department of Civil Engineering, National Institute of technology,

More information

Numerical study of the steady state uniform flow past a rotating cylinder

Numerical study of the steady state uniform flow past a rotating cylinder Numerical study of the steady state uniform flow past a rotating cylinder J. C. Padrino and D. D. Joseph December 17, 24 1 Introduction A rapidly rotating circular cylinder immersed in a free stream generates

More information

Computation of Unsteady Flows With Moving Grids

Computation of Unsteady Flows With Moving Grids Computation of Unsteady Flows With Moving Grids Milovan Perić CoMeT Continuum Mechanics Technologies GmbH milovan@continuummechanicstechnologies.de Unsteady Flows With Moving Boundaries, I Unsteady flows

More information

Turbulent flow and convective heat transfer in a wavy wall channel

Turbulent flow and convective heat transfer in a wavy wall channel Turbulent flow and convective heat transfer in a wavy wall channel A.Z. Dellil, A. Azzi, B.A. Jubran Heat and Mass Transfer 40 (2004) 793 799 DOI 10.1007/s00231-003-0474-4 Abstract This paper reports the

More information

Impact of Magnetic Field Strength on Magnetic Fluid Flow through a Channel

Impact of Magnetic Field Strength on Magnetic Fluid Flow through a Channel ISSN: 2278-8 Vol. 2 Issue 7, July - 23 Impact of Magnetic Field Strength on Magnetic Fluid Flow through a Channel S. Saha, S. Chakrabarti 2 Dept. of Mechanical Engineering, Dr. Sudhir Chandra Sur Degree

More information

Research Article Direct Simulation of Low-Re Flow around a Square Cylinder by Numerical Manifold Method for Navier-Stokes Equations

Research Article Direct Simulation of Low-Re Flow around a Square Cylinder by Numerical Manifold Method for Navier-Stokes Equations Applied Mathematics Volume 22, Article ID 465972, 4 pages doi:.55/22/465972 Research Article Direct Simulation of Low-Re Flow around a Square Cylinder by Numerical Manifold Method for Navier-Stokes Equations

More information

Flow Structure Investigations in a "Tornado" Combustor

Flow Structure Investigations in a Tornado Combustor Flow Structure Investigations in a "Tornado" Combustor Igor Matveev Applied Plasma Technologies, Falls Church, Virginia, 46 Serhiy Serbin National University of Shipbuilding, Mikolayiv, Ukraine, 545 Thomas

More information

ENGINEERING MECHANICS 2012 pp Svratka, Czech Republic, May 14 17, 2012 Paper #195

ENGINEERING MECHANICS 2012 pp Svratka, Czech Republic, May 14 17, 2012 Paper #195 . 18 m 2012 th International Conference ENGINEERING MECHANICS 2012 pp. 309 315 Svratka, Czech Republic, May 14 17, 2012 Paper #195 NUMERICAL SIMULATION OF TRANSITIONAL FLOWS WITH LAMINAR KINETIC ENERGY

More information

INTEGRAL ANALYSIS OF LAMINAR INDIRECT FREE CONVECTION BOUNDARY LAYERS WITH WEAK BLOWING FOR SCHMIDT NO. 1

INTEGRAL ANALYSIS OF LAMINAR INDIRECT FREE CONVECTION BOUNDARY LAYERS WITH WEAK BLOWING FOR SCHMIDT NO. 1 INTEGRA ANAYSIS OF AMINAR INDIRECT FREE CONVECTION BOUNDARY AYERS WITH WEAK BOWING FOR SCHMIDT NO. Baburaj A.Puthenveettil and Jaywant H.Arakeri Department of Mechanical Engineering, Indian Institute of

More information

Computational study on non-asymptotic behavior of developing turbulent pipe flow

Computational study on non-asymptotic behavior of developing turbulent pipe flow 39 Computational study on non-asymptotic behavior of developing turbulent pipe flow W. A. S. Kumara, B. M. Halvorsen,2 & M. C. Melaaen,2 2 Telemark University College, Norway Telemark R & D Centre (Tel-Tek),

More information

Homework #4 Solution. μ 1. μ 2

Homework #4 Solution. μ 1. μ 2 Homework #4 Solution 4.20 in Middleman We have two viscous liquids that are immiscible (e.g. water and oil), layered between two solid surfaces, where the top boundary is translating: y = B y = kb y =

More information

Lecture: Wave-induced Momentum Fluxes: Radiation Stresses

Lecture: Wave-induced Momentum Fluxes: Radiation Stresses Chapter 4 Lecture: Wave-induced Momentum Fluxes: Radiation Stresses Here we derive the wave-induced depth-integrated momentum fluxes, otherwise known as the radiation stress tensor S. These are the 2nd-order

More information

Application of the immersed boundary method to simulate flows inside and outside the nozzles

Application of the immersed boundary method to simulate flows inside and outside the nozzles Application of the immersed boundary method to simulate flows inside and outside the nozzles E. Noël, A. Berlemont, J. Cousin 1, T. Ménard UMR 6614 - CORIA, Université et INSA de Rouen, France emeline.noel@coria.fr,

More information

NUMERICAL INVESTIGATION ON THE FLOW CHARACTERISTICS OF A SUPERSONIC JET IMPINGING ON AN AXI-SYMMETRIC DEFLECTOR

NUMERICAL INVESTIGATION ON THE FLOW CHARACTERISTICS OF A SUPERSONIC JET IMPINGING ON AN AXI-SYMMETRIC DEFLECTOR ICAS 2002 CONGRESS NUMERICAL INVESTIGATION ON THE FLOW CHARACTERISTICS OF A SUPERSONIC JET IMPINGING ON AN AXI-SYMMETRIC DEFLECTOR S.Sankaran, M.Rajeswara Rao, T.N.V.Satyanarayana, N.Satyanarayana K.Visvanathan

More information

NUMERICAL SIMULATION OF THREE DIMENSIONAL GAS-PARTICLE FLOW IN A SPIRAL CYCLONE

NUMERICAL SIMULATION OF THREE DIMENSIONAL GAS-PARTICLE FLOW IN A SPIRAL CYCLONE Applied Mathematics and Mechanics (English Edition), 2006, 27(2):247 253 c Editorial Committee of Appl. Math. Mech., ISSN 0253-4827 NUMERICAL SIMULATION OF THREE DIMENSIONAL GAS-PARTICLE FLOW IN A SPIRAL

More information

Number of pages in the question paper : 06 Number of questions in the question paper : 48 Modeling Transport Phenomena of Micro-particles Note: Follow the notations used in the lectures. Symbols have their

More information

CFD ANALYSIS OF TRIANGULAR ABSORBER TUBE OF A SOLAR FLAT PLATE COLLECTOR

CFD ANALYSIS OF TRIANGULAR ABSORBER TUBE OF A SOLAR FLAT PLATE COLLECTOR Int. J. Mech. Eng. & Rob. Res. 2013 Basavanna S and K S Shashishekar, 2013 Research Paper ISSN 2278 0149 www.imerr.com Vol. 2, No. 1, January 2013 2013 IJMERR. All Rights Reserved CFD ANALYSIS OF TRIANGULAR

More information

Mixing of Liquids in Microfluidic Devices

Mixing of Liquids in Microfluidic Devices Mixing of Liquids in Microfluidic Devices Bruce A. Finlayson Professor Emeritus of Chemical Engineering University of Washington http://courses.washington.edu/microflo/ The mixing of liquids in eleven

More information

Colloquium FLUID DYNAMICS 2012 Institute of Thermomechanics AS CR, v.v.i., Prague, October 24-26, 2012 p.

Colloquium FLUID DYNAMICS 2012 Institute of Thermomechanics AS CR, v.v.i., Prague, October 24-26, 2012 p. Colloquium FLUID DYNAMICS 212 Institute of Thermomechanics AS CR, v.v.i., Prague, October 24-26, 212 p. ON A COMPARISON OF NUMERICAL SIMULATIONS OF ATMOSPHERIC FLOW OVER COMPLEX TERRAIN T. Bodnár, L. Beneš

More information

Numerical investigation of multiple slot jets in air knife coating

Numerical investigation of multiple slot jets in air knife coating Numerical investigation of multiple slot jets in air knife coating A. Yahyaee Soufiani 1, J.R. McDermid 2, A.N. Hrymak 3 and F.E. Goodwin 4 1 McMaster University 128 Main street west, Hamilton, ON, Canada,

More information

Quick Recapitulation of Fluid Mechanics

Quick Recapitulation of Fluid Mechanics Quick Recapitulation of Fluid Mechanics Amey Joshi 07-Feb-018 1 Equations of ideal fluids onsider a volume element of a fluid of density ρ. If there are no sources or sinks in, the mass in it will change

More information

Chapter 2 Momentum Transfer

Chapter 2 Momentum Transfer Chapter 2 Momentum Transfer Abstract The beginning of this chapter presents the governing equations for the motion of fluid flows: equation of continuity, equation of motion, and energy equation. In the

More information

Numerical analysis of Fully Developed Laminar Flow and heat transfer of Non-Newtonian Fluid in Ducts of Arbitrary Cross- Sectional Shape

Numerical analysis of Fully Developed Laminar Flow and heat transfer of Non-Newtonian Fluid in Ducts of Arbitrary Cross- Sectional Shape Ninth International Conference on Computational Fluid Dynamics (ICCFD9), Istanbul, Turkey, July 11-15, 2016 ICCFD9-xxxx Numerical analysis of Fully Developed Laminar Flow and heat transfer of Non-Newtonian

More information

Lattice Boltzmann Method for Fluid Simulations

Lattice Boltzmann Method for Fluid Simulations 1 / 16 Lattice Boltzmann Method for Fluid Simulations Yuanxun Bill Bao & Justin Meskas Simon Fraser University April 7, 2011 2 / 16 Ludwig Boltzmann and His Kinetic Theory of Gases The Boltzmann Transport

More information

Unit operations of chemical engineering

Unit operations of chemical engineering 1 Unit operations of chemical engineering Fourth year Chemical Engineering Department College of Engineering AL-Qadesyia University Lecturer: 2 3 Syllabus 1) Boundary layer theory 2) Transfer of heat,

More information

4.2 Concepts of the Boundary Layer Theory

4.2 Concepts of the Boundary Layer Theory Advanced Heat by Amir Faghri, Yuwen Zhang, and John R. Howell 4.2 Concepts of the Boundary Layer Theory It is difficult to solve the complete viscous flow fluid around a body unless the geometry is very

More information

PIPE FLOWS: LECTURE /04/2017. Yesterday, for the example problem Δp = f(v, ρ, μ, L, D) We came up with the non dimensional relation

PIPE FLOWS: LECTURE /04/2017. Yesterday, for the example problem Δp = f(v, ρ, μ, L, D) We came up with the non dimensional relation /04/07 ECTURE 4 PIPE FOWS: Yesterday, for the example problem Δp = f(v, ρ, μ,, ) We came up with the non dimensional relation f (, ) 3 V or, p f(, ) You can plot π versus π with π 3 as a parameter. Or,

More information

Unsteady MHD Couette Flow with Heat Transfer in the Presence of Uniform Suction and Injection

Unsteady MHD Couette Flow with Heat Transfer in the Presence of Uniform Suction and Injection Mechanics and Mechanical Engineering Vol. 12, No. 2 (2008) 165 176 c Technical University of Lodz Unsteady MHD Couette Flow with Heat Transfer in the Presence of Uniform Suction and Injection Hazem A.

More information

CHME 302 CHEMICAL ENGINEERING LABOATORY-I EXPERIMENT 302-V FREE AND FORCED CONVECTION

CHME 302 CHEMICAL ENGINEERING LABOATORY-I EXPERIMENT 302-V FREE AND FORCED CONVECTION CHME 302 CHEMICAL ENGINEERING LABOATORY-I EXPERIMENT 302-V FREE AND FORCED CONVECTION OBJECTIVE The objective of the experiment is to compare the heat transfer characteristics of free and forced convection.

More information

Single Curved Fiber Sedimentation Under Gravity. Xiaoying Rong, Dewei Qi Western Michigan University

Single Curved Fiber Sedimentation Under Gravity. Xiaoying Rong, Dewei Qi Western Michigan University Single Curved Fiber Sedimentation Under Gravity Xiaoying Rong, Dewei Qi Western Michigan University JunYong Zhu, Tim Scott USDA Forest Products Laboratory ABSTRACT Dynamics of single curved fiber sedimentation

More information

WALL RESOLUTION STUDY FOR DIRECT NUMERICAL SIMULATION OF TURBULENT CHANNEL FLOW USING A MULTIDOMAIN CHEBYSHEV GRID

WALL RESOLUTION STUDY FOR DIRECT NUMERICAL SIMULATION OF TURBULENT CHANNEL FLOW USING A MULTIDOMAIN CHEBYSHEV GRID WALL RESOLUTION STUDY FOR DIRECT NUMERICAL SIMULATION OF TURBULENT CHANNEL FLOW USING A MULTIDOMAIN CHEBYSHEV GRID Zia Ghiasi sghias@uic.edu Dongru Li dli@uic.edu Jonathan Komperda jonk@uic.edu Farzad

More information

R09. d water surface. Prove that the depth of pressure is equal to p +.

R09. d water surface. Prove that the depth of pressure is equal to p +. Code No:A109210105 R09 SET-1 B.Tech II Year - I Semester Examinations, December 2011 FLUID MECHANICS (CIVIL ENGINEERING) Time: 3 hours Max. Marks: 75 Answer any five questions All questions carry equal

More information

Design and Modeling of Fluid Power Systems ME 597/ABE Lecture 7

Design and Modeling of Fluid Power Systems ME 597/ABE Lecture 7 Systems ME 597/ABE 591 - Lecture 7 Dr. Monika Ivantysynova MAHA Professor Fluid Power Systems MAHA Fluid Power Research Center Purdue University Content of 6th lecture The lubricating gap as a basic design

More information