Files
OpenFOAM-5.x/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/system/changeDictionaryDict
Henry Weller 685afaafbf changeDictionary: Simplified by removing the need for the superfluous dictionaryReplacement sub-dictionary
Added the option '-subDict' to specify a sub-dictionary if multiple
replacement sets are present in the same file.  This also provides
backward compatibility by setting '-subDict dictionaryReplacement'
2016-06-15 09:03:05 +01:00

70 lines
1.5 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 dictionary;
object changeDictionaryDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
T
{
boundaryField
{
wallFilm
{
type mapped;
field Tsf;
average 300;
setAverage no;
value uniform 300;
}
}
}
U
{
boundaryField
{
wallFilm
{
type mapped;
field Usf;
average (0 0 0);
setAverage no;
value uniform (0 0 0);
}
}
}
"nut"
{
boundaryField
{
wallFilm
{
value uniform 0;
}
}
}
"alphat"
{
boundaryField
{
wallFilm
{
value uniform 0;
}
}
}
// ************************************************************************* //