This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/incompressible/pisoFoam/les/pitzDaily/system/controlDict

100 lines
2.2 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2013-12-11 16:09:41 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
2015-05-17 13:55:59 +00:00
| \\ / O peration | Version: 3.2 |
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
2010-09-23 13:04:10 +00:00
location "system";
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
2010-09-23 13:04:10 +00:00
application pisoFoam;
startFrom startTime;
startTime 0;
stopAt endTime;
endTime 0.1;
deltaT 1e-05;
writeControl timeStep;
writeInterval 100;
purgeWrite 0;
writeFormat ascii;
writePrecision 6;
writeCompression uncompressed;
timeFormat general;
timePrecision 6;
runTimeModifiable yes;
functions
2011-04-28 01:08:28 +00:00
(
2010-09-23 13:04:10 +00:00
probes
{
2010-09-23 13:04:10 +00:00
type probes;
functionObjectLibs ("libsampling.so");
2010-09-23 13:04:10 +00:00
enabled true;
outputControl timeStep;
outputInterval 1;
probeLocations
(
2010-09-23 13:04:10 +00:00
( 0.0254 0.0253 0 )
( 0.0508 0.0253 0 )
( 0.0762 0.0253 0 )
( 0.1016 0.0253 0 )
( 0.127 0.0253 0 )
( 0.1524 0.0253 0 )
( 0.1778 0.0253 0 )
);
fields
(
p
);
}
fieldAverage1
{
2010-09-23 13:04:10 +00:00
type fieldAverage;
functionObjectLibs ("libfieldFunctionObjects.so");
enabled true;
outputControl outputTime;
fields
(
U
{
2010-09-23 13:04:10 +00:00
mean on;
prime2Mean on;
base time;
}
2010-09-23 13:04:10 +00:00
p
{
2010-09-23 13:04:10 +00:00
mean on;
prime2Mean on;
base time;
}
);
}
2011-04-28 01:08:28 +00:00
);
// ************************************************************************* //