Implementation of an Alternate Chemistry Library into OpenFOAM TM

Size: px
Start display at page:

Download "Implementation of an Alternate Chemistry Library into OpenFOAM TM"

Transcription

1 of an Alternate Chemistry Library into OpenFOAM TM Bernhard F.W. Gschaider 1 Markus Rehm 2 Peter Seifert 2 Bernd Meyer 2 1 ICE Strömungsforschung Leoben, Austria 2 Institute of Energy Process Enineering and Chemical Engineering, TU Bergakademie Freiberg, Germany Open Source CFD International Conference 4th/5th December bgschaid, mrehm alternatechemistrylibrary 1/47

2 Outline 1 Introduction/Motivation Current status Cantera Desired behaviour 2 Alternate Chemistry Library Transient Solver Steady Solver Other topics 3 Transient PFR Steady-state PFR 4 Results HM1 Discussion HM1 5 Summary Availibility Outlook/Future Work Acknowledgements bgschaid, mrehm alternatechemistrylibrary 2/47

3 The chemistrymodel-class Current status Cantera Desired behaviour Part of the OpenFOAM TM -distribution Solves a set of chemical reactions and returns a reaction-rate Used in the solvers dieselfoam and reactingfoam Chemical reactions can be specified in two formats: A generic OpenFOAM TM -format (allows the inclusion of non-standard reaction rates) The Chemkin TM -format which is very Fortran Both formats are converted to the same internal representation... and are solved using a number of different solvers bgschaid, mrehm alternatechemistrylibrary 3/47

4 Cantera Introduction/Motivation Current status Cantera Desired behaviour Cantera [1] is a open-source chemical kinetics package Very flexible and easy to handle Important functions for chemical species, (heterogeneous) kinetics, equilibrium, transport, diffusion, heat conduction are available and efficiently implemented Kernel written in C++; accessible via Python, Matlab, Fortran and of course C/C++ Good Chemkin TM -Lexer A set of ideal reactors is available Uses the CVODE-Solver of the Sundials Suite [2] for integration of the ODEs. bgschaid, mrehm alternatechemistrylibrary 4/47

5 Goals of this work Current status Cantera Desired behaviour As mentioned in the Milan presentation [3], Cantera would be benefitial for the development of solvers for reacting flows: Flexible exchange of chemistry engines without the necessity to change the solver Easy access to thermochemical functions Better stability (JANAF-error) Stationary chemistry solver bgschaid, mrehm alternatechemistrylibrary 5/47

6 Alternate Chemistry Library Transient Solver Steady Solver Other topics The Alternate Chemistry Library A Library that provides a framework for adding further chemistry solvers Should require only minimal changes to existing solvers Solvers should be implementation-agnostic (by using the RunTime-selection mechanism) This is achieved by replacing the chemistrymodel object (usually called chemistry) in the solvers with a autoptr<alternatechemistrymodel> Direct subclassing of chemistrymodel is not possible because necessary properties are private Usually every call chemistry.xxxx() is replaced by a chemistry().xxxx() bgschaid, mrehm alternatechemistrylibrary 6/47

7 Interface Introduction/Motivation Alternate Chemistry Library Transient Solver Steady Solver Other topics Only a small part of the original chemistrymodel-interface is needed by the solvers: solve Solve the reaction system RR Access the reaction rates tc Access the chemical time-scale Only these have to be implemented by a new chemical solver class In addition to these the methods calcdq for the calculation of dq tf Access the flow time-scale (described later) were added to the interface bgschaid, mrehm alternatechemistrylibrary 7/47

8 chemistrymodelproxy Alternate Chemistry Library Transient Solver Steady Solver Other topics Provides access to the functionality of the original chemistrymodel-class Has a private chemistrymodel-object Calls are passed through to the chemistrymodel-object solve() and tc() calcdq() implemented after example from original solvers With this chemistry model implementation the solver is equivalent to the original reactingfoam bgschaid, mrehm alternatechemistrylibrary 8/47

9 The Cantera-model Alternate Chemistry Library Transient Solver Steady Solver Other topics Implements interface to the Cantera-package Requires the thermotype to be a hmixturethermo<canteramixture> Instead of the usual hmixturethermo<reactingmixture> Currently required to have consistent calculations of the mixture and the chemistry Calculation of thermophysical properties is done in CanteraThermo a wrapper to the Cantera-class IdealGasMix Reactions are read from a cti-file (Cantera Input) Also the thermophysical data of the species. Thus the requirement on the thermotype Calculations in solve() are done via the Reactor/ReactorNet-classes of Cantera Solution of the ODEs is done via CVODE bgschaid, mrehm alternatechemistrylibrary 9/47

10 Class overwiew Alternate Chemistry Library Transient Solver Steady Solver Other topics bgschaid, mrehm alternatechemistrylibrary 1/47

11 alternatereactingfoam Alternate Chemistry Library Transient Solver Steady Solver Other topics Solver almost unchanged. Basis: reactingfoam. Remember the Chalmers PaSR-Model for turbulent combustion: κ = dt + tc dt + tc + tk Where tc is the chemical time scale and tk is the turbulent time scale. of tc()-method for the Cantera calculation necessary. For the Cantera solver no ODE solver from OF necessary (choice of the ODE solver in chemistryproperties doesn t have any effect). (1) bgschaid, mrehm alternatechemistrylibrary 11/47

12 alternatesteadyreactingfoam Alternate Chemistry Library Transient Solver Steady Solver Other topics Steady solvers are a must when simulating large-scale chemical reactors or burners. Necessary changes from the transient case: Usage of the SIMPLE-algorithm for p-u-coupling Coupling of chemistry to the flow-time Stabilization of the solution by reduction of κ if Yi old Yi new is too large (only at start-up!) bgschaid, mrehm alternatechemistrylibrary 12/47

13 Flow time scale Alternate Chemistry Library Transient Solver Steady Solver Other topics In unsteady calculations Co< 1 and integration time equals dt. For steady-state solvers Co>>1. So we limit the integration time by the residence time in the cell i: and hence we substitute dt in (1) by df : tf i = D i U i (2) κ = tf + tc tf + tc + tk We define the flow time scale tf. (3) bgschaid, mrehm alternatechemistrylibrary 13/47

14 CVODE Introduction/Motivation Alternate Chemistry Library Transient Solver Steady Solver Other topics An OF library that makes use of the CVODE-Solver of the Sundials Suite [2] was written. bgschaid, mrehm alternatechemistrylibrary 14/47

15 Transient PFR Steady-state PFR Plug flow reactor (PFR) test case Simple test case, which is easily comparable to ideal PFR models as available in CHEMKIN TM or Cantera: Ignitable premixed composition at inlet: Y H2 =.9, Y O2 =.26, Y Ar =.965, T = 16 K, p = 1 bar Tube idealized as 2D-domain x max = 1 m, y max =.1 m, 1x1 cells, inlet left patch, outlet right patch, upper and lower patch symmetry H 2 O 2 mechanism with 9 species and 27 reactions bgschaid, mrehm alternatechemistrylibrary 15/47

16 PFR alternatereactingfoam Transient PFR Steady-state PFR For the transient simulations we were interested in Behaviour of the Cantera chemistry library Choice of ODE solvers and their performance All plots were done along the x direction. The ideal Solution was obtained by calculating the time into a position with U and ρ. bgschaid, mrehm alternatechemistrylibrary 16/47

