Simplified flow around a propeller for the course CFD with OpenSource Software

Size: px
Start display at page:

Download "Simplified flow around a propeller for the course CFD with OpenSource Software"

Transcription

1 Simplified flow around a propeller for the course CFD with OpenSource Software Gonzalo Montero Applied Mechanics/Fluid Dynamics, Chalmers University of Technology, Gothenburg, Sweden Gonzalo Montero Simplified flow around a propeller / 37

2 Contents Introduction Erik Svenning s work What can we do with propellersimplefoam? Theoretical background Mesh and m4 Xfoil How to define a propeller Seting up of a case Some results and validation Future work Gonzalo Montero Simplified flow around a propeller / 37

3 Introduction An actuator disk is a simplification of a propeller that helps in seeing how it affects the surroundings Useful when not to much detail is needed, can not see the flow Add momentum directly to fluid flowing through the area it in Gonzalo Montero Simplified flow around a propeller / 37

4 Erik Svenning s work Erik implemented an actuator disk model for OpenFOAM 1.5-dev. My implementation is built in top of that. Gonzalo Montero Simplified flow around a propeller / 37

5 Erik Svenning s work Thrust and torque known and Goldstein optimum distribution Gonzalo Montero Simplified flow around a propeller / 37

6 What can we do with propellersimplefoam? Take into account for the geometry of the propeller Take into account the operating conditions Analyze a propeller with different propeller sections Obtained the polars automatically or define them Gonzalo Montero Simplified flow around a propeller / 37

7 Theoretical background Velocities are parametrized by ψ Gonzalo Montero Simplified flow around a propeller / 37

8 Theoretical background U a = V + u a U t = Ωr u t U = Ua 2 + Ut 2 W a (ψ) = 0.5U a + 0.5Usinψ W t (ψ) = 0.5U t + 0.5Ucosψ v a (ψ) = W a U a v t (ψ) = U t W t α(ψ) = β arctan(w a /W t ) W (ψ) = Wa 2 + Wt 2 λ w (ψ) = rw a RW t ( f(ψ) = 0.5B 1 r R ) 1 λ w F (ψ) = 2 π arccos(e f ) 4πr Γ(ψ) = v t B F (4λ w R 1 + πbr Γ = 1 2 W cc l ) 2 Gonzalo Montero Simplified flow around a propeller / 37

9 Theoretical background The Newton update for psi then reads: δψ = R dr/dψ ψ ψ + δψ Gonzalo Montero Simplified flow around a propeller / 37

10 Theoretical background Cl 0 Cd α C l Gonzalo Montero Simplified flow around a propeller / 37

11 Theoretical background dt = B 1 2 ρw 2 (cl cosφ cd sinφ)c dr dq = B 1 2 ρw 2 (cl sinφ + cd cosφ)c r dr Devide T with ρv ncellcirc and Q with ρv rncellcirc Gonzalo Montero Simplified flow around a propeller / 37

12 Mesh and m4 Gonzalo Montero Simplified flow around a propeller / 37

13 Mesh and m4 m4 allows us to parametrize blockmeshdict very easy to use m4 filename.m4 > blockmeshdict Gonzalo Montero Simplified flow around a propeller / 37

14 Xfoil Gonzalo Montero Simplified flow around a propeller / 37

15 How to define a propeller In fvsolution dictionary Two or three.txt files geometry.txt polardistribution.txt polarsdata.txt (not compulsary) Gonzalo Montero Simplified flow around a propeller / 37

16 How to define a propeller Gonzalo Montero Simplified flow around a propeller / 37

17 How to define a propeller Gonzalo Montero Simplified flow around a propeller / 37

18 How to define a propeller geometry.txt Gonzalo Montero Simplified flow around a propeller / 37

19 How to define a propeller polarsdata.txt 2 //number of rows given for polar 1 3 //number of rows given for polar 2 2 //number of rows given for polar //point 1 of polar number //point 2 of polar number //point 1 of polar number //point 2 of polar number //point 3 of polar number //point 1 of polar number //point 2 of polar number 3 Gonzalo Montero Simplified flow around a propeller / 37

20 How to define a propeller polardistribution.txt Gonzalo Montero Simplified flow around a propeller / 37

21 Seting up of a case OF24x cd eriksvenning2.4/ cp -r cavityactuatordisk $FOAM_RUN cp cylindricalmesh.m4 $FOAM_RUN/cavityActuatorDisk/ constant/polymesh cp *.txt $FOAM_RUN/cavityActuatorDisk/ run cd cavityactuatordisk/constant/polymesh (gedit cylindricalmesh.m4) If wanted the mesh can be modified by cylindricalmesh.m4 Gonzalo Montero Simplified flow around a propeller / 37

22 Seting up of a case m4 cylindricalmesh.m4 > blockmeshdict cd../.. blockmesh cd 0 gedit U Gonzalo Montero Simplified flow around a propeller / 37

23 Seting up of a case internalfield uniform (15 0 0); boundaryfield { inlet{ type zerogradient; } outlet{ type zerogradient; } walls{ type slip; } } gedit p Gonzalo Montero Simplified flow around a propeller / 37

24 Seting up of a case internalfield uniform 0; boundaryfield { inlet{ type zerogradient; } outlet{ type zerogradient; } walls{ type zerogradient; } } Gonzalo Montero Simplified flow around a propeller / 37

25 Seting up of a case We have to initialize the volvectorfield VolumeForce. For that lets make a copy of the U file and modify it. cp U VolumeForce Change the dimensions and the object to VolumeForce. The rest will be set as: gedit VolumeForce dimensions [ ]; internalfield uniform (0 0 0); Gonzalo Montero Simplified flow around a propeller / 37

26 Seting up of a case boundaryfield { inlet{ type } fixedvalue; value uniform ( ); } outlet{ type } walls{ } fixedvalue; value uniform ( ); type fixedvalue; value uniform ( ); Gonzalo Montero Simplified flow around a propeller / 37

