DINAMICA FLUIDELOR COMPUTATIONALA APLICATA LA VEHICULE: DE LA TEORIE LA PRACTICA

Size: px
Start display at page:

Download "DINAMICA FLUIDELOR COMPUTATIONALA APLICATA LA VEHICULE: DE LA TEORIE LA PRACTICA"

Transcription

1 Valorile RTR DINAMICA FLUIDELOR COMPUTATIONALA APLICATA LA VEHICULE: DE LA TEORIE LA PRACTICA Profesionalism şi exemplaritate Respect şi solidaritate Dezvoltare personală Satisfacţia clientului

2 Overview INTRODUCTION FROM THEORY TO NUMERICS AERODYNAMICS THERMODYNAMICS 2

3 01 INTRODUCTION

4 CUSTOMER SPECIFICATIONS: Activities Numerical simulations NVH Performance and fuel consumption CFD: aero/heat transfer Vehicle dynamics Measurements NVH Thermal Customer usage analysis Statistics of the usage of our/competitor car Subjective evaluations/bench NVH noise levels Driving pleasure Competition benchmark

5 02 FROM THEORY TO NUMERICS

6 Modelling a phenomenon REAL PHENOMENON ERROR MATHEMATICAL MODEL DOMAIN BORDER INFORMATION ANALYTICAL SOLUTION ERROR NUMERICAL MODEL MESH BOUNDARY CONDITIONS SOLVER NUMERICAL SOLUTION

7 BACKGROUND (1) Initial Conditions (IC) Boundary Conditions (BC) u t u u u p u f convection 0 stress extra forces IC are important in order to have good starting points (according to the physical modeled phenomena) IC are very useful to speed up the numerical convergence BC are the most important data to be added BC need to add NEW information to the model

8 BACKGROUND (2) Meshes/Grids Types of grids: structured unstructured Elements: triangles, rectangles, hexagons in 2D prisms/tetrahedra, parallelepipeds, etc in 3D Different grids have different impact on the numerical solution We will talk later about!

9 BACKGROUND: NUMERICAL SCHEMES (1) Quality Properties of all numerical schemes: Consistency: means that the discretized version of the equation must fit the analytical one if one goes with the grid size to zero and the truncation error (i.e. the difference between the exact and numerical (discrete) equation) must be small and bounded Stability: assures that the errors made at each time step/iteration will not grow in time Convergence: numerical solution tends to the exact one as the grid size tends to zero LAX equivalence theorem: consistency + stability convergence

10 BACKGROUND: NUMERICAL SCHEMES (2) Diversity Based on FEM method Try to approximate the solution Remark: Not often used for NS equations because forces the div-free condition only globally! Based on FV method Try to approximate the NS system and NOT the solution My opinion: the most used in CFD computations! Codes: FLUENT Based on FD method Try to approximate the NS system and NOT the solution The most ancient and simple method! Based on LBM method Based on Boltzmann equation approach Relatively new on the market Based on Spectral approximation (based on Fourier transform)

11 NUMERICAL SCHEMES (2) Dummy Unsteady Approach Integrating in time T fin u( T ) u(0) u u dt ( p u fin 0 T fin 0 f ) dt Final time = T fin T fin 0 u dt 0 The above integration is exact! There is not explicit integration of the remaining integrals! To completely get the exact u we need to integrate exact in space too! First concept of global error is needed!!!

12 NUMERICAL SCHEMES (3) Sources of errors To define in a rigorous general way the concept of error it is an impossible task! etime eround e e space - round-off errors accum - temporal errors - accumulation error - spatial errors Total error e tot e round e time e space e accum In software engineering (and not only) numerical error bears all (d)effects which may disturb the final solution/result In the numerical error is included first of all the incapability of the computer to store an rational/irrational number

13 SPATIAL ERRORS Definition: The function u has a derivative at the point x 0 if the following limit exists: lim x x 0 u( x) x u( x x 0 0 ) not ' u ( x 0 ) What is happening in numerical case? Here begins the crowd world of numerical definitions, and let researchers to write many papers in this field Each numerical definition is strictly connected/adapted to the problem to be solved

