Turbo Tools and General Grid Interface

Size: px
Start display at page:

Download "Turbo Tools and General Grid Interface"

Transcription

1 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

2 General Grid Interface Objective Present the working of single and multiple rotating frames of reference solvers Review implementation of the General Grid Interface (GGI) in OpenFOAM and its use in turbomachinery applications Topics Rotating frames of reference Handling of rotor-stator interfaces General Grid Interface: design rationale Numerical considerations: discretising GGI interface GGI interpolation and weight calculation Derived forms: cyclic GGI partial overlap GGI, mixing plane Code components Parallelisation of GGI interfaces Preparing a mesh for GGI Example of use Summary Turbo Tools and General Grid Interface p. 2

3 Introduction Turbomachinery CFD with OpenFOAM Turbomachinery CFD poses special requirements on simulation software Handling rotation of components Treatment of interfaces between rotating and stationary mesh Boundary conditions for total state variables and rotation Data extraction and post-processing for properties of interest Beyond turbo-tools capability, tutorials, validation examples and best practice guidelines are valuable for new users Development in turbomachinery driven by Turbomachinery SIG, led by Chalmers University, Hydro Quebec and Wikki Turbo Tools and General Grid Interface p. 3

4 Rotating Reference Frames Rotating Reference Frame For fast-rotating components, solution in terms of relative velocity is preferable, with effects on the convection term u = u rel + u rot = u rel + ω r Single Rotating Frame of Reference Solution algorithm in terms of u rel is preferred, with the addition of centrifugal and Coriolis force to the momentum equation, implemented in simplesrffoam For easier specification of boundary conditions, use SRFVelocity boundary condition Specify boundary condition either in absolute or relative frame of reference, controlled by the relative switch If relative = true, rotation shall be added to the boundary value SRFModel specifies the mode of rotation, currently rpm Turbo Tools and General Grid Interface p. 4

5 Rotating Reference Frames Multiple Rotating Components Model assumes steady-state simulation of a domain where some components are in rotation and others are stationary Transient effect of rotor-stator interface is lost In stationary regions, solve for absolute velocity u Choice of velocity variable in a rotating region causes complications 1. If solving for u rel in rotating regions, centrifugal and Coriolis force are added, but a transformation of velocity is required at the interface 2. If solving for u, form of the momentum convection term is identical to moving mesh simulations, where all convection terms operate with relative flux (u rel u), with addition of Coriolis force only: this is implemented in MRFSimpleFoam Handling of rotating zones Addition of Coriolis force only in rotating zones Modification of face fluxes to account for (fictitious) rotation of the zone External boundary of the rotating cell zone must be a surface of rotation, otherwise the fluxes after correction for rotation will not be conservative Code supports multiple rotating regions, using MRFZones class Turbo Tools and General Grid Interface p. 5

6 Rotor-Stator Interfaces Handling of Rotor-Stator Interfaces In simple SRF/MRF cases, a steady simulation is assumed and effect or rotor-stator interface is (almost) completely lost... but transient behaviour is sometimes of a primary interest Further complications arise from non-matching number of blade passages between consecutive rotor and stators stages: no easy symmetry conditions Number of options are used regularly Frozen rotor: do nothing. Simulate fixed relative position of rotor and stator Full transient simulation with sliding mesh Options on multiple rotor-stator pairs with circumferential scaling Mixing plane: circumferential averaging on the interface All of the above require special handling in a CFD code Turbo Tools and General Grid Interface p. 6

7 Background on GGI Handling Sliding Mesh Interfaces Turbomachinery applications typically involve components in relative motion: need to handle a set of separate regions as one contiguous mesh Components move relative to each other, but at each time instance create a single contiguous region: attaching and detaching the mesh during simulation This is a subset of topological mesh changes, already implemented in OpenFOAM: do we need anything further? Unfortunately, topological changes do not satisfy all our needs Turbo Tools and General Grid Interface p. 7

8 Sliding Interface Topological Mesh Changes: Sliding Interface Sliding interface topology modifier Defined by a master and slave surfaces As surfaces move relative to each other, perform mesh cutting operations and replace original faces with facets Re-assemble mesh connectivity on all cells and faces touching the sliding surface: fully connected 3-D mesh Polyhedral mesh support in OpenFOAM facilitates topological changes Once the mesh is complete, there is no further impact in the code! Connectivity across interface changes with relative motion rotor side stator side rotor side stator side Turbo Tools and General Grid Interface p. 8

9 GGI Design Rationale GGI Interface in Turbomachinery Apart from fully overlapped cases, turbomachinery meshes contain similar features that should employ identical methodology, but are not quite the same Non-matching cyclics for a single rotor passage Partial overlap for different rotor-stator pitch Mixing plane: perform averaging instead of coupling directly Component coupling requires data manipulation (copy, transform, average) In such cases, the behaviour is closer to a coupled boundary condition, but the numerics is similar to sliding interface Objective: mimic behaviour of sliding interface without changing the mesh Turbo Tools and General Grid Interface p. 9