27 Seting up of a case Now we need to create another one for the volscalarfield xdimension, so since it is a scalar this time we will copy and modify the pressure file: cp p xdimension gedit xdimension Once again remember to change the dimension, in this case to meters and also to change the object field to xdimension. Finally it should be like this one: dimensions [ ]; internalfield uniform 0; Gonzalo Montero Simplified flow around a propeller / 37

28 Seting up of a case boundaryfield { inlet{ type } fixedvalue; value uniform 0; } outlet{ type } walls{ } fixedvalue; value uniform 0; type fixedvalue; value uniform 0; Gonzalo Montero Simplified flow around a propeller / 37

29 Seting up of a case Now lets go on and modify the fvsolution dictionary. cd../system/ gedit fvsolution In the SIMPLE subdictionary add: prefcell 0; prefvalue 0; Rename the actuatordisk as propellerdata. Add the missing fields so that it ends up looking like this: Gonzalo Montero Simplified flow around a propeller / 37

30 Seting up of a case propellerdata{ numberofpolars 2; flightspeed 15; deltabeta 30; centrepoint (15 0 0); density ; interiorradius 0.49; exteriorradius 1.524; rpm 500; temperaturekelvin ; numberofblades 3; dynamicviscosity e-4; ReRef 50000; ReExp 0; } Gonzalo Montero Simplified flow around a propeller / 37

31 Seting up of a case In fvsolution create a subdictionary with the following structure and named polarsdata. polarsdata { generatepolars 2; type1 naca; airfoilname1 2412; } type2 airfoilname2 geometry; NACA0012.txt; gedit fvschemes Gonzalo Montero Simplified flow around a propeller / 37

32 Seting up of a case and add the following change the divergence schemes so they look like: default div(phi,u) div(phi,k) div(phi,epsilon) div(phi,r) div(r) div(phi,nutilda) div((nueff*dev(grad(u).t()))) div((nueff*dev(t(grad(u))))) none; bounded Gauss upwind; bounded Gauss upwind; bounded Gauss upwind; Gauss upwind; Gauss linear; Gauss upwind; Gauss linear; Gauss linear; Gonzalo Montero Simplified flow around a propeller / 37

33 Seting up of a case Now we are ready to run the case: cd.. propellersimplefoam Gonzalo Montero Simplified flow around a propeller / 37

34 Some results and validation Gonzalo Montero Simplified flow around a propeller / 37

35 Some results and validation Gonzalo Montero Simplified flow around a propeller / 37

36 Some results and validation Ct NACA report 640 OpenFOAM J Gonzalo Montero Simplified flow around a propeller / 37

37 Future work Try to account for tip losses Another model that allows highers speed flows Solve the flow discretizing each blade Compressible solver implementation Gonzalo Montero Simplified flow around a propeller / 37

Transient flow simulations

Transient flow simulations Transient flow simulations Lecture 4 March 8, 2016 March 8, 2016 1 / 20 Table of Contents 1 Stationary and transient 2 Block structured meshes 3 Steps of the analysis through an example 4 Mesh refining

More information

Description and validation of the rotordisksource class for propeller performance estimation

Description and validation of the rotordisksource class for propeller performance estimation Description and validation of the rotordisksource class for propeller performance estimation Alexandre Capitao Patrao Department of Mechanics and Maritime Sciences Division of Fluid Dynamics Chalmers University

More information

studies Maryse Page Hydro-Québec, Research Institute Håkan Nilsson Chalmers University of Technology Omar Bounous Chalmers University of Technology

studies Maryse Page Hydro-Québec, Research Institute Håkan Nilsson Chalmers University of Technology Omar Bounous Chalmers University of Technology OpenFOAM Turbomachinery Working Group: ERCOFTAC conical diffuser case-studies studies Maryse Page Hydro-Québec, Research Institute Olivier Petit Chalmers University of Technology Håkan Nilsson Chalmers

More information

CFD with OpenSource software A course at Chalmers University of Technology Taught by HÅKAN NILSSON. Project work: intersettlingfoam

CFD with OpenSource software A course at Chalmers University of Technology Taught by HÅKAN NILSSON. Project work: intersettlingfoam Taught by HÅKAN NILSSON Project work: intersettlingfoa Developed for OpenFOAM-2.2.0 Author: Pedra Rain Deceber, 2013 2/21/2014 1 Presentation Outline: The objective of this presentation Introduction to

More information

Porous Media in OpenFOAM

Porous Media in OpenFOAM Chalmers Spring 2009 Porous Media in OpenFOAM Haukur Elvar Hafsteinsson Introduction This tutorial gives a detailed description of how to do simulations with porous media in OpenFOAM-1.5. The porous media

More information

Magnetic induction and electric potential solvers for incompressible MHD flows

Magnetic induction and electric potential solvers for incompressible MHD flows Magnetic induction and electric potential solvers for incompressible MHD flows Alessandro Tassone DIAEE - Nuclear Section, Sapienza Università di Roma, Rome, Italy 05/12/2016 Alessandro Tassone CMHD Solvers

More information

CFD with OpenSource software

CFD with OpenSource software CFD with OpenSource software A course at Chalmers University of Technology Taught by HÅKAN NILSSON Project work: intersettlingfoam Developed for OpenFOAM-2.2.0 Author: Pedram Ramin Peer reviewed by: Olivier

More information

An Overview of CFD Tools and Comparison of a 2D Testcase

An Overview of CFD Tools and Comparison of a 2D Testcase An Overview of CFD Tools and Comparison of a 2D Testcase CES Seminar Project Thesis presented by Moritz Begall 296113 Advisor: Alexandra Krieger, Ph.D. Aachen, 01.09.2015 Abstract This report presents

More information

viscousheatingsolver Martin Becker

viscousheatingsolver Martin Becker viscousheatingsolver Adding temperature transport and viscous heating to simplefoam Solver and Test Case Martin Becker martin_becker@dhcae-tools.de 11/09/2012 Abstract The modifications of the simplefoam

More information

