Free Surface Flow Simulations

Size: px
Start display at page:

Download "Free Surface Flow Simulations"

Transcription

1 Free Surface Flow Simulations Hrvoje Jasak Wikki Ltd. United Kingdom 11/Jan/2005 Free Surface Flow Simulations p.1/26

2 Outline Objective Present two numerical modelling approaches for free surface flows Topics Surface tracking method Surface capturing method Implementation in FOAM Examples: bubble DNS and jet breakup LES Free Surface Flow Simulations p.2/26

3 Background Why free surface flows? Large number of industrial interests: Liquid sloshing in LNG tankers Chemical and food industry Diesel injectors, atomisation, droplet-wall interaction, cavitation Ink-jets and similar devices Complex physics = demanding models Pretty pictures! Free Surface Flow Simulations p.3/26

4 Mathematical Model Two fluids with a sharp interface Two fluids = two continua Free surface represented by a boundary Compatibility condition + mesh motion Single continuum with a jump in properties: Step-change for density, viscosity How to deal with surface effects: free surface = Dirac function Free Surface Flow Simulations p.4/26

5 Free Surface Free surface effect Moving; position part of solution No mass flux through surface Momentum compatibility (normal + tangential) Pressure jump (surface tension), turbulence? Description of the free surface depends on the selected modelling framework Free Surface Flow Simulations p.5/26

6 Surface Tracking Model Two-fluid approach Separate mesh for each phase Motion obtained from boundary conditions Mesh adjusted for the motion of free surface Can handle only one phase: light fluid can be omitted from simulation Free Surface Flow Simulations p.6/26

7 Solution Algorithm Fluid flow SIMPLE-based segregated FVM fluid flow solver with mesh motion Double boundary condition on free surface Fixed pressure + position compatibility No mass flux through surface Compatibility in tangential velocity Transfer pressure/position between phases and adjust mesh for zero mass flux Free Surface Flow Simulations p.7/26

8 Automatic Mesh Motion Automatic moving mesh Need to determine vertex positions given boundary vertex motion Moving mesh solver in FOAM Formulation guarantees mesh validity (Vertex-based) Finite Element solver for polyhedral meshes Solving Laplace equation for vertex motion Variable diffusivity controls mesh quality Free Surface Flow Simulations p.8/26

9 Surface Tension Handling surface tension Specifies pressure jump on free surface Depends on local curvature and coefficient σ Curvature calculated from vertex position σ may depend on surfactant concentration Variable σ significantly changes behaviour Solving species transport on a 2-D curved surface in 3-D Free Surface Flow Simulations p.9/26

10 Example: Hydrofoil Flow coming in from left Mesh lines coloured by pressure Free Surface Flow Simulations p.10/26

11 Example: Bubble FVM fluid flow + automatic mesh motion (FEM) + Finite Area Method for surfactant transport Free Surface Flow Simulations p.11/26

12 Surface Tracking Model Advantages Precise modelling of free surface Sharp interface Compatibility through boundary conditions Can solve extremely high surface tension Drawbacks No change in interface topology! Problems for low density ratio Free Surface Flow Simulations p.12/26

13 Surface Capturing Single continuum approach Both (all) fluids treated as single continuum Indicator variable γ determines position of interface γ = 0 air γ = 1 water 0 < γ < 1 cell contains interface γ defines jump in properties Free Surface Flow Simulations p.13/26

14 Surface Capturing Single continuum approach Interface is not discrete but needs to be reconstructed from γ... in fact, interface is distributed Numerics challenge: preserving sharpness of interface in solution Volume-of-Fluid: planar reconstruction Compressive differencing Eulerian two-fluid derivation Free Surface Flow Simulations p.14/26

15 p-u Coupling Flow solver Based on segregated PISO solution algorithm Using unstructured staggered algorithm: cell centre velocity reconstructed from the fluxes Implementing surface tension Curvature calculation from γ Distributed surface source in p-equation For small droplets, surface tension totally dominates - problematic! Free Surface Flow Simulations p.15/26

16 Surface Tension Parasitic currents Interface compression = noise in γ Free Surface Flow Simulations p.16/26

17 Example: Dam Break Collapsing column of water Free Surface Flow Simulations p.17/26

18 Example: Bubble Bubble, surface capturing Free Surface Flow Simulations p.18/26

19 Example: Jet Breakup LES of a Diesel Injector d = 0.2mm, high velocity and surface tension Free Surface Flow Simulations p.19/26

20 Surface Capturing Advantages Natural handling of interface breakup Static mesh, efficient simulations Drawbacks Imprecise handling of interfacial properties: parasitic currents, surface tension balance Limited density ratio and surface tension Always requires all phases in simulation Free Surface Flow Simulations p.20/26

21 FOAM: CCM in C++ FOAM: Field Operation and Manipulation Natural language of continuum mechanics: partial differential equations k t + (uk) [(ν + ν t) k] = [ ] 2 1 ν t 2 ( u + ut ) ɛ o k k o Free Surface Flow Simulations p.21/26

22 FOAM: CCM in C++ Objective: Represent equations in software in the natural language solve ( fvm::ddt(k) + fvm::div(phi, k) - fvm::laplacian(nu() + nut, k) == nut*magsqr(symm(fvc::grad(u))) - fvm::sp(epsilon/k, k) ); Free Surface Flow Simulations p.22/26

23 FOAM: CCM in C++ Object Software representation C++ Class Space and time Mesh + time (database) polymesh, time Tensor (List of) numbers + algebra vector, tensor Field List of values Field Boundary condition Values + condition patchfield Geometric field Field + boundary conditions geometricfield Field algebra + / tr(), sin(), exp()... field operators Interpolation Differencing schemes interpolation Differentiation ddt, div, grad, curl fvc, fec Matrix Matrix coefficients ldumatrix Discretisation ddt, d2dt2, div, laplacian fvm, fem, fam Model library Library turbulencemodel Application main() Free Surface Flow Simulations p.23/26