10 GGI Discretisation FVM Discretisation on a GGI Interface Review discretisation of convection and diffusion when faces are replaced; volumetric integral terms are not affected Convection operator splits into a sum of face flux integrals Z V (φu) dv = I S φ(n u)ds = X f φ f (s f u f ) = X f φ f F where φ f is the face value of φ and F = s f u f is the face flux Diffusion operator captures the gradient transport I S γ(n φ)ds = X f Z S f γ(n φ) ds = X f γ f s f ( φ) f Face terms: interpolated value and face gradient φ f = f x φ P + (1 f x )φ N, s f ( φ) f = s f φ N φ P d f Turbo Tools and General Grid Interface p. 10

11 GGI Discretisation FVM Discretisation on a GGI Interface When cutting is performed, total face area is replaced by facets Discretisation on the interface can be rewritten as a sum of facet operations. Inverting the loop, we can is introduce shadow neighbour values φ s N values for the in front of the face, creating the effect as if the interface is integrally matched φ s N = X t w t φ t where t denotes a selection of cell/face values on the other side Consistency conditions: simple averaging is not flux-conservative Area of original face must be equal to sum of facet areas replacing it X w t = 1 for all faces on both sides t If face A touches face B, perceived facet area must be the same w A B S A = w B A S B Turbo Tools and General Grid Interface p. 11

12 GGI Interpolation GGI Interpolation Role of GGI interpolation is to calculate shadow interpolation weights Idea 1: form a matrix equation for weights and solve: does not work (HJ) Idea 2: use geometrical cutting as in sliding interface and calculate weights as per original definition. Also provides the addressing GGI Intersection Algorithm w t = S facet S Developed and implemented by Martin Beaudoin, Hydro Quebec Components 1. Quick reject in 3-D: Axis-Aligned Bounding Box 2. Projection into common plane 3. Quick reject in 2-D: Separating Axis Theorem 4. Point in polygon detection: Horman-Agathos algorithm 5. Polygon intersection: Sutherland-Hodgman clipping algorithm Result: facet area, GGI addressing and weights Turbo Tools and General Grid Interface p. 12

13 Derived Forms of GGI Extending Basic GGI Algorithm GGI operates as a coupled patch field condition: interpolate shadow and update Cyclic GGI Create transformed surface of the shadow patch and calculate weights Transform scalar/vector/tensor data according to rank Use GGI interpolation on transformed shadow data and update as usual Partial Overlap GGI Create transformed surface of the shadow patch by copying the geometry multiple times to achieve full overlap and calculate weights Transform scalar/vector/tensor data according to rank and expand over number of copies Use GGI interpolation on transformed shadow data and update as usual GGI interpolation is useful beyond GGI: provides flux conservative and function-monotonic interpolation Conjugate heat transfer with non-matching solid-fluid boundaries Fluid-structure interaction: force-conservative interpolation Turbo Tools and General Grid Interface p. 13

14 Mixing Plane Interface Mixing Plane Interface Turbomachinery components include multiple identical channels: modelling a single channel simplifies the simulation Banded circumferential averaging at rotor-stator interface allows the transient problem, with substantial reduction in simulation cost Circumferential averaging introduces a one-time mixing loss, but without other adverse effects: blade wakes and passage-to-passage variation averaged out Consistency in interpolation is essential for mass conservation and accuracy! Turbo Tools and General Grid Interface p. 14

15 Mixing Plane Interface Implementation of a Mixing Plane Interface Basic GGI interpolation tool already performs the correct operation Area-weighted interpolation: can be done in ribbons Strict mass conservation: banded patches to achieve circumferential averaging in a prescribed manner Implementation: mixing plane = two GGI interfaces used back-to-back (The more we work on this, the easier it becomes: no interpolation bias) Mixing plane work by Martin Beaudoin, Hydro Quebec Turbo Tools and General Grid Interface p. 15

16 GGI Code Components Implementation of GGI in OpenFOAM Interpolation and geometry Basic algorithms: Horman-Agathos, Sutherland-Hodgman Templated GGI interpolation, abstracting patch type Instantiated interpolation for stand-alone patch and polypatch GGI patch and discretisation (identical for cyclic GGI and partial overlap) Mesh patch with interpolation: ggipolypatch, ggipointpatch Matrix support: ggilduinterface, ggilduinterfacefield Coupled FV patch with discretisation support ggifvpatch and ggifvpatchfield: constrained patch Special support for AMG coarsening, to be done consistently on all levels: processorgamginterface and processorgamginterfacefield Turbo Tools and General Grid Interface p. 16

17 Parallelisation of GGI Parallelisation of GGI In parallel, sliding GGI changes processor-to-processor connectivity Trouble in weights calculation and in scheduling of processor-to-processor communications: dangerous or inefficient Solution: Global sync of GGI data Complete sliding surface must be present on all CPUs: decomposition In each evaluation, gather-scatter of shadow data for complete interface Evaluate GGI as usual: local patch only addresses a part of sliding surface Turbo Tools and General Grid Interface p. 17