Implementing Vortex Lattice Representation of Propeller Sections

Implementing Vortex Lattice Representation of Propeller Sections CFD with OpenSource Software 2014 Implementing Vortex Lattice Representation of Propeller Sections Developed for OpenFOAM-2.3.x Surya Kiran Peravali Chalmers University of Technology, Gothenburg, Sweden.

More information

The implementation of Two-equation SGS turbulence model and Wall damping function

The implementation of Two-equation SGS turbulence model and Wall damping function The implementation of Two-equation SGS turbulence model and Wall damping function Yeru Shang Thermo-fluid Mechanics Research Centre, The University of Sussex, Brighton, UK 2017-11-21 Yeru Shang The implementation

More information

Solving PDEs with OpenFOAM

Solving PDEs with OpenFOAM Solving PDEs with OpenFOAM ThePDEswewishtosolveinvolvederivativesoftensorfieldswith respect to time and space ThePDEsmustbediscretizedintimeandspacebeforewesolve them WewillstartbyhavingalookatalgebraoftensorsinOpenFOAM

More information

High-level programming in OpenFOAM and a first glance at C++

High-level programming in OpenFOAM and a first glance at C++ High-level programming in OpenFOAM and a first glance at C++ Håkan Nilsson, Chalmers / Applied Mechanics / Fluid Dynamics 1 Solving PDEs with OpenFOAM The PDEs we wish to solve involve derivatives of tensor

More information

Lecture 2: Fundamentals 2/3: Navier-Stokes Equation + Basics of Discretization

Lecture 2: Fundamentals 2/3: Navier-Stokes Equation + Basics of Discretization Lecture 2: Fundamentals 2/3: Navier-Stokes Equation Basics of Discretization V.Vuorinen Aalto University School of Engineering CFD Course, Spring 2018 January 15th 2018, Otaniemi ville.vuorinen@aalto.fi

More information

Implementation of Turbulent Viscosity from EARSM for Two Equation Turbulence Model

Implementation of Turbulent Viscosity from EARSM for Two Equation Turbulence Model CFD with OpenSource software A course at Chalmers University of Technology Taught by Håkan Nilsson Project work: Implementation of Turbulent Viscosity from EARSM for Two Equation Turbulence Model Developed

More information

Introduction. Haukur Elvar Hafsteinsson. OpenFOAM - Porous Media 1. The Governing Equations. The Class. The solver. Porous media as a flow control

Introduction. Haukur Elvar Hafsteinsson. OpenFOAM - Porous Media 1. The Governing Equations. The Class. The solver. Porous media as a flow control Introduction The Governing Equations The Class The solver Porous media as a flow control Porous media in cylindrical coordinates Available at the course home page: http://www.tfd.chalmers.se/ hani/kurser/os_cfd_2008/

More information

High-level programming in OpenFOAM and a first glance at C++

High-level programming in OpenFOAM and a first glance at C++ High-level programming in OpenFOAM and a first glance at C++ Håkan Nilsson, Chalmers / Mechanics and Maritime Sciences / Fluid Dynamics 1 Solving PDEs with OpenFOAM The PDEs we wish to solve involve derivatives

More information

Adding electric conduction and Joule heating to chtmultiregionfoam Niklas Järvstråt

Adding electric conduction and Joule heating to chtmultiregionfoam Niklas Järvstråt CFD with open source software, assignment 3: Adding electric conduction and Joule heating to chtmultiregionfoam Niklas Järvstråt Reviewed by Arash Eslamdoost 1 Table of contents 1.Physical background and

More information

Tutorial Eleven Reaction

Tutorial Eleven Reaction Reaction 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

3D Dam break Free surface flow

3D Dam break Free surface flow Dam break free surface flow Gravity Obstacle Box with open top Water column Physical and numerical side of the problem: In this case we are going to use the volume of fluid (VOF) method. This method solves

More information

Dam break free surface flow

Dam break free surface flow Dam break free surface flow Physical and numerical side of the problem: In this case we are going to use the VOF method. This method solves the incompressible Navier-Stokes equations plus an additional

More information

Flow boiling implementation with OpenFoam

Flow boiling implementation with OpenFoam Flow boiling implementation with OpenFoam Qingming Liu KTH,Department of Energy contents Introduction Background Physical and mathmatic models Implementation on OpenFoam Transport model Solvers Boundary

More information

Draft Tube calculations using OpenFOAM-1.5dev and validation with FLINDT data

Draft Tube calculations using OpenFOAM-1.5dev and validation with FLINDT data 6th OpenFOAM Workshop, June 13-16 2011, PennState University, USA Draft Tube calculations using OpenFOAM-1.5dev and validation with FLINDT data C. Devals, Y. Zhang and F.Guibault École Polytechnique de

More information

Solving PDEs with OpenFOAM

Solving PDEs with OpenFOAM Solving PDEs with OpenFOAM ThePDEswewishtosolveinvolvederivativesoftensorfieldswith respect to time and space The PDEs must be discretized in time and space before we solve them We will start by having

More information

Propeller theories. Blade element theory

Propeller theories. Blade element theory 30 1 Propeller theories Blade element theory The blade elements are assumed to be made up of airfoil shapes of known lift, C l and drag, C d characteristics. In practice a large number of different airfoils

More information

Description of AdjointShapeOptimizationFoam and how to implement new cost functions

Description of AdjointShapeOptimizationFoam and how to implement new cost functions Description of AdjointShapeOptimizationFoam and how to implement new cost functions A project work in the course CFD with OpenSource software, taught by Håkan Nilsson. Chalmers University of Technology,

More information

Mechanical Engineering for Renewable Energy Systems. Dr. Digby Symons. Wind Turbine Blade Design

Mechanical Engineering for Renewable Energy Systems. Dr. Digby Symons. Wind Turbine Blade Design ENGINEERING TRIPOS PART IB PAPER 8 ELECTIVE () Mechanical Engineering for Renewable Energy Systems Dr. Digby Symons Wind Turbine Blade Design Student Handout CONTENTS 1 Introduction... 3 Wind Turbine Blade