24 FOAM: CCM in C++ Main characteristics Wide area of applications: all of CCM! Shared tools and code re-use Versatility Unstructured meshes, automatic mesh motion + topological changes Finite Volume (2nd and 4th order), Finite Element and Finite Area solvers Efficient: massive parallelism Free Surface Flow Simulations p.24/26

25 Summary Summary Presented two approaches to free surface flow simulations Surface tracking: mesh deformation Surface capturing: indicator variable Methods are complementary; choice depends on the problem under consideration FOAM Implementation: easy experimenting with numerics and algorithms Free Surface Flow Simulations p.25/26

26 Acknowledgements Acknowledgements Surface tracking simulations: Zeljko Tukovic, FSB Zagreb Bubble DNS, surface capturing: Dr. Henrik Rusche Spray breakup: Eugene de Villiers, Imperial College Free surface algorithm development contributions: Dr. Onno Ubbink, Henry Weller Foam and OpenFOAM are released under GPL: Free Surface Flow Simulations p.26/26

Object-Oriented CFD Solver Design

Object-Oriented CFD Solver Design Object-Oriented CFD Solver Design Hrvoje Jasak h.jasak@wikki.co.uk Wikki Ltd. United Kingdom 10/Mar2005 Object-Oriented CFD Solver Design p.1/29 Outline Objective Present new approach to software design

More information

Numerical Modelling in Continuum Mechanics

Numerical Modelling in Continuum Mechanics Numerical Modelling in Continuum Mechanics Hrvoje Jasak h.jasak@wikki.co.uk Wikki Ltd. United Kingdom 22/Mar/2005 Numerical Modelling in Continuum Mechanics p.1/31 Outline Objective Present a new way of

More information

Multi-Physics Simulations in Continuum Mechanics

Multi-Physics Simulations in Continuum Mechanics Multi-Physics Simulations in Continuum Mechanics Hrvoje Jasak h.jasak@wikki.co.uk Wikki Ltd, United Kingdom FSB, University of Zagreb, Croatia Multi-Physics Simulations in Continuum Mechanics p.1/22 Outline

More information

Example Simulations in OpenFOAM

Example Simulations in OpenFOAM Example Simulations in OpenFOAM Hrvoje Jasak h.jasak@wikki.co.uk Wikki Ltd, United Kingdom FSB, University of Zagreb, Croatia 18/Nov/2005 Example Simulations in OpenFOAM p.1/26 Outline Objective Present

More information

OpenFOAM: Open Platform for Complex Physics Simulations

OpenFOAM: Open Platform for Complex Physics Simulations OpenFOAM: Open Platform for Complex Physics Simulations Hrvoje Jasak h.jasak@wikki.co.uk, hrvoje.jasak@fsb.hr FSB, University of Zagreb, Croatia Wikki Ltd, United Kingdom 18th October 2007 OpenFOAM: Open

More information

Dynamic Mesh Handling in OpenFOAM

Dynamic Mesh Handling in OpenFOAM Dynamic Mesh Handling in OpenFOAM p. 1/18 Dynamic Mesh Handling in OpenFOAM Hrvoje Jasak h.jasak@wikki.co.uk, hrvoje.jasak@fsb.hr Wikki Ltd, United Kingdom and FSB, University of Zagreb, Croatia 47th AIAA

More information

Introduction to OpenFOAM at SIMDI 06

Introduction to OpenFOAM at SIMDI 06 Introduction to OpenFOAM at SIMDI 06 Hrvoje Jasak h.jasak@wikki.co.uk Wikki Ltd, United Kingdom Introduction to OpenFOAM at SIMDI 06 p.1/20 Open Source CFD Platform OpenFOAM: Open Source Computational

More information

Marine Hydrodynamics Solver in OpenFOAM

Marine Hydrodynamics Solver in OpenFOAM Marine Hydrodynamics Solver in OpenFOAM p. 1/14 Marine Hydrodynamics Solver in OpenFOAM Hrvoje Jasak and Henrik Rusche h.jasak@wikki.co.uk, h.rusche@wikki.co.uk Wikki, United Kingdom and Germany 4 December

More information

New Developments in OpenFOAM

New Developments in OpenFOAM New Developments in OpenFOAM Hrvoje Jasak h.jasak@wikki.co.uk Wikki Ltd, United Kingdom FSB, University of Zagreb, Croatia New Developments in OpenFOAM p.1/25 Outline Objective 1. Present the developing

More information

OpenFOAM: A C++ Library for Complex Physics Simulations

OpenFOAM: A C++ Library for Complex Physics Simulations OpenFOAM: A C++ Library for Complex Physics Simulations Hrvoje Jasak Aleksandar Jemcov and Željko Tuković h.jasak@wikki.co.uk Wikki Ltd, United Kingdom FSB, University of Zagreb, Croatia Development Department,

More information

OpenFOAM Programming the basic classes

OpenFOAM Programming the basic classes OpenFOAM Programming the basic classes Prof Gavin Tabor Friday 25th May 2018 Prof Gavin Tabor OpenFOAM Programming the basic classes Friday 25th May 2018 1 / 30 OpenFOAM : Overview Overview : programming

More information

Conjugate Simulations and Fluid-Structure Interaction In OpenFOAM

Conjugate Simulations and Fluid-Structure Interaction In OpenFOAM Conjugate Simulations and Fluid-Structure Interaction In OpenFOAM Hrvoje Jasak h.jasak@wikki.co.uk Wikki Ltd, United Kingdom and FSB, University of Zagreb, Croatia 7-9th June 2007 Conjugate Simulations