18 Prepare for GGI Definition of a GGI Patch and Field Build the mesh in the usual way, with disconnected components Prepare face zone for master and slave surface wooster*685-> setset faceset insidezone new patchtoface insideslider faceset outsidezone new patchtoface outsideslider quit wooster*685-> setstozones -noflipmap Boundary file definition: constant/polymesh/boundary insideslider outsideslider { { type ggi; type ggi; nfaces 36; nfaces 36; startface 1192; startface 1228; shadowpatch outsideslider; shadowpatch insideslider; zone insidezone; zone outsidezone; bridgeoverlap false; bridgeoverlap false; } } Turbo Tools and General Grid Interface p. 18

19 Prepare for GGI Field Definition GGI is a constrained condition: forces patch field type boundaryfield { insideslider { type }... } ggi; Parallel decomposition: GGI patch surface must be present on all CPUs in its entirety Decomposition dictionary: new entry for global face zones globalfacezones ( insidezone outsidezone ); Some care is required in choice of linear equation solvers Turbo Tools and General Grid Interface p. 19

20 Simple Examples Simple Examples of GGI Interfaces in Use Turbo Tools and General Grid Interface p. 20

21 Simple Examples Capsizing Body with Topological Changes or GGI Full capsize of a floating body cannot be handled without topology change Mesh motion is decomposed into translational and rotational component External mesh performs only translational motion Rotation on capsize accommodated by a GGI interface Automatic motion solver handles the decomposition, based on 6-DOF solution Mesh inside of the sphere is preserved: boundary layer resolution Precise handling of GGI interface is essential: boundedness and mass conservation for the VOF variable must be preserved Turbo Tools and General Grid Interface p. 21

22 Summary Summary GGI interface allows coupling of mesh components without the need for topological mesh changes GGI discretisation is identical to sliding interface with mesh cutting Interpolation weights are calculated using polygon clipping Derived forms: cyclic GGI and partial overlap based on GGI interpolation Mixing plane implemented as a pair of back-to-back GGIs Parallelisation: complete GGI surface present on all CPUs. Added option of preserving faces in decomposition without attached cells Recent updates for communication scheduling and improved parallel scaling The code is complete, validated and ready for use Turbo Tools and General Grid Interface p. 22

The ERCOFTAC centrifugal pump OpenFOAM case study

The ERCOFTAC centrifugal pump OpenFOAM case study The ERCOFTAC centrifugal pump OpenFOAM case study Olivier Petit and Håkan Nilsson Chalmers University of Technology, SVC Maryse Page and Martin Beaudoin Hydro Québec, Research Institute 4 th OpenFOAM workshop

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

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

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

OpenFOAM Project: Different ways to treat rotating geometries

