mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
44 lines
1.3 KiB
C++
44 lines
1.3 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";
|
|
object alphat;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [1 -1 -1 0 0 0 0];
|
|
|
|
internalField uniform 1e-7;
|
|
|
|
boundaryField
|
|
{
|
|
walls
|
|
{
|
|
type compressible::alphatWallFunction;
|
|
Prt 0.85;
|
|
value uniform 0;
|
|
}
|
|
wallFilm
|
|
{
|
|
type alphatFilmWallFunction;
|
|
B 5.5;
|
|
yPlusCrit 11.05;
|
|
Cmu 0.09;
|
|
kappa 0.41;
|
|
Prt 0.85;
|
|
value uniform 0;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|