17 Transient PFR Steady-state PFR PFR alternatereactingfoam ODE-solvers (T) ODESIBS: ODE SIBS; EI: Euler Implicit; CV: CVODE T [K] CANTERA ideal PFR OF_UPFR_ODESIBS OF_UPFR_EI OF_UPFR_CV_Co=.5 CAN_UPFR x [m] bgschaid, mrehm alternatechemistrylibrary 17/47

18 Transient PFR Steady-state PFR PFR alternatereactingfoam ODE CPUTime 1 8 OF_UPFR_ODESIBS OF_UPFR_EI OF_UPFR_CV OF_UPFR_CVJ_Co=.5 CAN_UPFR CPU time [s] Simulation time [s] bgschaid, mrehm alternatechemistrylibrary 18/47

19 Transient PFR Steady-state PFR PFR alternatereactingfoam Summary Transient PFR results: With implementation of Cantera chemistry and tc() results for both chemistry engines give identical results for PFR. ODE SIBS results deviate sligtly from the others (EI, CV) (due to semi-impliciteness?) CVODE more stable than SIBS, EI but sometimes slower CVODE benefits from larger integration steps (internal time-stepping). So use higher Co, if results aren t affected. Compared to ideal reactor solvers are faster and there is a temperature difference of 5 K. Possibly induced by discretisation errors or idealisation. bgschaid, mrehm alternatechemistrylibrary 19/47

20 Transient PFR Steady-state PFR PFR alternatesteadyreactingfoam The following aspects for the runs of the steady-state simulations are of particular interest: A Performance and stability of the steady-state implementation in relation to transient case and the ideal case. B Influence of the implementation of κ C Influence of Cmix Plots are similar to the transient ones but scaling was changed. bgschaid, mrehm alternatechemistrylibrary 2/47

21 Transient PFR Steady-state PFR PFR alternatesteadyreactingfoam (T) A Transient vs. steady T [K] CHEMKIN ideal PFR OF_UPFRT_CV 17 CAN_UPFRT CAN_UPFR_refine CAN_SPFRT OF_SPFRT_CV CAN_SPFRT_refine x [m] bgschaid, mrehm alternatechemistrylibrary 21/47

22 Transient PFR Steady-state PFR PFR alternatesteadyreactingfoam (H2) A Transient vs. steady CHEMKIN ideal PFR OF_UPFRT_CV CAN_UPFRT CAN_UPFR_refine CAN_SPFRT OF_SPFRT_CV CAN_SPFRT_refine.85 yh2 [kg/kg] x [m] bgschaid, mrehm alternatechemistrylibrary 22/47

23 Transient PFR Steady-state PFR PFR alternatesteadyreactingfoam (T) B Influence of κ T [K] CHEMKIN ideal PFR CAN_UPFR_refine CAN_SPFRT_kappa1_refine CAN_SPFRT_kappa2_refine x [m] bgschaid, mrehm alternatechemistrylibrary 23/47

24 Transient PFR Steady-state PFR PFR alternatesteadyreactingfoam (H2) B Influence of κ.1.95 CHEMKIN ideal PFR CAN_UPFR_refine CAN_SPFRT_refine CAN_SPFR_kappaNeu_refine.9.85 yh2 [kg/kg] x [m] bgschaid, mrehm alternatechemistrylibrary 24/47

25 Transient PFR Steady-state PFR PFR alternatesteadyreactingfoam (T) C Influence of Cmix T [K] CHEMKIN ideal PFR CAN_UPFR_refine 17 CAN_UPFR_refine_Cmix1 CAN_SPFR_kappa1_refine CAN_SPFR_kappa1_refine_Cmix=1 CAN_SPFR_kappa2_refine CAN_SPFR_kappa2_refine_Cmix= x [m] bgschaid, mrehm alternatechemistrylibrary 25/47

26 Transient PFR Steady-state PFR PFR alternatesteadyreactingfoam (H2) C Influence of Cmix yh2 [kg/gk] CHEMKIN ideal PFR CAN_UPFR_refine CAN_UPFR_refine_Cmix1 CAN_SPFR_kappa1_refine.55 CAN_SPFR_kappa1_refine_Cmix=1 CAN_SPFR_kappa2_refine CAN_SPFR_kappa2_refine_Cmix= x [m] bgschaid, mrehm alternatechemistrylibrary 26/47

27 Transient PFR Steady-state PFR PFR alternatesteadyreactingfoam (OH) C Influence of Cmix CHEMKIN ideal PFR CAN_UPFR_refine CAN_UPFR_refine_Cmix1 CAN_SPFR_kappa1_refine CAN_SPFR_kappa1_refine_Cmix=1 CAN_SPFR_kappa2_refine CAN_SPFR_kappa2_refine_Cmix=1.5 yh2 [kg/gk] x [m] bgschaid, mrehm alternatechemistrylibrary 27/47

28 PFR Steady Summary Transient PFR Steady-state PFR A: Transient/Steady solutions do not agree totally but refinement reduces deviation B+C: Definition of new κ according to (3) brings no changes for small values of Cmix. But for Cmix=1 the solution seems closer to ideal solution. However, no clear conclusion could be drawn. bgschaid, mrehm alternatechemistrylibrary 28/47

29 Results HM1 Discussion HM1 Sydney Bluff-body Flame (HM1) Data from Sandia bluff-body flame HM1 conducted at Sydney university [4]. bgschaid, mrehm alternatechemistrylibrary 29/47

30 HM1 case set-up Results HM1 Discussion HM1 Wall (slip) Pressure outlet Bluff-body walls Air Inlet Fuel Inlet Symmetry axis bgschaid, mrehm alternatechemistrylibrary 3/47

31 HM1 set-up Introduction/Motivation Results HM1 Discussion HM1 Boundary Conditions: Diameters: D jet = 3.6mm; D channel = 15mm (3mm), D bluffbody = 5mm Turbulence:8.5 % (2.5%) turbulence intensity,.135 mm (5.625 mm) mixing length for jet (co-flow) Mesh: from blockmesh with 195 Inlet conditions: HM1: U jet = 118m/s U coflow = 4m/s Other models: k ɛ turbulence model, ATRMech (reduced GRI 3.) OF used KRR4 ODE solver for chemistry bgschaid, mrehm alternatechemistrylibrary 31/47

32 Results HM1 Discussion HM1 HM1 Plots & Points of Measurement Plots of radius against measurement values (Exp HM1) at different x-positions are shown together with simulation results. EDC referes to the EDCSimpleFoam solver [3]. CAN and OF mark Cantera- and OpenFOAM TM -solution K1 and K2 stands for κ 1 and κ 2 bgschaid, mrehm alternatechemistrylibrary 32/47

33 Results HM1 Discussion HM1 HM1 Plots & Points of Measurement bgschaid, mrehm alternatechemistrylibrary 33/47

34 HM1 results T Results HM1 Discussion HM1 T [K] x/d_b=.26 (13mm) x/d_b=.6 (3mm) x/d_b=.9 (45mm) T [K] x/d_b=1.3 (65mm) x/d_b=2.4 (12mm) Legend 1) Exp HM1 2) EDC 3) CAN K1 4) CAN K2 5) OF K2 bgschaid, mrehm alternatechemistrylibrary 34/47

35 HM1 results H2 Results HM1 Discussion HM1 Y_H2 [kg/kg] x/d_b=.26 (13mm) x/d_b=.6 (3mm) x/d_b=.9 (45mm) Y_H2 [kg/kg] x/d_b=1.3 (65mm) x/d_b=2.4 (12mm) Legend 1) Exp HM1 2) EDC 3) CAN K1 4) CAN K2 5) OF K2 bgschaid, mrehm alternatechemistrylibrary 35/47

