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

116 lines
2.5 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;
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
libs (turbulenceModelSchemes);
application pimpleFoam;
startFrom startTime;
startTime 0;
stopAt endTime;
endTime 100;
deltaT 0.002;
writeControl timeStep;
writeInterval 100;
purgeWrite 3;
writeFormat binary;
writePrecision 6;
writeCompression off;
timeFormat general;
timePrecision 6;
runTimeModifiable true;
functions
{
minMax
{
type fieldMinMax;
libs (fieldFunctionObjects);
fields (U p);
}
DESField
{
type DESModelRegions;
libs (fieldFunctionObjects);
//region "region0";
writeControl writeTime;
}
Q1
{
type Q;
libs (fieldFunctionObjects);
writeControl writeTime;
}
vorticity1
{
type vorticity;
libs (fieldFunctionObjects);
writeControl writeTime;
}
yPlus
{
type yPlus;
libs (fieldFunctionObjects);
writeControl writeTime;
}
fieldAverage1
{
type fieldAverage;
libs (fieldFunctionObjects);
writeControl writeTime;
timeStart 10;
fields
(
U
{
mean on;
prime2Mean on;
base time;
}
p
{
mean on;
prime2Mean on;
base time;
}
);
}
sample1
{
#include "sample"
}
}
// ************************************************************************* //