14 SPATIAL ERRORS Consider the following 2D example: y Δx mesh size u u( x x y t u x y t x y t ) 0, 0, ) ( 0, 0, 0, 0, x x lim x0 u( x 0 could be an approximation (forward) of the exact derivative x, y 0, t) u( x0, y 0, t) x y 0 y 0 -Δy x 0 Dummy grid x 0 +Δx Δy x The error between the exact and approximate derivative is called truncation error How this error can be evaluated?

15 TEMPORAL ERRORS When is necessary to numerically integrate a function? Answer: f (x) when an analytical result is unavailable when the function is too complicated only few values of the function is given b a f dx 0 a b x Looking geometrically at the right picture, first idea to approximate an integral would be to approximated as good as we can the hashed area! Split big area in a sum of small areas! b a f n ( x) dx a f ( x ) index i counts the nodes number between i0 i i a and b.

16 NUMERICAL SCHEMES From theory to numerics u t u u u p u f convection 0 stress extra forces Discretization procedure In this case we treat only this way, and not other nonlinear approaches based on Newton iterations!!! Linear system (LS) Ax b A = matrix (SPARSE) coefficients x = unknown variables (u,v,w,p,etc) b = known data (data at previous time, BC, IC, f)

17 SOLVING LS Behind linear systems Direct Methods Ax b + Preconditioning Multigrid x A 1 b Iterative Methods Generalities: if x has N entries then A has the dimension N 2! # of arithmetic operations needed to obtain the solution x is proportional usually with N 3! How to decrease the computational time? Computational demand today: Solve the linear system within N iterations!!!

18 NUMERICAL SCHEMES FACTS Overview: Usually in CFD the matrix A is sparse (e.g. more zero entries than non-zero)! A is always quadratic. For a grid points the dimension of A is ( ) 2! The non-zero entries are only the coefficients of the unknown values and the connections to their neighbors! So, A is never stored as a full matrix. A is stored as a three vectors: 1st vector: position in x dir in A 2 nd vector: position in y dir in A 3 th vector: non-zero value of A Important to have symmetric matrices easier to solve the LS The type of discretization operators, or in the grid elements together with the overall numerical scheme chosen have direct impact to the coefficients of the A matrix more tuning needed to solve LS! That s why Do not use angles too small Discretization lengths in all directions in the same range, and smooth transition of the layers!

19 FINAL REMARKS Numerical scheme For our purposes use ALWAYS a second-order scheme both in time and space A first-order scheme is producing in excess numerical diffusion which will spoil the solution A higher-order scheme will produce more accurate results, but the price paid is that needs more computational time and finer tuning of the start-up! It is also a must when dealing with turbulence. Each turbulence model is producing a turbulent viscosity ~ O(h 2 )!!! Indeed, if using a first-order scheme, it does not mater which turbulence model is taken the effect on the final solution will be ~0! WHY? 1 st -order scheme 2 nd -order scheme higher-order schemes Accuracy RAM demand CPU time ~ mesh size / time step ~ with O(mesh size 2, timestep 2 ) third-order or higher exponentially exponentially exponentially exponentially

20 MODELLING: Turbulence? Turbulence modelling Definition : a turbulent flow is characterized by a non regular/chaotic movement! Models (just few ) No model: DNS usually for small Re numbers Zero-order models (algebraic): ex. Baldwin-Lomax Model 1 equation models: Spalart-Allmaras model (implemented FLUENT) 2 equations models: k-ε and variants (well accepted in industry) Reynolds Stress Models (RSM) LES, VLES DES to treat near boundaries in a RANS view and in other parts as LES. etc Turbulent solutions give you only mean values instead of point wise There are NO exact turbulence models, only approximations Always playing/changing the overall viscosity Need a lot of coefficients to be tuned LES/VLES/DES new on the market

21 03 AERODYNAMICS

22 Basic Aerodynamics (1) L : Roll Fx : Drag force M : Pitch Fy : Lateral force N : Lace Fz : Lift force

23 Basic Aerodynamics (2) Fx : Drag Global design Cooling Mirror Fx = ½ S.C x V² Fuel Consumption Under body 6 SC x SC xi i1 Wheel covers Tires Disque : Cx = 1,17 Cube : Cx = 1,05 Sphère : Cx = 0,47 Aile : Cx = 0,04 Clio 3 : Cx = 0,34 F1 : Cx = 1.0 Cz=-3

24 Basic Aerodynamics (3) Cx represents the aero performance, and do not take into account the frontal surface Some superstructures are more suitable to be aerodynamic 0,25 0,30 0,35 0,4 Cx A2 Prius Xsara Break K J C220 B L

25 Aerodynamic results: Different visualizations

26 Aerodynamic result: SCx improvement Initial car S*Cx wake = 0,105 Car with a little rear spoiler S*Cx wake = 0,073

27 04 HEAT TRANSFER

28 WHAT DOES MEAN VEHICLE HEAT TRANSFER? Validation of the cooling systems Water Oil Heat exchangers Underbody/underhood validation Material choice Component position Thermal shields Thermal comfort Air diffusion Heat and AC system Defrost windshield

29 Coupling PWF-PWT-AmeSim (1) airflow ( DES as turbulence model ) PowerFlow (PF) T_conv T_diff PowerTherm (PT) Amesim T_cond T_rad T (Heat exchangers backflow) FINAL STRATEGY: Coupling between PF - PT - Ame!

30 Coupling PWF-PWT-AmeSim (2) PF mesh PT mesh T HTC, T

31 Unsteady coupling PF-PT strategy Numerical Strategy Period PF run Δt PF time t=0 t=t_fin PT run Δt PT Exchange/Update BC Δt PF Δt PT coupling time time step size PF time step size PT

32 Duster Condensation analysis Airflow is taken from the engine compartment The suction side to the beam implies recirculation of hot air on the COND Recirculation zone zones Temperature [degc]

33 Megane: Underhood/Underbody thermal simulation Aero and thermal analysis Temperature field and airflow at 165km/h Temperature field and airflow for hill

34 Megane: Underhood/Underbody part positioning Aero and thermal analysis Surface temperature field at 165 km/h Stagnation zone behind EGR

35 Megane: Tests/simulations V165km/h correlation 160 mm Sens de l écoulement Thermocouples 1 Calcul H2S Trap Thermocouples Test ( o C) Simulation ( o C)

36 Megane: Tests/simulations Hill correlation 160 mm Sens de l écoulement Thermocouples 1 Calcul H2S Trap Thermocouples Test( o C) Simulation ( o C)

37 Duster: Defrosting

38 Conclusions Scientific computation is used with success within Renault Nowadays experiments and theory are supplemented in many cases by numerical computation that is an equally important component Within scientific computing one can treat more complex and less simplified problems through massive amounts of numerical calculations and thanks to the increased computer facilities in short time

39 39

Turbulent Boundary Layers & Turbulence Models. Lecture 09

Turbulent Boundary Layers & Turbulence Models. Lecture 09 Turbulent Boundary Layers & Turbulence Models Lecture 09 The turbulent boundary layer In turbulent flow, the boundary layer is defined as the thin region on the surface of a body in which viscous effects

More information

Implicit Solution of Viscous Aerodynamic Flows using the Discontinuous Galerkin Method

Implicit Solution of Viscous Aerodynamic Flows using the Discontinuous Galerkin Method Implicit Solution of Viscous Aerodynamic Flows using the Discontinuous Galerkin Method Per-Olof Persson and Jaime Peraire Massachusetts Institute of Technology 7th World Congress on Computational Mechanics

More information

Generalized Anisotropic/Isotropic Porous Media Flows in LS-DYNA

Generalized Anisotropic/Isotropic Porous Media Flows in LS-DYNA Generalized Anisotropic/Isotropic Porous Media Flows in LS-DYNA Rodrigo R. Paz1, Facundo Del Pin1, Iñaki Caldichoury1 and Hugo G. Castro2 1 Livermore Software Technology Corporation, USA. 2 National Council

More information

Introduction to Heat and Mass Transfer. Week 9

Introduction to Heat and Mass Transfer. Week 9 Introduction to Heat and Mass Transfer Week 9 補充! Multidimensional Effects Transient problems with heat transfer in two or three dimensions can be considered using the solutions obtained for one dimensional

More information

Analysis of Flow over a Convertible

Analysis of Flow over a Convertible 69 Analysis of Flow over a Convertible Aniket A Kulkarni 1, S V Satish 2 and V Saravanan 3 1 PES Institute of Technology, India, aniket260919902@gmail.com 2 PES Institute of Technology, India, svsatish@pes.edu

More information

Computational Fluid Dynamics Prof. Dr. Suman Chakraborty Department of Mechanical Engineering Indian Institute of Technology, Kharagpur

Computational Fluid Dynamics Prof. Dr. Suman Chakraborty Department of Mechanical Engineering Indian Institute of Technology, Kharagpur Computational Fluid Dynamics Prof. Dr. Suman Chakraborty Department of Mechanical Engineering Indian Institute of Technology, Kharagpur Lecture No. #12 Fundamentals of Discretization: Finite Volume Method

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

A COMPARISON OF HEAT TRANSFER AROUND A SINGLE SERRATED FINNED TUBE AND A PLAIN FINNED TUBE

A COMPARISON OF HEAT TRANSFER AROUND A SINGLE SERRATED FINNED TUBE AND A PLAIN FINNED TUBE IJRRAS 2 (2) February A COMPARISON OF HEAT TRANSFER AROUND A SINGLE SERRATED FINNED TUBE AND A PLAIN FINNED TUBE S. R. MCILWAIN School of Engineering, University of the West of Scotland, Hamilton, Scotland

More information

Unsteady CFD for Automotive Aerodynamics

Unsteady CFD for Automotive Aerodynamics Unsteady CFD for Automotive Aerodynamics T. Indinger, B. Schnepf, P. Nathen, M. Peichl, TU München, Institute of Aerodynamics and Fluid Mechanics Prof. Dr.-Ing. N.A. Adams Outline 2 Motivation Applications

More information

Numerical Methods in Aerodynamics. Turbulence Modeling. Lecture 5: Turbulence modeling

Numerical Methods in Aerodynamics. Turbulence Modeling. Lecture 5: Turbulence modeling Turbulence Modeling Niels N. Sørensen Professor MSO, Ph.D. Department of Civil Engineering, Alborg University & Wind Energy Department, Risø National Laboratory Technical University of Denmark 1 Outline

More information

Conjugate Heat Transfer Simulation of Internally Cooled Gas Turbine Vane

Conjugate Heat Transfer Simulation of Internally Cooled Gas Turbine Vane Conjugate Heat Transfer Simulation of Internally Cooled Gas Turbine Vane V. Esfahanian 1, A. Shahbazi 1 and G. Ahmadi 2 1 Department of Mechanical Engineering, University of Tehran, Tehran, Iran 2 Department

More information

Aeroacoustic simulation of automotive ventilation outlets

Aeroacoustic simulation of automotive ventilation outlets Aeroacoustic simulation of automotive ventilation outlets J.-L. Adam a, D. Ricot a, F. Dubief a and C. Guy b a Renault SAS, 1 avenue du golf, 78288 Guyancourt, France b Ligeron, Les Algorithmes Bâtiment

More information

There are no simple turbulent flows

There are no simple turbulent flows Turbulence 1 There are no simple turbulent flows Turbulent boundary layer: Instantaneous velocity field (snapshot) Ref: Prof. M. Gad-el-Hak, University of Notre Dame Prediction of turbulent flows standard

More information

ASSESSMENT OF RANS AND DES METHODS FOR THE AHMED BODY

ASSESSMENT OF RANS AND DES METHODS FOR THE AHMED BODY ECCOMAS Congress 2016 VII European Congress on Computational Methods in Applied Sciences and Engineering M. Papadrakakis, V. Papadopoulos, G. Stefanou, V. Plevris (eds.) Crete Island, Greece, 5 10 June

More information

Side-View Mirror Vibrations Induced Aerodynamically by Separating Vortices

Side-View Mirror Vibrations Induced Aerodynamically by Separating Vortices Open Journal of Fluid Dynamics, 2016, 6, 42-56 Published Online March 2016 in SciRes. http://www.scirp.org/journal/ojfd http://dx.doi.org/10.4236/ojfd.2016.61004 Side-View Mirror Vibrations Induced Aerodynamically

More information

6. Iterative Methods for Linear Systems. The stepwise approach to the solution...

6. Iterative Methods for Linear Systems. The stepwise approach to the solution... 6 Iterative Methods for Linear Systems The stepwise approach to the solution Miriam Mehl: 6 Iterative Methods for Linear Systems The stepwise approach to the solution, January 18, 2013 1 61 Large Sparse

More information

COURSE ON VEHICLE AERODYNAMICS Prof. Tamás Lajos University of Rome La Sapienza 1999

COURSE ON VEHICLE AERODYNAMICS Prof. Tamás Lajos University of Rome La Sapienza 1999 COURSE ON VEHICLE AERODYNAMICS Prof. Tamás Lajos University of Rome La Sapienza 1999 1. Introduction Subject of the course: basics of vehicle aerodynamics ground vehicle aerodynamics examples in car, bus,

More information

Computational Fluid Dynamics Study Of Fluid Flow And Aerodynamic Forces On An Airfoil S.Kandwal 1, Dr. S. Singh 2

Computational Fluid Dynamics Study Of Fluid Flow And Aerodynamic Forces On An Airfoil S.Kandwal 1, Dr. S. Singh 2 Computational Fluid Dynamics Study Of Fluid Flow And Aerodynamic Forces On An Airfoil S.Kandwal 1, Dr. S. Singh 2 1 M. Tech Scholar, 2 Associate Professor Department of Mechanical Engineering, Bipin Tripathi

More information

1976. Numerical computation and optimization design of pantograph aerodynamic noise

1976. Numerical computation and optimization design of pantograph aerodynamic noise 1976. Numerical computation and optimization design of pantograph aerodynamic noise Ya-hui Wang North China University of Water Resources and Electric Power, Zhengzhou, China E-mail: wangyahui_1979@163.com

More information

Free Field Technologies

Free Field Technologies Free Field Technologies SFA Conference Toulouse the 25 th of November 2010 Copyright Free Field Technologies Free Field Technologies Free Field Technologies is a technical leader in the field of acoustic,

More information

2.29 Numerical Fluid Mechanics Spring 2015 Lecture 9

2.29 Numerical Fluid Mechanics Spring 2015 Lecture 9 Spring 2015 Lecture 9 REVIEW Lecture 8: Direct Methods for solving (linear) algebraic equations Gauss Elimination LU decomposition/factorization Error Analysis for Linear Systems and Condition Numbers

More information

A Hybrid Method for the Wave Equation. beilina

A Hybrid Method for the Wave Equation.   beilina A Hybrid Method for the Wave Equation http://www.math.unibas.ch/ beilina 1 The mathematical model The model problem is the wave equation 2 u t 2 = (a 2 u) + f, x Ω R 3, t > 0, (1) u(x, 0) = 0, x Ω, (2)

More information

Mostafa Momen. Project Report Numerical Investigation of Turbulence Models. 2.29: Numerical Fluid Mechanics

Mostafa Momen. Project Report Numerical Investigation of Turbulence Models. 2.29: Numerical Fluid Mechanics 2.29: Numerical Fluid Mechanics Project Report Numerical Investigation of Turbulence Models Mostafa Momen May 2015 Massachusetts Institute of Technology 1 Numerical Investigation of Turbulence Models Term

More information

Applied Computational Fluid Dynamics. in Marine Engineering

Applied Computational Fluid Dynamics. in Marine Engineering Applied Computational Fluid Dynamics in Marine Engineering Objectives Understand basic CFD theory Learn how to set up and run simulations in Star CCM+ and interpret results Learn about limitations and

More information

Introduction to Turbulence AEEM Why study turbulent flows?

Introduction to Turbulence AEEM Why study turbulent flows? Introduction to Turbulence AEEM 7063-003 Dr. Peter J. Disimile UC-FEST Department of Aerospace Engineering Peter.disimile@uc.edu Intro to Turbulence: C1A Why 1 Most flows encountered in engineering and

More information

Numerical Analysis of Tube-Fin Heat Exchanger using Fluent

Numerical Analysis of Tube-Fin Heat Exchanger using Fluent Numerical Analysis of Tube-Fin Heat Exchanger using Fluent M. V. Ghori & R. K. Kirar Patel college of Science and Technology, Rajiv Gandhi Proudyogiki Vishwavidhyalaya, Ratibad, Bhopal- 462036, India E-mail

More information

RANS-LES inlet boundary condition for aerodynamic and aero-acoustic. acoustic applications. Fabrice Mathey Davor Cokljat Fluent Inc.

RANS-LES inlet boundary condition for aerodynamic and aero-acoustic. acoustic applications. Fabrice Mathey Davor Cokljat Fluent Inc. RANS-LES inlet boundary condition for aerodynamic and aero-acoustic acoustic applications Fabrice Mathey Davor Cokljat Fluent Inc. Presented by Fredrik Carlsson Fluent Sweden ZONAL MULTI-DOMAIN RANS/LES

More information

Solution Methods. Steady State Diffusion Equation. Lecture 04

Solution Methods. Steady State Diffusion Equation. Lecture 04 Solution Methods Steady State Diffusion Equation Lecture 04 1 Solution methods Focus on finite volume method. Background of finite volume method. Discretization example. General solution method. Convergence.

More information

Numerical study of battle damaged two-dimensional wings

Numerical study of battle damaged two-dimensional wings Advances in Fluid Mechanics IX 141 Numerical study of battle damaged two-dimensional wings S. Djellal, T. Azzam, M. Djellab & K. Lakkaichi Fluid Mechanics Laboratory Polytechnical School Bordj El Bahri,

More information

Soft Bodies. Good approximation for hard ones. approximation breaks when objects break, or deform. Generalization: soft (deformable) bodies

Soft Bodies. Good approximation for hard ones. approximation breaks when objects break, or deform. Generalization: soft (deformable) bodies Soft-Body Physics Soft Bodies Realistic objects are not purely rigid. Good approximation for hard ones. approximation breaks when objects break, or deform. Generalization: soft (deformable) bodies Deformed

More information

Heat Transfer Enhancement Through Perforated Fin

Heat Transfer Enhancement Through Perforated Fin IOSR Journal of Mechanical and Civil Engineering (IOSR-JMCE) e-issn: 2278-1684,p-ISSN: 2320-334X PP. 72-78 www.iosrjournals.org Heat Transfer Enhancement Through Perforated Fin Noaman Salam, Khan Rahmatullah,

More information

An Introduction to Algebraic Multigrid (AMG) Algorithms Derrick Cerwinsky and Craig C. Douglas 1/84

An Introduction to Algebraic Multigrid (AMG) Algorithms Derrick Cerwinsky and Craig C. Douglas 1/84 An Introduction to Algebraic Multigrid (AMG) Algorithms Derrick Cerwinsky and Craig C. Douglas 1/84 Introduction Almost all numerical methods for solving PDEs will at some point be reduced to solving A

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

Applied Fluid Mechanics

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

More information

External Flow Analysis of a Truck for Drag Reduction

External Flow Analysis of a Truck for Drag Reduction 000-01-500 External Flow Analysis of a Truc for Drag Reduction Subrata Roy 1 and Pradeep Srinivasan 1 Assistant Professor, E-mail: sroy@ettering.edu Graduate Research Assistant, E-mail: pradeep@altair.com

More information

Fast Iterative Solution of Saddle Point Problems

Fast Iterative Solution of Saddle Point Problems Michele Benzi Department of Mathematics and Computer Science Emory University Atlanta, GA Acknowledgments NSF (Computational Mathematics) Maxim Olshanskii (Mech-Math, Moscow State U.) Zhen Wang (PhD student,

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

Chapter 5. Formulation of FEM for Unsteady Problems

Chapter 5. Formulation of FEM for Unsteady Problems Chapter 5 Formulation of FEM for Unsteady Problems Two alternatives for formulating time dependent problems are called coupled space-time formulation and semi-discrete formulation. The first one treats

More information

Computational Analysis of Base Drag Reduction Using Active Flow Control

Computational Analysis of Base Drag Reduction Using Active Flow Control Master of Science Thesis Computational Analysis of Base Drag Reduction Using Active Flow Control November 29 Ad Computational Analysis of Base Drag Reduction Using Active Flow Control Master of Science

More information

Design and Optimization of Energy Systems Prof. C. Balaji Department of Mechanical Engineering Indian Institute of Technology, Madras

Design and Optimization of Energy Systems Prof. C. Balaji Department of Mechanical Engineering Indian Institute of Technology, Madras Design and Optimization of Energy Systems Prof. C. Balaji Department of Mechanical Engineering Indian Institute of Technology, Madras Lecture - 13 Introduction to Curve Fitting Good afternoon. So, we will

More information

Game Physics. Game and Media Technology Master Program - Utrecht University. Dr. Nicolas Pronost

Game Physics. Game and Media Technology Master Program - Utrecht University. Dr. Nicolas Pronost Game and Media Technology Master Program - Utrecht University Dr. Nicolas Pronost Soft body physics Soft bodies In reality, objects are not purely rigid for some it is a good approximation but if you hit

More information

Parametric Investigation of Hull Shaped Fuselage for an Amphibious UAV

Parametric Investigation of Hull Shaped Fuselage for an Amphibious UAV Ninth International Conference on Computational Fluid Dynamics (ICCFD9), Istanbul, Turkey, July 11-15, 2016 ICCFD9-2016-226 Parametric Investigation of Hull Shaped Fuselage for an Amphibious UAV Emre Sazak

More information

Introduction to Heat and Mass Transfer. Week 8

Introduction to Heat and Mass Transfer. Week 8 Introduction to Heat and Mass Transfer Week 8 Next Topic Transient Conduction» Analytical Method Plane Wall Radial Systems Semi-infinite Solid Multidimensional Effects Analytical Method Lumped system analysis

More information

Introduction to numerical simulation of fluid flows

Introduction to numerical simulation of fluid flows Introduction to numerical simulation of fluid flows Mónica de Mier Torrecilla Technical University of Munich Winterschool April 2004, St. Petersburg (Russia) 1 Introduction The central task in natural

More information

Heat Transfer Simulation by CFD from Fins of an Air Cooled Motorcycle Engine under Varying Climatic Conditions

Heat Transfer Simulation by CFD from Fins of an Air Cooled Motorcycle Engine under Varying Climatic Conditions , July 6-8, 2011, London, U.K. Heat Transfer Simulation by CFD from Fins of an Air Cooled Motorcycle Engine under Varying Climatic Conditions Pulkit Agarwal, Mayur Shrikhande and P. Srinivasan Abstract

More information

Turbulence Modeling of Air Flow in the Heat Accumulator Layer

Turbulence Modeling of Air Flow in the Heat Accumulator Layer PIERS ONLINE, VOL. 2, NO. 6, 2006 662 Turbulence Modeling of Air Flow in the Heat Accumulator Layer I. Behunek and P. Fiala Department of Theoretical and Experimental Electrical Engineering Faculty of

More information

Lecture-4. Flow Past Immersed Bodies

Lecture-4. Flow Past Immersed Bodies Lecture-4 Flow Past Immersed Bodies Learning objectives After completing this lecture, you should be able to: Identify and discuss the features of external flow Explain the fundamental characteristics

More information

2-D CFD analysis of passenger compartment for thermal comfort and ventilation

2-D CFD analysis of passenger compartment for thermal comfort and ventilation 2-D CFD analysis of passenger compartment for thermal comfort and ventilation Ajay Giri 1*, Brajesh Tripathi 2 and H.C. Thakur 3 *1, 3 School of Engineering, Gautam Buddha University, Greater Noida, U.P,

More information

Robot Control Basics CS 685

Robot Control Basics CS 685 Robot Control Basics CS 685 Control basics Use some concepts from control theory to understand and learn how to control robots Control Theory general field studies control and understanding of behavior

More information

Integration, differentiation, and root finding. Phys 420/580 Lecture 7

Integration, differentiation, and root finding. Phys 420/580 Lecture 7 Integration, differentiation, and root finding Phys 420/580 Lecture 7 Numerical integration Compute an approximation to the definite integral I = b Find area under the curve in the interval Trapezoid Rule:

More information

On the influence of tube row number for mixed convection around micro tubes

On the influence of tube row number for mixed convection around micro tubes Thessaloniki, Greece, 22-24 August 211 On the influence of tube row number for mixed convection around micro tubes Chuanshan DAI, Qiuxiang WANG, Biao LI * Corresponding author: Tel.: +86-22274183; Fax:

More information

Linear Solvers. Andrew Hazel

Linear Solvers. Andrew Hazel Linear Solvers Andrew Hazel Introduction Thus far we have talked about the formulation and discretisation of physical problems...... and stopped when we got to a discrete linear system of equations. Introduction

More information

Some notes about PDEs. -Bill Green Nov. 2015

Some notes about PDEs. -Bill Green Nov. 2015 Some notes about PDEs -Bill Green Nov. 2015 Partial differential equations (PDEs) are all BVPs, with the same issues about specifying boundary conditions etc. Because they are multi-dimensional, they can

More information

Numerical Modelling in Fortran: day 10. Paul Tackley, 2016

Numerical Modelling in Fortran: day 10. Paul Tackley, 2016 Numerical Modelling in Fortran: day 10 Paul Tackley, 2016 Today s Goals 1. Useful libraries and other software 2. Implicit time stepping 3. Projects: Agree on topic (by final lecture) (No lecture next

More information

Numerical Investigation of the Transonic Base Flow of A Generic Rocket Configuration

Numerical Investigation of the Transonic Base Flow of A Generic Rocket Configuration 1 Numerical Investigation of the Transonic Base Flow of A Generic Rocket Configuration A. Henze, C. Glatzer, M. Meinke, W. Schröder Institute of Aerodynamics, RWTH Aachen University, Germany March 21,

More information

Aero Acoustics Analysis of Car s ORVM

Aero Acoustics Analysis of Car s ORVM International Journal of Science and Engineering Investigations vol. 4, issue 38, March 2015 ISSN: 2251-8843 Aero s Analysis of Car s ORVM Roshan Kumar Gopal 1, Remin V. 2, Richard Sen 3 1 Technical Support

More information

Numerical Methods Applied to Fluid Flow Metering. Ernst von Lavante University of Duisburg-Essen

Numerical Methods Applied to Fluid Flow Metering. Ernst von Lavante University of Duisburg-Essen Numerical Methods Applied to Fluid Flow Metering Ernst von Lavante University of Duisburg-Essen Overview Introduction Basics Choice of right tools Various case studies Validation and verification Recommendations,

More information

SOE3213/4: CFD Lecture 1

SOE3213/4: CFD Lecture 1 What is CFD SOE3213/4: CFD Lecture 1 3d 3d Computational Fluid Dynamics { use of computers to study uid dynamics. Solve the Navier-Stokes Equations (NSE) : r:u = 0 Du Dt = rp + r 2 u + F 4 s for 4 unknowns,

More information

Transport equation cavitation models in an unstructured flow solver. Kilian Claramunt, Charles Hirsch

Transport equation cavitation models in an unstructured flow solver. Kilian Claramunt, Charles Hirsch Transport equation cavitation models in an unstructured flow solver Kilian Claramunt, Charles Hirsch SHF Conference on hydraulic machines and cavitation / air in water pipes June 5-6, 2013, Grenoble, France

More information

2.2. Methods for Obtaining FD Expressions. There are several methods, and we will look at a few:

2.2. Methods for Obtaining FD Expressions. There are several methods, and we will look at a few: .. Methods for Obtaining FD Expressions There are several methods, and we will look at a few: ) Taylor series expansion the most common, but purely mathematical. ) Polynomial fitting or interpolation the

More information

DRAG PREDICTION AND VALIDATION OF STANDARD M549, 155mm PROJECTILE

DRAG PREDICTION AND VALIDATION OF STANDARD M549, 155mm PROJECTILE DRAG PREDICTION AND VALIDATION OF STANDARD M549, 155mm PROJECTILE 1 Kiran Torangatti, 2 Dr.Basawaraj 1 Research Scholar, Department of Aerospace Propulsion and Technology, VTU-CPGS Bangalore -560018,Karnataka,

More information

Simulating Drag Crisis for a Sphere Using Skin Friction Boundary Conditions

Simulating Drag Crisis for a Sphere Using Skin Friction Boundary Conditions Simulating Drag Crisis for a Sphere Using Skin Friction Boundary Conditions Johan Hoffman May 14, 2006 Abstract In this paper we use a General Galerkin (G2) method to simulate drag crisis for a sphere,

More information

COMPUTATIONAL SIMULATION OF THE FLOW PAST AN AIRFOIL FOR AN UNMANNED AERIAL VEHICLE

COMPUTATIONAL SIMULATION OF THE FLOW PAST AN AIRFOIL FOR AN UNMANNED AERIAL VEHICLE COMPUTATIONAL SIMULATION OF THE FLOW PAST AN AIRFOIL FOR AN UNMANNED AERIAL VEHICLE L. Velázquez-Araque 1 and J. Nožička 2 1 Division of Thermal fluids, Department of Mechanical Engineering, National University

More information

Canada. CFD-Experiments Integration in the Evaluation of Six Turbulence Models for Supersonic Ejectors Modeling

Canada. CFD-Experiments Integration in the Evaluation of Six Turbulence Models for Supersonic Ejectors Modeling CFD-Experiments Integration in the Evaluation of Six Turbulence Models for Supersonic Ejectors Modeling CANMET Energy Technology Centre - Varennes Y. Bartosiewicz, Z. Aidoun, P. Desevaux, and Y. Mercadier

More information

Computation Time Assessment of a Galerkin Finite Volume Method (GFVM) for Solving Time Solid Mechanics Problems under Dynamic Loads

Computation Time Assessment of a Galerkin Finite Volume Method (GFVM) for Solving Time Solid Mechanics Problems under Dynamic Loads Proceedings of the International Conference on Civil, Structural and Transportation Engineering Ottawa, Ontario, Canada, May 4 5, 215 Paper o. 31 Computation Time Assessment of a Galerkin Finite Volume

More information

International Engineering Research Journal Comparative Study of Sloshing Phenomenon in a Tank Using CFD

International Engineering Research Journal Comparative Study of Sloshing Phenomenon in a Tank Using CFD International Engineering Research Journal Comparative Study of Sloshing Phenomenon in a Tank Using CFD Vilas P. Ingle, Dattatraya Nalawade and Mahesh Jagadale ϯ PG Student, Mechanical Engineering Department,

More information

INTERNAL FLOW IN A Y-JET ATOMISER ---NUMERICAL MODELLING---

INTERNAL FLOW IN A Y-JET ATOMISER ---NUMERICAL MODELLING--- ILASS-Europe 2002 Zaragoza 9 11 September 2002 INTERNAL FLOW IN A Y-JET ATOMISER ---NUMERICAL MODELLING--- Z. Tapia, A. Chávez e-mail: ztapia@imp.mx Instituto Mexicano del Petróleo Blvd. Adolfo Ruiz Cortines

More information

A note on accurate and efficient higher order Galerkin time stepping schemes for the nonstationary Stokes equations

A note on accurate and efficient higher order Galerkin time stepping schemes for the nonstationary Stokes equations A note on accurate and efficient higher order Galerkin time stepping schemes for the nonstationary Stokes equations S. Hussain, F. Schieweck, S. Turek Abstract In this note, we extend our recent work for

More information

STAR-CCM+: NACA0012 Flow and Aero-Acoustics Analysis James Ruiz Application Engineer January 26, 2011

STAR-CCM+: NACA0012 Flow and Aero-Acoustics Analysis James Ruiz Application Engineer January 26, 2011 www.cd-adapco.com STAR-CCM+: NACA0012 Flow and Aero-Acoustics Analysis James Ruiz Application Engineer January 26, 2011 Introduction The objective of this work is to prove the capability of STAR-CCM+ as

More information

Stabilization and Acceleration of Algebraic Multigrid Method

Stabilization and Acceleration of Algebraic Multigrid Method Stabilization and Acceleration of Algebraic Multigrid Method Recursive Projection Algorithm A. Jemcov J.P. Maruszewski Fluent Inc. October 24, 2006 Outline 1 Need for Algorithm Stabilization and Acceleration

More information

NUMERICAL SIMULATION OF FLOW FIELD IN WHEELHOUSE OF CARS

NUMERICAL SIMULATION OF FLOW FIELD IN WHEELHOUSE OF CARS Journal of Computational and Applied Mechanics, Vol. 5, Num. 2, (2004), pp. 1-8 NUMERICAL SIMULATION OF FLOW FIELD IN WHEELHOUSE OF CARS Tamás Régert (1) and Dr. Tamás Lajos (2) (1) Ph.D. student; (2)

More information

INVESTIGATION OF THE FLOW OVER AN OSCILLATING CYLINDER WITH THE VERY LARGE EDDY SIMULATION MODEL

INVESTIGATION OF THE FLOW OVER AN OSCILLATING CYLINDER WITH THE VERY LARGE EDDY SIMULATION MODEL ECCOMAS Congress 2016 VII European Congress on Computational Methods in Applied Sciences and Engineering M. Papadrakakis, V. Papadopoulos, G. Stefanou, V. Plevris (eds.) Crete Island, Greece, 5 10 June

More information

Numerical simulation of fluid flow in a monolithic exchanger related to high temperature and high pressure operating conditions

Numerical simulation of fluid flow in a monolithic exchanger related to high temperature and high pressure operating conditions Advanced Computational Methods in Heat Transfer X 25 Numerical simulation of fluid flow in a monolithic exchanger related to high temperature and high pressure operating conditions F. Selimovic & B. Sundén

More information

International Journal of Modern Trends in Engineering and Research e-issn No.: , Date: 2-4 July, 2015

International Journal of Modern Trends in Engineering and Research  e-issn No.: , Date: 2-4 July, 2015 International Journal of Modern Trends in Engineering and Research www.ijmter.com e-issn No.:2349-9745, Date: 2-4 July, 2015 CFD Analysis of Airfoil NACA0012 Pritesh S. Gugliya 1, Yogesh R. Jaiswal 2,

More information

An Overview of Fluid Animation. Christopher Batty March 11, 2014

An Overview of Fluid Animation. Christopher Batty March 11, 2014 An Overview of Fluid Animation Christopher Batty March 11, 2014 What distinguishes fluids? What distinguishes fluids? No preferred shape. Always flows when force is applied. Deforms to fit its container.

More information

CFD in Heat Transfer Equipment Professor Bengt Sunden Division of Heat Transfer Department of Energy Sciences Lund University

CFD in Heat Transfer Equipment Professor Bengt Sunden Division of Heat Transfer Department of Energy Sciences Lund University CFD in Heat Transfer Equipment Professor Bengt Sunden Division of Heat Transfer Department of Energy Sciences Lund University email: bengt.sunden@energy.lth.se CFD? CFD = Computational Fluid Dynamics;

More information

Modelling, Simulation & Computing Laboratory (msclab) Faculty of Engineering, Universiti Malaysia Sabah, Malaysia

Modelling, Simulation & Computing Laboratory (msclab) Faculty of Engineering, Universiti Malaysia Sabah, Malaysia 1.0 Introduction Intelligent Transportation Systems (ITS) Long term congestion solutions Advanced technologies Facilitate complex transportation systems Dynamic Modelling of transportation (on-road traffic):

More information

Acceleration of Time Integration

Acceleration of Time Integration Acceleration of Time Integration edited version, with extra images removed Rick Archibald, John Drake, Kate Evans, Doug Kothe, Trey White, Pat Worley Research sponsored by the Laboratory Directed Research

More information

MODELING OF THE HYDROPLANING PHENOMENON. Ong G P and Fwa T F Department of Civil Engineering National University of Singapore INTRODUCTION

MODELING OF THE HYDROPLANING PHENOMENON. Ong G P and Fwa T F Department of Civil Engineering National University of Singapore INTRODUCTION MODELING OF THE HYDROPLANING PHENOMENON Ong G P and Fwa T F Department of Civil Engineering National University of Singapore INTRODUCTION Hydroplaning is a unique phenomenon in which the water on a wet

More information

Turbulence - Theory and Modelling GROUP-STUDIES:

Turbulence - Theory and Modelling GROUP-STUDIES: Lund Institute of Technology Department of Energy Sciences Division of Fluid Mechanics Robert Szasz, tel 046-0480 Johan Revstedt, tel 046-43 0 Turbulence - Theory and Modelling GROUP-STUDIES: Turbulence

More information

The Simulation of Wraparound Fins Aerodynamic Characteristics

The Simulation of Wraparound Fins Aerodynamic Characteristics The Simulation of Wraparound Fins Aerodynamic Characteristics Institute of Launch Dynamics Nanjing University of Science and Technology Nanjing Xiaolingwei 00 P. R. China laithabbass@yahoo.com Abstract:

More information

Iterative Methods for Solving A x = b

Iterative Methods for Solving A x = b Iterative Methods for Solving A x = b A good (free) online source for iterative methods for solving A x = b is given in the description of a set of iterative solvers called templates found at netlib: http

More information

2-D and 3-D Assessment of Cambered and Symmetric Airfoils: A CFD Study

2-D and 3-D Assessment of Cambered and Symmetric Airfoils: A CFD Study Clemson University TigerPrints All Theses Theses 12-2009 2-D and 3-D Assessment of Cambered and Symmetric Airfoils: A CFD Study Tuncay Kamas Clemson University, tkamas@clemson.edu Follow this and additional

More information

PHYS 410/555 Computational Physics Solution of Non Linear Equations (a.k.a. Root Finding) (Reference Numerical Recipes, 9.0, 9.1, 9.

PHYS 410/555 Computational Physics Solution of Non Linear Equations (a.k.a. Root Finding) (Reference Numerical Recipes, 9.0, 9.1, 9. PHYS 410/555 Computational Physics Solution of Non Linear Equations (a.k.a. Root Finding) (Reference Numerical Recipes, 9.0, 9.1, 9.4) We will consider two cases 1. f(x) = 0 1-dimensional 2. f(x) = 0 d-dimensional

More information

Chapter 5. Methods for Solving Elliptic Equations

Chapter 5. Methods for Solving Elliptic Equations Chapter 5. Methods for Solving Elliptic Equations References: Tannehill et al Section 4.3. Fulton et al (1986 MWR). Recommended reading: Chapter 7, Numerical Methods for Engineering Application. J. H.

More information

INTRODUCCION AL ANALISIS DE ELEMENTO FINITO (CAE / FEA)

INTRODUCCION AL ANALISIS DE ELEMENTO FINITO (CAE / FEA) INTRODUCCION AL ANALISIS DE ELEMENTO FINITO (CAE / FEA) Title 3 Column (full page) 2 Column What is Finite Element Analysis? 1 Column Half page The Finite Element Method The Finite Element Method (FEM)

More information

Self-Excited Vibration in Hydraulic Ball Check Valve

Self-Excited Vibration in Hydraulic Ball Check Valve Self-Excited Vibration in Hydraulic Ball Check Valve L. Grinis, V. Haslavsky, U. Tzadka Abstract This paper describes an experimental, theoretical model and numerical study of concentrated vortex flow

More information

Lab 1: Iterative Methods for Solving Linear Systems

Lab 1: Iterative Methods for Solving Linear Systems Lab 1: Iterative Methods for Solving Linear Systems January 22, 2017 Introduction Many real world applications require the solution to very large and sparse linear systems where direct methods such as

More information

Industrial Applications of Computational Mechanics Extended Civil Engineering Problems. Prof. Dr.-Ing. Casimir Katz SOFiSTiK AG

Industrial Applications of Computational Mechanics Extended Civil Engineering Problems. Prof. Dr.-Ing. Casimir Katz SOFiSTiK AG Industrial Applications of Computational Mechanics Extended Civil Engineering Problems Prof. Dr.-Ing. Casimir Katz SOFiSTiK AG Beyond Structural Analysis Multiphysics» Heat Conduction, Radiation» Potential

More information

Prospects for High-Speed Flow Simulations

Prospects for High-Speed Flow Simulations Prospects for High-Speed Flow Simulations Graham V. Candler Aerospace Engineering & Mechanics University of Minnesota Support from AFOSR and ASDR&E Future Directions in CFD Research: A Modeling & Simulation

More information

Zonal hybrid RANS-LES modeling using a Low-Reynolds-Number k ω approach

Zonal hybrid RANS-LES modeling using a Low-Reynolds-Number k ω approach Zonal hybrid RANS-LES modeling using a Low-Reynolds-Number k ω approach S. Arvidson 1,2, L. Davidson 1, S.-H. Peng 1,3 1 Chalmers University of Technology 2 SAAB AB, Aeronautics 3 FOI, Swedish Defence

More information

Introduction to CFD modelling of source terms and local-scale atmospheric dispersion (Part 1 of 2)

Introduction to CFD modelling of source terms and local-scale atmospheric dispersion (Part 1 of 2) 1 Introduction to CFD modelling of source terms and local-scale atmospheric dispersion (Part 1 of 2) Atmospheric Dispersion Modelling Liaison Committee (ADMLC) meeting 15 February 2018 Simon Gant, Fluid

More information

Design and analysis of a new Sedan Car: Analysis from Aerodynamic Perspective

Design and analysis of a new Sedan Car: Analysis from Aerodynamic Perspective Journal of Advances in Vehicle Engineering 2(2) (2016) 82-93 www.jadve.com Design and analysis of a new Sedan Car: Analysis from Aerodynamic Perspective Roopsandeep Bammidi a*, B.V.Ramana Murty b a Department

More information

APPLICATIONS OF INTEGRATION

APPLICATIONS OF INTEGRATION 6 APPLICATIONS OF INTEGRATION APPLICATIONS OF INTEGRATION 6.5 Average Value of a Function In this section, we will learn about: Applying integration to find out the average value of a function. AVERAGE

More information

Mathematics 2 for Business Schools Topic 7: Application of Integration to Economics. Building Competence. Crossing Borders.

Mathematics 2 for Business Schools Topic 7: Application of Integration to Economics. Building Competence. Crossing Borders. Mathematics 2 for Business Schools Topic 7: Application of Integration to Economics Building Competence. Crossing Borders. Spring Semester 2017 Learning objectives After finishing this section you should

More information

University of Huddersfield Repository

University of Huddersfield Repository University of Huddersfield Repository Malviya, Vihar, Gundala, Naresh and Mishra, Rakesh Effect of cross wind on aerodynamic coefficients of ground vehicles. Original Citation Malviya, Vihar, Gundala,

More information

An Efficient Low Memory Implicit DG Algorithm for Time Dependent Problems

An Efficient Low Memory Implicit DG Algorithm for Time Dependent Problems An Efficient Low Memory Implicit DG Algorithm for Time Dependent Problems P.-O. Persson and J. Peraire Massachusetts Institute of Technology 2006 AIAA Aerospace Sciences Meeting, Reno, Nevada January 9,

More information

Validation of DNS techniques for dynamic combined indoor air and constructions simulations using an experimental scale model

Validation of DNS techniques for dynamic combined indoor air and constructions simulations using an experimental scale model Excerpt from the Proceedings of the COMSOL Conference 2008 Hannover Validation of DNS techniques for dynamic combined indoor air and constructions simulations using an experimental scale model T.A.J. (Dennis)

More information

GARTEUR/TP-108-2, FFA TN GARTEUR LIMITED 2 GARTEUR LIMITED

GARTEUR/TP-108-2, FFA TN GARTEUR LIMITED 2 GARTEUR LIMITED GARTEUR/TP-108-2, FFA TN 1999-34 GARTEUR LIMITED 2 GARTEUR LIMITED GARTEUR LIMITED GARTEUR/TP-108-2, FFA TN 1999-34 Abstract Errata (known problems to be fixed before final printing): There is a remaining

More information

High Performance Nonlinear Solvers

High Performance Nonlinear Solvers What is a nonlinear system? High Performance Nonlinear Solvers Michael McCourt Division Argonne National Laboratory IIT Meshfree Seminar September 19, 2011 Every nonlinear system of equations can be described

More information