36 HM1 results H2O Results HM1 Discussion HM1 Y_H2O [kg/kg] x/d_b=.26 (13mm) x/d_b=.6 (3mm) x/d_b=.9 (45mm) Y_H2O [kg/kg] x/d_b=1.3 (65mm) x/d_b=2.4 (12mm) Legend 1) Exp HM1 2) EDC 3) CAN K1 4) CAN K2 5) OF K2 bgschaid, mrehm alternatechemistrylibrary 36/47

37 HM1 results CO Results HM1 Discussion HM1 Y_CO [kg/kg] x/d_b=.26 (13mm) x/d_b=.6 (3mm) x/d_b=.9 (45mm) Y_CO [kg/kg] x/d_b=1.3 (65mm) x/d_b=2.4 (12mm) Legend 1) Exp HM1 2) EDC 3) CAN K1 4) CAN K2 5) OF K2 bgschaid, mrehm alternatechemistrylibrary 37/47

38 HM1 results CO2 Results HM1 Discussion HM1 Y_CO2 [kg/kg] x/d_b=.26 (13mm) x/d_b=.6 (3mm) x/d_b=.9 (45mm) Y_CO2 [kg/kg] x/d_b=1.3 (65mm) x/d_b=2.4 (12mm) Legend 1) Exp HM1 2) EDC 3) CAN K1 4) CAN K2 5) OF K2 bgschaid, mrehm alternatechemistrylibrary 38/47

39 HM1 results OH Results HM1 Discussion HM1 Y_OH [kg/kg] x/d_b=.26 (13mm) x/d_b=.6 (3mm) x/d_b=.9 (45mm) Y_OH [kg/kg] x/d_b=1.3 (65mm) x/d_b=2.4 (12mm) Legend 1) Exp HM1 2) EDC 3) CAN K1 4) CAN K2 5) OF K2 bgschaid, mrehm alternatechemistrylibrary 39/47

40 Discussion HM1 Results HM1 Discussion HM1 Why are all the resuls so similar? (No influence of κ-implementation or Cmix (not shown)) In case Cmix=.5 no difference in κ notable - too fast mixing as in PFR case. Furthermore, in the domain close to the inlets κ 1 in every case and influence of Cmix can only be seen further downstream where no measurements are available. Comparison with transient simulation of HM1 indicates that κ 2 seems more appropriate (see next slide) Still, further testing is needed bgschaid, mrehm alternatechemistrylibrary 4/47

41 Results HM1 Discussion HM1 HM1 comparison κ 1, κ 2 for Cmix=1 bgschaid, mrehm alternatechemistrylibrary 41/47

42 HM1 Results HM1 Discussion HM1 Flame was rendered with acceptable quality by the new solvers Steady solvers are very robust if the right ODE solvers are used (CVODE for Cantera, KRR4 for OF) Checking of dy i provides further stability and and prevents composition from being driven to unphysical states. Solutions for a finer grid (2 cells) are still not available - flame blows off very easily. bgschaid, mrehm alternatechemistrylibrary 42/47

43 Summary Introduction/Motivation Summary Availibility Outlook/Future Work Acknowledgements The implementation of the Cantera chemistry into OpenFOAM TM can be considered successful and provides: A flexible interface to access a wide range of thermophysical data,and chemistry functions Robust solvers for transient and steady-state calculations Valuable test-cases for validation and further investigation Collaborators are welcome to test the code and contribute own developments. bgschaid, mrehm alternatechemistrylibrary 43/47

44 How to get the library Summary Availibility Outlook/Future Work Acknowledgements The libraries and solvers presented here will be made available on the openfoam-extend-svn on sourceforge.net Libraries Two independent libraries: alternatechemistrymodel The general framework an the OpenFOAM TM -interface canterachemistrymodel The interface to Cantera Solvers The steady and the transient solver with the test-cases PFR and HM1 URL will be given on the Wiki Interfaces to other chemistry libraries, more solvers, critique, and improvements are encouraged bgschaid, mrehm alternatechemistrylibrary 44/47

45 Future Work Introduction/Motivation Summary Availibility Outlook/Future Work Acknowledgements There is always room for improvement: Both chemistry solvers read the same input files Converter between Cantera and OpenFOAM TM -format Make the canterachemistrymodel indepentent of canteramixture of reduction/tabulation techniques for more time-efficient solution. More combustion models. bgschaid, mrehm alternatechemistrylibrary 45/47

46 Acknowledgements Summary Availibility Outlook/Future Work Acknowledgements A part of the development and implementation work was done by the IEC in the context of the research project Grosstechnisch bertragbare Untersuchungen zur Weiterentwicklung der IGCC-Kohlekraftwerkstechnik mit CO2-Abtrennung - COORAMENT. This project is supported by the German Federal Ministry of Economics and Technology (Project ID B). Furthermore we thank N. Nordin for a valuable posting regarding the tc()- implementation, all developers who contributed to OpenFOAM TM, and people who inspired that work. bgschaid, mrehm alternatechemistrylibrary 46/47

47 Bibliography [1] DG Goodwin. Cantera: Object-oriented software for reacting flows. Technical report, California Institute of Technology, 22. [2] A.C. Hindmarsh, P.N. Brown, K.E. Grant, S.L. Lee, R. Serban, D.E. Shumaker, and C.S. Woodward. SUNDIALS: Suite of nonlinear and differential/algebraic equation solvers. ACM Transactions on Mathematical Software (TOMS), 31(3): , 25. [3] M. Rehm, P. Seifert, and B. Meyer. Towards a CFD Model for Industrial Scale Gasification Processes. In OpenFOAM Workshop 28, Milan, 28. [4] BB Dally, AR Masri, RS Barlow, and GJ Fiechtner. Instantaneous and Mean Compositional Structure of Bluff-Body Stabilized Nonpremixed Flames. Combustion and Flame, 114(1-2): , bgschaid, mrehm alternatechemistrylibrary 47/47

Coupling of ChemApp and OpenFOAM

Coupling of ChemApp and OpenFOAM Coupling of ChemApp and OpenFOAM Messig, Danny; Rehm, Markus; Meyer, Bernd 19th May 2009 Contents 1 Introduction 2 Software OpenFOAM ChemApp Cantera 3 Coupling of chemistry packages and OpenFOAM 4 Testcases

More information

Modeling laminar partially premixed flames with complex diffusion in OpenFOAM R

Modeling laminar partially premixed flames with complex diffusion in OpenFOAM R Modeling laminar partially premixed flames with complex diffusion in OpenFOAM R Danny Messig, Jens Keller, Bernd Meyer, Christian Hasse Institute of Energy Process Engineering and Chemical Engineering

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

DARS Digital Analysis of Reactive Systems

DARS Digital Analysis of Reactive Systems DARS Digital Analysis of Reactive Systems Introduction DARS is a complex chemical reaction analysis system, developed by DigAnaRS. Our latest version, DARS V2.0, was released in September 2008 and new

More information

Numerical Modeling of Laminar, Reactive Flows with Detailed Kinetic Mechanisms

Numerical Modeling of Laminar, Reactive Flows with Detailed Kinetic Mechanisms Department of Chemistry, Materials, and Chemical Engineering G. Natta Politecnico di Milano (Italy) A. Cuoci, A. Frassoldati, T. Faravelli and E. Ranzi Numerical Modeling of Laminar, Reactive Flows with