More information

Implementation of HLLC-AUSM low-mach scheme in a density-based compressible solver in FOAM-extend

Implementation of HLLC-AUSM low-mach scheme in a density-based compressible solver in FOAM-extend Implementation of HLLC-AUSM low-mach scheme in a density-based compressible solver in FOAM-extend Mohammad Hossein Arabnejad Mechanics and Maritime Sciences/Marine Technology, Chalmers University of Technology,

More information

Description of reactingtwophaseeulerfoam solver with a focus on mass transfer modeling terms

Description of reactingtwophaseeulerfoam solver with a focus on mass transfer modeling terms Description of reactingtwophaseeulerfoam solver with a focus on mass transfer modeling terms Submitted by: Thummala Phanindra Prasad, Environmental Engineering Department, Anadolu University of Technology,

More information

Actuator disk modeling of the Mexico rotor with OpenFOAM

Actuator disk modeling of the Mexico rotor with OpenFOAM ITM Web of Conferences 2, 06001 (2014) DOI: 10.1051/itmconf/20140206001 C Owned by the authors, published by EDP Sciences, 2014 Actuator disk modeling of the Mexico rotor with OpenFOAM A. Jeromin 3, A.

More information

Manhar Dhanak Florida Atlantic University Graduate Student: Zaqie Reza

Manhar Dhanak Florida Atlantic University Graduate Student: Zaqie Reza REPRESENTING PRESENCE OF SUBSURFACE CURRENT TURBINES IN OCEAN MODELS Manhar Dhanak Florida Atlantic University Graduate Student: Zaqie Reza 1 Momentum Equations 2 Effect of inclusion of Coriolis force

More information

SIMULATION OF FLUID-STRUCTURAL INTERACTION

SIMULATION OF FLUID-STRUCTURAL INTERACTION SIMULATION OF FLUID-STRUCTURAL INTERACTION USING OPENFOAM Hua-Dong Yao Department of Applied Mechanics, Chalmers University of Technology Sep 15, 2014 Hua-Dong Yao Simulation of FSI using OpenFOAM Sep

More information

Viscoelastic Fluid Simulation with OpenFOAM

Viscoelastic Fluid Simulation with OpenFOAM Viscoelastic Fluid Simulation with OpenFOAM Joan Marco Rimmek and Adrià Barja Romero Universitat Politècnica de Catalunya. BarcelonaTECH. (Dated: May 31, 2017) Viscoelastic fluids do not behave like newtonian

More information

Stratified scavenging in two-stroke engines using OpenFOAM

Stratified scavenging in two-stroke engines using OpenFOAM Stratified scavenging in two-stroke engines using OpenFOAM Håkan Nilsson, Chalmers / Applied Mechanics / Fluid Dynamics 1 Acknowledgements I would like to thank Associate Professor Håkan Nilsson at the

More information

A solver for Boussinesq shallow water equations

A solver for Boussinesq shallow water equations A solver for Boussinesq shallow water equations Dimitrios Koukounas Department of Mechanics and Maritime sciences Chalmers University of Technology, Gothenburg, Sweden 2017-11-23 Dimitrios Koukounas Beamer

More information

Propellers and Ducted Fans

Propellers and Ducted Fans Propellers and Ducted Fans Session delivered by: Prof. Q. H. Nagpurwala 1 To help protect your privacy, PowerPoint prevented this external picture from being automatically downloaded. To download and display

More information

OpenFOAM Course Final Assignment: Tutorial for Natural Convection Boundary Layer

OpenFOAM Course Final Assignment: Tutorial for Natural Convection Boundary Layer OpenFOAM Course Final Assignment: Tutorial for Natural Convection Boundary Layer Abolfazl Shiri 751028-2051 1 Introduction The aim of this project is to simulate the natural convection boundary layer along

More information

CHAPTER 4 OPTIMIZATION OF COEFFICIENT OF LIFT, DRAG AND POWER - AN ITERATIVE APPROACH

CHAPTER 4 OPTIMIZATION OF COEFFICIENT OF LIFT, DRAG AND POWER - AN ITERATIVE APPROACH 82 CHAPTER 4 OPTIMIZATION OF COEFFICIENT OF LIFT, DRAG AND POWER - AN ITERATIVE APPROACH The coefficient of lift, drag and power for wind turbine rotor is optimized using an iterative approach. The coefficient

More information

How to implement your own turbulence model(1/3)

How to implement your own turbulence model(1/3) How to implement your own turbulence model(1/3) The implementations of the turbulence models are located in $FOAM_SRC/turbulenceModels Copythesourceoftheturbulencemodelthatismostsimilartowhatyouwanttodo.Inthis

More information

Optimum Design of URRG-AUV Propeller Using PVL

Optimum Design of URRG-AUV Propeller Using PVL Optimum Design of URRG-AUV Propeller Using PVL Muhamad Husaini 2, Zahurin Samad 1, Mohd Rizal Arshad 2 1 School of Mechanical Engineering Universiti Sains Malaysia, Engineering Campus 14300 Nibong Tebal,

More information

Design of Propeller Blades For High Altitude

Design of Propeller Blades For High Altitude Design of Propeller Blades For High Altitude Silvestre 1, M. A. R., Morgado 2 1,2 - Department of Aerospace Sciences University of Beira Interior MAAT 2nd Annual Meeting M24, 18-20 of September, Montreal,

More information

Prepared by: Simanto. Date: Sunday, August 17, 2014

Prepared by: Simanto. Date: Sunday, August 17, 2014 C Date: Sunday, August 17, 2014 Report Contents Design 1 2 Scenario 1... 2 Materials... 2 boundary conditions... 3 Initial Conditions... 4 mesh... 4 Physics... 5 Solver Settings... 5 Convergence... 5 Results...

More information

Numerical Investigation of the Hydrodynamic Performances of Marine Propeller