More information

Overview and Recent Developments of Dynamic Mesh Capabilities

Overview and Recent Developments of Dynamic Mesh Capabilities Overview and Recent Developments of Dynamic Mesh Capabilities Henrik Rusche and Hrvoje Jasak h.rusche@wikki-gmbh.de and h.jasak@wikki.co.uk Wikki Gmbh, Germany Wikki Ltd, United Kingdom 6th OpenFOAM Workshop,

More information

Open Source CFD in Research and Industrial Use

Open Source CFD in Research and Industrial Use Open Source CFD in Research and Industrial Use p. 1/28 Open Source CFD in Research and Industrial Use OpenFOAM with Examples Hrvoje Jasak h.jasak@wikki.co.uk, hrvoje.jasak@fsb.hr Wikki Ltd, United Kingdom

More information

Public Release: Native Overset Mesh in FOAM-Extend

Public Release: Native Overset Mesh in FOAM-Extend Public Release: Native Overset Mesh in FOAM-Extend Vuko Vukčević and Hrvoje Jasak Faculty of Mechanical Engineering and Naval Architecture, Uni Zagreb, Croatia Wikki Ltd. United Kingdom 5th OpenFOAM UK

More information

AUTOMATIC MESH MOTION FOR THE UNSTRUCTURED FINITE VOLUME METHOD. Summary

AUTOMATIC MESH MOTION FOR THE UNSTRUCTURED FINITE VOLUME METHOD. Summary Hrvoje Jasak Željko Tuković AUTOMATIC MESH MOTION FOR THE UNSTRUCTURED FINITE VOLUME METHOD Summary ISSN 1333 1124 UDK 532.5:519.6 Moving-mesh unstructured Finite Volume Method (FVM) provides a capability

More information

OpenFOAM Library for Fluid Structure Interaction

OpenFOAM Library for Fluid Structure Interaction OpenFOAM Library for Fluid Structure Interaction 9th OpenFOAM Workshop - Zagreb, Croatia Željko Tuković, P. Cardiff, A. Karač, H. Jasak, A. Ivanković University of Zagreb Faculty of Mechanical Engineering

More information

Immersed Boundary Method in FOAM

Immersed Boundary Method in FOAM Immersed Boundary Method in FOAM Theory, Implementation and Use Hrvoje Jasak and Željko Tuković Chalmers University, Gothenburg Faculty of Mechanical Engineering and Naval Architecture, Zagreb Immersed

More information

Thin Film Simulation on a Rotating Wafer. B. Gschaider, D. Prieling, H. Steiner, P. Vita

Thin Film Simulation on a Rotating Wafer. B. Gschaider, D. Prieling, H. Steiner, P. Vita Thin Film Simulation on a Rotating Wafer B. Gschaider, D. Prieling, H. Steiner, P. Vita Topics Motivation Finite Area Method Thin Film Model Impinging Jet Polydual Mesh Comparison with 3D Solution Conclusion

More information

KEY STAR TECHNOLOGIES: DISPERSED MULTIPHASE FLOW AND LIQUID FILM MODELLING DAVID GOSMAN EXEC VP TECHNOLOGY, CD-adapco

KEY STAR TECHNOLOGIES: DISPERSED MULTIPHASE FLOW AND LIQUID FILM MODELLING DAVID GOSMAN EXEC VP TECHNOLOGY, CD-adapco KEY STAR TECHNOLOGIES: DISPERSED MULTIPHASE FLOW AND LIQUID FILM MODELLING DAVID GOSMAN EXEC VP TECHNOLOGY, CD-adapco INTRODUCTION KEY METHODOLOGIES AVAILABLE IN STAR-CCM+ AND STAR-CD 1. Lagrangian modelling

More information

CFD in COMSOL Multiphysics

CFD in COMSOL Multiphysics CFD in COMSOL Multiphysics Christian Wollblad Copyright 2017 COMSOL. Any of the images, text, and equations here may be copied and modified for your own internal use. All trademarks are the property of

More information

Dynamic Mesh Handling in OpenFOAM

Dynamic Mesh Handling in OpenFOAM Dynamic Mesh Handling in OpenFOAM Hrvoje Jasak Director, Wikki Ltd, United Kingdom; Professor, University of Zagreb, Croatia Extension of static mesh numerics in a CFD solver to cases with deforming boundaries

More information

A 3D VOF model in cylindrical coordinates

A 3D VOF model in cylindrical coordinates A 3D VOF model in cylindrical coordinates Marmar Mehrabadi and Markus Bussmann Department of Mechanical and Industrial Engineering, University of Toronto Recently, volume of fluid (VOF) methods have improved

More information

Isotropic Porous Media Tutorial

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

More information

Calculate a solution using the pressure-based coupled solver.

Calculate a solution using the pressure-based coupled solver. Tutorial 19. Modeling Cavitation Introduction This tutorial examines the pressure-driven cavitating flow of water through a sharpedged orifice. This is a typical configuration in fuel injectors, and brings

More information

Preliminary Spray Cooling Simulations Using a Full-Cone Water Spray

Preliminary Spray Cooling Simulations Using a Full-Cone Water Spray 39th Dayton-Cincinnati Aerospace Sciences Symposium Preliminary Spray Cooling Simulations Using a Full-Cone Water Spray Murat Dinc Prof. Donald D. Gray (advisor), Prof. John M. Kuhlman, Nicholas L. Hillen,

More information

A COUPLED FINITE VOLUME SOLVER FOR THE SOLUTION OF LAMINAR TURBULENT INCOMPRESSIBLE AND COMPRESSIBLE FLOWS