More information

Application of a Laser Induced Fluorescence Model to the Numerical Simulation of Detonation Waves in Hydrogen-Oxygen-Diluent Mixtures

Application of a Laser Induced Fluorescence Model to the Numerical Simulation of Detonation Waves in Hydrogen-Oxygen-Diluent Mixtures Supplemental material for paper published in the International J of Hydrogen Energy, Vol. 30, 6044-6060, 2014. http://dx.doi.org/10.1016/j.ijhydene.2014.01.182 Application of a Laser Induced Fluorescence

More information

Overview of Turbulent Reacting Flows

Overview of Turbulent Reacting Flows Overview of Turbulent Reacting Flows Outline Various Applications Overview of available reacting flow models LES Latest additions Example Cases Summary Reacting Flows Applications in STAR-CCM+ Ever-Expanding

More information

Reactive Flows using TransAT. June 2013 Jan van Rickenbach, Daniel Rakotonirina ASCOMP

Reactive Flows using TransAT. June 2013 Jan van Rickenbach, Daniel Rakotonirina ASCOMP Reactive Flows using TransAT June 2013 Jan van Rickenbach, Daniel Rakotonirina ASCOMP www.ascomp.ch jan@ascomp.ch Model portfolio Reactive flows Infinitely Fast Chemistry (non-premixed) EDC EDC-SDT (Scalar

More information

Prediction of CO Burnout using a CHEMKIN based Network Tool

Prediction of CO Burnout using a CHEMKIN based Network Tool Prediction of CO Burnout using a CHEMKIN based Network Tool Engler-Bunte-Institut / Bereich Verbrennungstechnik Universität Karlsruhe Contents Complex reaction schemes vs. complex transport models. Complex

More information

CFD and Kinetic Analysis of Bluff Body Stabilized Flame

CFD and Kinetic Analysis of Bluff Body Stabilized Flame CFD and Kinetic Analysis of Bluff Body Stabilized ame A. Dicorato, E. Covelli, A. Frassoldati, T. Faravelli, E. Ranzi Dipartimento di Chimica, Materiali e Ingegneria Chimica, Politecnico di Milano, ITALY

More information

Towards Accommodating Comprehensive Chemical Reaction Mechanisms in Practical Internal Combustion Engine Simulations

Towards Accommodating Comprehensive Chemical Reaction Mechanisms in Practical Internal Combustion Engine Simulations Paper # 0701C-0326 Topic: Internal Combustion and gas turbine engines 8 th U. S. National Combustion Meeting Organized by the Western States Section of the Combustion Institute and hosted by the University

More information

TURBINE BURNERS: Engine Performance Improvements; Mixing, Ignition, and Flame-Holding in High Acceleration Flows

TURBINE BURNERS: Engine Performance Improvements; Mixing, Ignition, and Flame-Holding in High Acceleration Flows TURBINE BURNERS: Engine Performance Improvements; Mixing, Ignition, and Flame-Holding in High Acceleration Flows Presented by William A. Sirignano Mechanical and Aerospace Engineering University of California

More information

1. Introduction. Student Submission for the 6 th ESI OpenFOAM User Conference 2018, Hamburg - Germany

1. Introduction. Student Submission for the 6 th ESI OpenFOAM User Conference 2018, Hamburg - Germany Optimizing Load Balancing of Reacting Flow Solvers in OpenFOAM for High Performance Computing Thorsten Zirwes*, Feichi Zhang, Peter Habisreuther, Jordan A. Denev, Henning Bockhorn, Dimosthenis Trimis *Karlsruhe

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

Development of One-Step Chemistry Models for Flame and Ignition Simulation

Development of One-Step Chemistry Models for Flame and Ignition Simulation Development of One-Step Chemistry Models for Flame and Ignition Simulation S.P.M. Bane, J.L. Ziegler, and J.E. Shepherd Graduate Aerospace Laboratories California Institute of Technology Pasadena, CA 91125

More information

Erratum to: High speed mixture fraction and temperature imaging of pulsed, turbulent fuel jets auto igniting in high temperature, vitiated co flows

Erratum to: High speed mixture fraction and temperature imaging of pulsed, turbulent fuel jets auto igniting in high temperature, vitiated co flows DOI 10.1007/s00348-015-2101-9 ERRATUM Erratum to: High speed mixture fraction and temperature imaging of pulsed, turbulent fuel jets auto igniting in high temperature, vitiated co flows Michael J. Papageorge

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

Overview of Reacting Flow

Overview of Reacting Flow Overview of Reacting Flow Outline Various Applications Overview of available reacting flow models Latest additions Example Cases Summary Reacting Flows Applications in STAR-CCM+ Chemical Process Industry

More information

Providing an Entry Length in Heterogeneous Catalytic Reactors with Fast Diffusion

Providing an Entry Length in Heterogeneous Catalytic Reactors with Fast Diffusion Presented at the COMSOL Conference 2009 Milan Providing an Entry Length in Heterogeneous Catalytic Reactors with Fast Diffusion D. Dalle Nogare, P. Canu University of Padova, Italy From the PFR to the

More information

The Combination of Detailed Kinetics and CFD in Automotive Applications

The Combination of Detailed Kinetics and CFD in Automotive Applications The Combination of Detailed Kinetics and CFD in Automotive Applications J. M. Deur and S. Jonnavithula Analysis and Design Application Co., Ltd. Melville, New York E. Meeks Reaction Design San Diego, California

More information

A comparison between two different Flamelet reduced order manifolds for non-premixed turbulent flames

A comparison between two different Flamelet reduced order manifolds for non-premixed turbulent flames 8 th U. S. National Combustion Meeting Organized by the Western States Section of the Combustion Institute and hosted by the University of Utah May 19-22, 2013 A comparison between two different Flamelet

More information

Assessment of turbulence-chemistry interaction models in the computation of turbulent nonpremixed

Assessment of turbulence-chemistry interaction models in the computation of turbulent nonpremixed Journal of Physics: Conference Series PAPER OPEN ACCESS Assessment of turbulence-chemistry interaction models in the computation of turbulent nonpremixed flames To cite this article: M T Lewandowski and

More information

Reacting Flow Modeling in STAR-CCM+ Rajesh Rawat

Reacting Flow Modeling in STAR-CCM+ Rajesh Rawat Reacting Flow Modeling in STAR-CCM+ Rajesh Rawat Latest Additions (v 7.02/v 7.04) Eulerian Multi-phase Reaction Model Soot Model Moment Methods PPDF Flamelet Multi-stream model Complex Chemistry Model

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

The influence of C ϕ is examined by performing calculations with the values C ϕ =1.2, 1.5, 2.0 and 3.0 for different chemistry mechanisms.

The influence of C ϕ is examined by performing calculations with the values C ϕ =1.2, 1.5, 2.0 and 3.0 for different chemistry mechanisms. The Influence of Chemical Mechanisms on PDF Calculations of Nonpremixed Piloted Jet Flames Renfeng Cao and Stephen B. Pope Sibley School of Mechanical and Aerospace Engineering, Cornell University, Ithaca,

More information

How to use CHEMKIN. 1. To open a Chemkin Window. 1) logon Athena. 2) At the Athena prompt, type athena % add chemkin athena % chemkin