Numerical Investigation of the Hydrodynamic Performances of Marine Propeller Numerical Investigation of the Hydrodynamic Performances of Marine Propeller Master Thesis developed at "Dunarea de Jos" University of Galati in the framework of the EMSHIP Erasmus Mundus Master Course

More information

A Two-Fluid/DQMOM Methodology For Condensation In Bubbly Flow

A Two-Fluid/DQMOM Methodology For Condensation In Bubbly Flow A Two-Fluid/DQMOM Methodology For Condensation In Bubbly Flow Gothenburg Region OpenFOAM User Group Meeting, November 11, 2015 Klas Jareteg Chalmers University of Technology Division of Nuclear Engineering,

More information

Aerodynamic Performance 1. Figure 1: Flowfield of a Wind Turbine and Actuator disc. Table 1: Properties of the actuator disk.

Aerodynamic Performance 1. Figure 1: Flowfield of a Wind Turbine and Actuator disc. Table 1: Properties of the actuator disk. Aerodynamic Performance 1 1 Momentum Theory Figure 1: Flowfield of a Wind Turbine and Actuator disc. Table 1: Properties of the actuator disk. 1. The flow is perfect fluid, steady, and incompressible.

More information

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

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

More information

Numerical Modelling of Twin-screw Pumps Based on Computational Fluid Dynamics

Numerical Modelling of Twin-screw Pumps Based on Computational Fluid Dynamics Numerical Modelling of Twin-screw Pumps Based on Computational Fluid Dynamics 6-8 th March 2017 Dr Sham Rane, Professor Ahmed Kovačević, Dr Di Yan, Professor Qian Tang, Centre for Compressor Technology,

More information

Evaluation of OpenFOAM for CFD of turbulent flow in

Evaluation of OpenFOAM for CFD of turbulent flow in !" #$&% ' (*)+,, -. /12 Evaluation of OpenFOAM for CFD of turbulent flow in water turbines Håkan NILSSON Chalmers Univ. of Technology, Göteborg, Sweden hani@chalmers.se Key words: CFD, Validation, Kaplan,

More information

Development of twophaseeulerfoam

Development of twophaseeulerfoam ISPRAS OPEN 2016 NUMERICAL STUDY OF SADDLE-SHAPED VOID FRACTION PROFILES EFFECT ON THERMAL HYDRAULIC PARAMETERS OF THE CHANNEL WITH TWO-PHASE FLOW USING OPENFOAM AND COMPARISON WITH EXPERIMENTS Varseev

More information

NUMERICAL INVESTIGATION OF VERTICAL AXIS WIND TURBINE WITH TWIST ANGLE IN BLADES

NUMERICAL INVESTIGATION OF VERTICAL AXIS WIND TURBINE WITH TWIST ANGLE IN BLADES Eleventh International Conference on CFD in the Minerals and Process Industries CSIRO, Melbourne, Australia 7-9 December 05 NUMERICAL INVESTIGATION OF VERTICAL AXIS WIND TURBINE WITH TWIST ANGLE IN BLADES

More information

CFDOFAIRFLOWINHYDROPOWERGENERATORS FOR CONVECTIVE COOLING, USING OPENFOAM

CFDOFAIRFLOWINHYDROPOWERGENERATORS FOR CONVECTIVE COOLING, USING OPENFOAM CFDOFAIRFLOWINHYDROPOWERGENERATORS FOR CONVECTIVE COOLING, USING OPENFOAM ECCOMAS CFD 21 Pirooz Moradnia, Håkan Nilsson Lisbon-Portugal 21-6-16 Pirooz Moradnia, Chalmers/ Applied Mechanics/ Fluid Dynamics

More information

Aerodynamic Performance Assessment of Wind Turbine Composite Blades Using Corrected Blade Element Momentum Method

Aerodynamic Performance Assessment of Wind Turbine Composite Blades Using Corrected Blade Element Momentum Method Aerodynamic Performance Assessment of Wind Turbine Composite Blades Using Corrected Blade Element Momentum Method Chi Zhang 1) and *Hua-Peng Chen 2) 1), 2) Department of Engineering & Science, University

More information

Flow Analysis and Optimization of Supersonic Rocket Engine Nozzle at Various Divergent Angle using Computational Fluid Dynamics (CFD)

Flow Analysis and Optimization of Supersonic Rocket Engine Nozzle at Various Divergent Angle using Computational Fluid Dynamics (CFD) IOSR Journal of Mechanical and Civil Engineering (IOSR-JMCE) e-issn: 2278-1684,p-ISSN: 2320-334X, Volume 11, Issue 6 Ver. IV (Nov- Dec. 2014), PP 01-10 Flow Analysis and Optimization of Supersonic Rocket

More information

Description of poroussimplefoam and adding the Brinkmann model to the porous models Developed for OpenFOAM-2.2.x

Description of poroussimplefoam and adding the Brinkmann model to the porous models Developed for OpenFOAM-2.2.x CFD with OpenSource Software A course at Chalmers University of Technology Taught by Hakan Nilsson Project work: Description of poroussimplefoam and adding the Brinkmann model to the porous models Developed

More information

Presentation for the course «CFD with OpenSource Software» Alexey Vdovin Chalmers University of Technology

Presentation for the course «CFD with OpenSource Software» Alexey Vdovin Chalmers University of Technology Presentation for the course «CFD with OpenSource Software» Alexey Vdovin Chalmers University of Technology Agenda(1) Introduction Addition of the radiation heat transfer to the solver Radiation models

More information

Rhie-Chow interpolation in OpenFOAM 1

Rhie-Chow interpolation in OpenFOAM 1 Rhie-Chow interpolation in OpenFOAM 1 Fabian Peng Kärrholm Department of Applied Mechanics Chalmers Univesity of Technology Göteborg, Sweden, 2006 1 Appendix from Numerical Modelling of Diesel Spray Injection

More information

Differential relations for fluid flow

Differential relations for fluid flow Differential relations for fluid flow In this approach, we apply basic conservation laws to an infinitesimally small control volume. The differential approach provides point by point details of a flow

