openfoam/tutorials/incompressible/pimpleFoam/LES/surfaceMountedCube/initChannel/system/controlDict
2019-08-30 16:45:45 +02:00

86 lines
2.0 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1906 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
application boundaryFoam;
startFrom startTime;
startTime 0;
stopAt endTime;
endTime 2000;
deltaT 1;
writeControl timeStep;
writeInterval 200;
purgeWrite 1;
writeFormat ascii;
writePrecision 6;
writeCompression off;
timeFormat general;
timePrecision 6;
runTimeModifiable true;
graphFormat raw;
functions
{
turbulenceFields
{
type turbulenceFields;
libs (fieldFunctionObjects);
writeControl writeTime;
fields (R nuTilda k epsilon omega L);
}
surfaces
{
type surfaces;
surfaceFormat boundaryData;
writeControl writeTime;
interpolationScheme cell;
fields
(
U
turbulenceProperties:R
turbulenceProperties:nuTilda
turbulenceProperties:L
);
surfaces
(
inlet
{
type patch;
patches (inlet);
interpolate false;
}
);
}
}
// ************************************************************************* //