A COUPLED FINITE VOLUME SOLVER FOR THE SOLUTION OF LAMINAR TURBULENT INCOMPRESSIBLE AND COMPRESSIBLE FLOWS A COUPLED FINITE VOLUME SOLVER FOR THE SOLUTION OF LAMINAR TURBULENT INCOMPRESSIBLE AND COMPRESSIBLE FLOWS L. Mangani Maschinentechnik CC Fluidmechanik und Hydromaschinen Hochschule Luzern Technik& Architektur

More information

FEM techniques for interfacial flows

FEM techniques for interfacial flows FEM techniques for interfacial flows How to avoid the explicit reconstruction of interfaces Stefan Turek, Shu-Ren Hysing (ture@featflow.de) Institute for Applied Mathematics University of Dortmund Int.

More information

Use of STAR-CCM+ in Marine and Off-Shore Engineering - Key Features and Future Developments - M. Perić, F. Schäfer, E. Schreck & J.

Use of STAR-CCM+ in Marine and Off-Shore Engineering - Key Features and Future Developments - M. Perić, F. Schäfer, E. Schreck & J. Use of STAR-CCM+ in Marine and Off-Shore Engineering - Key Features and Future Developments - M. Perić, F. Schäfer, E. Schreck & J. Singh Contents Main features of STAR-CCM+ relevant for marine and offshore

More information

UNDERSTANDING FROTH BEHAVIOUR WITH CFD

UNDERSTANDING FROTH BEHAVIOUR WITH CFD UNDERSTANDING FROTH BEHAVIOUR WITH CFD Jan Cilliers Rio Tinto Professor of Mineral Processing Royal School of Mines Imperial College London Outline Froths and Foams Modelling of Flotation Froths 3 Case

More information

Partitioned strongly coupled Fluid-Structure Interaction

Partitioned strongly coupled Fluid-Structure Interaction Partitioned strongly coupled Fluid-Structure Interaction 7 th OpenFOAM Workshop Darmstadt, Germany Manuel Kosel * 1 and Ulrich Heck 2 1 Center for Computational Engineering Science, RWTH Aachen University,

More information

Finite Volume Methodology for Contact Problems of Linear Elastic Solids

Finite Volume Methodology for Contact Problems of Linear Elastic Solids Finite Volume Methodology for Contact Problems of Linear Elastic Solids H. Jasak Computational Dynamics Ltd. Hythe House 200 Shepherds Bush Road London W6 7NY, England E-mail: h.jasak@cd.co.uk H.G. Weller

More information

1.2 Numerical Solutions of Flow Problems

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

More information

Parallelization study of a VOF/Navier-Stokes model for 3D unstructured staggered meshes

Parallelization study of a VOF/Navier-Stokes model for 3D unstructured staggered meshes Parallelization study of a VOF/Navier-Stokes model for 3D unstructured staggered meshes L. Jofre, O. Lehmkuhl, R. Borrell, J. Castro and A. Oliva Corresponding author: cttc@cttc.upc.edu Centre Tecnològic

More information

Handling Parallelisation in OpenFOAM

Handling Parallelisation in OpenFOAM Handling Parallelisation in OpenFOAM Hrvoje Jasak hrvoje.jasak@fsb.hr Faculty of Mechanical Engineering and Naval Architecture University of Zagreb, Croatia Handling Parallelisation in OpenFOAM p. 1 Parallelisation

More information

Aurélien Thinat Stéphane Cordier 1, François Cany

Aurélien Thinat Stéphane Cordier 1, François Cany SimHydro 2012:New trends in simulation - Hydroinformatics and 3D modeling, 12-14 September 2012, Nice Aurélien Thinat, Stéphane Cordier, François Cany Application of OpenFOAM to the study of wave loads

More information

Simulation of Free Surface Viscoelastic Fluid Flow Using the viscoelasticinterfoam Solver

Simulation of Free Surface Viscoelastic Fluid Flow Using the viscoelasticinterfoam Solver 20 th European Symposium on Computer Aided Process Engineering ESCAPE20 S. Pierucci and G. Buzzi Ferraris (Editors) 2010 Elsevier B.V. All rights reserved. Simulation of Free Surface Viscoelastic Fluid

More information

Water. Notes. Free surface. Boundary conditions. This week: extend our 3D flow solver to full 3D water We need to add two things:

Water. Notes. Free surface. Boundary conditions. This week: extend our 3D flow solver to full 3D water We need to add two things: Notes Added a 2D cross-section viewer for assignment 6 Not great, but an alternative if the full 3d viewer isn t working for you Warning about the formulas in Fedkiw, Stam, and Jensen - maybe not right

More information

OpenFOAM in Wave and Offshore CFD

OpenFOAM in Wave and Offshore CFD OpenFOAM in Wave and Offshore CFD Capabilities of the Naval Hydro Pack Hrvoje Jasak Wikki Ltd. United Kingdom Faculty of Mechanical Engineering and Naval Architecture, Uni Zagreb, Croatia University of

More information

Recent applications of overset mesh technology in SC/Tetra

Recent applications of overset mesh technology in SC/Tetra Recent applications of overset mesh technology in SC/Tetra NIA CFD Seminar October 6, 2014 Tomohiro Irie Software Cradle Co., Ltd. 1 Contents Introduction Software Cradle SC/Tetra Background of Demands

More information

Nonlinear Potential Flow Solver Development in OpenFOAM

Nonlinear Potential Flow Solver Development in OpenFOAM Nonlinear Potential Flow Solver Development in OpenFOAM A. Mehmood Plymouth University, UK April 19,2016 A. Mehmood Table of Contents 1 Motivation 2 Solution Methodology Mathematical Formulation Sequence

More information

Application of Finite Volume Method for Structural Analysis

Application of Finite Volume Method for Structural Analysis Application of Finite Volume Method for Structural Analysis Saeed-Reza Sabbagh-Yazdi and Milad Bayatlou Associate Professor, Civil Engineering Department of KNToosi University of Technology, PostGraduate

