mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
chtMultiRegionFoam now supports reaction/combustion modelling in fluid regions in the same way as reactingFoam. TUT: chtMultiRegionFoam: Added reverseBurner tutorial This tutorial demonstrates chtMultiRegionFoam's combustion capability
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "0/solid";
|
|
object T;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [ 0 0 0 1 0 0 0 ];
|
|
|
|
internalField uniform 300;
|
|
|
|
boundaryField
|
|
{
|
|
#includeEtc "caseDicts/setConstraintTypes"
|
|
|
|
external
|
|
{
|
|
type externalWallHeatFluxTemperature;
|
|
kappaMethod solidThermo;
|
|
mode coefficient;
|
|
h uniform 1e3;
|
|
Ta $internalField;
|
|
value $internalField;
|
|
}
|
|
solid_to_gas
|
|
{
|
|
type compressible::turbulentTemperatureCoupledBaffleMixed;
|
|
value $internalField;
|
|
Tnbr T;
|
|
kappaMethod solidThermo;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|