How to use CHEMKIN. 1. To open a Chemkin Window. 1) logon Athena. 2) At the Athena prompt, type athena % add chemkin athena % chemkin 1. To open a Chemkin Window 1) logon Athena How to use CHEMKIN 2) At the Athena prompt, type athena % add chemkin athena % chemkin 3) The following Chemkin window will pop up. Figure 1 Chemkin window 4)

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

Convective Vaporization and Burning of Fuel Droplet Arrays

Convective Vaporization and Burning of Fuel Droplet Arrays Convective Vaporization and Burning of Fuel Droplet Arrays Guang Wu and William A. Sirignano Mechanical & Aerospace Engineering University of California, Irvine May 19, 2009 Background and Task In many

More information

LOW TEMPERATURE MODEL FOR PREMIXED METHANE FLAME COMBUSTION

LOW TEMPERATURE MODEL FOR PREMIXED METHANE FLAME COMBUSTION ISTP-16, 2005, PRAGUE 16TH INTERNATIONAL SYMPOSIUM ON TRANSPORT PHENOMENA LOW TEMPERATURE MODEL FOR PREMIXED METHANE FLAME MBUSTION M. Forman, J.B.W.Kok,M. Jicha Department of Thermodynamics and Environmental

More information

Simulation of evaporation and combustion of droplets using a VOF method

Simulation of evaporation and combustion of droplets using a VOF method Simulation of evaporation and combustion of droplets using a VOF method P. Keller, P.A. Nikrityuk, B. Meyer June 23, 2010 Motivation Mathematics Physics Validation & Test Cases Conclusions Motivation (1)

More information

Large Eddy Simulation of Piloted Turbulent Premixed Flame

Large Eddy Simulation of Piloted Turbulent Premixed Flame Large Eddy Simulation of Piloted Turbulent Premixed Flame Veeraraghava Raju Hasti, Robert P Lucht and Jay P Gore Maurice J. Zucrow Laboratories School of Mechanical Engineering Purdue University West Lafayette,

More information

This section develops numerically and analytically the geometric optimisation of

This section develops numerically and analytically the geometric optimisation of 7 CHAPTER 7: MATHEMATICAL OPTIMISATION OF LAMINAR-FORCED CONVECTION HEAT TRANSFER THROUGH A VASCULARISED SOLID WITH COOLING CHANNELS 5 7.1. INTRODUCTION This section develops numerically and analytically

More information

Thermal NO Predictions in Glass Furnaces: A Subgrid Scale Validation Study

Thermal NO Predictions in Glass Furnaces: A Subgrid Scale Validation Study Feb 12 th 2004 Thermal NO Predictions in Glass Furnaces: A Subgrid Scale Validation Study Padmabhushana R. Desam & Prof. Philip J. Smith CRSIM, University of Utah Salt lake city, UT-84112 18 th Annual

More information

A new jet-stirred reactor for chemical kinetics investigations Abbasali A. Davani 1*, Paul D. Ronney 1 1 University of Southern California

A new jet-stirred reactor for chemical kinetics investigations Abbasali A. Davani 1*, Paul D. Ronney 1 1 University of Southern California 0 th U. S. National Combustion Meeting Organized by the Eastern States Section of the Combustion Institute pril 23-26, 207 College Park, Maryland new jet-stirred reactor for chemical kinetics investigations

More information

Coupling SUNDIALS with OpenFOAM 6 th OpenFOAM Workshop. E. David Huckaby June 14, 2011

Coupling SUNDIALS with OpenFOAM 6 th OpenFOAM Workshop. E. David Huckaby June 14, 2011 Coupling SUNDIALS with OpenFOAM 6 th OpenFOAM Worshop E. David Hucaby June 14, 2011 EDH-OFW2011 Outline Motivation Mathematics Basic Design Eamples Food Web Steady & Unsteady Pitz-Daily 2 Motivation Why

More information

Haider, Sajjad; Pang, Kar Mun; Ivarsson, Anders; Schramm, Jesper. Published in: Papers, CIMAC Congress Publication date: 2013

Haider, Sajjad; Pang, Kar Mun; Ivarsson, Anders; Schramm, Jesper. Published in: Papers, CIMAC Congress Publication date: 2013 Downloaded from orbit.dtu.dk on: Jun 14, 2018 Combustion and radiation modeling of laminar premixed flames using OpenFOAM: A numerical investigation of radiative heat transfer in the RADIADE project Haider,

More information

Numerical study of conjugate heat transfer phenomena in a reacting flow

Numerical study of conjugate heat transfer phenomena in a reacting flow 60-5695 mme.modares.ac.ir *2 - -2 - kiumars@modares.ac.ir455- *. -......... 94 5 : 94 09 : 94 0 : Numerical study of conjugate heat transfer phenomena in a reacting flow Saber Pilva, Kiumars Mazaheri *,

More information

This chapter focuses on the study of the numerical approximation of threedimensional

This chapter focuses on the study of the numerical approximation of threedimensional 6 CHAPTER 6: NUMERICAL OPTIMISATION OF CONJUGATE HEAT TRANSFER IN COOLING CHANNELS WITH DIFFERENT CROSS-SECTIONAL SHAPES 3, 4 6.1. INTRODUCTION This chapter focuses on the study of the numerical approximation

More information

ANSYS Advanced Solutions for Gas Turbine Combustion. Gilles Eggenspieler 2011 ANSYS, Inc.

ANSYS Advanced Solutions for Gas Turbine Combustion. Gilles Eggenspieler 2011 ANSYS, Inc. ANSYS Advanced Solutions for Gas Turbine Combustion Gilles Eggenspieler ANSYS, Inc. 1 Agenda Steady State: New and Existing Capabilities Reduced Order Combustion Models Finite-Rate Chemistry Models Chemistry

More information

New sequential combustion technologies for heavy-duty gas turbines

New sequential combustion technologies for heavy-duty gas turbines New sequential combustion technologies for heavy-duty gas turbines Conference on Combustion in Switzerland 07.09.2017 ETH Zurich Nicolas Noiray, Oliver Schulz CAPS Lab D-MAVT ETH Nicolas Noiray 07/09/17

More information

One-Dimensional Flames

One-Dimensional Flames One-Dimensional Flames David G. Goodwin Division of Engineering and Applied Science California Institute of Technology Several types of flames can be modeled as "one-dimensional" A burnerstabilized flat

More information

The Seeding of Methane Oxidation

The Seeding of Methane Oxidation The Seeding of Methane Oxidation M. B. DAVIS and L. D. SCHMIDT* Department of Chemical Engineering and Materials Science, University of Minnesota, Minneapolis, MN 55455 USA Mixtures of light alkanes and

More information

CFD study of gas mixing efficiency and comparisons with experimental data

CFD study of gas mixing efficiency and comparisons with experimental data 17 th European Symposium on Computer Aided Process Engineering ESCAPE17 V. Plesu and P.S. Agachi (Editors) 2007 Elsevier B.V. All rights reserved. 1 CFD study of gas mixing efficiency and comparisons with

More information

HYBRID RANS/PDF CALCULATIONS OF A SWIRLING BLUFF BODY FLAME ( SM1 ): INFLUENCE OF THE MIXING MODEL

HYBRID RANS/PDF CALCULATIONS OF A SWIRLING BLUFF BODY FLAME ( SM1 ): INFLUENCE OF THE MIXING MODEL MCS 7 Chia Laguna, Cagliari, Sardinia, Italy, September 11-15, 2011 HYBRID RANS/PDF CALCULATIONS OF A SWIRLING BLUFF BODY FLAME ( SM1 ): INFLUENCE OF THE MIXING MODEL R. De Meester 1, B. Naud 2, B. Merci