More information

Topology optimization of heat conduction problems

Topology optimization of heat conduction problems Topology optimization of heat conduction problems Workshop on industrial design optimization for fluid flow 23 September 2010 Misha Marie Gregersen Anton Evgrafov Mads Peter Sørensen Technical University

More information

Robust Simulation of Sparsely Sampled Thin Features in SPH-Based Free Surface Flows

Robust Simulation of Sparsely Sampled Thin Features in SPH-Based Free Surface Flows Copyright of figures and other materials in the paper belong to original authors. Robust Simulation of Sparsely Sampled Thin Features in SPH-Based Free Surface Flows Xiaowei He et al. ACM SIGGRAPH 2015

More information

Coastal impact of a tsunami Review of numerical models

Coastal impact of a tsunami Review of numerical models Coastal impact of a tsunami Review of numerical models Richard Marcer 2 Content Physics to simulate Different approaches of modelling 2D depth average Full 3D Navier-Stokes 3D model Key point : free surface

More information

A look inside icofoam (and pisofoam) Håkan Nilsson, Chalmers / Applied Mechanics / Fluid Dynamics 235

A look inside icofoam (and pisofoam) Håkan Nilsson, Chalmers / Applied Mechanics / Fluid Dynamics 235 A look inside icofoam (and pisofoam) Håkan Nilsson, Chalmers / Applied Mechanics / Fluid Dynamics 235 A look inside icofoam TheicoFoam directory consists of the following: createfields.h Make/ icofoam.c

More information

Literature Report. Daniël Pols. 23 May 2018

Literature Report. Daniël Pols. 23 May 2018 Literature Report Daniël Pols 23 May 2018 Applications Two-phase flow model The evolution of the momentum field in a two phase flow problem is given by the Navier-Stokes equations: u t + u u = 1 ρ p +

More information

Modeling Evaporating Liquid Spray

Modeling Evaporating Liquid Spray Tutorial 16. Modeling Evaporating Liquid Spray Introduction In this tutorial, FLUENT s air-blast atomizer model is used to predict the behavior of an evaporating methanol spray. Initially, the air flow

More information

CFD-1. Introduction: What is CFD? T. J. Craft. Msc CFD-1. CFD: Computational Fluid Dynamics

CFD-1. Introduction: What is CFD? T. J. Craft. Msc CFD-1. CFD: Computational Fluid Dynamics School of Mechanical Aerospace and Civil Engineering CFD-1 T. J. Craft George Begg Building, C41 Msc CFD-1 Reading: J. Ferziger, M. Peric, Computational Methods for Fluid Dynamics H.K. Versteeg, W. Malalasekara,

More information

Tutorial Two Built in Mesh

Tutorial Two Built in Mesh Built in Mesh 4 th edition, Jan. 2018 This offering is not approved or endorsed by ESI Group, ESI-OpenCFD or the OpenFOAM Foundation, the producer of the OpenFOAM software and owner of the OpenFOAM trademark.

More information

Fluid Simulation. [Thürey 10] [Pfaff 10] [Chentanez 11]

Fluid Simulation. [Thürey 10] [Pfaff 10] [Chentanez 11] Fluid Simulation [Thürey 10] [Pfaff 10] [Chentanez 11] 1 Computational Fluid Dynamics 3 Graphics Why don t we just take existing models from CFD for Computer Graphics applications? 4 Graphics Why don t

More information

Investigating The Stability of The Balance-force Continuum Surface Force Model of Surface Tension In Interfacial Flow

Investigating The Stability of The Balance-force Continuum Surface Force Model of Surface Tension In Interfacial Flow Investigating The Stability of The Balance-force Continuum Surface Force Model of Surface Tension In Interfacial Flow Vinh The Nguyen University of Massachusetts Dartmouth Computational Science Training

More information

Express Introductory Training in ANSYS Fluent Workshop 07 Tank Flushing

Express Introductory Training in ANSYS Fluent Workshop 07 Tank Flushing Express Introductory Training in ANSYS Fluent Workshop 07 Tank Flushing Dimitrios Sofialidis Technical Manager, SimTec Ltd. Mechanical Engineer, PhD PRACE Autumn School 2013 - Industry Oriented HPC Simulations,

More information

A look inside icofoam (and pisofoam)

A look inside icofoam (and pisofoam) A look inside icofoam (and pisofoam) Håkan Nilsson, Chalmers / Mechanics and Maritime Sciences / Fluid Dynamics 1 A look inside icofoam TheicoFoam directory ($FOAM_SOLVERS/incompressible/icoFoam) consists

More information

Modeling Evaporating Liquid Spray

Modeling Evaporating Liquid Spray Tutorial 17. Modeling Evaporating Liquid Spray Introduction In this tutorial, the air-blast atomizer model in ANSYS FLUENT is used to predict the behavior of an evaporating methanol spray. Initially, the

More information

Second OpenFOAM Workshop: Welcome and Introduction

Second OpenFOAM Workshop: Welcome and Introduction Second OpenFOAM Workshop: Welcome and Introduction Hrvoje Jasak h.jasak@wikki.co.uk Wikki Ltd, United Kingdom and FSB, University of Zagreb, Croatia 7-9th June 2007 Second OpenFOAM Workshop:Welcome and

More information

Partial Differential Equations

Partial Differential Equations Simulation in Computer Graphics Partial Differential Equations Matthias Teschner Computer Science Department University of Freiburg Motivation various dynamic effects and physical processes are described

More information

Continued Investigation of Small-Scale Air-Sea Coupled Dynamics Using CBLAST Data