More information

A Study on Effects of Blade Pitch on the Hydrodynamic Performances of a Propeller by Using CFD

A Study on Effects of Blade Pitch on the Hydrodynamic Performances of a Propeller by Using CFD Journal of Shipping and Ocean Engineering 8 (2018) 36-42 doi 10.17265/2159-5879/2018.01.005 D DAVID PUBLISHING A Study on Effects of Blade Pitch on the Hydrodynamic Performances of a Propeller by Using

More information

Chapter 6: Vector Analysis

Chapter 6: Vector Analysis Chapter 6: Vector Analysis We use derivatives and various products of vectors in all areas of physics. For example, Newton s 2nd law is F = m d2 r. In electricity dt 2 and magnetism, we need surface and

More information

Adding electric conduction and Joule heating to chtmultiregionfoam Niklas Järvstråt

Adding electric conduction and Joule heating to chtmultiregionfoam Niklas Järvstråt Adding electric conduction and Joule heating to chtmultiregionfoam Niklas Järvstråt Physical equations: Thermal conduction (with Joule heating and passive transport included) Thermal conduction is standard

More information

Create a DES turbulence model from komegasst RANS model. 8 th OFWS training by D. Chrisk Revised by Y. Takagi Open CAE

Create a DES turbulence model from komegasst RANS model. 8 th OFWS training by D. Chrisk Revised by Y. Takagi Open CAE Create a DES turbulence model from komegasst RANS model 8 th OFWS training by D. Chrisk Revised by Y. Takagi Open CAE seminar@kansai, 2013.7.6 1 Turbulent flow simulapon DNS LES RANS Modeling No Subgrid

More information

Open FOAM Tutorial. reactingfoam. Simple Gas Phase Reaction. Chalmers University of Technology Andreas Lundström

Open FOAM Tutorial. reactingfoam. Simple Gas Phase Reaction. Chalmers University of Technology Andreas Lundström Open FOAM Tutorial reactingfoam Simple Gas Phase Reaction Chalmers University of Technology Andreas Lundström April 7, 2008 reactingfoam tutorial 2 1 Introduction This tutorial is intended as a first introduction

More information

Performance and wake development behind two in-line and offset model wind turbines "Blind test" experiments and calculations

Performance and wake development behind two in-line and offset model wind turbines Blind test experiments and calculations Journal of Physics: Conference Series OPEN ACCESS Performance and wake development behind two in-line and offset model wind turbines "Blind test" experiments and calculations To cite this article: Lars

More information

Chapter 3. CFD Analysis of Radiator

Chapter 3. CFD Analysis of Radiator Chapter 3 CFD Analysis of Radiator 3.1 COMPUTATIONAL FLUID DYNAMICS MODELING Computational fluid dynamics modeling was developed to predict the characteristics and performance of flow systems. Overall

More information

A simplified model for a small propeller with different airfoils along the blade

A simplified model for a small propeller with different airfoils along the blade A simplified model for a small propeller with different airfoils along the blade Kamal A. R. Ismail 1) and *Célia V. A. G. Rosolen 2) 1), 2) State University of Campinas, Faculty of Mechanical Engineering,

More information

Design and Computational Studies on Plain Flaps

Design and Computational Studies on Plain Flaps Bonfring International Journal of Industrial Engineering and Management Science, Vol. 3, No. 2, June 2013 33 Design and Computational Studies on Plain Flaps M. Senthil Kumar and K. Naveen Kumar Abstract---

More information

Control Volume Analysis For Wind Turbines

Control Volume Analysis For Wind Turbines Control Volume Analysis For Wind Turbines.0 Introduction In this Chapter we use the control volume (CV) method introduced informally in Section., to develop the basic equations for conservation of mass

More information

OpenFOAM SIMULATION OF THE FLOW IN THE HÖLLEFORSEN DRAFT TUBE MODEL

OpenFOAM SIMULATION OF THE FLOW IN THE HÖLLEFORSEN DRAFT TUBE MODEL Turbine-99 III Proceedings of the third IAHR/ERCOFTAC workshop on draft tube flow 8-9 December 2005, Porjus, Sweden Paper No. 8 OpenFOAM SIMULATION OF THE FLOW IN THE HÖLLEFORSEN DRAFT TUBE MODEL Nilsson

More information

Transient, Source Terms and Relaxation

Transient, Source Terms and Relaxation F. Moukalled L. Mangani M. Darwish An Advanced Introduction with OpenFOAM and Matlab This textbook explores both the theoretical foundation of the Finite Volume Method (FVM) and its applications in Computational

More information

ITTC Propeller Benchmark

ITTC Propeller Benchmark ITTC Propeller Benchmark Tip Rake PPTC, Propeller P1727 - P1727 Report 4487 Potsdam, March April 2016 2016 Schiffbau-Versuchsanstalt Potsdam GmbH, Marquardter Chaussee 100, 14469 Potsdam Tel. +49 331 56712-0,

More information

Basic Concepts: Drag. Education Community

Basic Concepts: Drag.  Education Community Basic Concepts: Drag 011 Autodesk Objectives Page Introduce the drag force that acts on a body moving through a fluid Discuss the velocity and pressure distributions acting on the body Introduce the drag

More information

MULTIPLE ACTUATOR SQUARE MODEL FOR A VERTICAL AXIS WIND TURBINE

MULTIPLE ACTUATOR SQUARE MODEL FOR A VERTICAL AXIS WIND TURBINE MULTIPLE ACTUATOR SQUARE MODEL FOR A VERTICAL AXIS WIND TURBINE V. SANCHEZ 1, J. PALL ARES 1, A. VERNET 1, J. HÄMÄLÄINEN 2 1 Experiments, Computation and Modelization in the Fluid Mechanics and Turbulence

More information

Transient Thermal Flow and Thermal Stress Analysis Coupled NASTRAN and SC/Tetra