More information

Creating Phase and Interface Models

Creating Phase and Interface Models Creating Phase and Interface Models D. G. Goodwin Division of Engineering and Applied Science California Institute of Technology Cantera Workshop July 25, 2004 Every Cantera simulation involves one or

More information

Energy-Conserving Numerical Simulations of Electron Holes in Two-Species Plasmas

Energy-Conserving Numerical Simulations of Electron Holes in Two-Species Plasmas Energy-Conserving Numerical Simulations of Electron Holes in Two-Species Plasmas Yingda Cheng Andrew J. Christlieb Xinghui Zhong March 18, 2014 Abstract In this paper, we apply our recently developed energy-conserving

More information

INTRODUCTION TO CATALYTIC COMBUSTION

INTRODUCTION TO CATALYTIC COMBUSTION INTRODUCTION TO CATALYTIC COMBUSTION R.E. Hayes Professor of Chemical Engineering Department of Chemical and Materials Engineering University of Alberta, Canada and S.T. Kolaczkowski Professor of Chemical

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

Development of a consistent and conservative Eulerian - Eulerian algorithm for multiphase flows

Development of a consistent and conservative Eulerian - Eulerian algorithm for multiphase flows Development of a consistent and conservative Eulerian - Eulerian algorithm for multiphase flows Ana Cubero Alberto Sanchez-Insa Norberto Fueyo Numerical Fluid Dynamics Group University of Zaragoza Spain

More information

CHAPTER 7 NUMERICAL MODELLING OF A SPIRAL HEAT EXCHANGER USING CFD TECHNIQUE

CHAPTER 7 NUMERICAL MODELLING OF A SPIRAL HEAT EXCHANGER USING CFD TECHNIQUE CHAPTER 7 NUMERICAL MODELLING OF A SPIRAL HEAT EXCHANGER USING CFD TECHNIQUE In this chapter, the governing equations for the proposed numerical model with discretisation methods are presented. Spiral

More information

Steady Laminar Flamelet Modeling for turbulent non-premixed Combustion in LES and RANS Simulations

Steady Laminar Flamelet Modeling for turbulent non-premixed Combustion in LES and RANS Simulations Sonderforschungsbereich/Transregio 4 Annual Report 213 139 Steady Laminar Flamelet Modeling for turbulent non-premixed Combustion in LES and RANS Simulations By H. Müller, C. A. Niedermeier, M. Pfitzner

More information

Simulation of Selective Catalytic Reduction using DARS 1D Tool

Simulation of Selective Catalytic Reduction using DARS 1D Tool Simulation of Selective Catalytic Reduction using DARS 1D Tool Best Practice Training: Combustion & Chemical Reaction Modeling STAR Global Conference 2013 Karin Fröjd & Adina Tunér LOGE AB Outline Introduction

More information

Premixed MILD Combustion of Propane in a Cylindrical. Furnace with a Single Jet Burner: Combustion and. Emission Characteristics

Premixed MILD Combustion of Propane in a Cylindrical. Furnace with a Single Jet Burner: Combustion and. Emission Characteristics Premixed MILD Combustion of Propane in a Cylindrical Furnace with a Single Jet Burner: Combustion and Emission Characteristics Kin-Pang Cheong a, c, Guochang Wang a, Jianchun Mi a*, Bo Wang a, Rong Zhu

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

Numerical Simulations of Hydrogen Auto-ignition in a Turbulent Co-flow of Heated Air with a Conditional Moment Closure

Numerical Simulations of Hydrogen Auto-ignition in a Turbulent Co-flow of Heated Air with a Conditional Moment Closure Numerical Simulations of Hydrogen Auto-ignition in a Turbulent Co-flow of Heated Air with a Conditional Moment Closure I. Stanković*, 1, A. Triantafyllidis, E. Mastorakos, C. Lacor 3 and B. Merci 1, 4

More information

Construction of Libraries for Non-Premixed Tabulated Chemistry Combustion Models including Non-Adiabatic Behaviour due to Wall Heat Losses

Construction of Libraries for Non-Premixed Tabulated Chemistry Combustion Models including Non-Adiabatic Behaviour due to Wall Heat Losses Sonderforschungsbereich/Transregio 40 Annual Report 2016 193 Construction of Libraries for Non-Premixed Tabulated Chemistry Combustion Models including Non-Adiabatic Behaviour due to Wall Heat Losses By

More information

HOW TO USE CHEMKIN 경원테크

HOW TO USE CHEMKIN 경원테크 HOW TO USE CHEMKIN 경원테크 Agenda CHEMKIN-PRO vs. Old Chemkin II CHEMKIN-PRO Overview Advanced Feature: Particle Tracking Advanced Feature: Reaction Path Analysis Example : Turbulent jet with kinetics & mixing

More information

ADVANCED DES SIMULATIONS OF OXY-GAS BURNER LOCATED INTO MODEL OF REAL MELTING CHAMBER

ADVANCED DES SIMULATIONS OF OXY-GAS BURNER LOCATED INTO MODEL OF REAL MELTING CHAMBER ADVANCED DES SIMULATIONS OF OXY-GAS BURNER LOCATED INTO MODEL OF REAL MELTING CHAMBER Ing. Vojtech Betak Ph.D. Aerospace Research and Test Establishment Department of Engines Prague, Czech Republic Abstract

More information

Faster Kinetics: Accelerate Your Finite-Rate Combustion Simulation with GPUs

Faster Kinetics: Accelerate Your Finite-Rate Combustion Simulation with GPUs Faster Kinetics: Accelerate Your Finite-Rate Combustion Simulation with GPUs Christopher P. Stone, Ph.D. Computational Science and Engineering, LLC Kyle Niemeyer, Ph.D. Oregon State University 2 Outline

More information

RESOLVING TURBULENCE- CHEMISTRY INTERACTIONS IN MIXING-CONTROLLED COMBUSTION WITH LES AND DETAILED CHEMISTRY

RESOLVING TURBULENCE- CHEMISTRY INTERACTIONS IN MIXING-CONTROLLED COMBUSTION WITH LES AND DETAILED CHEMISTRY RESOLVING TURBULENCE- CHEMISTRY INTERACTIONS IN MIXING-CONTROLLED COMBUSTION WITH LES AND DETAILED CHEMISTRY Convergent Science White Paper COPYRIGHT 218 CONVERGENT SCIENCE. All rights reserved. OVERVIEW

More information

Carbon Science and Technology

Carbon Science and Technology ASI RESEARCH ARTICLE Carbon Science and Technology Received:10/03/2016, Accepted:15/04/2016 ------------------------------------------------------------------------------------------------------------------------------

More information

DARS overview, IISc Bangalore 18/03/2014

DARS overview, IISc Bangalore 18/03/2014 www.cd-adapco.com CH2O Temperatur e Air C2H4 Air DARS overview, IISc Bangalore 18/03/2014 Outline Introduction Modeling reactions in CFD CFD to DARS Introduction to DARS DARS capabilities and applications

More information

Large-eddy simulation of an industrial furnace with a cross-flow-jet combustion system

Large-eddy simulation of an industrial furnace with a cross-flow-jet combustion system Center for Turbulence Research Annual Research Briefs 2007 231 Large-eddy simulation of an industrial furnace with a cross-flow-jet combustion system By L. Wang AND H. Pitsch 1. Motivation and objectives

