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

Size: px
Start display at page:

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

Transcription

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

2 Contact: Klas Jareteg Webpage: Linkedin: Blog: (Coming soon!) Slides and some code and cases: GitHub: Disclaimer: DISCLAIMER: This offering is not approved or endorsed by OpenCFD Limited, the producer of the OpenFOAM software and owner of the OPENFOAM and OpenCFD trade marks Following the trademark policy DISCLAIMER: The ideas and code in this presentation and all appended files are distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE 2

3 Background and scope Background: Water used as a coolant for Light Water Reactors (LWRs) Coolant properties important for multiphysics aspects Bubbly flows encountered for low vapor fractions due to boiling Existing code base in foam-extend for LWR multiphysics of single phase flow Aim: Formulate and implement a two fluid framework combined with a population balance equation (PBE) to simulate subcooled boiling 3

4 Background and scope Background: Water used as a coolant for Light Water Reactors (LWRs) Coolant properties important for multiphysics aspects Bubbly flows encountered for low vapor fractions due to boiling Existing code base in foam-extend for LWR multiphysics of single phase flow Aim: Formulate and implement a two fluid framework combined with a population balance equation (PBE) to simulate subcooled boiling 3

5 Model Model PBE: DQMOM/MUSIG Results Void and size distributions Computational efficiency 4

6 Population Balance Method Problem: Two fluid methodology treating vapor and liquid phases as interpenetrating continua Potential remedy: PBM Retrieve bubble size distribution Size-dependent formulations of particle forces and condensation Number density Bubble size Population balance equation: ( ) n(x, r, t) x(x, r, t) + x n(x, r, t) t t + r (U(x, r, t)n(x, r, t)) = S(x, r, t) 5

7 Population Balance Method Problem: Two fluid methodology treating vapor and liquid phases as interpenetrating continua Potential remedy: PBM Retrieve bubble size distribution Size-dependent formulations of particle forces and condensation Number density Bubble size Population balance equation: ( ) n(x, r, t) x(x, r, t) + x n(x, r, t) t t + r (U(x, r, t)n(x, r, t)) = S(x, r, t) 5

8 Population Balance Method Problem: Two fluid methodology treating vapor and liquid phases as interpenetrating continua Potential remedy: PBM Retrieve bubble size distribution Size-dependent formulations of particle forces and condensation Number density Bubble size Population balance equation: ( ) n(x, r, t) x(x, r, t) + x n(x, r, t) t t + r (U(x, r, t)n(x, r, t)) = S(x, r, t) 5

9 MUSIG Static classes Fixed classes, a priori determined Discrete size intervals, limiting the resolution, and no continuous size change captured Condensation occuring between the classes Number density Bubble size Transport equation for size j: α g,j ρ g t + (α g,j jρ g U g ) = S j Implementation in foam-extend-31 Each bubble size represented by a volscalarfield Point list with field iterated until convergence for each time step Kernels and condensation computed as sums of contributions 6

10 MUSIG Static classes Fixed classes, a priori determined Discrete size intervals, limiting the resolution, and no continuous size change captured Condensation occuring between the classes Number density Bubble size Transport equation for size j: α g,j ρ g t + (α g,j jρ g U g ) = S j Implementation in foam-extend-31 Each bubble size represented by a volscalarfield Point list with field iterated until convergence for each time step Kernels and condensation computed as sums of contributions 6

11 DQMOM Dynamic sizes Dynamic bubbles sizes, based on a quadrature approximation n(ξ; x, t) N w j (x, t)δ(ξ ξ j (x, t)) i=1 Sizes and weights solved for using transport equations Number density Bubble size Proposed condensation as: ξ(r, t) t = C(ξ, r, t) Implementation in foam-extend-31 Each abscissa and weight represented by a volscalarfield Kernels and condensation computed as sums of contributions Additional algorithmic details required to achieve stable systems 7

12 DQMOM Dynamic sizes Dynamic bubbles sizes, based on a quadrature approximation n(ξ; x, t) N w j (x, t)δ(ξ ξ j (x, t)) i=1 Sizes and weights solved for using transport equations Number density Bubble size Proposed condensation as: ξ(r, t) t = C(ξ, r, t) Implementation in foam-extend-31 Each abscissa and weight represented by a volscalarfield Kernels and condensation computed as sums of contributions Additional algorithmic details required to achieve stable systems 7

13 DQMOM Dynamic sizes Dynamic bubbles sizes, based on a quadrature approximation n(ξ; x, t) N w j (x, t)δ(ξ ξ j (x, t)) i=1 Sizes and weights solved for using transport equations Number density Bubble size Proposed condensation as: ξ(r, t) t = C(ξ, r, t) Implementation in foam-extend-31 Each abscissa and weight represented by a volscalarfield Kernels and condensation computed as sums of contributions Additional algorithmic details required to achieve stable systems 7