Continued Investigation of Small-Scale Air-Sea Coupled Dynamics Using CBLAST Data Continued Investigation of Small-Scale Air-Sea Coupled Dynamics Using CBLAST Data Dick K.P. Yue Center for Ocean Engineering Department of Mechanical Engineering Massachusetts Institute of Technology Cambridge,

More information

Advances in Cyclonic Flow Regimes. Dr. Dimitrios Papoulias, Thomas Eppinger

Advances in Cyclonic Flow Regimes. Dr. Dimitrios Papoulias, Thomas Eppinger Advances in Cyclonic Flow Regimes Dr. Dimitrios Papoulias, Thomas Eppinger Agenda Introduction Cyclones & Hydrocyclones Modeling Approaches in STAR-CCM+ Turbulence Modeling Case 1: Air-Air Cyclone Case

More information

Three Dimensional Numerical Simulation of Turbulent Flow Over Spillways

Three Dimensional Numerical Simulation of Turbulent Flow Over Spillways Three Dimensional Numerical Simulation of Turbulent Flow Over Spillways Latif Bouhadji ASL-AQFlow Inc., Sidney, British Columbia, Canada Email: lbouhadji@aslenv.com ABSTRACT Turbulent flows over a spillway

More information

Using of open source code library OpenFOAM for 3D magnetohydrodynamic calculations in semiconductor crystal growth technologies

Using of open source code library OpenFOAM for 3D magnetohydrodynamic calculations in semiconductor crystal growth technologies International Scientific Colloquium Modelling for Electromagnetic Processing Hannover, October 27-29, 2008 Using of open source code library OpenFOAM for 3D magnetohydrodynamic calculations in semiconductor

More information

Directions: 1) Delete this text box 2) Insert desired picture here

Directions: 1) Delete this text box 2) Insert desired picture here Directions: 1) Delete this text box 2) Insert desired picture here Multi-Disciplinary Applications using Overset Grid Technology in STAR-CCM+ CD-adapco Dmitry Pinaev, Frank Schäfer, Eberhard Schreck Outline

More information

Fluent User Services Center

Fluent User Services Center Solver Settings 5-1 Using the Solver Setting Solver Parameters Convergence Definition Monitoring Stability Accelerating Convergence Accuracy Grid Independence Adaption Appendix: Background Finite Volume

More information

Acknowledgements. Prof. Dan Negrut Prof. Darryl Thelen Prof. Michael Zinn. SBEL Colleagues: Hammad Mazar, Toby Heyn, Manoj Kumar

Acknowledgements. Prof. Dan Negrut Prof. Darryl Thelen Prof. Michael Zinn. SBEL Colleagues: Hammad Mazar, Toby Heyn, Manoj Kumar Philipp Hahn Acknowledgements Prof. Dan Negrut Prof. Darryl Thelen Prof. Michael Zinn SBEL Colleagues: Hammad Mazar, Toby Heyn, Manoj Kumar 2 Outline Motivation Lumped Mass Model Model properties Simulation

More information