More information

Practical Combustion Kinetics with CUDA

Practical Combustion Kinetics with CUDA Funded by: U.S. Department of Energy Vehicle Technologies Program Program Manager: Gurpreet Singh & Leo Breton Practical Combustion Kinetics with CUDA GPU Technology Conference March 20, 2015 Russell Whitesides

More information

A first investigation on using a species reaction mechanism for flame propagation and soot emissions in CFD of SI engines

A first investigation on using a species reaction mechanism for flame propagation and soot emissions in CFD of SI engines A first investigation on using a 1000+ species reaction mechanism for flame propagation and soot emissions in CFD of SI engines F.A. Tap *, D. Goryntsev, C. Meijer, A. Starikov Dacolt International BV

More information

CFD Simulation of high pressure real gas flows

CFD Simulation of high pressure real gas flows CFD Simulation of high pressure real gas flows on the progress form art to physics :o) Maria Magdalena Poschner Prof. Dr. rer. nat. Pfitzner UNIVERSITÄT DER BUNDESWEHR MÜNCHEN Fakultät für Luft und Raumfahrt

More information

Kinetic study of combustion behavior in a gas turbine -Influence from varying natural gas composition

Kinetic study of combustion behavior in a gas turbine -Influence from varying natural gas composition Kinetic study of combustion behavior in a gas turbine -Influence from varying natural gas composition Catharina Tillmark April 18, 2006 Lund University Dept. of Energy Sciences P.O.Box 118, SE-221 00 Lund

More information

Direct pore level simulation of premixed gas combustion in porous inert media using detailed chemical kinetics

Direct pore level simulation of premixed gas combustion in porous inert media using detailed chemical kinetics Direct pore level simulation of premixed gas combustion in porous inert media using detailed chemical kinetics Ilian Dinkov, Peter Habisreuther, Henning Bockhorn Karlsruhe Institute of Technology, Engler-Bunte-Institute,

More information

Consistent turbulence modeling in a hybrid LES/RANS PDF method for non-premixed flames

Consistent turbulence modeling in a hybrid LES/RANS PDF method for non-premixed flames Consistent turbulence modeling in a hybrid LES/RANS PDF method for non-premixed flames F. Ferraro, Y. Ge and M. Pfitzner Institut für Thermodynamik, Fakultät für Luft- und Raumfahrrttechnik Universität

More information

Large Eddy Simulation of Flame Flashback by Combustion Induced Vortex Breakdown

Large Eddy Simulation of Flame Flashback by Combustion Induced Vortex Breakdown June 30 - July 3, 2015 Melbourne, Australia 9 1C-5 Large Eddy Simulation of Flame Flashback by Combustion Induced Vortex Breakdown Eike Tangermann Institut für Mathematik und Rechneranwendung Universität

More information

SOE3213/4: CFD Lecture 3