Transient Thermal Flow and Thermal Stress Analysis Coupled NASTRAN and SC/Tetra Transient Thermal Flow and Thermal Stress Analysis Coupled NASTRAN and SC/Tetra Qin Yin Fan Software CRADLE Co., Ltd. ABSTRACT In SAE paper 2004-01-1345, author focused on how to use a steady state temperature

More information

Proper Orthogonal Decomposition of Pressure Fields in a Draft Tube Cone of the Francis (Tokke) Turbine Model

Proper Orthogonal Decomposition of Pressure Fields in a Draft Tube Cone of the Francis (Tokke) Turbine Model Journal of Physics: Conference Series OPEN ACCESS Proper Orthogonal Decomposition of Pressure Fields in a Draft Tube Cone of the Francis (Tokke) Turbine Model To cite this article: D Stefan and P Rudolf

More information

Computations of unsteady cavitating flow on wing profiles using a volume fraction method and mass transfer models

Computations of unsteady cavitating flow on wing profiles using a volume fraction method and mass transfer models Computations of unsteady cavitating flow on wing profiles using a volume fraction method and mass transfer models Tobias Huuva *, Aurelia Cure, Göran Bark * and Håkan Nilsson * Chalmers University of Technology,

More information

Micro-Scale CFD Modeling of Packed-Beds

Micro-Scale CFD Modeling of Packed-Beds Micro-Scale CFD Modeling of Packed-Beds Daniel P. Combest and Dr. P.A. Ramachandran and Dr. M.P. Dudukovic Chemical Reaction Engineering Laboratory (CREL) Department of Energy, Environmental, and Chemical

More information

How to implement your own turbulence model (1/3)

How to implement your own turbulence model (1/3) How to implement your own turbulence model 1/3) The implementations of the turbulence models are located in $FOAM_SRC/turbulenceModels Copy the source of the turbulence model that is most similar to what

More information

Numerical Study of the Semi-Open Centrifugal Pump Impeller Side Clearance A. Farid Ayad *, H. M. Abdalla,A. S. Abo El-Azm Egyptian Armed Forces, Egypt

Numerical Study of the Semi-Open Centrifugal Pump Impeller Side Clearance A. Farid Ayad *, H. M. Abdalla,A. S. Abo El-Azm Egyptian Armed Forces, Egypt 16 th International Conference on AEROSPACE SCIENCES & AVIATION TECHNOLOGY, ASAT - 16 May 26-28, 2015, E-Mail: asat@mtc.edu.eg Military Technical College, Kobry Elkobbah, Cairo, Egypt Tel : +(202) 24025292

More information

Numerical Simulation of Hydrogen Gas Turbines using Flamelet Generated Manifolds technique on Open FOAM

Numerical Simulation of Hydrogen Gas Turbines using Flamelet Generated Manifolds technique on Open FOAM Numerical Simulation of Hydrogen Gas Turbines using Flamelet Generated Manifolds technique on Open FOAM Alessio Fancello (M.Sc.) Department of Mechanical Engineering Combustion Technology Technische Universiteit

More information

Coupling Physics. Tomasz Stelmach Senior Application Engineer

Coupling Physics. Tomasz Stelmach Senior Application Engineer Coupling Physics Tomasz Stelmach Senior Application Engineer Agenda Brief look @ Multiphysics solution What is new in R18 Fluent Maxwell coupling wireless power transfer Brief look @ ANSYS Multiphysics

More information

5. FVM discretization and Solution Procedure

5. FVM discretization and Solution Procedure 5. FVM discretization and Solution Procedure 1. The fluid domain is divided into a finite number of control volumes (cells of a computational grid). 2. Integral form of the conservation equations are discretized

More information

Wind Turbine Blade Analysis using the Blade Element Momentum Method. Version 1.0

Wind Turbine Blade Analysis using the Blade Element Momentum Method. Version 1.0 using the Blade Element Momentum Method. Version 1.0 Grant Ingram December 13, 2005 Copyright c) 2005 Grant Ingram, All Rights Reserved. 1 Contents 1 Introduction 5 2 Blade Element Momentum Theory 5 3

More information

Simulating the combustion of gaseous fuels 6th OpenFoam Workshop Training Session. Dominik Christ

Simulating the combustion of gaseous fuels 6th OpenFoam Workshop Training Session. Dominik Christ Simulating the combustion of gaseous fuels 6th OpenFoam Workshop Training Session Dominik Christ This presentation shows how to use OpenFoam to simulate gas phase combustion Overview Theory Tutorial case

More information

OPTIMAL DESIGN OF CLUTCH PLATE BASED ON HEAT AND STRUCTURAL PARAMETERS USING CFD AND FEA

OPTIMAL DESIGN OF CLUTCH PLATE BASED ON HEAT AND STRUCTURAL PARAMETERS USING CFD AND FEA International Journal of Mechanical Engineering and Technology (IJMET) Volume 9, Issue 5, May 2018, pp. 717 724, Article ID: IJMET_09_05_079 Available online at http://www.iaeme.com/ijmet/issues.asp?jtype=ijmet&vtype=9&itype=5

More information

Tutorial XiFoam. Applied Mechanics Department Chalmers University of Technology. CFD with OpenSource software, assignment 3

Tutorial XiFoam. Applied Mechanics Department Chalmers University of Technology. CFD with OpenSource software, assignment 3 Applied Mechanics Department Chalmers University of Technology CFD with OpenSource software, assignment 3 Tutorial XiFoam Version: OpenFOAM-1.7.x Author: Ehsan Yasari Peer reviewed by: Josef Runsten Jelena

More information

Active Flutter Control using an Adjoint Method

Active Flutter Control using an Adjoint Method 44th AIAA Aerospace Sciences Meeting and Exhibit 9-12 January 26, Reno, Nevada AIAA 26-844 44th AIAA Aerospace Sciences Meeting and Exhibit, Reno, Nevada, 9 12 Jan, 26. Active Flutter Control using an

More information

ENERGY TRANSFER BETWEEN FLUID AND ROTOR. Dr. Ir. Harinaldi, M.Eng Mechanical Engineering Department Faculty of Engineering University of Indonesia

