Files
openfoam/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/system/changeDictionaryDict

51 lines
1.5 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object changeDictionaryDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dictionaryReplacement
{
T
{
boundaryField
{
wallFilm
{
type directMappedNamedFixedValue;
fieldName Tsf;
average 300;
setAverage no;
value uniform 300;
}
}
}
U
{
boundaryField
{
wallFilm
{
type directMappedNamedFixedValue;
fieldName Usf;
average (0 0 0);
setAverage no;
value uniform (0 0 0);
}
}
}
}
// ************************************************************************* //