SOE3213/4: CFD Lecture 3 CFD { SOE323/4: CFD Lecture 3 @u x @t @u y @t @u z @t r:u = 0 () + r:(uu x ) = + r:(uu y ) = + r:(uu z ) = @x @y @z + r 2 u x (2) + r 2 u y (3) + r 2 u z (4) Transport equation form, with source @x Two

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

A comparison of the Bader Deuflhard and the Cash Karp Runge Kutta integrators for the GRI-MECH 3.0 model based on the chemical kinetics code Kintecus

A comparison of the Bader Deuflhard and the Cash Karp Runge Kutta integrators for the GRI-MECH 3.0 model based on the chemical kinetics code Kintecus 1368 A comparison of the Bader Deuflhard and the Cash Karp Runge Kutta integrators for the GRI-MECH 3.0 model based on the chemical inetics code Kintecus James C. Ianni Vast Technologies Development, Inc.,

More information

Develpment of NSCBC for compressible Navier-Stokes equations in OpenFOAM : Subsonic Non-Reflecting Outflow

Develpment of NSCBC for compressible Navier-Stokes equations in OpenFOAM : Subsonic Non-Reflecting Outflow Develpment of NSCBC for compressible Navier-Stokes equations in OpenFOAM : Subsonic Non-Reflecting Outflow F. Piscaglia, A. Montorfano Dipartimento di Energia, POLITECNICO DI MILANO Content Introduction

More information

3D spray simulation using advanced intra-droplet and interface modeling

3D spray simulation using advanced intra-droplet and interface modeling 3D spray simulation using advanced intra-droplet and interface modeling TU Darmstadt Mechanical Engineering Simulation of reactive Thermo-Fluid Systems Andrea Pati, Christian Hasse Agenda Introduction

More information

OpenSMOKE: NUMERICAL MODELING OF REACTING SYSTEMS WITH DETAILED KINETIC MECHANISMS

OpenSMOKE: NUMERICAL MODELING OF REACTING SYSTEMS WITH DETAILED KINETIC MECHANISMS OpenSMOKE: NUMERICAL MODELING OF REACTING SYSTEMS WITH DETAILED KINETIC MECHANISMS A. Cuoci, A. Frassoldati, T. Faravelli, E. Ranzi alberto.cuoci@polimi.it Department of Chemistry, Materials, and Chemical

More information

Towards regime identification and appropriate chemistry tabulation for computation of autoigniting turbulent reacting flows

Towards regime identification and appropriate chemistry tabulation for computation of autoigniting turbulent reacting flows Center for Turbulence Research Annual Research Briefs 009 199 Towards regime identification and appropriate chemistry tabulation for computation of autoigniting turbulent reacting flows By M. Kostka, E.

More information

MUSCLES. Presented by: Frank Wetze University of Karlsruhe (TH) - EBI / VB month review, 21 September 2004, Karlsruhe

MUSCLES. Presented by: Frank Wetze University of Karlsruhe (TH) - EBI / VB month review, 21 September 2004, Karlsruhe MUSCLES Modelling of UnSteady Combustion in Low Emission Systems G4RD-CT-2002-00644 R&T project within the 5 th Framework program of the European Union: 1 Numerical computations of reacting flow field

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 Analysis of Mixing in Polymerization Reactor. By Haresh Patel Supervisors: Dr. R. Dhib & Dr. F. Ein-Mozaffari IPR 2007

CFD Analysis of Mixing in Polymerization Reactor. By Haresh Patel Supervisors: Dr. R. Dhib & Dr. F. Ein-Mozaffari IPR 2007 CFD Analysis of Mixing in Polymerization Reactor By Haresh Patel Supervisors: Dr. R. Dhib & Dr. F. Ein-Mozaffari Introduction Model development Simulation Outline Model Setup for Fluent Results and discussion

More information

Large-eddy simulation of a bluff-body-stabilized non-premixed flame using a recursive filter-refinement procedure

Large-eddy simulation of a bluff-body-stabilized non-premixed flame using a recursive filter-refinement procedure Combustion and Flame 142 (2005) 329 347 www.elsevier.com/locate/combustflame Large-eddy simulation of a bluff-body-stabilized non-premixed flame using a recursive filter-refinement procedure Venkatramanan

More information

Modeling of Gasoline Direct Injection Spark Ignition Engines. Chen Huang, Andrei Lipatnikov

Modeling of Gasoline Direct Injection Spark Ignition Engines. Chen Huang, Andrei Lipatnikov Modeling of Gasoline Direct Injection Spark Ignition Engines, Andrei Lipatnikov Background Volvo V40 XC Delphi-GDI-System CFD simulation of GDI combustion Hyundai 1.6 l GDI engine Background Model development

More information

Large Eddy Simulations for the Flame Describing Function of a premixed turbulent swirling flame

Large Eddy Simulations for the Flame Describing Function of a premixed turbulent swirling flame Large Eddy Simulations for the Flame Describing Function of a premixed turbulent swirling flame Davide LAERA, and Aimee S. MORGANS Department of Mechanical Engineering, Imperial College London, London,

More information

Advanced Multi-Physics Modeling & Simulation Efforts for Fast Reactors

Advanced Multi-Physics Modeling & Simulation Efforts for Fast Reactors Advanced Multi-Physics Modeling & Simulation Efforts for Fast Reactors J.W. Thomas Argonne National Laboratory IAEA Technical Meeting on Priorities in Modeling & Simulation in Fast Reactor Systems April

More information

Validation 3. Laminar Flow Around a Circular Cylinder

Validation 3. Laminar Flow Around a Circular Cylinder Validation 3. Laminar Flow Around a Circular Cylinder 3.1 Introduction Steady and unsteady laminar flow behind a circular cylinder, representing flow around bluff bodies, has been subjected to numerous

More information

A Zooming Approach to Investigate Heat Transfer in Liquid Rocket Engines with ESPSS Propulsion Simulation Tool

A Zooming Approach to Investigate Heat Transfer in Liquid Rocket Engines with ESPSS Propulsion Simulation Tool A Zooming Approach to Investigate Heat Transfer in Liquid Rocket Engines with ESPSS Propulsion Simulation Tool M. Leonardi, F. Di Matteo, J. Steelant, B. Betti, M. Pizzarelli, F. Nasuti, M. Onofri 8th

More information

Justification of the Modeling Assumptions in the Intermediate. Fidelity Models for Portable Power Generation Internal Report

Justification of the Modeling Assumptions in the Intermediate. Fidelity Models for Portable Power Generation Internal Report Justification of the Modeling Assumptions in the Intermediate Fidelity Models for Portable Power Generation Internal Report Alexander Mitsos, Benoît Chachuat and Paul I. Barton* Department of Chemical

More information

Which CHEMKIN is Right for You? Reaction Design

Which CHEMKIN is Right for You? Reaction Design Which CHEMKIN is Right for You? Reaction Design 6440 Lusk Blvd, Suite D205 Phone: 858-550-1920 San Diego, CA 92121 www.reactiondesign.com Modernization of CHEMKIN In a world where everyone needs to maximize

More information

Detailed Modeling of Passive Auto-Catalytic Recombiner Operational Behavior with the Coupled REKODIREKT-CFX Approach

Detailed Modeling of Passive Auto-Catalytic Recombiner Operational Behavior with the Coupled REKODIREKT-CFX Approach Mitglied der Helmholtz-Gemeinschaft Detailed Modeling of Passive Auto-Catalytic Recombiner Operational Behavior with the Coupled REKODIREKT-CFX Approach S. Kelm, E.-A.Reinecke, *Hans-Josef Allelein *Institute

More information

Cantera / Stancan Primer

Cantera / Stancan Primer Cantera / Stancan Primer Matthew Campbell; A.J. Simon; Chris Edwards Introduction to Cantera and Stancan Cantera is an open-source, object-oriented software package which performs chemical and thermodynamic

More information

Modelling Turbulent Non-Premixed Combustion in Industrial Furnaces

Modelling Turbulent Non-Premixed Combustion in Industrial Furnaces Modelling Turbulent Non-Premixed Combustion in Industrial Furnaces Using the Open Source Toolbox OpenFOAM by Ali Hussain Kadar to obtain the degree of Master of Science at the Delft University of Technology,

More information

REDIM reduced modeling of quenching at a cold inert wall with detailed transport and different mechanisms

REDIM reduced modeling of quenching at a cold inert wall with detailed transport and different mechanisms 26 th ICDERS July 3 th August 4 th, 217 Boston, MA, USA REDIM reduced modeling of quenching at a cold inert wall with detailed transport and different mechanisms Christina Strassacker, Viatcheslav Bykov,

More information

LES of the Sandia Flame D Using an FPV Combustion Model

LES of the Sandia Flame D Using an FPV Combustion Model Available online at www.sciencedirect.com ScienceDirect Energy Procedia 82 (2015 ) 402 409 ATI 2015-70th Conference of the ATI Engineering Association LES of the Sandia Flame D Using an FPV Combustion

More information

Numerical Investigation of Ignition Delay in Methane-Air Mixtures using Conditional Moment Closure

Numerical Investigation of Ignition Delay in Methane-Air Mixtures using Conditional Moment Closure 21 st ICDERS July 23-27, 27 Poitiers, France Numerical Investigation of Ignition Delay in Methane-Air Mixtures using Conditional Moment Closure Ahmad S. El Sayed, Cécile B. Devaud Department of Mechanical

More information

HYBRID RANS/PDF CALCULATIONS OF A SWIRLING BLUFF BODY FLAME ( SM1 ): INFLUENCE OF THE MIXING MODEL

HYBRID RANS/PDF CALCULATIONS OF A SWIRLING BLUFF BODY FLAME ( SM1 ): INFLUENCE OF THE MIXING MODEL biblio.ugent.be The UGent Institutional Repository is the electronic archiving and dissemination platform for all UGent research publications. Ghent University has implemented a mandate stipulating that

More information

BOUNDARY LAYER MODELLING OF THE HEAT TRANSFER PROCESSES FROM IGNITERS TO ENERGETIC MATERIALS Clive Woodley, Mike Taylor, Henrietta Wheal

BOUNDARY LAYER MODELLING OF THE HEAT TRANSFER PROCESSES FROM IGNITERS TO ENERGETIC MATERIALS Clive Woodley, Mike Taylor, Henrietta Wheal 23 RD INTERNATIONAL SYMPOSIUM ON BALLISTICS TARRAGONA, SPAIN 16-20 APRIL 2007 BOUNDARY LAYER MODELLING OF THE HEAT TRANSFER PROCESSES FROM IGNITERS TO ENERGETIC MATERIALS Clive Woodley, Mike Taylor, Henrietta

More information

Preparations and Starting the program

Preparations and Starting the program Preparations and Starting the program https://oldwww.abo.fi/fakultet/ookforskning 1) Create a working directory on your computer for your Chemkin work, and 2) download kinetic mechanism files AAUmech.inp

More information

Multiphysics Coupling: Hypersonic Flow with Radiation and Ablation

Multiphysics Coupling: Hypersonic Flow with Radiation and Ablation Multiphysics Coupling: Hypersonic Flow with Radiation and Ablation Current Results and Future Strategies Paul T. Bauman, Roy H. Stogner The University of Texas at Austin February 20, 2009 Paul T. Bauman,

More information

LES Approaches to Combustion

LES Approaches to Combustion LES Approaches to combustion LES Approaches to combustion LES Approaches to Combustion W P Jones Department of Mechanical Engineering Imperial College London Exhibition Road London SW7 2AZ SIG on Combustion

More information

- A Numerical Chemical Kinetic Study at Gas Turbine Conditions

- A Numerical Chemical Kinetic Study at Gas Turbine Conditions Combustion Characteristics of MCV/LCV Fuels - A Numerical Chemical Kinetic Study at Gas Turbine Conditions Daniel Jarnekrans Division of Fluid Dynamics Department of Energy Sciences Lund Institute of Technology

More information