for consistency with the time controls in controlDict and to avoid unnecessary confusion. All code and tutorials have been updated. The old names 'outputControl' and 'outputInterval' are but supported for backward compatibility but deprecated.
78 lines
1.7 KiB
C++
78 lines
1.7 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;
|
|
location "system";
|
|
object controlDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
application reactingParcelFoam;
|
|
|
|
startFrom latestTime;
|
|
|
|
startTime 0;
|
|
|
|
stopAt endTime;
|
|
|
|
endTime 0.5;
|
|
|
|
deltaT 1e-05;
|
|
|
|
writeControl adjustableRunTime;
|
|
|
|
writeInterval 1e-02;
|
|
|
|
purgeWrite 0;
|
|
|
|
writeFormat ascii;
|
|
|
|
writePrecision 10;
|
|
|
|
writeCompression off;
|
|
|
|
timeFormat general;
|
|
|
|
timePrecision 6;
|
|
|
|
runTimeModifiable true;
|
|
|
|
adjustTimeStep yes;
|
|
|
|
maxCo 5;
|
|
|
|
maxDeltaT 1e-03;
|
|
|
|
functions
|
|
{
|
|
faceSource1
|
|
{
|
|
type faceSource;
|
|
functionObjectLibs ("libfieldFunctionObjects.so");
|
|
enabled yes;
|
|
writeControl outputTime;
|
|
log yes;
|
|
valueOutput no;
|
|
source patch;
|
|
sourceName outlet;
|
|
operation weightedAverage;
|
|
weightField phi;
|
|
|
|
fields
|
|
(
|
|
H2O
|
|
T
|
|
);
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|