-
Inviscid Bump in a Channel
Inviscid Supersonic Wedge
Inviscid ONERA M6
Laminar Flat Plate
Laminar Cylinder
Turbulent Flat Plate
Transitional Flat Plate
Transitional Flat Plate for T3A and T3A-
Turbulent ONERA M6
Unsteady NACA0012
Epistemic Uncertainty Quantification of RANS predictions of NACA 0012 airfoil
Non-ideal compressible flow in a supersonic nozzle
-
Static Fluid-Structure Interaction (FSI)
Dynamic Fluid-Structure Interaction (FSI) using the Python wrapper and a Nastran structural model
Static Conjugate Heat Transfer (CHT)
Unsteady Conjugate Heat Transfer
Solid-to-Solid Conjugate Heat Transfer with Contact Resistance
Incompressible, Laminar Combustion Simulation
-
Unconstrained shape design of a transonic inviscid airfoil at a cte. AoA
Constrained shape design of a transonic turbulent airfoil at a cte. CL
Constrained shape design of a transonic inviscid wing at a cte. CL
Shape Design With Multiple Objectives and Penalty Functions
Unsteady Shape Optimization NACA0012
Unconstrained shape design of a two way mixing channel
Unsteady Conjugate Heat Transfer
Written by | for Version | Revised by | Revision date | Revised version |
---|---|---|---|---|
@oleburghardt | 7.1.0 | @TobiKattmann | 2021-03-04 | 7.1.1 |
Solver: |
|
Uses: |
|
User Guide: |
Basics of Multi-Zone Computations |
Prerequisites: |
Static Conjugate Heat Transfer (CHT) |
Complexity: |
Advanced |
Goals
This tutorial is a follow-up on the heated cylinders with conjugate heat transfer tutorial where a steady CHT solution was computed for a problem involving multiple physical zones. The following capabilities of SU2 will be showcased in this tutorial:
- Time domain and time-marching config file options (plus related ones) for unsteady simulations
- Use of time iterations, outer and inner iterations
- Paraview multiblock output
The intent of this tutorial is to demonstrate how a steady CHT simulation can be turned into an unsteady one.
Resources
The resources for this tutorial can be found in the Inc_Heated_Cylinders_Unsteady directory in the tutorial repository. You will need the configuration files for all physical zones (flow_cylinder.cfg, solid_cylinder1.cfg, solid_cylinder2.cfg, solid_cylinder3.cfg), the cofiguration file to invoke a multiphysics simulation run (cht_2d_3cylinders.cfg) and the mesh file (mesh_cht_3cyl.su2).
Tutorial
The following tutorial will walk you through the steps required when solving for an unsteady coupled CHT solution. It is assumed you have already obtained and compiled the SU2_CFD code for a serial computation. If you have yet to complete these requirements, please see the Download and Installation pages and that make sure you have completed the heated cylinders with conjugate heat transfer tutorial.
Background
For unsteady flows around walls that are transferring heat from an adjacent (solid) zone, the coupling of temperature and heat flux distributions has to be resolved for each and every time step. Both will vary over time as they depend on the current flow field.
Problem Setup
The problem setup is the same as in the heated cylinders with conjugate heat transfer tutorial except for the density. It is increased in all zones by a factor of 100 so that for the flow we obtain a Reynolds number of 4000 which will make it unsteady. Thus we set
INC_DENSITY_INIT= 0.0210322
in flow_cylinder.cfg and
MATERIAL_DENSITY= 0.0210322
in solid_cylinder1.cfg, solid_cylinder2.cfg and solid_cylinder3.cfg
For simplicity we leave all other parameters unchanged.
Mesh Description
The mesh is the same as in the heated cylinders with conjugate heat transfer tutorial.
Configuration File Options
An unsteady simulation is set up by enabling the time domain and choosing a time marching algorithm in the master config file:
TIME_DOMAIN = YES
%
%
TIME_MARCHING= DUAL_TIME_STEPPING-2ND_ORDER
The time marching parameters have to match the flow physics that should be resolved. For a given inlet velocity of 3.40297 m/s at Re = 4000, the Strouhal number estimation for the most upstream cylinder is Sr = 0.21. This gives a frequency of f = Sr*v = 0.71Hz for the vortex shedding so that a time step of 0.05s is chosen in the master config file:
TIME_STEP= 0.05
In order to sufficiently resolve the coupling in each time step, we set the number of outer iterations to 200 in the master config file:
OUTER_ITER = 200
The number of inner (zone-internal) iterations is set to 1 by default. We do not have to touch any of the zone-specific config files for unsteady options.
Running SU2
One time iteration will run rather quick and it is up to the user for how long the simulation should run or, equivalently, which physical time span should be covered. In the video above, 1000 time steps had been computed to generate a 50s realtime video. See the heated cylinders with conjugate heat transfer tutorial how to execute SU2_CFD.
- Previous
- Next