14 Remarks DQMOM vs MUSIG: Continuous condensation of bubbles allowed in DQMOM Arbitrarily small sizes in DQMOM Both methodologies requiring an iterative approach Coupling to two fluid equations: Continuity equations not solved in two fluid solver Vapor fraction distribution computed by DQMOM/MUSIG Pressure equation consistency with DQMOM/MUSIG Remarks on code structure: Code structured as classes with inheritance eg: pbemethod inherited by DQMOM and MUSIG Also twophasesolver implemented as a class hierarchy (in parts based on twophaseeulerfoam Inheritence increase development speed: new variation of one of the solver inherits the previous and overrides the base class Small additional cost from vptr due to rather large methods 8

15 Remarks DQMOM vs MUSIG: Continuous condensation of bubbles allowed in DQMOM Arbitrarily small sizes in DQMOM Both methodologies requiring an iterative approach Coupling to two fluid equations: Continuity equations not solved in two fluid solver Vapor fraction distribution computed by DQMOM/MUSIG Pressure equation consistency with DQMOM/MUSIG Remarks on code structure: Code structured as classes with inheritance eg: pbemethod inherited by DQMOM and MUSIG Also twophasesolver implemented as a class hierarchy (in parts based on twophaseeulerfoam Inheritence increase development speed: new variation of one of the solver inherits the previous and overrides the base class Small additional cost from vptr due to rather large methods 8

16 Remarks DQMOM vs MUSIG: Continuous condensation of bubbles allowed in DQMOM Arbitrarily small sizes in DQMOM Both methodologies requiring an iterative approach Coupling to two fluid equations: Continuity equations not solved in two fluid solver Vapor fraction distribution computed by DQMOM/MUSIG Pressure equation consistency with DQMOM/MUSIG Remarks on code structure: Code structured as classes with inheritance eg: pbemethod inherited by DQMOM and MUSIG Also twophasesolver implemented as a class hierarchy (in parts based on twophaseeulerfoam Inheritence increase development speed: new variation of one of the solver inherits the previous and overrides the base class Small additional cost from vptr due to rather large methods 8

17 Results Model PBE: DQMOM/MUSIG Results Void and size distributions Computational efficiency 9

18 System description and boundary conditions Wall Outlet Symmetry Geometry: Domain size: 50 cm 10 cm Mesh size: cells Inlet conditions: U g,max = (0, 0, 03) U l,max = (0, 0, 01) Wall conditions: U g : slip U l : noslip Inlet 10

19 Example: Inlet vapor bubbles I Axial void fraction at symmetry line Subcooled liquid (3 K, 01 MPa) water with vapor bubbles Void DQMOM, 2 DQMOM, 3 DQMOM, 4 DQMOM, 5 MUSIG, Axial position Bubble mean diameter 7 mm (normal distribution in size) Rapid decrease in void fraction 11

20 Example: Inlet vapor bubbles II Sauter mean diameter Convergence in abscissas, differeing first at z=01 m 10 2 Bubble size shrinkage dampened at low void fraction MUSIG decreasing notably slower ds [m] DQMOM, 2 DQMOM, 3 DQMOM, 4 DQMOM, 5 MUSIG, Axial position [m]

21 Example: Inlet vapor bubbles III 10 3 Particle size distribution (z=0025) 10 2 Weight Size [m] 0010 MUSIG,

22 Example: Inlet vapor bubbles IV 10 3 Particle size distribution (z=0025) 10 2 Weight Size [m] 0010 MUSIG, 30 DQMOM,

23 Example: Inlet vapor bubbles V 10 3 Particle size distribution (z=0025) 10 2 Weight Size [m] 0010 MUSIG, 30 DQMOM, 2 DQMOM,

24 Example: Inlet vapor bubbles VI 10 3 Particle size distribution (z=005m) 10 2 Weight Size [m] 0010 MUSIG, 30 DQMOM, 2 DQMOM,

25 Example: Inlet vapor bubbles VII Particle size distribution (z=01m) Weight Size [m] 0010 MUSIG, 30 DQMOM, 2 DQMOM,

26 MUSIG vs DQMOM: Computational time Solver N Time [au] DQMOM MUSIG MUSIG convergence slower for more classes (iterations) Computational cost primarily associated with cell wise computation of condensation (and optionally aggregation/breakage) 18

27 Summary and outlook Two fluid solver combined with DQMOM for subcooled boiling DQMOM allowing dynamic sizes for bubbles, ability to capture continuous bubble shrinkage DQMOM shown to be computationally less expensive than MUSIG for comparable precision 19

28 20

29 Extra material 21

30 Case 2: Wall boiling I 10 1 Horizontal void fraction, mid-elevation Void DQMOM, 2 DQMOM, 3 DQMOM, 4 DQMOM, 5 MUSIG, Horizontal position 0020 Vapor bubbles introduced at the wall, parabolic profile in α Void fraction increases away form the wall DQMOM predicting lower void fraction approach the centre

31 Case 2: Wall boiling II Horizontal Sauter mean diameter, mid-elevation Faster decrease in bubble size for DQMOM 10 2 Convergence in DQMOM for increasing N ds[m] DQMOM, 2 DQMOM, 3 DQMOM, 4 DQMOM, 5 MUSIG, Horizontal position

Fine-mesh multiphysics of LWRs: two-phase flow challenges and opportunities

Fine-mesh multiphysics of LWRs: two-phase flow challenges and opportunities Fine-mesh multiphysics of LWRs: two-phase flow challenges and opportunities SKC Symposium October 11-12, 2016, Hindås Klas Jareteg Chalmers University of Technology October 12, 2016 Project overview Project

More information

Coupled calculations in OpenFOAM -

Coupled calculations in OpenFOAM - Coupled calculations in OpenFOAM - Multiphysics handling, structures and solvers, Gothenburg Region OpenFOAM User Group Meeting Klas Jareteg Chalmers University of Technology November 14, 2012 Outline

More information

On the validity of the twofluid model for simulations of bubbly flow in nuclear reactors

On the validity of the twofluid model for simulations of bubbly flow in nuclear reactors On the validity of the twofluid model for simulations of bubbly flow in nuclear reactors Henrik Ström 1, Srdjan Sasic 1, Klas Jareteg 2, Christophe Demazière 2 1 Division of Fluid Dynamics, Department

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

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

Prediction of Minimum Fluidisation Velocity Using a CFD-PBM Coupled Model in an Industrial Gas Phase Polymerisation Reactor

Prediction of Minimum Fluidisation Velocity Using a CFD-PBM Coupled Model in an Industrial Gas Phase Polymerisation Reactor Journal of Engineering Science, Vol. 10, 95 105, 2014 Prediction of Minimum Fluidisation Velocity Using a CFD-PBM Coupled Model in an Industrial Gas Phase Polymerisation Reactor Vahid Akbari and Mohd.

More information

EFFECT OF DISTRIBUTION OF VOLUMETRIC HEAT GENERATION ON MODERATOR TEMPERATURE DISTRIBUTION

EFFECT OF DISTRIBUTION OF VOLUMETRIC HEAT GENERATION ON MODERATOR TEMPERATURE DISTRIBUTION EFFECT OF DISTRIBUTION OF VOLUMETRIC HEAT GENERATION ON MODERATOR TEMPERATURE DISTRIBUTION A. K. Kansal, P. Suryanarayana, N. K. Maheshwari Reactor Engineering Division, Bhabha Atomic Research Centre,

More information

DEVELOPMENT OF COMPUTATIONAL MULTIFLUID DYNAMICS MODELS FOR NUCLEAR REACTOR APPLICATIONS

DEVELOPMENT OF COMPUTATIONAL MULTIFLUID DYNAMICS MODELS FOR NUCLEAR REACTOR APPLICATIONS DEVELOPMENT OF COMPUTATIONAL MULTIFLUID DYNAMICS MODELS FOR NUCLEAR REACTOR APPLICATIONS Henry Anglart Royal Institute of Technology, Department of Physics Division of Nuclear Reactor Technology Stocholm,

More information

CFD-Modeling of Boiling Processes

CFD-Modeling of Boiling Processes CFD-Modeling of Boiling Processes 1 C. Lifante 1, T. Frank 1, A. Burns 2, E. Krepper 3, R. Rzehak 3 conxita.lifante@ansys.com 1 ANSYS Germany, 2 ANSYS UK, 3 HZDR Outline Introduction Motivation Mathematical

More information

viscousheatingsolver Martin Becker

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

More information

INVESTIGATION OF THE PWR SUBCHANNEL VOID DISTRIBUTION BENCHMARK (OECD/NRC PSBT BENCHMARK) USING ANSYS CFX

INVESTIGATION OF THE PWR SUBCHANNEL VOID DISTRIBUTION BENCHMARK (OECD/NRC PSBT BENCHMARK) USING ANSYS CFX INVESTIGATION OF THE PWR SUBCHANNEL VOID DISTRIBUTION BENCHMARK (OECD/NRC PSBT BENCHMARK) USING ANSYS CFX Th. Frank 1, F. Reiterer 1 and C. Lifante 1 1 ANSYS Germany GmbH, Otterfing, Germany Thomas.Frank@ansys.com,

More information

TABLE OF CONTENTS CHAPTER TITLE PAGE

TABLE OF CONTENTS CHAPTER TITLE PAGE v TABLE OF CONTENTS CHAPTER TITLE PAGE TABLE OF CONTENTS LIST OF TABLES LIST OF FIGURES LIST OF SYMBOLS LIST OF APPENDICES v viii ix xii xiv CHAPTER 1 INTRODUCTION 1.1 Introduction 1 1.2 Literature Review

More information

Applications of Computational Fluid Dynamics in the Process Industries. Ahmad Haidari & Peter Spicka Fluent Inc.

Applications of Computational Fluid Dynamics in the Process Industries. Ahmad Haidari & Peter Spicka Fluent Inc. Applications of Computational Fluid Dynamics in the Process Industries Ahmad Haidari & Peter Spicka Fluent Inc. 1 Outline Overview of CFD s growth in the process Industry Overview of modeling multiphase

More information

Multiphase Flows. Mohammed Azhar Phil Stopford

Multiphase Flows. Mohammed Azhar Phil Stopford Multiphase Flows Mohammed Azhar Phil Stopford 1 Outline VOF Model VOF Coupled Solver Free surface flow applications Eulerian Model DQMOM Boiling Model enhancements Multi-fluid flow applications Coupled

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

Development and Validation of the Wall Boiling Model in ANSYS CFD

Development and Validation of the Wall Boiling Model in ANSYS CFD Development and Validation of the Wall Boiling Model in ANSYS CFD Th. Frank, C. Lifante, A.D. Burns PBU, Funded CFD Development ANSYS Germany Thomas.Frank@ansys.com E. Krepper, R. Rzehak FZ Dresden-Rossendorf

More information

APPLICATION OF THE COUPLED THREE DIMENSIONAL THERMAL- HYDRAULICS AND NEUTRON KINETICS MODELS TO PWR STEAM LINE BREAK ANALYSIS

APPLICATION OF THE COUPLED THREE DIMENSIONAL THERMAL- HYDRAULICS AND NEUTRON KINETICS MODELS TO PWR STEAM LINE BREAK ANALYSIS APPLICATION OF THE COUPLED THREE DIMENSIONAL THERMAL- HYDRAULICS AND NEUTRON KINETICS MODELS TO PWR STEAM LINE BREAK ANALYSIS Michel GONNET and Michel CANAC FRAMATOME Tour Framatome. Cedex 16, Paris-La

More information

COMPARISON OF COBRA-TF AND VIPRE-01 AGAINST LOW FLOW CODE ASSESSMENT PROBLEMS.

COMPARISON OF COBRA-TF AND VIPRE-01 AGAINST LOW FLOW CODE ASSESSMENT PROBLEMS. COMPARISON OF COBRA-TF AND VIPRE-01 AGAINST LOW FLOW CODE ASSESSMENT PROBLEMS A. Galimov a, M. Bradbury b, G. Gose c, R. Salko d, C. Delfino a a NuScale Power LLC, 1100 Circle Blvd., Suite 200, Corvallis,

More information

VERIFICATION AND VALIDATION OF ONE DIMENSIONAL MODELS USED IN SUBCOOLED FLOW BOILING ANALYSIS

VERIFICATION AND VALIDATION OF ONE DIMENSIONAL MODELS USED IN SUBCOOLED FLOW BOILING ANALYSIS 2009 International Nuclear Atlantic Conference - INAC 2009 Rio de Janeiro, RJ, Brazil, September 27 to October 2, 2009 ASSOCIAÇÃO BRASILEIRA DE ENERGIA NUCLEAR - ABEN ISBN: 978-85-99141-03-8 VERIFICATION

More information

On the transient modelling of impinging jets heat transfer. A practical approach

On the transient modelling of impinging jets heat transfer. A practical approach Turbulence, Heat and Mass Transfer 7 2012 Begell House, Inc. On the transient modelling of impinging jets heat transfer. A practical approach M. Bovo 1,2 and L. Davidson 1 1 Dept. of Applied Mechanics,

More information

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

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

More information

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

Alexandre Guion. Advances in boiling simulations using interface tracking methods and microscale modeling

Alexandre Guion. Advances in boiling simulations using interface tracking methods and microscale modeling Advances in boiling simulations using interface tracking methods and microscale modeling Alexandre Guion Prof. J. Buongiorno Prof. N. Todreas Prof. E. Baglietto Prof. S. Zaleski Massachusetts Institute

More information

Development of a Parallel, 3D, Lattice Boltzmann Method CFD Solver for Simulation of Turbulent Reactor Flow

Development of a Parallel, 3D, Lattice Boltzmann Method CFD Solver for Simulation of Turbulent Reactor Flow DOE-FIU SCIENCE & TECHNOLOGY WORKFORCE DEVELOPMENT PROGRAM STUDENT SUMMER INTERNSHIP TECHNICAL REPORT June 4, 2012 to August 10, 2012 Development of a Parallel, 3D, Lattice Boltzmann Method CFD Solver

More information

Onset of Flow Instability in a Rectangular Channel Under Transversely Uniform and Non-uniform Heating

Onset of Flow Instability in a Rectangular Channel Under Transversely Uniform and Non-uniform Heating Onset of Flow Instability in a Rectangular Channel Under Transversely Uniform and Non-uniform Heating Omar S. Al-Yahia, Taewoo Kim, Daeseong Jo School of Mechanical Engineering, Kyungpook National University

More information

Simplified Model of WWER-440 Fuel Assembly for ThermoHydraulic Analysis

Simplified Model of WWER-440 Fuel Assembly for ThermoHydraulic Analysis 1 Portál pre odborné publikovanie ISSN 1338-0087 Simplified Model of WWER-440 Fuel Assembly for ThermoHydraulic Analysis Jakubec Jakub Elektrotechnika 13.02.2013 This work deals with thermo-hydraulic processes

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

Simulation of flow induced vibrations in pipes using the LS-DYNA ICFD solver

Simulation of flow induced vibrations in pipes using the LS-DYNA ICFD solver Simulation of flow induced vibrations in pipes using the LS-DYNA ICFD solver arcus Timgren 1 1 DYNAmore Nordic AB, Linköping, Sweden 1 Introduction Flow-induced vibrations, (FIV), is a terminology that

More information

Potential of Hollow Glass Microspheres (3M Glass Bubbles) for Thermal Insulation Dr. Friedrich Wolff

Potential of Hollow Glass Microspheres (3M Glass Bubbles) for Thermal Insulation Dr. Friedrich Wolff Potential of Hollow Glass Microspheres (3M Glass Bubbles) for Thermal Insulation Dr. Friedrich Wolff History From Solid Glass Beads to Glass Bubbles Diameter 2 Properties of 3M Glass Bubbles Property Shape

More information

Application of System Codes to Void Fraction Prediction in Heated Vertical Subchannels

Application of System Codes to Void Fraction Prediction in Heated Vertical Subchannels Application of System Codes to Void Fraction Prediction in Heated Vertical Subchannels Taewan Kim Incheon National University, 119 Academy-ro, Yeonsu-gu, Incheon 22012, Republic of Korea. Orcid: 0000-0001-9449-7502

More information

CFD modelling of multiphase flows

CFD modelling of multiphase flows 1 Lecture CFD-3 CFD modelling of multiphase flows Simon Lo CD-adapco Trident House, Basil Hill Road Didcot, OX11 7HJ, UK simon.lo@cd-adapco.com 2 VOF Free surface flows LMP Droplet flows Liquid film DEM

More information

Coolant Flow and Heat Transfer in PBMR Core With CFD

Coolant Flow and Heat Transfer in PBMR Core With CFD Heikki Suikkanen GEN4FIN 3.10.2008 1/ 27 Coolant Flow and Heat Transfer in PBMR Core With CFD Heikki Suikkanen Lappeenranta University of Technology Department of Energy and Environmental Technology GEN4FIN

More information

Description of AdjointShapeOptimizationFoam and how to implement new cost functions

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

More information

Taylor Dispersion Created by Robert P. Hesketh, Chemical Engineering, Rowan University Fall 2005

Taylor Dispersion Created by Robert P. Hesketh, Chemical Engineering, Rowan University Fall 2005 Taylor Dispersion Created by Robert P. Hesketh, Chemical Engineering, Rowan University Fall 005 In this problem you will simulate a tubular reactor with fluid flowing in laminar flow. The governing equations

More information

EVALUATION OF PWR AND BWR CALCULATIONAL BENCHMARKS FROM NUREG/CR-6115 USING THE TRANSFX NUCLEAR ANALYSIS SOFTWARE

EVALUATION OF PWR AND BWR CALCULATIONAL BENCHMARKS FROM NUREG/CR-6115 USING THE TRANSFX NUCLEAR ANALYSIS SOFTWARE ANS MC2015 - Joint International Conference on Mathematics and Computation (M&C), Supercomputing in Nuclear Applications (SNA) and the Monte Carlo (MC) Method Nashville, Tennessee April 19 23, 2015, on

More information

Euler-Euler Modeling of Mass-Transfer in Bubbly Flows

Euler-Euler Modeling of Mass-Transfer in Bubbly Flows Euler-Euler Modeling of Mass-Transfer in Bubbly Flows Roland Rzehak Eckhard Krepper Text optional: Institutsname Prof. Dr. Hans Mustermann www.fzd.de Mitglied der Leibniz-Gemeinschaft Overview Motivation

More information

Modeling of Wall-boiling Phenomena from Nucleate Subcooled Boiling up to CHF Conditions

Modeling of Wall-boiling Phenomena from Nucleate Subcooled Boiling up to CHF Conditions Modeling of Wall-boiling Phenomena from Nucleate Subcooled Boiling up to CHF Conditions Thomas Frank (1), Amine Ben Hadj Ali (1), Conxita Lifante (1), Florian Kaiser (2), Stephan Gabriel (2), Henning Eickenbusch

More information

ABSTRACT. DACUS III, ROBERT WARREN. Development of a Multiphase Adjoint Capability in OpenFOAM. (Under the direction of Paul Turinsky.

ABSTRACT. DACUS III, ROBERT WARREN. Development of a Multiphase Adjoint Capability in OpenFOAM. (Under the direction of Paul Turinsky. ABSTRACT DACUS III, ROBERT WARREN. Development of a Multiphase Adjoint Capability in OpenFOAM. (Under the direction of Paul Turinsky.) A multiphase adjoint capability was developed in the OpenFOAM computational

More information

Diffusion coefficients and critical spectrum methods in Serpent

Diffusion coefficients and critical spectrum methods in Serpent Diffusion coefficients and critical spectrum methods in Serpent Serpent User Group Meeting 2018 May 30, 2018 Espoo, Finland A. Rintala VTT Technical Research Centre of Finland Ltd Overview Some diffusion

More information

Lectures on Applied Reactor Technology and Nuclear Power Safety. Lecture No 7

Lectures on Applied Reactor Technology and Nuclear Power Safety. Lecture No 7 ectures on Nuclear Power Safety ecture No 7 itle: hermal-hydraulic nalysis of Single-Phase lows in Heated hannels Department of Energy echnology KH Spring 005 Slide No Outline of the ecture lad-oolant

More information

Numerical modelling of direct contact condensation of steam in BWR pressure suppression pool system

Numerical modelling of direct contact condensation of steam in BWR pressure suppression pool system Numerical modelling of direct contact condensation of steam in BWR pressure suppression pool system Gitesh Patel, Vesa Tanskanen, Juhani Hyvärinen LUT School of Energy Systems/Nuclear Engineering, Lappeenranta

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

Tutorial for the supercritical pressure pipe with STAR-CCM+

Tutorial for the supercritical pressure pipe with STAR-CCM+ Tutorial for the supercritical pressure pipe with STAR-CCM+ For performing this tutorial, it is necessary to have already studied the tutorial on the upward bend. In fact, after getting abilities with

More information

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

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

More information

ENGINEERING OF NUCLEAR REACTORS

ENGINEERING OF NUCLEAR REACTORS 22.312 ENGINEERING OF NUCLEAR REACTORS Monday, December 17 th, 2007, 9:00am-12:00 pm FINAL EXAM SOLUTIONS Problem 1 (45%) Analysis of Decay Heat Removal during a Severe Accident i) The energy balance for

More information

Unit 1 Lesson 6 Changes of State. Copyright Houghton Mifflin Harcourt Publishing Company

Unit 1 Lesson 6 Changes of State. Copyright Houghton Mifflin Harcourt Publishing Company The Fact of the Matter What happens when matter changes state? The three most familiar states of matter are solid, liquid, and gas. A change of state is the change of a substance from one physical form

More information

CFD SIMULATION OF THE DEPARTURE FROM NUCLEATE BOILING

CFD SIMULATION OF THE DEPARTURE FROM NUCLEATE BOILING CFD SIMULATION OF THE DEPARTURE FROM NUCLEATE BOILING Ladislav Vyskocil and Jiri Macek UJV Rez a. s., Dept. of Safety Analyses, Hlavni 130, 250 68 Husinec Rez, Czech Republic Ladislav.Vyskocil@ujv.cz;

More information

Predicting Size Distribution of Dispersed Phase Systems

Predicting Size Distribution of Dispersed Phase Systems Predicting Size Distribution of Dispersed Phase Systems Evren Bayraktar Supervisors: Prof. S.Turek (Dortmund), Dr. Ing. Otto Mierka, Dr. Ing. Frank Platte 28.11.2008, Sulzer Page 1 Outline Introduction

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

Description and validation of the rotordisksource class for propeller performance estimation

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

More information

Prediction of Critical Heat Flux (CHF) for Vertical Round Tubes with Uniform Heat Flux in Medium Pressure Regime

Prediction of Critical Heat Flux (CHF) for Vertical Round Tubes with Uniform Heat Flux in Medium Pressure Regime Korean J. Chem. Eng., 21(1), 75-80 (2004) Prediction of Critical Heat Flux (CHF) for Vertical Round Tubes with Uniform Heat Flux in Medium Pressure Regime W. Jaewoo Shim and Joo-Yong Park Department of

More information

Initial and Boundary Conditions

Initial and Boundary Conditions Initial and Boundary Conditions Initial- and boundary conditions are needed For a steady problems correct initial conditions is important to reduce computational time and reach convergence Boundary conditions

More information

Magnetic induction and electric potential solvers for incompressible MHD flows

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

More information

Mechanical Engineering Journal

Mechanical Engineering Journal 0123456789 Bulletin of the JSME Mechanical Engineering Journal Vol.2, No.5, 2015 3D MHD simulation of pressure drop and fluctuation in electromagnetic pump flow Takatoshi ASADA*, Rie AIZAWA**, Tetsu SUZUKI**,

More information

A numerical study of vortex-induced vibrations (viv) in an elastic cantilever

A numerical study of vortex-induced vibrations (viv) in an elastic cantilever A numerical study of vortex-induced vibrations (viv) in an elastic cantilever Lorentzon, Johan; Austrell, Per Erik; Szász, Robert-Zoltán; Revstedt, Johan 2009 Link to publication Citation for published

More information

The Use of Serpent 2 in Support of Modeling of the Transient Test Reactor at Idaho National Laboratory

The Use of Serpent 2 in Support of Modeling of the Transient Test Reactor at Idaho National Laboratory The Use of Serpent 2 in Support of Modeling of the Transient Test Reactor at Idaho National Laboratory Sixth International Serpent User s Group Meeting Politecnico di Milano, Milan, Italy 26-29 September,

More information

Models for Nucleation and Condensation on Nanoparticles

Models for Nucleation and Condensation on Nanoparticles PFAU X Models for Nucleation and Condensation on Nanoparticles Stefan Radl, 1 Mario Schriefl 2,3 1 TU Graz, Institute of Process and Particle Engineering 2 TU Graz, Institute of Electronics Tristan Reinisch,

More information

Tutorial for the heated pipe with constant fluid properties in STAR-CCM+

Tutorial for the heated pipe with constant fluid properties in STAR-CCM+ Tutorial for the heated pipe with constant fluid properties in STAR-CCM+ For performing this tutorial, it is necessary to have already studied the tutorial on the upward bend. In fact, after getting abilities

More information

3D Numerical Simulation of Supercritical Flow in Bends of Channel

3D Numerical Simulation of Supercritical Flow in Bends of Channel 3D Numerical Simulation of Supercritical Flow in Bends of Channel Masoud. Montazeri-Namin, Reyhaneh-Sadat. Ghazanfari-Hashemi, and Mahnaz. Ghaeini- Hessaroeyeh Abstract An attempt has been made to simulate

More information

Modelling of Gas-Liquid Two-Phase Flows in Vertical Pipes using PHOENICS

Modelling of Gas-Liquid Two-Phase Flows in Vertical Pipes using PHOENICS Modelling of Gas-Liquid Two-Phase Flows in Vertical Pipes using PHOENICS Vladimir Agranat, Masahiro Kawaji, Albert M.C. Chan* Department of Chemical Engineering and Applied Chemistry University of Toronto,

More information

Numerical simulation of polyurethane foaming processes on bubble scale

Numerical simulation of polyurethane foaming processes on bubble scale Numerical simulation of polyurethane foaming processes on bubble scale 7th OpenFOAM Workshop Darmstadt, 25-28 June 2012 Stephanie Geier and Manfred Piesche Institute of Mechanical Process Engineering University

More information

CFDOFAIRFLOWINHYDROPOWERGENERATORS

CFDOFAIRFLOWINHYDROPOWERGENERATORS CFDOFAIRFLOWINHYDROPOWERGENERATORS Pirooz Moradnia Göteborg-Sweden 1-1-17 Pirooz Moradnia, Chalmers/ Applied Mechanics/ Fluid Dynamics 1/3 Problem Definition Half of the electricity generation in Sweden

More information

CFD Simulation of Sodium Boiling in Heated Pipe using RPI Model

CFD Simulation of Sodium Boiling in Heated Pipe using RPI Model Proceedings of the 2 nd World Congress on Momentum, Heat and Mass Transfer (MHMT 17) Barcelona, Spain April 6 8, 2017 Paper No. ICMFHT 114 ISSN: 2371-5316 DOI: 10.11159/icmfht17.114 CFD Simulation of Sodium

More information

FUSION TECHNOLOGY INSTITUTE

FUSION TECHNOLOGY INSTITUTE FUSION TECHNOLOGY INSTITUTE Z-Pinch (LiF) 2 -BeF 2 (flibe) Preliminary Vaporization Estimation Using the BUCKY 1-D Radiation Hydrodynamics Code W I S C O N S I N T.A. Heltemes, E.P. Marriott, G.A. Moses,

More information

Sensitivity Analysis of a Nuclear Reactor System Finite Element Model

Sensitivity Analysis of a Nuclear Reactor System Finite Element Model Westinghouse Non-Proprietary Class 3 Sensitivity Analysis of a Nuclear Reactor System Finite Element Model 2018 ASME Verification & Validation Symposium VVS2018-9306 Gregory A. Banyay, P.E. Stephen D.

More information

CFD Simulation of Flashing and Boiling Flows Using FLUENT

CFD Simulation of Flashing and Boiling Flows Using FLUENT CFD Simulation of Flashing and Boiling Flows Using FLUENT Hua Bai and Paul Gillis The Dow Chemical Company FLUENT UGM 2004 Liquid/Gas Phase Change found in many industrial chemical processes involves complex

More information

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

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

More information

Large Scale Fluid-Structure Interaction by coupling OpenFOAM with external codes

Large Scale Fluid-Structure Interaction by coupling OpenFOAM with external codes Large Scale Fluid-Structure Interaction by coupling OpenFOAM with external codes Thomas Gallinger * Alexander Kupzok Roland Wüchner Kai-Uwe Bletzinger Lehrstuhl für Statik Technische Universität München

More information

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

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

More information

Homogenization Methods for Full Core Solution of the Pn Transport Equations with 3-D Cross Sections. Andrew Hall October 16, 2015

Homogenization Methods for Full Core Solution of the Pn Transport Equations with 3-D Cross Sections. Andrew Hall October 16, 2015 Homogenization Methods for Full Core Solution of the Pn Transport Equations with 3-D Cross Sections Andrew Hall October 16, 2015 Outline Resource-Renewable Boiling Water Reactor (RBWR) Current Neutron

More information

Investigation of CTF void fraction prediction by ENTEK BM experiment data

Investigation of CTF void fraction prediction by ENTEK BM experiment data Investigation of CTF void fraction prediction by ENTEK BM experiment data Abstract Hoang Minh Giang 1, Hoang Tan Hung 1, Nguyen Phu Khanh 2 1 Nuclear Safety Center, Institute for Nuclear Science and Technology

More information

Peristaltic Pump. Introduction. Model Definition

Peristaltic Pump. Introduction. Model Definition Peristaltic Pump Introduction In a peristaltic pump, rotating rollers are squeezing a flexible tube. As the pushed down rollers move along the tube, the fluid in the tube follows the motion. The main advantage

More information

THE INFLUENCE OF WORKING FLUID CHARECTERISTIC PARAMETERS ON TURBINE PERFORMANCE FOR THE SMALL SCALE ORC SYSTEM

THE INFLUENCE OF WORKING FLUID CHARECTERISTIC PARAMETERS ON TURBINE PERFORMANCE FOR THE SMALL SCALE ORC SYSTEM Proceedings of the ASME 203 Fluids Engineering Division Summer Meeting FEDSM203 July 7-, 203, Incline Village, Nevada, USA FEDSM203-6348 THE INFLUENCE OF WORKING FLUID CHARECTERISTIC PARAMETERS ON TURBINE

More information

CONCEPTUAL DESIGN STUDIES FOR THE LIQUID METAL SPALLATION TARGET META:LIC

CONCEPTUAL DESIGN STUDIES FOR THE LIQUID METAL SPALLATION TARGET META:LIC CONCEPTUAL DESIGN STUDIES FOR THE LIQUID METAL SPALLATION TARGET META:LIC J. R. Fetzer, A. G. Class, C. Fazio, S. Gordeev Institute for Nuclear and Energy Technologies () KIT University of the State of

More information

MECHANISTIC MODELING OF TWO-PHASE FLOW AROUND SPACER GRIDS WITH MIXING VANES

MECHANISTIC MODELING OF TWO-PHASE FLOW AROUND SPACER GRIDS WITH MIXING VANES MECHANISTIC MODELING OF TWO-PHASE FLOW AROUND SPACER GRIDS WITH MIXING VANES B. M. Waite, D. R. Shaver and M. Z. Podowski Department of Mechanical, Aerospace and Nuclear Engineering, Rensselaer Polytechnic

More information

Coupled CFD-STH analysis of liquid metal flows: STAR-CCM+ - RELAP5

Coupled CFD-STH analysis of liquid metal flows: STAR-CCM+ - RELAP5 STAR Global Conference 2017 Berlin Mar 6-8, 2017 Coupled CFD-STH analysis of liquid metal flows: STAR-CCM+ - RELAP5 Marti Jeltsov, Kaspar Kööp, Pavel Kudinov Division of Nuclear Power Safety KTH Royal

More information

OMAE FLUID-STRUCTURE INTERACTION MODELING OF SUBSEA JUMPER PIPE

OMAE FLUID-STRUCTURE INTERACTION MODELING OF SUBSEA JUMPER PIPE Proceedings of the ASME 2014 33 rd International Conference on Ocean, Offshore and Arctic Engineering OMAE2014 June 8-13, 2014, San Francisco, CA USA OMAE2014-24070 FLUID-STRUCTURE INTERACTION MODELING

More information

Tutorial: Premixed Flow in a Conical Chamber using the Finite-Rate Chemistry Model

Tutorial: Premixed Flow in a Conical Chamber using the Finite-Rate Chemistry Model Tutorial: Premixed Flow in a Conical Chamber using the Finite-Rate Chemistry Model Introduction The purpose of this tutorial is to provide guidelines and recommendations for setting up and solving the

More information

GA A22689 SLOW LINER FUSION

GA A22689 SLOW LINER FUSION GA A22689 SLOW LINER FUSION by AUGUST 1997 DISCLAIMER This report was prepared as an account of work sponsored by an agency of the United States Government. Neither the United States Government nor any

More information

A DIRECT STEADY-STATE INITIALIZATION METHOD FOR RELAP5

A DIRECT STEADY-STATE INITIALIZATION METHOD FOR RELAP5 A DIRECT STEADY-STATE INITIALIZATION METHOD FOR RELAP5 M. P. PAULSEN and C. E. PETERSON Computer Simulation & Analysis, Inc. P. O. Box 51596, Idaho Falls, Idaho 83405-1596 for presentation at RELAP5 International

More information

arxiv: v1 [physics.comp-ph] 18 May 2018

arxiv: v1 [physics.comp-ph] 18 May 2018 Assessment of continuous and discrete adjoint method for sensitivity analysis in two-phase flow simulations Guojun Hu, Tomasz Kozlowski Department of Nuclear, Plasma, and Radiological Engineering, University

More information

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

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

More information

Coupled CFD-FE-Analysis for the Exhaust Manifold of a Diesel Engine

Coupled CFD-FE-Analysis for the Exhaust Manifold of a Diesel Engine Coupled CFD-FE-Analysis for the Exhaust Manifold of a Diesel Engine Yasar Deger*, Burkhard Simperl*, Luis P. Jimenez** *Sulzer Innotec, Sulzer Markets and Technology Ltd, Winterthur, Switzerland **Guascor

More information

Evaluation of OpenFOAM for CFD of turbulent flow in

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

More information

first law of ThermodyNamics

first law of ThermodyNamics first law of ThermodyNamics First law of thermodynamics - Principle of conservation of energy - Energy can be neither created nor destroyed Basic statement When any closed system is taken through a cycle,

More information

Chapter 1 INTRODUCTION AND BASIC CONCEPTS

Chapter 1 INTRODUCTION AND BASIC CONCEPTS Heat and Mass Transfer: Fundamentals & Applications 5th Edition in SI Units Yunus A. Çengel, Afshin J. Ghajar McGraw-Hill, 2015 Chapter 1 INTRODUCTION AND BASIC CONCEPTS Mehmet Kanoglu University of Gaziantep

More information

Prediction of Convective Boiling up to Critical Heat Flux (CHF) Conditions for Test Facilities with Vertical Heaters

Prediction of Convective Boiling up to Critical Heat Flux (CHF) Conditions for Test Facilities with Vertical Heaters Prediction of Convective Boiling up to Critical Heat Flux (CHF) Conditions for Test Facilities with Vertical Heaters Thomas Frank (1), Amine Ben Hadj Ali (1), Conxita Lifante (1), Moritz Bruder (2), Florian

More information

InterPACKICNMM

InterPACKICNMM Proceedings of ASME 2015 International Technical Conference and Exhibition & on Packaging and Integration of Electronic and Photonic Microsystems InterPACK2015 July 6-9, 2015, San Francisco, USA InterPACKICNMM2015-48129

More information

RELAP5 to TRACE model conversion for a Pressurized Water Reactor

RELAP5 to TRACE model conversion for a Pressurized Water Reactor RELAP5 to TRACE model conversion for a Pressurized Water Reactor Master s thesis Federico López-Cerón Nieto Department of Physics Division of Subatomic and Plasma Physics Chalmers University of Technology

More information

CFD-Modeling of Turbulent Flows in a 3x3 Rod Bundle and Comparison to Experiments

CFD-Modeling of Turbulent Flows in a 3x3 Rod Bundle and Comparison to Experiments CFD-Modeling of Turbulent Flows in a 3x3 Rod Bundle and Comparison to Experiments C. Lifante 1, B. Krull 1, Th. Frank 1, R. Franz 2, U. Hampel 2 1 PBU, ANSYS Germany, Otterfing 2 Institute of Safety Research,

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

VALIDATION OF CFD-BWR, A NEW TWO-PHASE COMPUTATIONAL FLUID DYNAMICS MODEL FOR BOILING WATER REACTOR ANALYSIS

VALIDATION OF CFD-BWR, A NEW TWO-PHASE COMPUTATIONAL FLUID DYNAMICS MODEL FOR BOILING WATER REACTOR ANALYSIS VALIDATION OF CFD-BWR, A NEW TWO-PHASE COMPUTATIONAL FLUID DYNAMICS MODEL FOR BOILING WATER REACTOR ANALYSIS V.Ustineno 1, M.Samigulin 1, A.Ioilev 1, S.Lo 2, A.Tentner 3, A.Lychagin 4, A.Razin 4, V.Girin

More information

Estimation of Flow Accelerated Corrosion (FAC) in Feeder Pipes using CFDd Software Fluent

Estimation of Flow Accelerated Corrosion (FAC) in Feeder Pipes using CFDd Software Fluent Estimation of Flow Accelerated Corrosion (FAC) in Feeder Pipes using CFDd Software Fluent Dheya Al-Othmany Department of Nuclear Engineering, King Abdulaziz University, Jeddah 21589, Saudi Arabia Email

More information

A dynamic model of a vertical direct expansion ground heat exchanger

A dynamic model of a vertical direct expansion ground heat exchanger A dynamic model of a vertical direct expansion ground heat exchanger B. Beauchamp 1, L. Lamarche 1 and S. Kajl 1 1 Department of mechanical engineering École de technologie supérieure 1100 Notre-Dame Ouest,

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

Hydrodynamics of Bubble Columns: Turbulence and Population Balance Model

Hydrodynamics of Bubble Columns: Turbulence and Population Balance Model Article Hydrodynamics of Bubble Columns: Turbulence and Population Balance Model Camila Braga Vieira *, and Pierre Proulx ID ID, Giuliana Litrico, Ehsan Askari ID, Gabriel Lemieux ID Chemical Engineering

More information

WALL SUPERHEAT PREDICTION IN NARROW RECTANGULAR CHANNELS UNDER FULLY DEVELOPED BOILING OF WATER AT LOW PRESSURES

WALL SUPERHEAT PREDICTION IN NARROW RECTANGULAR CHANNELS UNDER FULLY DEVELOPED BOILING OF WATER AT LOW PRESSURES WALL SUPERHEAT PREDICTION IN NARROW RECTANGULAR CHANNELS UNDER FULLY DEVELOPED BOILING OF WATER AT LOW PRESSURES A. Ghione (a) and B. Noel Commissariat à l'énergie Atomique et aux énergies alternatives,

More information

CHARACTERISTIC OF VORTEX IN A MIXING LAYER FORMED AT NOZZLE PITZDAILY USING OPENFOAM

CHARACTERISTIC OF VORTEX IN A MIXING LAYER FORMED AT NOZZLE PITZDAILY USING OPENFOAM CHARACTERISTIC OF VORTEX IN A MIXING LAYER FORMED AT NOZZLE PITZDAILY USING OPENFOAM Suheni and Syamsuri Department of Mechanical Engineering, Adhi Tama Institute of Technology Surabaya, Indonesia E-Mail:

More information

MTF071 Computational Fluid Dynamics of Turbulent

MTF071 Computational Fluid Dynamics of Turbulent CHALMERS TEKNISKA HÖGSKOLA Termo- och Fluiddynamik 42 96 Göteborg MTF07 Computational Fluid Dynamics of Turbulent Flow http://wwwtfdchalmersse/gr-kurs/mtf07 Task K2 Lars Davidson 2003-02-03 In Task K you

More information

IJSRD - International Journal for Scientific Research & Development Vol. 4, Issue 05, 2016 ISSN (online):

IJSRD - International Journal for Scientific Research & Development Vol. 4, Issue 05, 2016 ISSN (online): IJSRD - International Journal for Scientific Research & Development Vol. 4, Issue 05, 2016 ISSN (online): 2321-0613 Performance of Rectangular Baffle Plate Shell and Tube Heat Exchanger using Computational

More information