(LSS Erlangen, Simon Bogner, Ulrich Rüde, Thomas Pohl, Nils Thürey in collaboration with many more

(LSS Erlangen, Simon Bogner, Ulrich Rüde, Thomas Pohl, Nils Thürey in collaboration with many more Parallel Free-Surface Extension of the Lattice-Boltzmann Method A Lattice-Boltzmann Approach for Simulation of Two-Phase Flows Stefan Donath (LSS Erlangen, stefan.donath@informatik.uni-erlangen.de) Simon

More information

Pre-compiled applications and utilities in OpenFOAM

Pre-compiled applications and utilities in OpenFOAM Pre-compiled applications and utilities in OpenFOAM Tommaso Lucchini Department of Energy Politecnico di Milano Learning outcome You will learn... the meaning of the words applications, solvers, and utilities

More information

Computational Models for the Analysis of positive displacement machines: Real Gas and Dynamic Mesh

Computational Models for the Analysis of positive displacement machines: Real Gas and Dynamic Mesh Nicola Casari Alessio Suman Davide Ziviani Michel De Paepe Martijn van den Broek Michele Pinelli nicola.casari@unife.it alessio.suman@unife.it davide.ziviani@ugent.be dziviani@purdue.edu michel.depaepe@ugent.be

More information

Advanced Applications of STAR- CCM+ in Chemical Process Industry Ravindra Aglave Director, Chemical Process Industry

Advanced Applications of STAR- CCM+ in Chemical Process Industry Ravindra Aglave Director, Chemical Process Industry Advanced Applications of STAR- CCM+ in Chemical Process Industry Ravindra Aglave Director, Chemical Process Industry Outline Notable features released in 2013 Gas Liquid Flows with STAR-CCM+ Packed Bed

More information

Using a Single Rotating Reference Frame

Using a Single Rotating Reference Frame Tutorial 9. Using a Single Rotating Reference Frame Introduction This tutorial considers the flow within a 2D, axisymmetric, co-rotating disk cavity system. Understanding the behavior of such flows is

More information

Essentially, all models are wrong, but some are useful G. E. P. Box

Essentially, all models are wrong, but some are useful G. E. P. Box In this module, we will deal with advanced modeling capabilities. We will rely a lot in physical models, such as, turbulence, multiphase flows, porous media, combustion, radiation, heat transfer, phase

More information

Multiphysics simulations of nuclear reactors and more

Multiphysics simulations of nuclear reactors and more Multiphysics simulations of nuclear reactors and more Gothenburg Region OpenFOAM User Group Meeting Klas Jareteg klasjareteg@chalmersse Division of Nuclear Engineering Department of Applied Physics Chalmers

More information

A Contact Angle Model for the Parallel Free Surface Lattice Boltzmann Method in walberla Stefan Donath (stefan.donath@informatik.uni-erlangen.de) Computer Science 10 (System Simulation) University of Erlangen-Nuremberg

More information

Verification and Validation in CFD and Heat Transfer: ANSYS Practice and the New ASME Standard

Verification and Validation in CFD and Heat Transfer: ANSYS Practice and the New ASME Standard Verification and Validation in CFD and Heat Transfer: ANSYS Practice and the New ASME Standard Dimitri P. Tselepidakis & Lewis Collins ASME 2012 Verification and Validation Symposium May 3 rd, 2012 1 Outline

More information

arxiv: v1 [physics.flu-dyn] 3 Apr 2018

arxiv: v1 [physics.flu-dyn] 3 Apr 2018 A Sharp Free Surface Finite Volume Method Applied to Gravity Wave Flows Vuko Vukčević a, Johan Roenby b, Inno Gatin a, Hrvoje Jasak a,c, a University of Zagreb, Faculty of Mechanical Engineering and Naval

More information

Thermal Coupling Method Between SPH Particles and Solid Elements in LS-DYNA

Thermal Coupling Method Between SPH Particles and Solid Elements in LS-DYNA Thermal Coupling Method Between SPH Particles and Solid Elements in LS-DYNA INTRODUCTION: Jingxiao Xu, Jason Wang LSTC Heat transfer is very important in many industrial and geophysical problems. Many

More information

1. TopMath-Workshop Iffeldorf/Osterseen. Liquid Sprays. Ayoub Hmaidi Zentrum Mathematik, TU MÜNCHEN

1. TopMath-Workshop Iffeldorf/Osterseen. Liquid Sprays. Ayoub Hmaidi Zentrum Mathematik, TU MÜNCHEN 1. TopMath-Workshop Iffeldorf/Osterseen Liquid Sprays Ayoub Hmaidi Zentrum Mathematik, TU MÜNCHEN What are Liquid Sprays? Why are Sprays important? Sprays occur in a large number of applications: Engines

More information

CFD Topological Optimization of a Car Water-Pump Inlet using TOSCA Fluid and STAR- CCM+

CFD Topological Optimization of a Car Water-Pump Inlet using TOSCA Fluid and STAR- CCM+ CFD Topological Optimization of a Car Water-Pump Inlet using TOSCA Fluid and STAR- CCM+ Dr. Anselm Hopf Dr. Andrew Hitchings Les Routledge Ford Motor Company CONTENTS Introduction/Motivation Optimization

More information

Optimization of under-relaxation factors. and Courant numbers for the simulation of. sloshing in the oil pan of an automobile

Optimization of under-relaxation factors. and Courant numbers for the simulation of. sloshing in the oil pan of an automobile Optimization of under-relaxation factors and Courant numbers for the simulation of sloshing in the oil pan of an automobile Swathi Satish*, Mani Prithiviraj and Sridhar Hari⁰ *National Institute of Technology,

More information

Tutorial 17. Using the Mixture and Eulerian Multiphase Models

Tutorial 17. Using the Mixture and Eulerian Multiphase Models Tutorial 17. Using the Mixture and Eulerian Multiphase Models Introduction: This tutorial examines the flow of water and air in a tee junction. First you will solve the problem using the less computationally-intensive

More information

The 3D DSC in Fluid Simulation

The 3D DSC in Fluid Simulation The 3D DSC in Fluid Simulation Marek K. Misztal Informatics and Mathematical Modelling, Technical University of Denmark mkm@imm.dtu.dk DSC 2011 Workshop Kgs. Lyngby, 26th August 2011 Governing Equations

More information

Lagrangian methods and Smoothed Particle Hydrodynamics (SPH) Computation in Astrophysics Seminar (Spring 2006) L. J. Dursi

Lagrangian methods and Smoothed Particle Hydrodynamics (SPH) Computation in Astrophysics Seminar (Spring 2006) L. J. Dursi Lagrangian methods and Smoothed Particle Hydrodynamics (SPH) Eulerian Grid Methods The methods covered so far in this course use an Eulerian grid: Prescribed coordinates In `lab frame' Fluid elements flow

More information

Simulation of Freak Wave Impact Using the Higher Order Spectrum

Simulation of Freak Wave Impact Using the Higher Order Spectrum Simulation of Freak Wave Impact Using the Higher Order Spectrum The Naval Hydro Pack Hrvoje Jasak and Vuko Vukčević Faculty of Mechanical Engineering and Naval Architecture, Uni Zagreb, Croatia Wikki Ltd.

More information

EOF Library: Open-Source Elmer and OpenFOAM Coupler for Simulation of MHD With Free Surface

EOF Library: Open-Source Elmer and OpenFOAM Coupler for Simulation of MHD With Free Surface XVIII International UIE-Congress Electrotechnologies for Material Processing Hannover (Germany), June 6-9, 2017 EOF Library: Open-Source Elmer and OpenFOAM Coupler for Simulation of MHD With Free Surface

More information

LS-DYNA 980 : Recent Developments, Application Areas and Validation Process of the Incompressible fluid solver (ICFD) in LS-DYNA.

LS-DYNA 980 : Recent Developments, Application Areas and Validation Process of the Incompressible fluid solver (ICFD) in LS-DYNA. 12 th International LS-DYNA Users Conference FSI/ALE(1) LS-DYNA 980 : Recent Developments, Application Areas and Validation Process of the Incompressible fluid solver (ICFD) in LS-DYNA Part 1 Facundo Del

More information

Lab 9: FLUENT: Transient Natural Convection Between Concentric Cylinders

Lab 9: FLUENT: Transient Natural Convection Between Concentric Cylinders Lab 9: FLUENT: Transient Natural Convection Between Concentric Cylinders Objective: The objective of this laboratory is to introduce how to use FLUENT to solve both transient and natural convection problems.

More information

FIDAP Fidap 8.5 Page 1 of 6

FIDAP Fidap 8.5 Page 1 of 6 FIDAP 8.5 Page 1 of 6 FIDAP 8.5 is the CFD solver of choice for a wide variety of laminar and turbulent flows that arise in the polymer processing, thin film coating, biomedical, semiconductor crystal

More information

Development of a CFD methodology for fuel-air mixing and combustion modeling of GDI Engines

Development of a CFD methodology for fuel-air mixing and combustion modeling of GDI Engines Development of a CFD methodology for fuel-air mixing and combustion modeling of GDI Engines T. Lucchini, G. D Errico, L. Cornolti, G. Montenegro, A. Onorati Politecnico di Milano, Dipartimento di Energia,

More information

Turbo Tools and General Grid Interface

Turbo Tools and General Grid Interface Turbo Tools and General Grid Interface Theoretical Basis and Implementation Hrvoje Jasak, Wikki United Kingdom and Germany Turbo Tools and General Grid Interface p. 1 General Grid Interface Objective Present

More information

PART 1: FLUID-STRUCTURE INTERACTION Simulation of particle filtration processes in deformable media

PART 1: FLUID-STRUCTURE INTERACTION Simulation of particle filtration processes in deformable media Int. Jnl. of Multiphysics Volume 2 Number 2 2008 179 PART 1: FLUID-STRUCTURE INTERACTION Simulation of particle filtration processes in deformable media Marianne Mataln 1, Gernot Boiger 1, Bernhard Gschaider

More information

CFD Best Practice Guidelines: A process to understand CFD results and establish Simulation versus Reality

CFD Best Practice Guidelines: A process to understand CFD results and establish Simulation versus Reality CFD Best Practice Guidelines: A process to understand CFD results and establish Simulation versus Reality Judd Kaiser ANSYS Inc. judd.kaiser@ansys.com 2005 ANSYS, Inc. 1 ANSYS, Inc. Proprietary Overview

More information

STCE. An (more) effective Discrete Adjoint Model for OpenFOAM

STCE. An (more) effective Discrete Adjoint Model for OpenFOAM An (more) effective Discrete Adjoint Model for OpenFOAM Markus Towara, Uwe Naumann Software and Tools for Computational Engineering Science RWTH Aachen University EuroAD 2013, Oxford, 10. December 2013

More information

CFD Simulation of Cavitation in an Internal Gear Pump

CFD Simulation of Cavitation in an Internal Gear Pump CFD Simulation of Cavitation in an Internal Gear Pump Dr. Andreas Spille-Kohoff Jan Hesse CFX Berlin Software GmbH Berlin andreas.spille@cfx-berlin.de Contents Introduction Geometry and mesh Simulation

More information

Application of coupled solver technology to CFD modeling of multiphase flows with CFX

Application of coupled solver technology to CFD modeling of multiphase flows with CFX Application of coupled solver technology to CFD modeling of multiphase flows with CFX A. Bums, A. Splawski, S. Lo & C. Guetari AEA Technology, 2000 Oxford Drive, Suite 61 0, Bethel Park, PA 151 02, USA

More information

Numerical simulation of primary atomization of a sheared liquid sheet. Part 2: Comparison with experimental results

Numerical simulation of primary atomization of a sheared liquid sheet. Part 2: Comparison with experimental results Numerical simulation of primary atomization of a sheared liquid sheet. Part 2: Comparison with experimental results P. Villedieu, G. Blanchard, D. Zuzio To cite this version: P. Villedieu, G. Blanchard,

More information

Fluid structure interaction analysis: vortex shedding induced vibrations

Fluid structure interaction analysis: vortex shedding induced vibrations Fluid structure interaction analysis: vortex shedding induced vibrations N. Di Domenico, M. E. * University of Rome «Tor Vergata», Department of Enterprise Engineering «Mario Lucertini» A. Wade, T. Berg,

More information

An accurate adaptive solver for surface-tension-driven interfacial flows

An accurate adaptive solver for surface-tension-driven interfacial flows An accurate adaptive solver for surface-tension-driven interfacial flows Stéphane Popinet To cite this version: Stéphane Popinet. An accurate adaptive solver for surface-tension-driven interfacial flows.

More information

Progress on Engine LES Using STAR-CD

Progress on Engine LES Using STAR-CD www.cd-adapco.com Progress on Engine LES Using STAR-CD A D Gosman CD-adapco Japan STAR Conference 2012, Yokohama INTRODUCTION 1. Nature and motivation for LES of engines 2. LES modelling in STAR-CD 3.

More information

Multi-objective adjoint optimization of flow in duct and pipe networks

Multi-objective adjoint optimization of flow in duct and pipe networks Multi-objective adjoint optimization of flow in duct and pipe networks Eugene de Villiers Thomas Schumacher 6th OPENFOAM Workshop PennState University, USA 13-16 June, 2011 info@engys.eu Tel: +44 (0)20

More information

STAR-CCM+: Wind loading on buildings SPRING 2018

STAR-CCM+: Wind loading on buildings SPRING 2018 STAR-CCM+: Wind loading on buildings SPRING 2018 1. Notes on the software 2. Assigned exercise (submission via Blackboard; deadline: Thursday Week 3, 11 pm) 1. NOTES ON THE SOFTWARE STAR-CCM+ generates

More information

Auto Injector Syringe. A Fluent Dynamic Mesh 1DOF Tutorial

Auto Injector Syringe. A Fluent Dynamic Mesh 1DOF Tutorial Auto Injector Syringe A Fluent Dynamic Mesh 1DOF Tutorial 1 2015 ANSYS, Inc. June 26, 2015 Prerequisites This tutorial is written with the assumption that You have attended the Introduction to ANSYS Fluent

More information