ENERGY TRANSFER BETWEEN FLUID AND ROTOR. Dr. Ir. Harinaldi, M.Eng Mechanical Engineering Department Faculty of Engineering University of Indonesia ENERGY TRANSFER BETWEEN FLUID AND ROTOR Dr. Ir. Harinaldi, M.Eng Mechanical Engineering Department Faculty of Engineering University of Indonesia Basic Laws and Equations Continuity Equation m m ρ mass

More information

ME332 FLUID MECHANICS LABORATORY (PART II)

ME332 FLUID MECHANICS LABORATORY (PART II) ME332 FLUID MECHANICS LABORATORY (PART II) Mihir Sen Department of Aerospace and Mechanical Engineering University of Notre Dame Notre Dame, IN 46556 Version: April 2, 2002 Contents Unit 5: Momentum transfer

More information

Numerical Modeling and Optimization of Power Generation from Shrouded Wind Turbines

Numerical Modeling and Optimization of Power Generation from Shrouded Wind Turbines Washington University in St. Louis Washington University Open Scholarship All Theses and Dissertations (ETDs) 1-1-2011 Numerical Modeling and Optimization of Power Generation from Shrouded Wind Turbines

More information

NUMERICAL AND WIND TUNNEL INVESTIGATION ON AERODYNAMIC COEFFICIENTS OF A THREE BLADED SAVONIUS WIND TURBINE WITH AND WITHOUT OVERLAP BETWEEN BLADES

NUMERICAL AND WIND TUNNEL INVESTIGATION ON AERODYNAMIC COEFFICIENTS OF A THREE BLADED SAVONIUS WIND TURBINE WITH AND WITHOUT OVERLAP BETWEEN BLADES NUMERICAL AND WIND TUNNEL INVESTIGATION ON AERODYNAMIC COEFFICIENTS OF A THREE BLADED SAVONIUS WIND TURBINE WITH AND WITHOUT OVERLAP BETWEEN BLADES Mosfequr Rahman, Khandakar N. Morshed 2, Mahbub K. Ahmed

More information

Written in August 2017 during my holiday in Bulgaria, Sunny Coast

Written in August 2017 during my holiday in Bulgaria, Sunny Coast Electric ucted Fan Theory This paper describes a simple theory of a ducted fan. It is assumed that the reader knows what it is an electric ducted fan (EF), how it works, and what it is good for. When I

More information

COMPUTATIONAL METHOD

COMPUTATIONAL METHOD Multi Objective Design Optimization of Rocket Engine Turbopump Turbine Naoki Tani, Akira Oyama and Nobuhiro Yamanishi tani.naoki@jaxa.jp Japan Aerospace Exploration Agency JAXA is now planning to develop

More information

Dimerization in a Tubular Reactor

Dimerization in a Tubular Reactor Dimerization in a Tubular Reactor Tubular reactors are very common in large-scale continuous, for example in the petroleum industry. One key design and optimization parameter is the conversion, that is

More information

Effect of modification to tongue and basic circle diameter on vibration in a double-suction centrifugal pump

Effect of modification to tongue and basic circle diameter on vibration in a double-suction centrifugal pump 5th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2015) Effect of modification to tongue and basic circle diameter on vibration in a double-suction centrifugal

More information

CFD approach for design optimization and validation for axial flow hydraulic turbine

CFD approach for design optimization and validation for axial flow hydraulic turbine Indian Journal of Engineering & Materials Sciences Vol. 16, August 009, pp. 9-36 CFD approach for design optimization and validation for axial flow hydraulic turbine Vishnu Prasad, V K Gahlot* & P Krishnamachar

More information

THERMAL ANALYSIS OF SECOND STAGE GAS TURBINE ROTOR BLADE

THERMAL ANALYSIS OF SECOND STAGE GAS TURBINE ROTOR BLADE Polymers Research Journal ISSN: 195-50 Volume 6, Number 01 Nova Science Publishers, Inc. THERMAL ANALYSIS OF SECOND STAGE GAS TURBINE ROTOR BLADE E. Poursaeidi, M. Mohammadi and S. S. Khamesi University

More information

Computation of Unsteady Flows With Moving Grids

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

More information

ANALYSIS AND OPTIMIZATION OF A VERTICAL AXIS WIND TURBINE SAVONIUS-TYPE PANEL USING CFD TECHNIQUES

ANALYSIS AND OPTIMIZATION OF A VERTICAL AXIS WIND TURBINE SAVONIUS-TYPE PANEL USING CFD TECHNIQUES ANALYSIS AND OPTIMIZATION OF A VERTICAL AXIS WIND TURBINE SAVONIUS-TYPE PANEL USING CFD TECHNIQUES J. Vilarroig, S. Chiva*, R. Martínez and J. Segarra** *Author for correspondence ** Heliotec.SL Department

More information

Unsteady Rotor-Stator Simulation of the U9 Kaplan Turbine Model

Unsteady Rotor-Stator Simulation of the U9 Kaplan Turbine Model Unsteady Rotor-Stator Simulation of the U9 Kaplan Turbine Model Olivier Petit, Håkan Nilsson Chalmers University 6 th OpenFOAM workshop Penn State University, USA 13-16 June 2011 Develop OpenFOAM as the

More information

IMPLEMENTATION OF PRESSURE BASED SOLVER FOR SU2. 3rd SU2 Developers Meet Akshay.K.R, Huseyin Ozdemir, Edwin van der Weide

IMPLEMENTATION OF PRESSURE BASED SOLVER FOR SU2. 3rd SU2 Developers Meet Akshay.K.R, Huseyin Ozdemir, Edwin van der Weide IMPLEMENTATION OF PRESSURE BASED SOLVER FOR SU2 3rd SU2 Developers Meet Akshay.K.R, Huseyin Ozdemir, Edwin van der Weide Content ECN part of TNO SU2 applications at ECN Incompressible flow solver Pressure-based

More information