Fluid Dynamics Software Lab. Flow past an airfoil

Size: px
Start display at page:

Download "Fluid Dynamics Software Lab. Flow past an airfoil"

Transcription

1 Second Summer School on Embodied Intelligence Simulation and Modelling within Embodied Intelligence 27 June - 1 July 2011, Zürich, Switzerland Dr Asimina Kazakidi Foundation for Research and Technology Hellas (FORTH) Heraklion 70013, Crete, Greece kazakidi@ics.forth.gr URL: June 2011

2 Abstract This Software Lab aims to introduce computational fluid dynamic techniques, through the use of the open-source numerical code Open- FOAM ( the open-source visualization software ParaView ( and the data plotting software Gnuplot (www. gnuplot.info). For this purpose, the flow past an airfoil is considered, as a standard study for the aerodynamic design of aircrafts. An analysis of the influence of the flow incidence angle (angle of attack) on the lift force coefficient will give an appreciation of the aircraft stall (terminology explained in the document), which can be relevant to the design of efficient robotic systems and robotic control strategies. 1 Introduction Studying the flow past an airfoil, particularly for a prototype, is critical in the aerodynamic design of aircrafts. The shape of the airfoil, the boundary conditions, and the drag and lift forces generated on the airfoil are important in identifying the performance characteristics of the airfoil during flight. Similar principles can be applied to hydrofoils (artificially-made in boats or naturallyfound in aquatic animals). 1.1 Problem description Consider fluid flowing past an airfoil (Fig.1). The free stream velocity, V, is 26 m/sec and the angle of attack, α, is initially 0 o. The chord length (C) is 1 m (Fig.2). The density, ρ, is 1 kg/m 3 and the kinematic viscosity, ν, is 1 5 m 2 /sec. Visualize case with ParaView. Set boundary conditions and solver parameters. Run with OpenFOAM solver for α=0 o and analyze. Rotate mesh and solve for other angles of attack. Examine the drag and lift force coefficients vs. α. Which is the critical angle of attack for this airfoil?? Figure 1: Angle of attack and forces acting on an airfoil 2

3 1.2 Forces acting on an airfoil Drag: in the direction of the free stream velocity (Fig.1). Lift: perpendicular to the direction of the free stream velocity (Fig.1). Thrust: force generated through the reaction of accelerating a mass of fluid, in the opposite direction from the accelerated fluid. Weight: the force on an object due to gravity. 1.3 Terminology Airfoil: the cross-sectional shape of an aircraft wing. Aircraft stall: a reduction in the lift coefficient as angle of attack increases. Angle of attack (or flow incidence angle), α: the angle between the free stream velocity and the chord line of the airfoil (Fig.1). Critical angle of attack: the angle of attack which produces maximum lift coefficient. Leading Edge Upper Camber Mean Camber Trailing Edge Lower Camber Chord "C" Figure 2: Terminology used for airfoils 2 Pre-processing 2.1 Inspect mesh with ParaView - Open a Terminal window - Change to the airfoil directory cd Desktop/CFDLab/airfoil/ - Copy the entire airfoil 00 case directory into a new case directory, named airfoil ** (where ** is a numerical value for the angle of attack you will examine) cp -rf airfoil 00/ airfoil **/ - Change to the airfoil ** case directory cd airfoil **/ ls It is always a good practice to view the mesh before running the case for any errors. The mesh can be viewed in ParaView, the post-processing tool supplied 3

4 with OpenFOAM. It is started by typing from within the case directory, in the terminal, the command: parafoam ParaView has opened the airfoil **.OpenFOAM. - Select the Patch Names and all the Mesh Parts in the bottom left side of the GUI windown, leaving the Volume Fields empty - Click the Apply button to load the geometry into ParaView - At the top of the GUI window, press on the arrow adjacent to Outline and choose Surface With Edges - Zoom, Pan, and Rotate the geometry to see the airfoil and the boundaries (check default or change mouse functions from Edit > Settings > Render View > Camera; you can also change the Background Color to white from Edit > Settings > Colors) What type of mesh is used for this geometry? What is the size and shape of the computational domain? What type of boundaries are used and how are they labeled? Quadrilateral cells are used here because they can be stretched easily to account for different flow gradient magnitudes in different directions. A half-circle was chosen to represent the upstream (inlet) boundary because it has no discontinuities in slope, enabling the construction of a smooth mesh in the interior of the domain. The upstream boundary was placed away from the airfoil to minimize effects on the flow and therefore have more accurate boundary condition. - Note the names for the boundaries and close ParaView, or otherwise, go back to the Terminal window and press Ctrl+Z, then write bg to keep ParaView open in the background 2.2 Rotate mesh by α - Within the airfoil ** case directory, rotate the mesh by α degrees transformpoints -yawpitchroll ( α 0 0) - Inspect the rotated mesh with parafoam (like before) 2.3 Set boundary and initial conditions - Change to folder 0/ - Move the file p0 to p, and U0 to U mv p0 p mv U0 U 4

5 - In a text editor (emacs, gedit, vi etc), open the file U - Between the brackets for the boundaryfield add the velocity conditions for each of the domain boundaries as follows: 23 inlet1 24 { 25 type freestream; 26 freestreamvalue uniform (26 0 0); 27 } inlet2 30 { 31 type freestream; 32 freestreamvalue uniform (26 0 0); 33 } outlet 36 { 37 type freestream; 38 freestreamvalue uniform (26 0 0); 39 } airfoil 42 { 43 type fixedvalue; 44 value uniform (0 0 0); 45 } frontandbackplanes 48 { 49 type empty; 50 } - Save and close the U file - In a text editor (emacs, gedit, vi etc), open the file p - Between the brackets for the boundaryfield add the pressure conditions for each of the domain boundaries: 23 inlet1 24 { 25 type freestreampressure; 26 } inlet2 29 { 30 type freestreampressure; 31 } outlet 34 { 5

6 35 type freestreampressure; 36 } airfoil 39 { 40 type zerogradient; 41 } frontandbackplanes 44 { 45 type empty; 46 } - Save and close the p file - Change to folder system/ of the case directory - Open the file controldict and set the following solver parameters: 26 endtime 50; 27 deltat 1; 32 writeinterval 10; - Add the following Reference Values at the end of the controldict file (this is to calculate the drag, lift and moment force coefficients acting on the airfoil) 49 functions 50 { forces 51 { 52 type forcecoeffs; 53 functionobjectlibs ( libforces.so ); 54 outputcontrol timestep; 55 outputinterval 1; 56 //Patches to sample 57 patches 58 ( 59 airfoil 60 ); 61 //Name of fields 62 pname p; 63 UName U; 64 rhoname rhoinf; 65 //Dump to file 66 log true; 67 //Reference density of fluid 68 rhoinf 1; 69 //(Centre of Rotation) Origin for moment calculations 70 CofR ( ); 71 //Direction for lift 72 liftdir (0 1 0); 73 //Direction for drag 74 dragdir (1 0 0); 6

7 75 //Pitching moment axis 76 pitchaxis ( 0 0 1); 77 //Free stream velocity magnitude 78 maguinf 26; 79 //Reference length 80 lref 1; 81 //Reference area 82 Aref 1; 83 } 84 } - Save and close the controldict file 3 Processing 3.1 Run the case - Change back to the main folder of the case airfoil ** Which OpenFOAM solver should you run for this case? - Check the name of the solver in the application field of the controldict file in the system folder more system/controldict - Ctrl+C - Run the solver simplefoam 3.2 Check solution convergence - Open Gnuplot gnuplot - Plot the lift force coefficient plot./forces/0/forcecoeffs.dat using 1:3 w l Is the solution converged? It is crucial to ensure convergence of the numerical solution to the exact solution. The time evolution of the drag, lift, and moment coefficients can give such information. Initially, the values of the force coefficients will fluctuate, as a result of the fluctuation of the numerical solution. It is safe to say the solution has converged when the force coefficients have also converged and show a sustained behavior, e.g. reach a constant value, be periodic etc. However, these coefficients are defined globally and their convergence may not apply to all points of the domain; some points may be more likely to have greater variation 7

8 and need to be specified individually. - Exit gnuplot exit 3.3 Re-run the case - Open the controldict file in the system directory and set the endtime value to 500 (i.e. for longer time) - Re-run the case with simplefoam - Check solution convergence with Gnuplot (like before) Is the solution converged? 4 Post-processing 4.1 Visualize results - Open parafoam and load the case by selecting all the Mesh Parts and Volume Fields - Select Surface instead of Outline at the top of the GUI window - Pan and zoom on the airfoil and from the top-right of the GUI deselect Show Center - At the left side of the GUI, press Refresh Times - From top-left of the GUI, press the arrow adjacent to Solid Color and select p - From the top-far-left, turn the Color Legend visible - Press the adjacent button to edit the Color Map. Press Choose Preset and select HSV from Blue to Red. Press OK, Make Default, Close. - From the top-center of the GUI, press Play. - Change the field to U, then back to p again and press Play What are the pressure and velocity distributions around the airfoil? - Activate the Stream Tracer icon (eight button from the left, at the fourth row of options, or else from Filters > Alphabetical > Stream Tracer) - Slide the bar down in the Object Inspector field and under at the Seed Type replace Point Source with Line Source - Choose the following Point Point Resolution 21 - Press Apply - Select with the mouse the airfoil **.OpenFOAM in the Pipeline Browser - Activate the Slice icon (fourth button from the left, at the fourth row of options, or else from Filters > Alphabetical > Slice) and choose 8

9 Origin Normal Press Apply What is the streamline pattern around the airfoil? What is the pressure and velocity distribution? 4.2 Find the lift coefficient value - Close ParaView - Read the force coefficient file from the forcecoeffs.dat file within the forces/0/ directory What is the value of the lift force coefficient for this angle of attack? You need to get the converged mean value of the lift coefficient (the last value could do for this Lab, since variance is small). 4.3 Find the critical angle of attack - Create a file lift.dat (e.g. emacs lift.dat) and write in a column the angles of attack studied during this Lab (α from 0 o to 20 o degrees, by 2 o ) - Next to the value of α that you examined, add the value you found for the lift force coefficient - Fill the values of C L for the rest of α examined by the other groups during this Lab. E.g. for 0 o, C L is 0.369: Save, close the file and open Gnuplot - Plot the file you just created plot./lift.dat w l Which is the critical angle of attack for this airfoil?? 5 Conclusions In this Software Lab, the OpenFOAM, ParaView and Gnuplot open-source software were used to introduce some aspects of computational fluid dynamic analysis. The flow past an airfoil was considered and the influence of the angle of attack on the lift force coefficient was determined. This analysis may be relevant to identifying the performance characteristics of robotic systems and improving their design and control strategies. Further reading G.K. Batchelor, An Introduction to Fluid Dynamics, Cambridge University Press; D.J. Tritton, Physical Fluid Dynamics, Oxford University Press;

MSc/PhD course in CFD with OpenSource software, 2011

MSc/PhD course in CFD with OpenSource software, 2011 MSc/PhD course in CFD with OpenSource software, 2011 Implementation of lift and drag coefficinets in transient condition Developed for OpenFOAM-1.7-x Håkan Nilsson, Chalmers/ Applied Mechanics/ Fluid Dynamics

More information

Introduction to CFX. Workshop 2. Transonic Flow Over a NACA 0012 Airfoil. WS2-1. ANSYS, Inc. Proprietary 2009 ANSYS, Inc. All rights reserved.

Introduction to CFX. Workshop 2. Transonic Flow Over a NACA 0012 Airfoil. WS2-1. ANSYS, Inc. Proprietary 2009 ANSYS, Inc. All rights reserved. Workshop 2 Transonic Flow Over a NACA 0012 Airfoil. Introduction to CFX WS2-1 Goals The purpose of this tutorial is to introduce the user to modelling flow in high speed external aerodynamic applications.

More information

Modeling External Compressible Flow

Modeling External Compressible Flow Tutorial 3. Modeling External Compressible Flow Introduction The purpose of this tutorial is to compute the turbulent flow past a transonic airfoil at a nonzero angle of attack. You will use the Spalart-Allmaras

More information

Tutorial Turbulent Flow and Minor Loss through a Pipe Elbow, Page 1 Pointwise to OpenFOAM Tutorial Minor Losses through a Pipe Elbow

Tutorial Turbulent Flow and Minor Loss through a Pipe Elbow, Page 1 Pointwise to OpenFOAM Tutorial Minor Losses through a Pipe Elbow Tutorial Turbulent Flow and Minor Loss through a Pipe Elbow, Page 1 Pointwise to OpenFOAM Tutorial Minor Losses through a Pipe Elbow Introduction This tutorial provides instructions for meshing an internal

More information

Simulation of Turbulent Flow around an Airfoil

Simulation of Turbulent Flow around an Airfoil 1. Purpose Simulation of Turbulent Flow around an Airfoil ENGR:2510 Mechanics of Fluids and Transfer Processes CFD Lab 2 (ANSYS 17.1; Last Updated: Nov. 7, 2016) By Timur Dogan, Michael Conger, Andrew

More information

Simulation of Turbulent Flow around an Airfoil

Simulation of Turbulent Flow around an Airfoil Simulation of Turbulent Flow around an Airfoil ENGR:2510 Mechanics of Fluids and Transfer Processes CFD Pre-Lab 2 (ANSYS 17.1; Last Updated: Nov. 7, 2016) By Timur Dogan, Michael Conger, Andrew Opyd, Dong-Hwan

More information

Generic external aerodynamic simulation training

Generic external aerodynamic simulation training Generic dynamic simulation move-csc UG www. Inst. Scientific Computing, TU Braunschweig 25.06.2012 1 / 57 Table of contents 1 2 3 4 5 6 7 8 Post-processing 2 / 57 Aim Focus of the presentation to present

More information

AERODYNAMIC OPTIMIZATION OF REAR AND FRONT FLAPS ON A CAR

AERODYNAMIC OPTIMIZATION OF REAR AND FRONT FLAPS ON A CAR Student: Giannoni Alberto Professor: Ing. Jan Pralits, Advanced Fluid Dynamics Course Co-Professor: Ing. Matteo Colli AERODYNAMIC OPTIMIZATION OF REAR AND FRONT FLAPS ON A CAR ABSTRACT In this work we

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

Grid. Apr 09, 1998 FLUENT 5.0 (2d, segregated, lam) Grid. Jul 31, 1998 FLUENT 5.0 (2d, segregated, lam)

Grid. Apr 09, 1998 FLUENT 5.0 (2d, segregated, lam) Grid. Jul 31, 1998 FLUENT 5.0 (2d, segregated, lam) Tutorial 2. Around an Airfoil Transonic Turbulent Flow Introduction: The purpose of this tutorial is to compute the turbulent flow past a transonic airfoil at a non-zero angle of attack. You will use the

More information

OpenFOAM GUIDE FOR BEGINNERS

OpenFOAM GUIDE FOR BEGINNERS OpenFOAM GUIDE FOR BEGINNERS Authors This guide has been developed by: In association with: Pedro Javier Gamez and Gustavo Raush The Foam House Barcelona ETSEIAT-UPC June 2014 2 OPENFOAM GUIDE FOR BEGINNERS

More information

Fully turbulent flow around a sphere using OpenFOAM

Fully turbulent flow around a sphere using OpenFOAM Fully turbulent flow around a sphere using OpenFOAM In this tutorial you will simulate a fully turbulent flow with a Reynolds number of 1 million around a sphere with a radius of 1 m using a given CAD

More information

More tutorials. Håkan Nilsson, Chalmers/ Applied Mechanics/ Fluid Dynamics 67

More tutorials. Håkan Nilsson, Chalmers/ Applied Mechanics/ Fluid Dynamics 67 More tutorials Wewillnowlearnhowtousea(small)numberofusefulutilitiesandlibraries. Some of them are described in the UserGuide and ProgrammersGuide, and some ofthemhavebeendiscussedintheforum. Inyourhomeassignmentyouwillbeaskedtogothroughallthewrittentutorials

More information

Debojyoti Ghosh. Adviser: Dr. James Baeder Alfred Gessow Rotorcraft Center Department of Aerospace Engineering

Debojyoti Ghosh. Adviser: Dr. James Baeder Alfred Gessow Rotorcraft Center Department of Aerospace Engineering Debojyoti Ghosh Adviser: Dr. James Baeder Alfred Gessow Rotorcraft Center Department of Aerospace Engineering To study the Dynamic Stalling of rotor blade cross-sections Unsteady Aerodynamics: Time varying

More information

Modifying sixdofrigidbodymotion library to match eigenfrequency of a sprung rod with vortex shedding due to

Modifying sixdofrigidbodymotion library to match eigenfrequency of a sprung rod with vortex shedding due to CFD with OpenSource software A course at Chalmers University of Technology Taught by Håkan Nilsson Project work: Modifying sixdofrigidbodymotion library to match eigenfrequency of a sprung rod with vortex

More information

Team 194: Aerodynamic Study of Airflow around an Airfoil in the EGI Cloud

Team 194: Aerodynamic Study of Airflow around an Airfoil in the EGI Cloud Team 194: Aerodynamic Study of Airflow around an Airfoil in the EGI Cloud CFD Support s OpenFOAM and UberCloud Containers enable efficient, effective, and easy access and use of MEET THE TEAM End-User/CFD

More information

Workbench Tutorial Flow Over an Airfoil, Page 1 ANSYS Workbench Tutorial Flow Over an Airfoil

Workbench Tutorial Flow Over an Airfoil, Page 1 ANSYS Workbench Tutorial Flow Over an Airfoil Workbench Tutorial Flow Over an Airfoil, Page 1 ANSYS Workbench Tutorial Flow Over an Airfoil Authors: Scott Richards, Keith Martin, and John M. Cimbala, Penn State University Latest revision: 17 January

More information

Open Source Software Course: Assignment 1

Open Source Software Course: Assignment 1 Open Source Software Course: Assignment 1 Mengmeng Zhang Aeronautical and Vehicle Engineering, Royal Insistute of Technology (KTH), Stockholm, Sweden 2012-09-09 Mengmeng Zhang Open Source Software Course

More information

Verification and Validation of Turbulent Flow around a Clark-Y Airfoil

Verification and Validation of Turbulent Flow around a Clark-Y Airfoil 1 Verification and Validation of Turbulent Flow around a Clark-Y Airfoil 1. Purpose ME:5160 Intermediate Mechanics of Fluids CFD LAB 2 (ANSYS 19.1; Last Updated: Aug. 7, 2018) By Timur Dogan, Michael Conger,

More information

Introduction to the Computer Exercices Turbulence: Theory and Modelling R.Z. Szasz, Energy Sciences, LTH Lund University

Introduction to the Computer Exercices Turbulence: Theory and Modelling R.Z. Szasz, Energy Sciences, LTH Lund University Introduction to the Computer Exercices Turbulence: Theory and Modelling R.Z. Szasz, Energy Sciences, LTH Lund University Outline VERY short CFD introduction Steps of problem solving The software used:

More information

Notes on OpenFOAM cases. Daniel Duque Dep. Ciencias Aplicadas a la Ingeniería Naval ETSIN, UPM

Notes on OpenFOAM cases. Daniel Duque Dep. Ciencias Aplicadas a la Ingeniería Naval ETSIN, UPM Notes on OpenFOAM cases Daniel Duque Dep. Ciencias Aplicadas a la Ingeniería Naval ETSIN, UPM October 11, 2012 Contents 1 Setup 2 1.1 Installation............................ 2 1.2 Session setup...........................

More information

STAR-CCM+ User Guide 6922

STAR-CCM+ User Guide 6922 STAR-CCM+ User Guide 6922 Introduction Welcome to the STAR-CCM+ introductory tutorial. In this tutorial, you explore the important concepts and workflow. Complete this tutorial before attempting any others.

More information

Post-processing in parafoam. Håkan Nilsson, Chalmers / Applied Mechanics / Fluid Dynamics 57

Post-processing in parafoam. Håkan Nilsson, Chalmers / Applied Mechanics / Fluid Dynamics 57 Post-processing in parafoam Håkan Nilsson, Chalmers / Applied Mechanics / Fluid Dynamics 57 Post-processing in parafoam parafoam is the main post-processor distributed with OpenFOAM. As previously mentioned,

More information

Tutorial Ten Residence Time Distribution

Tutorial Ten Residence Time Distribution Residence Time Distribution 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

More information

2. Plane-parallel plates laminar

2. Plane-parallel plates laminar OPENFOAM GUIDE FOR BEGINNERS 2. Plane-parallel plates laminar flow 2.1 Description of the case This first tutorial studies the flow between two plane-parallel plates separated by a distance h so that their

More information

An Introduction to SolidWorks Flow Simulation 2010

An Introduction to SolidWorks Flow Simulation 2010 An Introduction to SolidWorks Flow Simulation 2010 John E. Matsson, Ph.D. SDC PUBLICATIONS www.sdcpublications.com Schroff Development Corporation Chapter 2 Flat Plate Boundary Layer Objectives Creating

More information

Strömningslära Fluid Dynamics. Computer laboratories using COMSOL v4.4

Strömningslära Fluid Dynamics. Computer laboratories using COMSOL v4.4 UMEÅ UNIVERSITY Department of Physics Claude Dion Olexii Iukhymenko May 15, 2015 Strömningslära Fluid Dynamics (5FY144) Computer laboratories using COMSOL v4.4!! Report requirements Computer labs must

More information

Analysis of an airfoil

Analysis of an airfoil UNDERGRADUATE RESEARCH FALL 2010 Analysis of an airfoil using Computational Fluid Dynamics Tanveer Chandok 12/17/2010 Independent research thesis at the Georgia Institute of Technology under the supervision

More information

AIR LOAD CALCULATION FOR ISTANBUL TECHNICAL UNIVERSITY (ITU), LIGHT COMMERCIAL HELICOPTER (LCH) DESIGN ABSTRACT

AIR LOAD CALCULATION FOR ISTANBUL TECHNICAL UNIVERSITY (ITU), LIGHT COMMERCIAL HELICOPTER (LCH) DESIGN ABSTRACT AIR LOAD CALCULATION FOR ISTANBUL TECHNICAL UNIVERSITY (ITU), LIGHT COMMERCIAL HELICOPTER (LCH) DESIGN Adeel Khalid *, Daniel P. Schrage + School of Aerospace Engineering, Georgia Institute of Technology

More information

OpenFOAM case: Mixing

OpenFOAM case: Mixing OpenFOAM case: Mixing nelson.marques@fsdynamics.pt; bruno.santos@fsdynamics.pt 30 th September 1 st October 2017 optim ises you rtec hnology 2 1 1. Case Description Overview Solver selection 2. Meshing

More information

How to Enter and Analyze a Wing

How to Enter and Analyze a Wing How to Enter and Analyze a Wing Entering the Wing The Stallion 3-D built-in geometry creation tool can be used to model wings and bodies of revolution. In this example, a simple rectangular wing is modeled

More information

Examples of how to use some utilities and functionobjects

Examples of how to use some utilities and functionobjects Examples of how to use some utilities and functionobjects (and some Gnuplot, Python, Matplotlib) Håkan Nilsson, Chalmers / Applied Mechanics / Fluid Dynamics 1 Some utilities and functionobjects We will

More information

The viscous forces on the cylinder are proportional to the gradient of the velocity field at the

The viscous forces on the cylinder are proportional to the gradient of the velocity field at the Fluid Dynamics Models : Flow Past a Cylinder Flow Past a Cylinder Introduction The flow of fluid behind a blunt body such as an automobile is difficult to compute due to the unsteady flows. The wake behind

More information

THE EFFECTS OF THE PLANFORM SHAPE ON DRAG POLAR CURVES OF WINGS: FLUID-STRUCTURE INTERACTION ANALYSES RESULTS

THE EFFECTS OF THE PLANFORM SHAPE ON DRAG POLAR CURVES OF WINGS: FLUID-STRUCTURE INTERACTION ANALYSES RESULTS March 18-20, 2013 THE EFFECTS OF THE PLANFORM SHAPE ON DRAG POLAR CURVES OF WINGS: FLUID-STRUCTURE INTERACTION ANALYSES RESULTS Authors: M.R. Chiarelli, M. Ciabattari, M. Cagnoni, G. Lombardi Speaker:

More information

Express Introductory Training in ANSYS Fluent Workshop 06 Using Moving Reference Frames and Sliding Meshes

Express Introductory Training in ANSYS Fluent Workshop 06 Using Moving Reference Frames and Sliding Meshes Express Introductory Training in ANSYS Fluent Workshop 06 Using Moving Reference Frames and Sliding Meshes Dimitrios Sofialidis Technical Manager, SimTec Ltd. Mechanical Engineer, PhD PRACE Autumn School

More information

ANSYS AIM Tutorial Turbulent Flow Over a Backward Facing Step

ANSYS AIM Tutorial Turbulent Flow Over a Backward Facing Step ANSYS AIM Tutorial Turbulent Flow Over a Backward Facing Step Author(s): Sebastian Vecchi, ANSYS Created using ANSYS AIM 18.1 Problem Specification Pre-Analysis & Start Up Governing Equation Start-Up Geometry

More information

Post-processing in parafoam (ParaView-5.0.1)

Post-processing in parafoam (ParaView-5.0.1) Post-processing in parafoam (ParaView-5.0.1) The 2018 installation instructions are for ParaView-5.4.1, and for the native/built-in reader. Differences will be pointed out. Note that in some cases there

More information

Verification and Validation of Turbulent Flow around a Clark-Y Airfoil

Verification and Validation of Turbulent Flow around a Clark-Y Airfoil Verification and Validation of Turbulent Flow around a Clark-Y Airfoil 1. Purpose 58:160 Intermediate Mechanics of Fluids CFD LAB 2 By Tao Xing and Fred Stern IIHR-Hydroscience & Engineering The University

More information

SolidWorks Flow Simulation 2014

SolidWorks Flow Simulation 2014 An Introduction to SolidWorks Flow Simulation 2014 John E. Matsson, Ph.D. SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the following websites

More information

Simulation of Laminar Pipe Flows

Simulation of Laminar Pipe Flows Simulation of Laminar Pipe Flows 57:020 Mechanics of Fluids and Transport Processes CFD PRELAB 1 By Timur Dogan, Michael Conger, Maysam Mousaviraad, Tao Xing and Fred Stern IIHR-Hydroscience & Engineering

More information

This tutorial illustrates how to set up and solve a problem involving solidification. This tutorial will demonstrate how to do the following:

This tutorial illustrates how to set up and solve a problem involving solidification. This tutorial will demonstrate how to do the following: Tutorial 22. Modeling Solidification Introduction This tutorial illustrates how to set up and solve a problem involving solidification. This tutorial will demonstrate how to do the following: Define a

More information

Isotropic Porous Media Tutorial

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

More information

Research and Design working characteristics of orthogonal turbine Nguyen Quoc Tuan (1), Chu Dinh Do (2), Quach Thi Son (2)

Research and Design working characteristics of orthogonal turbine Nguyen Quoc Tuan (1), Chu Dinh Do (2), Quach Thi Son (2) GSJ: VOLUME 6, ISSUE 6, JUNE 018 116 Research and Design working characteristics of orthogonal turbine Nguyen Quoc Tuan (1), Chu Dinh Do (), Quach Thi Son () (1) Institute for hydro power and renewable

More information

Simulation of Flow Development in a Pipe

Simulation of Flow Development in a Pipe Tutorial 4. Simulation of Flow Development in a Pipe Introduction The purpose of this tutorial is to illustrate the setup and solution of a 3D turbulent fluid flow in a pipe. The pipe networks are common

More information

CFD Analysis of conceptual Aircraft body

CFD Analysis of conceptual Aircraft body CFD Analysis of conceptual Aircraft body Manikantissar 1, Dr.Ankur geete 2 1 M. Tech scholar in Mechanical Engineering, SD Bansal college of technology, Indore, M.P, India 2 Associate professor in Mechanical

More information

NUMERICAL 3D TRANSONIC FLOW SIMULATION OVER A WING

NUMERICAL 3D TRANSONIC FLOW SIMULATION OVER A WING Review of the Air Force Academy No.3 (35)/2017 NUMERICAL 3D TRANSONIC FLOW SIMULATION OVER A WING Cvetelina VELKOVA Department of Technical Mechanics, Naval Academy Nikola Vaptsarov,Varna, Bulgaria (cvetelina.velkova1985@gmail.com)

More information

Aerodynamic Analysis of Forward Swept Wing Using Prandtl-D Wing Concept

Aerodynamic Analysis of Forward Swept Wing Using Prandtl-D Wing Concept Aerodynamic Analysis of Forward Swept Wing Using Prandtl-D Wing Concept Srinath R 1, Sahana D S 2 1 Assistant Professor, Mangalore Institute of Technology and Engineering, Moodabidri-574225, India 2 Assistant

More information

Tutorial 1. Introduction to Using FLUENT: Fluid Flow and Heat Transfer in a Mixing Elbow

Tutorial 1. Introduction to Using FLUENT: Fluid Flow and Heat Transfer in a Mixing Elbow Tutorial 1. Introduction to Using FLUENT: Fluid Flow and Heat Transfer in a Mixing Elbow Introduction This tutorial illustrates the setup and solution of the two-dimensional turbulent fluid flow and heat

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

ANSYS FLUENT. Airfoil Analysis and Tutorial

ANSYS FLUENT. Airfoil Analysis and Tutorial ANSYS FLUENT Airfoil Analysis and Tutorial ENGR083: Fluid Mechanics II Terry Yu 5/11/2017 Abstract The NACA 0012 airfoil was one of the earliest airfoils created. Its mathematically simple shape and age

More information

Computational Study of Laminar Flowfield around a Square Cylinder using Ansys Fluent

Computational Study of Laminar Flowfield around a Square Cylinder using Ansys Fluent MEGR 7090-003, Computational Fluid Dynamics :1 7 Spring 2015 Computational Study of Laminar Flowfield around a Square Cylinder using Ansys Fluent Rahul R Upadhyay Master of Science, Dept of Mechanical

More information

Subsonic Airfoils. W.H. Mason Configuration Aerodynamics Class

Subsonic Airfoils. W.H. Mason Configuration Aerodynamics Class Subsonic Airfoils W.H. Mason Configuration Aerodynamics Class Typical Subsonic Methods: Panel Methods For subsonic inviscid flow, the flowfield can be found by solving an integral equation for the potential

More information

MATH 573 Advanced Scientific Computing

MATH 573 Advanced Scientific Computing MATH 573 Advanced Scientific Computing Analysis of an Airfoil using Cubic Splines Ashley Wood Brian Song Ravindra Asitha What is Airfoil? - The cross-section of the wing, blade, or sail. 1. Thrust 2. Weight

More information

Estimating Vertical Drag on Helicopter Fuselage during Hovering

Estimating Vertical Drag on Helicopter Fuselage during Hovering Estimating Vertical Drag on Helicopter Fuselage during Hovering A. A. Wahab * and M.Hafiz Ismail ** Aeronautical & Automotive Dept., Faculty of Mechanical Engineering, Universiti Teknologi Malaysia, 81310

More information

Force based motion of a submerged object using immersed boundary method

Force based motion of a submerged object using immersed boundary method Cite as: Siggeirsson, E.M.V.: Force based motion of a submerged object using immersed boundary metod. In Proceedings of CFD with OpenSource Software, 2016, http://www.tfd.chalmers.se/~hani/kurser/os_cfd_2016

More information

Aerodynamic Study of a Realistic Car W. TOUGERON

Aerodynamic Study of a Realistic Car W. TOUGERON Aerodynamic Study of a Realistic Car W. TOUGERON Tougeron CFD Engineer 2016 Abstract This document presents an aerodynamic CFD study of a realistic car geometry. The aim is to demonstrate the efficiency

More information

A simple validation case Hagen-Poiseuille solution

A simple validation case Hagen-Poiseuille solution Hagen-Poiseuille solution Re = 100 Incompressible flow Physical and numerical side of the problem: The governing equations of the problem are the incompressible laminar Navier-Stokes equations. We are

More information

SPC 307 Aerodynamics. Lecture 1. February 10, 2018

SPC 307 Aerodynamics. Lecture 1. February 10, 2018 SPC 307 Aerodynamics Lecture 1 February 10, 2018 Sep. 18, 2016 1 Course Materials drahmednagib.com 2 COURSE OUTLINE Introduction to Aerodynamics Review on the Fundamentals of Fluid Mechanics Euler and

More information

µ = Pa s m 3 The Reynolds number based on hydraulic diameter, D h = 2W h/(w + h) = 3.2 mm for the main inlet duct is = 359

µ = Pa s m 3 The Reynolds number based on hydraulic diameter, D h = 2W h/(w + h) = 3.2 mm for the main inlet duct is = 359 Laminar Mixer Tutorial for STAR-CCM+ ME 448/548 March 30, 2014 Gerald Recktenwald gerry@pdx.edu 1 Overview Imagine that you are part of a team developing a medical diagnostic device. The device has a millimeter

More information

Appendix: To be performed during the lab session

Appendix: To be performed during the lab session Appendix: To be performed during the lab session Flow over a Cylinder Two Dimensional Case Using ANSYS Workbench Simple Mesh Latest revision: September 18, 2014 The primary objective of this Tutorial is

More information

Computational Fluid Dynamics Analysis of an Idealized Modern Wingsuit

Computational Fluid Dynamics Analysis of an Idealized Modern Wingsuit Washington University in St. Louis Washington University Open Scholarship Mechanical Engineering and Materials Science Independent Study Mechanical Engineering & Materials Science 12-21-2016 Computational

More information

Data analysis with ParaView CSMP Workshop 2009 Gillian Gruen

Data analysis with ParaView CSMP Workshop 2009 Gillian Gruen Data analysis with ParaView 3.4.0 CSMP Workshop 2009 Gillian Gruen How to...... display a data set ( Contour, Glyph, Clip, Slice) be efficient in displaying similar data sets ( work with Lookmarks )...

More information

Using the Discrete Ordinates Radiation Model

Using the Discrete Ordinates Radiation Model Tutorial 6. Using the Discrete Ordinates Radiation Model Introduction This tutorial illustrates the set up and solution of flow and thermal modelling of a headlamp. The discrete ordinates (DO) radiation

More information

Modeling Evaporating Liquid Spray

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

More information

NaysEddy ver 1.0. Example MANUAL. By: Mohamed Nabi, Ph.D. Copyright 2014 iric Project. All Rights Reserved.

NaysEddy ver 1.0. Example MANUAL. By: Mohamed Nabi, Ph.D. Copyright 2014 iric Project. All Rights Reserved. NaysEddy ver 1.0 Example MANUAL By: Mohamed Nabi, Ph.D. Copyright 2014 iric Project. All Rights Reserved. Contents Introduction... 3 Getting started... 4 Simulation of flow over dunes... 6 1. Purpose of

More information

F1 in Schools Car Design Simulation Tutorial

F1 in Schools Car Design Simulation Tutorial F1 in Schools Car Design Simulation Tutorial Abstract: Gain basic understanding of simulation to quickly gain insight on the performance for drag on an F1 car. 1 P a g e Table of Contents Getting Started

More information

Simulation of Turbulent Flow over the Ahmed Body

Simulation of Turbulent Flow over the Ahmed Body 1 Simulation of Turbulent Flow over the Ahmed Body ME:5160 Intermediate Mechanics of Fluids CFD LAB 4 (ANSYS 18.1; Last Updated: Aug. 18, 2016) By Timur Dogan, Michael Conger, Dong-Hwan Kim, Maysam Mousaviraad,

More information

Simulation of Turbulent Flow in an Asymmetric Diffuser

Simulation of Turbulent Flow in an Asymmetric Diffuser Simulation of Turbulent Flow in an Asymmetric Diffuser 1. Purpose 58:160 Intermediate Mechanics of Fluids CFD LAB 3 By Tao Xing and Fred Stern IIHR-Hydroscience & Engineering The University of Iowa C.

More information

Simulation and Validation of Turbulent Pipe Flows

Simulation and Validation of Turbulent Pipe Flows Simulation and Validation of Turbulent Pipe Flows ENGR:2510 Mechanics of Fluids and Transport Processes CFD LAB 1 (ANSYS 17.1; Last Updated: Oct. 10, 2016) By Timur Dogan, Michael Conger, Dong-Hwan Kim,

More information

Tutorial 2. Modeling Periodic Flow and Heat Transfer

Tutorial 2. Modeling Periodic Flow and Heat Transfer Tutorial 2. Modeling Periodic Flow and Heat Transfer Introduction: Many industrial applications, such as steam generation in a boiler or air cooling in the coil of an air conditioner, can be modeled as

More information

Shock Wave Reduction via Wing-Strut Geometry Design

Shock Wave Reduction via Wing-Strut Geometry Design Shock Wave Reduction via Wing-Strut Geometry Design Runze LI, Wei NIU, Haixin CHEN School of Aerospace Engineering Beijing 84, China PADRI, Barcelona (Spain) 27..29 SHORT VERSION Shock Wave Reduction via

More information

CFD Study of a Darreous Vertical Axis Wind Turbine

CFD Study of a Darreous Vertical Axis Wind Turbine CFD Study of a Darreous Vertical Axis Wind Turbine Md Nahid Pervez a and Wael Mokhtar b a Graduate Assistant b PhD. Assistant Professor Grand Valley State University, Grand Rapids, MI 49504 E-mail:, mokhtarw@gvsu.edu

More information

Lab 9: FLUENT: Transient Natural Convection Between Concentric Cylinders

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

More information

ANSYS AIM Tutorial Fluid Flow Through a Transition Duct

ANSYS AIM Tutorial Fluid Flow Through a Transition Duct ANSYS AIM Tutorial Fluid Flow Through a Transition Duct Author(s): Sebastian Vecchi, ANSYS Created using ANSYS AIM 18.1 Problem Specification Start Up Geometry Import Geometry Extracting Volume Suppress

More information

Supersonic Flow Over a Wedge

Supersonic Flow Over a Wedge SPC 407 Supersonic & Hypersonic Fluid Dynamics Ansys Fluent Tutorial 2 Supersonic Flow Over a Wedge Ahmed M Nagib Elmekawy, PhD, P.E. Problem Specification A uniform supersonic stream encounters a wedge

More information

Computational Simulation of the Wind-force on Metal Meshes

Computational Simulation of the Wind-force on Metal Meshes 16 th Australasian Fluid Mechanics Conference Crown Plaza, Gold Coast, Australia 2-7 December 2007 Computational Simulation of the Wind-force on Metal Meshes Ahmad Sharifian & David R. Buttsworth Faculty

More information

Terminal Falling Velocity of a Sand Grain

Terminal Falling Velocity of a Sand Grain Terminal Falling Velocity of a Sand Grain Introduction The first stop for polluted water entering a water work is normally a large tank, where large particles are left to settle. More generally, gravity

More information

Creating T-Spline Forms

Creating T-Spline Forms 1 / 28 Goals 1. Create a T-Spline Primitive Form 2. Create a T-Spline Revolve Form 3. Create a T-Spline Sweep Form 4. Create a T-Spline Loft Form 2 / 28 Instructions Step 1: Go to the Sculpt workspace

More information

Flow Sim. Chapter 16. Airplane. A. Add-In. Step 1. If necessary, open your ASSEMBLY file.

Flow Sim. Chapter 16. Airplane. A. Add-In. Step 1. If necessary, open your ASSEMBLY file. Chapter 16 A. Add-In. Step 1. If necessary, open your ASSEMBLY file. Airplane Flow Sim Step 2. Click Tools Menu > Add-Ins. Step 3. In the dialog box, scroll down to Flow Simulation and place a check in

More information

A B C D E. Settings Choose height, H, free stream velocity, U, and fluid (dynamic viscosity and density ) so that: Reynolds number

A B C D E. Settings Choose height, H, free stream velocity, U, and fluid (dynamic viscosity and density ) so that: Reynolds number Individual task Objective To derive the drag coefficient for a 2D object, defined as where D (N/m) is the aerodynamic drag force (per unit length in the third direction) acting on the object. The object

More information

FLUENT Secondary flow in a teacup Author: John M. Cimbala, Penn State University Latest revision: 26 January 2016

FLUENT Secondary flow in a teacup Author: John M. Cimbala, Penn State University Latest revision: 26 January 2016 FLUENT Secondary flow in a teacup Author: John M. Cimbala, Penn State University Latest revision: 26 January 2016 Note: These instructions are based on an older version of FLUENT, and some of the instructions

More information

Workshop 15. Single Pass Rolling of a Thick Plate

Workshop 15. Single Pass Rolling of a Thick Plate Introduction Workshop 15 Single Pass Rolling of a Thick Plate Rolling is a basic manufacturing technique used to transform preformed shapes into a form suitable for further processing. The rolling process

More information

Introduction to fluid mechanics simulation using the OpenFOAM technology

Introduction to fluid mechanics simulation using the OpenFOAM technology Introduction to fluid mechanics simulation using the OpenFOAM technology «Simulation in porous media from pore to large scale» Part II: Mesh complex geometries, application to the evaluation of permeability,

More information

8. BASIC TURBO MODEL WITH UNSTRUCTURED MESH

8. BASIC TURBO MODEL WITH UNSTRUCTURED MESH 8. BASIC TURBO MODEL WITH UNSTRUCTURED MESH This tutorial employs a simple turbine blade configuration to illustrate the basic turbo modeling functionality available in GAMBIT. It illustrates the steps

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

Workbench Tutorial Minor Losses, Page 1 Tutorial Minor Losses using Pointwise and FLUENT

Workbench Tutorial Minor Losses, Page 1 Tutorial Minor Losses using Pointwise and FLUENT Workbench Tutorial Minor Losses, Page 1 Tutorial Minor Losses using Pointwise and FLUENT Introduction This tutorial provides instructions for meshing two internal flows. Pointwise software will be used

More information

Estimation of Flow Field & Drag for Aerofoil Wing

Estimation of Flow Field & Drag for Aerofoil Wing Estimation of Flow Field & Drag for Aerofoil Wing Mahantesh. HM 1, Prof. Anand. SN 2 P.G. Student, Dept. of Mechanical Engineering, East Point College of Engineering, Bangalore, Karnataka, India 1 Associate

More information

Application of Wray-Agarwal Turbulence Model for Accurate Numerical Simulation of Flow Past a Three-Dimensional Wing-body

Application of Wray-Agarwal Turbulence Model for Accurate Numerical Simulation of Flow Past a Three-Dimensional Wing-body Washington University in St. Louis Washington University Open Scholarship Mechanical Engineering and Materials Science Independent Study Mechanical Engineering & Materials Science 4-28-2016 Application

More information

Flow Sim. Chapter 14 P-51. A. Set Up. B. Create Flow Simulation Project. Step 1. Click Flow Simulation. SolidWorks 10 Flow Sim P-51 Page 14-1

Flow Sim. Chapter 14 P-51. A. Set Up. B. Create Flow Simulation Project. Step 1. Click Flow Simulation. SolidWorks 10 Flow Sim P-51 Page 14-1 Chapter 14 A. Set Up. P-51 Flow Sim Step 1. If necessary, open your ASSEMBLY file. Step 2. Click Tools Menu > Add-Ins. Step 3. In the dialog box, scroll down to Flow Simulation and place a check in the

More information

Express Introductory Training in ANSYS Fluent Workshop 04 Fluid Flow Around the NACA0012 Airfoil

Express Introductory Training in ANSYS Fluent Workshop 04 Fluid Flow Around the NACA0012 Airfoil Express Introductory Training in ANSYS Fluent Workshop 04 Fluid Flow Around the NACA0012 Airfoil Dimitrios Sofialidis Technical Manager, SimTec Ltd. Mechanical Engineer, PhD PRACE Autumn School 2013 -

More information

Middle East Technical University Mechanical Engineering Department ME 485 CFD with Finite Volume Method Fall 2017 (Dr. Sert)

Middle East Technical University Mechanical Engineering Department ME 485 CFD with Finite Volume Method Fall 2017 (Dr. Sert) Middle East Technical University Mechanical Engineering Department ME 485 CFD with Finite Volume Method Fall 2017 (Dr. Sert) ANSYS Fluent Tutorial Developing Laminar Flow in a 2D Channel 1 How to use This

More information

SimCafe. ANSYS WB - Airfoil - Setup (Physics) Added by Benjamin J Mullen, last edited by Benjamin J Mullen on Apr 29, :18

SimCafe. ANSYS WB - Airfoil - Setup (Physics) Added by Benjamin J Mullen, last edited by Benjamin J Mullen on Apr 29, :18 Page 1 of 5 Search Cornell SimCafe Home Edit Browse/Manage Login Simulation > > ANSYS WB - Airfoil - Setup (Physics) Search ANSYS WB - Airfoil - Setup (Physics) Added by Benjamin J Mullen, last edited

More information

Backward facing step Homework. Department of Fluid Mechanics. For Personal Use. Budapest University of Technology and Economics. Budapest, 2010 autumn

Backward facing step Homework. Department of Fluid Mechanics. For Personal Use. Budapest University of Technology and Economics. Budapest, 2010 autumn Backward facing step Homework Department of Fluid Mechanics Budapest University of Technology and Economics Budapest, 2010 autumn Updated: October 26, 2010 CONTENTS i Contents 1 Introduction 1 2 The problem

More information

Step-by-step guide for the modeling of a simple geometry and solving for its electric field with CAELinux

Step-by-step guide for the modeling of a simple geometry and solving for its electric field with CAELinux Step-by-step guide for the modeling of a simple geometry and solving for its electric field with CAELinux 1 Introduction What is CAELinux? CAELinux is a Linux distribution intended to provide a fully functional

More information

Flow and Heat Transfer in a Mixing Elbow

Flow and Heat Transfer in a Mixing Elbow Flow and Heat Transfer in a Mixing Elbow Objectives The main objectives of the project are to learn (i) how to set up and perform flow simulations with heat transfer and mixing, (ii) post-processing and

More information

Post Stall Behavior of a Lifting Line Algorithm

Post Stall Behavior of a Lifting Line Algorithm Post Stall Behavior of a Lifting Line Algorithm Douglas Hunsaker Brigham Young University Abstract A modified lifting line algorithm is considered as a low-cost approach for calculating lift characteristics

More information

Modeling Evaporating Liquid Spray

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

More information

RhinoCFD Tutorial. Flow Past a Sphere

RhinoCFD Tutorial. Flow Past a Sphere RhinoCFD Tutorial Flow Past a Sphere RhinoCFD Ocial document produced by CHAM September 26, 2017 Introduction Flow Past a Sphere This tutorial will describe a simple calculation of ow around a sphere and

More information

Using the Eulerian Multiphase Model for Granular Flow

Using the Eulerian Multiphase Model for Granular Flow Tutorial 21. Using the Eulerian Multiphase Model for Granular Flow Introduction Mixing tanks are used to maintain solid particles or droplets of heavy fluids in suspension. Mixing may be required to enhance

More information

Module D: Laminar Flow over a Flat Plate

Module D: Laminar Flow over a Flat Plate Module D: Laminar Flow over a Flat Plate Summary... Problem Statement Geometry and Mesh Creation Problem Setup Solution. Results Validation......... Mesh Refinement.. Summary This ANSYS FLUENT tutorial

More information