OpenFOAM Project: Different ways to treat rotating geometries /*-------------------------------------------------------------------------------------------------------*\ ======== \\ / F ield OpenFOAM: The Open Source CFD Toolbox \\ / O peration \\ / A nd Copyright

More information

The ERCOFTAC centrifugal pump OpenFOAM case-study

The ERCOFTAC centrifugal pump OpenFOAM case-study 3 rd IAHR International Meeting of the Workgroup on Cavitation and Dynamic Problems in Hydraulic Machinery and Systems, October 14-16, 009, Brno, Czech Republic The ERCOFTAC centrifugal pump OpenFOAM case-study

More information

Multi-Block Structured Meshing and Pre-Processing for OpenFOAM Turbomachinery Analysis. Dr. Chris Sideroff, Pointwise

Multi-Block Structured Meshing and Pre-Processing for OpenFOAM Turbomachinery Analysis. Dr. Chris Sideroff, Pointwise Multi-Block Structured Meshing and Pre-Processing for OpenFOAM Turbomachinery Analysis Dr. Chris Sideroff, Pointwise TOC Axial turbine meshing demo Advanced feature meshing demo Mesh topology Mesh quality

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

Setting up a case for turbomachinery problems. OpenFOAM kurs 2009 Håkan Nilsson Olivier Petit

Setting up a case for turbomachinery problems. OpenFOAM kurs 2009 Håkan Nilsson Olivier Petit Setting up a case for turbomachinery problems OpenFOAM kurs 2009 Håkan Nilsson Olivier Petit Outline Pre-processing utilities: import a mesh, mergemesh, stitchmesh, transformpoints, creation of zones and

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

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

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

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

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 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

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

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

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

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

Evaluation of an improved mixing plane interface for OpenFOAM

Evaluation of an improved mixing plane interface for OpenFOAM IOP Conference Series: Earth and Environmental Science OPEN ACCESS Evaluation of an improved mixing plane interface for OpenFOAM To cite this article: M Beaudoin et al 2014 IOP Conf. Ser.: Earth Environ.

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

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

Tutorial: Modeling Domains with Embedded Reference Frames: Part 2 Sliding Mesh Modeling

Tutorial: Modeling Domains with Embedded Reference Frames: Part 2 Sliding Mesh Modeling Tutorial: Modeling Domains with Embedded Reference Frames: Part 2 Sliding Mesh Modeling Introduction The motion of rotating components is often complicated by the fact that the rotational axis about which

More information

Accurate and Efficient Turbomachinery Simulation. Chad Custer, PhD Turbomachinery Technical Specialist

Accurate and Efficient Turbomachinery Simulation. Chad Custer, PhD Turbomachinery Technical Specialist Accurate and Efficient Turbomachinery Simulation Chad Custer, PhD Turbomachinery Technical Specialist Outline Turbomachinery simulation advantages Axial fan optimization Description of design objectives

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

Numerical Methods in Aerodynamics. Fluid Structure Interaction. Lecture 4: Fluid Structure Interaction

Numerical Methods in Aerodynamics. Fluid Structure Interaction. Lecture 4: Fluid Structure Interaction Fluid Structure Interaction Niels N. Sørensen Professor MSO, Ph.D. Department of Civil Engineering, Alborg University & Wind Energy Department, Risø National Laboratory Technical University of Denmark

More information

Large-scale Gas Turbine Simulations on GPU clusters

Large-scale Gas Turbine Simulations on GPU clusters Large-scale Gas Turbine Simulations on GPU clusters Tobias Brandvik and Graham Pullan Whittle Laboratory University of Cambridge A large-scale simulation Overview PART I: Turbomachinery PART II: Stencil-based

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

Free Surface Flow Simulations

Free Surface Flow Simulations Free Surface Flow Simulations Hrvoje Jasak h.jasak@wikki.co.uk Wikki Ltd. United Kingdom 11/Jan/2005 Free Surface Flow Simulations p.1/26 Outline Objective Present two numerical modelling approaches for

More information

Integrated analysis of the scavenging process in marine two-stroke diesel engines

Integrated analysis of the scavenging process in marine two-stroke diesel engines Integrated analysis of the scavenging process in marine two-stroke diesel engines Gothenburg regional OpenFOAM user group meeting. 13 november 2013 Fredrik H. Andersen, Industrial Ph.D. student Process

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

Metafor FE Software. 2. Operator split. 4. Rezoning methods 5. Contact with friction

Metafor FE Software. 2. Operator split. 4. Rezoning methods 5. Contact with friction ALE simulations ua sus using Metafor eao 1. Introduction 2. Operator split 3. Convection schemes 4. Rezoning methods 5. Contact with friction 1 Introduction EULERIAN FORMALISM Undistorted mesh Ideal for

More information

Hands-On Training with OpenFOAM

Hands-On Training with OpenFOAM Hands-On Training with OpenFOAM Flow Around a 2-D Airfoil Hrvoje Jasak hrvoje.jasak@fsb.hr Faculty of Mechanical Engineering and Naval Architecture University of Zagreb, Croatia Hands-On Training with

More information

Project work for the PhD course in OpenFOAM

Project work for the PhD course in OpenFOAM Project work for the PhD course in OpenFOAM A tutorial on how to use Dynamic Mesh solver IcoDyMFOAM Performed by: Pirooz Moradnia Contact: pirooz.moradnia@forbrf.lth.se Spring 2008, Göteborg-Sweden Introduction:

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

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

Turbomachinery Applications with STAR-CCM+ Turbomachinery Sector Manager

Turbomachinery Applications with STAR-CCM+ Turbomachinery Sector Manager Turbomachinery Applications with STAR-CCM+ Fred Mendonça Fred Mendonça Turbomachinery Sector Manager An Integrated Solution The applications of the software seem to be infinite. The user-friendly A single

More information

Revolve 3D geometry to display a 360-degree image.

Revolve 3D geometry to display a 360-degree image. Tutorial 24. Turbo Postprocessing Introduction This tutorial demonstrates the turbomachinery postprocessing capabilities of FLUENT. In this example, you will read the case and data files (without doing

More information

NUMERICAL VISCOSITY. Convergent Science White Paper. COPYRIGHT 2017 CONVERGENT SCIENCE. All rights reserved.

NUMERICAL VISCOSITY. Convergent Science White Paper. COPYRIGHT 2017 CONVERGENT SCIENCE. All rights reserved. Convergent Science White Paper COPYRIGHT 2017 CONVERGENT SCIENCE. All rights reserved. This document contains information that is proprietary to Convergent Science. Public dissemination of this document

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

Turbocharger Design & Analysis Solutions. Bill Holmes Brad Hutchinson Detroit, October 2012

Turbocharger Design & Analysis Solutions. Bill Holmes Brad Hutchinson Detroit, October 2012 Turbocharger Design & Analysis Solutions Bill Holmes Brad Hutchinson Detroit, October 2012 Agenda ANSYS overview ANSYS TurboSystem Blade row solutions The ANSYS Transformation methods An example: turbocharger

More information

Advances in Turbomachinery Simulation Fred Mendonça and material prepared by Chad Custer, Turbomachinery Technology Specialist

Advances in Turbomachinery Simulation Fred Mendonça and material prepared by Chad Custer, Turbomachinery Technology Specialist Advances in Turbomachinery Simulation Fred Mendonça and material prepared by Chad Custer, Turbomachinery Technology Specialist Usage From Across the Industry Outline Key Application Objectives Conjugate

More information

CFD Simulation of a dry Scroll Vacuum Pump including Leakage Flows

CFD Simulation of a dry Scroll Vacuum Pump including Leakage Flows CFD Simulation of a dry Scroll Vacuum Pump including Leakage Flows Jan Hesse, Rainer Andres CFX Berlin Software GmbH, Berlin, Germany 1 Introduction Numerical simulation results of a dry scroll vacuum

More information

Coupled Simulation of Flow and Body Motion Using Overset Grids. Eberhard Schreck & Milovan Perić

Coupled Simulation of Flow and Body Motion Using Overset Grids. Eberhard Schreck & Milovan Perić Coupled Simulation of Flow and Body Motion Using Overset Grids Eberhard Schreck & Milovan Perić Contents Dynamic Fluid-Body Interaction (DFBI) model in STAR-CCM+ Overset grids method in STAR-CCM+ Advantages

More information

Studies of the ERCOFTAC Centrifugal Pump with OpenFOAM

Studies of the ERCOFTAC Centrifugal Pump with OpenFOAM Title 1/20 Studies of the ERCOFTAC Centrifugal Pump with OpenFOAM Olivier Petit Håkan Nilsson Outline Outline Geometry Boundary conditions Method and cases Comparison of numerical results with the available

More information

Best Practices Workshop: Overset Meshing

Best Practices Workshop: Overset Meshing Best Practices Workshop: Overset Meshing Overview Introduction to Overset Meshes Range of Application Workflow Demonstrations and Best Practices What are Overset Meshes? Overset meshes are also known as

More information

Turbostream: A CFD solver for manycore

Turbostream: A CFD solver for manycore Turbostream: A CFD solver for manycore processors Tobias Brandvik Whittle Laboratory University of Cambridge Aim To produce an order of magnitude reduction in the run-time of CFD solvers for the same hardware

More information

Best Practices: Volume Meshing Kynan Maley

Best Practices: Volume Meshing Kynan Maley Best Practices: Volume Meshing Kynan Maley Volume Meshing Volume meshing is the basic tool that allows the creation of the space discretization needed to solve most of the CAE equations for: CFD Stress

More information

OpenFOAM for CFD in water power and for international collaboration

OpenFOAM for CFD in water power and for international collaboration OpenFOAM for CFD in water power and for international collaboration ASSOCIATE PROFESSOR HÅKAN NILSSON Outline of the presentation: OpenFOAM for CFD in water power - Overview of flow in Hydro Power Stations

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

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

OpenFOAM Turbomachinery Working Group: Progress report

OpenFOAM Turbomachinery Working Group: Progress report OpenFOAM Turbomachinery Working Group: Progress report Maryse Page and Martin Beaudoin Hydro-Québec, Research Institute Håkan Nilsson Chalmers University of Technology Gothenburg, 21-24 June 2010 About

More information

Final drive lubrication modeling

Final drive lubrication modeling Final drive lubrication modeling E. Avdeev a,b 1, V. Ovchinnikov b a Samara University, b Laduga Automotive Engineering Abstract. In this paper we describe the method, which is the composition of finite

More information

Contributions to the Turbomachinery Working Group: Case Study: Single-Channel Pump & Function Object: turboperformance

Contributions to the Turbomachinery Working Group: Case Study: Single-Channel Pump & Function Object: turboperformance Contributions to the Turbomachinery Working Group: : & Function Object: M. Auvinen 1, N. Pedersen 2, K. Dahl 2, H. Nilsson 3 1 Department of Applied Mechanics, Fluid Mechanics Aalto University 2 Structural

More information

Shape optimisation using breakthrough technologies

Shape optimisation using breakthrough technologies Shape optimisation using breakthrough technologies Compiled by Mike Slack Ansys Technical Services 2010 ANSYS, Inc. All rights reserved. 1 ANSYS, Inc. Proprietary Introduction Shape optimisation technologies

More information

Using Multiple Rotating Reference Frames

Using Multiple Rotating Reference Frames Tutorial 9. Using Multiple Rotating Reference Frames Introduction Many engineering problems involve rotating flow domains. One example is the centrifugal blower unit that is typically used in automotive

More information

midas NFX 2017R1 Release Note

midas NFX 2017R1 Release Note Total Solution for True Analysis-driven Design midas NFX 2017R1 Release Note 1 midas NFX R E L E A S E N O T E 2 0 1 7 R 1 Major Improvements Midas NFX is an integrated finite element analysis program

More information

Recent & Upcoming Features in STAR-CCM+ for Aerospace Applications Deryl Snyder, Ph.D.

Recent & Upcoming Features in STAR-CCM+ for Aerospace Applications Deryl Snyder, Ph.D. Recent & Upcoming Features in STAR-CCM+ for Aerospace Applications Deryl Snyder, Ph.D. Outline Introduction Aerospace Applications Summary New Capabilities for Aerospace Continuity Convergence Accelerator

More information

2D rendering takes a photo of the 2D scene with a virtual camera that selects an axis aligned rectangle from the scene. The photograph is placed into

2D rendering takes a photo of the 2D scene with a virtual camera that selects an axis aligned rectangle from the scene. The photograph is placed into 2D rendering takes a photo of the 2D scene with a virtual camera that selects an axis aligned rectangle from the scene. The photograph is placed into the viewport of the current application window. A pixel

More information

Tutorial Four Discretization Part 1

Tutorial Four Discretization Part 1 Discretization Part 1 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

More information

Module 3 Mesh Generation

Module 3 Mesh Generation Module 3 Mesh Generation 1 Lecture 3.1 Introduction 2 Mesh Generation Strategy Mesh generation is an important pre-processing step in CFD of turbomachinery, quite analogous to the development of solid

More information

METHOD IMPROVEMENTS IN THERMAL ANALYSIS OF MACH 10 LEADING EDGES

METHOD IMPROVEMENTS IN THERMAL ANALYSIS OF MACH 10 LEADING EDGES METHOD IMPROVEMENTS IN THERMAL ANALYSIS OF MACH 10 LEADING EDGES Ruth M. Amundsen National Aeronautics and Space Administration Langley Research Center Hampton VA 23681-2199 ABSTRACT Several improvements

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

Simulations of the vortex in the Dellenback abrupt expansion, resembling a hydro turbine draft tube operating at part-load

Simulations of the vortex in the Dellenback abrupt expansion, resembling a hydro turbine draft tube operating at part-load Simulations of the vortex in the Dellenback abrupt expansion, resembling a hydro turbine draft tube operating at part-load H Nilsson Chalmers University of Technology, SE-412 96 Gothenburg, Sweden E-mail:

More information

Using Multiple Rotating Reference Frames

Using Multiple Rotating Reference Frames Tutorial 10. Using Multiple Rotating Reference Frames Introduction Many engineering problems involve rotating flow domains. One example is the centrifugal blower unit that is typically used in automotive

More information

CFD Post-Processing of Rampressor Rotor Compressor

CFD Post-Processing of Rampressor Rotor Compressor Gas Turbine Industrial Fellowship Program 2006 CFD Post-Processing of Rampressor Rotor Compressor Curtis Memory, Brigham Young niversity Ramgen Power Systems Mentor: Rob Steele I. Introduction Recent movements

More information

MESH REQUIREMENT INVESTIGATION FOR 2D AND 3D AERODYNAMIC SIMULATION OF VERTICAL AXIS WIND TURBINES

MESH REQUIREMENT INVESTIGATION FOR 2D AND 3D AERODYNAMIC SIMULATION OF VERTICAL AXIS WIND TURBINES MESH REQUIREMENT INVESTIGATION FOR 2D AND 3D AERODYNAMIC SIMULATION OF VERTICAL AXIS WIND TURBINES SAMAN NAGHIB ZADEH A Thesis In the Department of Mechanical and Industrial Engineering Presented in Partial

More information

Recent Advances in Modelling Wind Parks in STAR CCM+ Steve Evans

Recent Advances in Modelling Wind Parks in STAR CCM+ Steve Evans Recent Advances in Modelling Wind Parks in STAR CCM+ Steve Evans Introduction Company STAR-CCM+ Agenda Wind engineering at CD-adapco STAR-CCM+ & EnviroWizard Developments for Offshore Simulation CD-adapco:

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

THE INFLUENCE OF ROTATING DOMAIN SIZE IN A ROTATING FRAME OF REFERENCE APPROACH FOR SIMULATION OF ROTATING IMPELLER IN A MIXING VESSEL

THE INFLUENCE OF ROTATING DOMAIN SIZE IN A ROTATING FRAME OF REFERENCE APPROACH FOR SIMULATION OF ROTATING IMPELLER IN A MIXING VESSEL Journal of Engineering Science and Technology Vol. 2, No. 2 (2007) 126-138 School of Engineering, Taylor s University College THE INFLUENCE OF ROTATING DOMAIN SIZE IN A ROTATING FRAME OF REFERENCE APPROACH

More information

SELECTIVE ALGEBRAIC MULTIGRID IN FOAM-EXTEND

SELECTIVE ALGEBRAIC MULTIGRID IN FOAM-EXTEND Student Submission for the 5 th OpenFOAM User Conference 2017, Wiesbaden - Germany: SELECTIVE ALGEBRAIC MULTIGRID IN FOAM-EXTEND TESSA UROIĆ Faculty of Mechanical Engineering and Naval Architecture, Ivana

More information

Structured Grid Generation for Turbo Machinery Applications using Topology Templates

Structured Grid Generation for Turbo Machinery Applications using Topology Templates Structured Grid Generation for Turbo Machinery Applications using Topology Templates January 13th 2011 Martin Spel martin.spel@rtech.fr page 1 Agenda: R.Tech activities Grid Generation Techniques Structured

More information

OpenFOAM and Third Party Structural Solver for Fluid Structure Interaction Simulations

OpenFOAM and Third Party Structural Solver for Fluid Structure Interaction Simulations OpenFOAM and Third Party Structural Solver for Fluid Structure Interaction Simulations Robert L. Campbell rlc138@arl.psu.edu Fluids and Structural Mechanics Office Applied Research Laboratory The Pennsylvania

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

CastNet: GUI environment for OpenFOAM

CastNet: GUI environment for OpenFOAM CastNet: GUI environment for OpenFOAM CastNet is a preprocessing system and job-control system for OpenFOAM. CastNet works with the standard OpenFOAM releases provided by ESI Group as well as ports for

More information

Free Convection Cookbook for StarCCM+

Free Convection Cookbook for StarCCM+ ME 448/548 February 28, 2012 Free Convection Cookbook for StarCCM+ Gerald Recktenwald gerry@me.pdx.edu 1 Overview Figure 1 depicts a two-dimensional fluid domain bounded by a cylinder of diameter D. Inside

More information

Chapter 24. Creating Surfaces for Displaying and Reporting Data

Chapter 24. Creating Surfaces for Displaying and Reporting Data Chapter 24. Creating Surfaces for Displaying and Reporting Data FLUENT allows you to select portions of the domain to be used for visualizing the flow field. The domain portions are called surfaces, and

More information

Store Separation Simulation using Oct-tree Grid Based Solver

Store Separation Simulation using Oct-tree Grid Based Solver SAROD 2009 142 Symposium on Applied Aerodynamics and Design of Aerospace Vehicles (SAROD 2009) December 10-12, 2009, Bengaluru, India Store Separation Simulation using Oct-tree Grid Based Solver Saurabh

More information

CFD grid generation and analysis of screw compressor with variable geometry rotors

CFD grid generation and analysis of screw compressor with variable geometry rotors CFD grid generation and analysis of screw compressor with variable geometry rotors S Rane, A Kovacevic, N Stosic, M Kethidi City University London, Centre for Positive Displacement Compressor Technology,

More information

ICMIEE D CFD Analysis of a Straight-bladed Vertical Axis Wind Turbine Using General Grid Interface Method

ICMIEE D CFD Analysis of a Straight-bladed Vertical Axis Wind Turbine Using General Grid Interface Method International Conference on Mechanical, Industrial and Energy Engineering 2018 23-24 December, 2018, Khulna, BANGLADESH ICMIEE18-319 2D CFD Analysis of a Straight-bladed Vertical Axis Wind Turbine Using

More information

Using three-dimensional CURVIC contact models to predict stress concentration effects in an axisymmetric model

Using three-dimensional CURVIC contact models to predict stress concentration effects in an axisymmetric model Boundary Elements XXVII 245 Using three-dimensional CURVIC contact models to predict stress concentration effects in an axisymmetric model J. J. Rencis & S. R. Pisani Department of Mechanical Engineering,

More information

MESHLESS SOLUTION OF INCOMPRESSIBLE FLOW OVER BACKWARD-FACING STEP

MESHLESS SOLUTION OF INCOMPRESSIBLE FLOW OVER BACKWARD-FACING STEP Vol. 12, Issue 1/2016, 63-68 DOI: 10.1515/cee-2016-0009 MESHLESS SOLUTION OF INCOMPRESSIBLE FLOW OVER BACKWARD-FACING STEP Juraj MUŽÍK 1,* 1 Department of Geotechnics, Faculty of Civil Engineering, University

More information

Toward Predicting Performance of an Axial Flow Waterjet Including the Effects of Cavitation and Thrust Breakdown

Toward Predicting Performance of an Axial Flow Waterjet Including the Effects of Cavitation and Thrust Breakdown First International Symposium on Marine Propulsors smp 09, Trondheim, Norway, June 2009 Toward Predicting Performance of an Axial Flow Waterjet Including the Effects of Cavitation and Thrust Breakdown

More information

ENERGY-224 Reservoir Simulation Project Report. Ala Alzayer

ENERGY-224 Reservoir Simulation Project Report. Ala Alzayer ENERGY-224 Reservoir Simulation Project Report Ala Alzayer Autumn Quarter December 3, 2014 Contents 1 Objective 2 2 Governing Equations 2 3 Methodolgy 3 3.1 BlockMesh.........................................

More information

A FSI tutorial on the axialturbine tutorial case

A FSI tutorial on the axialturbine tutorial case CFD with OpenSource software A course at Chalmers University of Technology Taught by Håkan Nilsson Project work: A FSI tutorial on the axialturbine tutorial case Developed for FOAM-3.1-ext Case files:

More information

MSC Software Aeroelastic Tools. Mike Coleman and Fausto Gill di Vincenzo

MSC Software Aeroelastic Tools. Mike Coleman and Fausto Gill di Vincenzo MSC Software Aeroelastic Tools Mike Coleman and Fausto Gill di Vincenzo MSC Software Confidential 2 MSC Software Confidential 3 MSC Software Confidential 4 MSC Software Confidential 5 MSC Flightloads An

More information

Putting the Spin in CFD

Putting the Spin in CFD w h i t e p a p e r Putting the Spin in CFD insight S U M MARY Engineers who design equipment with rotating components need to analyze and understand the behavior of those components if they want to improve

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

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

NUMERICAL COUPLING BETWEEN DEM (DISCRETE ELEMENT METHOD) AND FEA (FINITE ELEMENTS ANALYSIS).

NUMERICAL COUPLING BETWEEN DEM (DISCRETE ELEMENT METHOD) AND FEA (FINITE ELEMENTS ANALYSIS). NUMERICAL COUPLING BETWEEN DEM (DISCRETE ELEMENT METHOD) AND FEA (FINITE ELEMENTS ANALYSIS). Daniel Schiochet Nasato - ESSS Prof. Dr. José Roberto Nunhez Unicamp Dr. Nicolas Spogis - ESSS Fabiano Nunes

More information

TUTORIAL#3. Marek Jaszczur. Boundary Layer on a Flat Plate W1-1 AGH 2018/2019

TUTORIAL#3. Marek Jaszczur. Boundary Layer on a Flat Plate W1-1 AGH 2018/2019 TUTORIAL#3 Boundary Layer on a Flat Plate Marek Jaszczur AGH 2018/2019 W1-1 Problem specification TUTORIAL#3 Boundary Layer - on a flat plate Goal: Solution for boudary layer 1. Creating 2D simple geometry

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

Webinar: TwinMesh for Reliable CFD Analysis of Rotating Positive Displacement Machines

Webinar: TwinMesh for Reliable CFD Analysis of Rotating Positive Displacement Machines Webinar: TwinMesh for Reliable CFD Analysis of Rotating Positive Displacement Machines 14.07.2015 Dipl.-Ing. Jan Hesse Jan.hesse@cfx-berlin.de CFX Berlin Software GmbH Karl-Marx-Allee 90 A 10243 Berlin

More information

Co-Simulation von Flownex und ANSYS CFX am Beispiel einer Verdrängermaschine

Co-Simulation von Flownex und ANSYS CFX am Beispiel einer Verdrängermaschine Co-Simulation von Flownex und ANSYS CFX am Beispiel einer Verdrängermaschine Benoit Bosc-Bierne, Dr. Andreas Spille-Kohoff, Farai Hetze CFX Berlin Software GmbH, Berlin Contents Positive displacement compressors

More information

FLOWVISION CFD FREQUENTLY ASKED QUESTIONS

FLOWVISION CFD FREQUENTLY ASKED QUESTIONS FLOWVISION CFD FREQUENTLY ASKED QUESTIONS 1. Installation and Licensing 1.1. Does FlowVision have floating licenses? 1.1.1. Actually all FlowVision licenses have floating capability and no extra fees are

More information

Automatic Hex-Dominant Mesh Generation for CFD Analysis of Formula One Car with cfmeshpro

Automatic Hex-Dominant Mesh Generation for CFD Analysis of Formula One Car with cfmeshpro Automatic Hex-Dominant Mesh Generation for CFD Analysis of Formula One Car with cfmeshpro Alen Cukrov and Franjo Juretić Creative Fields Ltd, X Vrbik 4, 10000 Zagreb, Croatia 1 Introduction This report

More information

Introduction to ANSYS CFX

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

More information

Advanced Turbomachinery Methods. Brad Hutchinson ANSYS, Inc. Industry Marketing

Advanced Turbomachinery Methods. Brad Hutchinson ANSYS, Inc. Industry Marketing Advanced Turbomachinery Methods 1 Brad Hutchinson ANSYS, Inc. Industry Marketing Presentation Overview 1. Turbomachinery challenges 2. ANSYS TurboSystem 3. 2 Blade row fluid dynamics solution methods Available

More information

CFD Simulation of a Dry Scroll Vacuum Pump Including Leakage Flows

CFD Simulation of a Dry Scroll Vacuum Pump Including Leakage Flows Purdue University Purdue e-pubs International Compressor Engineering Conference School of Mechanical Engineering 2016 CFD Simulation of a Dry Scroll Vacuum Pump Including Leakage Flows Jan Hesse CFX Berlin

More information

Solver Basics. Introductory FLUENT Training ANSYS, Inc. All rights reserved. ANSYS, Inc. Proprietary

Solver Basics. Introductory FLUENT Training ANSYS, Inc. All rights reserved. ANSYS, Inc. Proprietary Solver Basics Introductory FLUENT Training 2006 ANSYS, Inc. All rights reserved. 2006 ANSYS, Inc. All rights reserved. 3-2 Solver Execution The menus are arranged such that the order of operation is generally

More information