The turbulentTemperatureCoupledBaffleMixed boundary condition has been superseded by the turbulentTemperatureRadCoupledMixed condition TUT: injectorPipe: remove an unused entry TUT: waveMakerFlap: remove uncompressed entry
49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v2106 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
object T;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [ 0 0 0 1 0 0 0 ];
|
|
|
|
internalField uniform 300;
|
|
|
|
boundaryField
|
|
{
|
|
#includeEtc "caseDicts/setConstraintTypes"
|
|
|
|
"inlet.*"
|
|
{
|
|
type fixedValue;
|
|
value $internalField;
|
|
}
|
|
|
|
outlet
|
|
{
|
|
type inletOutlet;
|
|
value $internalField;
|
|
inletValue $internalField;
|
|
}
|
|
|
|
gas_to_solid
|
|
{
|
|
type compressible::turbulentTemperatureRadCoupledMixed;
|
|
value $internalField;
|
|
Tnbr T;
|
|
kappaMethod fluidThermo;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|