/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | foam-extend: Open Source CFD |
| \\ / O peration | Version: 3.2 |
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object changeDictionaryDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dictionaryReplacement
U
internalField uniform (0.01 0 0);
boundaryField
".*"
type fixedValue;
value uniform (0 0 0);
minX
value uniform ( 0.01 0 0 );
maxX
type inletOutlet;
inletValue uniform ( 0 0 0 );
value uniform ( 0 0 0 );
T
internalField uniform 300;
type zeroGradient;
value uniform 300;
inletValue uniform 300;
"topAir_to_.*"
type compressible::turbulentTemperatureCoupledBaffle;
neighbourFieldName T;
Kappa Kappa;
epsilon
internalField uniform 0.01;
type compressible::epsilonWallFunction;
value uniform 0.01;
inletValue uniform 0.01;
k
internalField uniform 0.1;
type compressible::kqRWallFunction;
value uniform 0.1;
inletValue uniform 0.1;
p
internalField uniform 100000;
type buoyantPressure;
value 1e5;
value uniform 100000;
// ************************************************************************* //