kappa is now obtained from the fluidThermo for laminar regions, the turbulence model for turbulent regions and the solidThermo for solid regions. The "lookup" option previously supported allowed for energy-temperature inconsistent and incorrect specification of kappa and was not used. Without this incorrect option there is now no need to specify a kappaMethod thus significantly simplifying the use boundary conditions derived from temperatureCoupledBase.
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "0/pyrolysisRegion";
|
|
object T;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 0 0 1 0 0 0];
|
|
|
|
internalField uniform 298;
|
|
|
|
boundaryField
|
|
{
|
|
coupledWall_top
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
|
|
coupledWall_side
|
|
{
|
|
type empty;
|
|
}
|
|
|
|
region0_to_pyrolysisRegion_coupledWall
|
|
{
|
|
type filmPyrolysisRadiativeCoupledMixed;
|
|
pyrolysisRegion pyrolysisRegion;
|
|
filmRegion filmRegion;
|
|
Tnbr T;
|
|
qrNbr qr;
|
|
qr none;
|
|
filmDeltaDry 0.0;
|
|
filmDeltaWet 2e-4;
|
|
value uniform 298;
|
|
}
|
|
oneDEmptyPatch
|
|
{
|
|
type empty;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|