replacing the virtual functions overridden in engineTime.
Now the userTime conversion function in Time is specified in system/controlDict
such that the solver as well as all pre- and post-processing tools also operate
correctly with the chosen user-time.
For example the user-time and rpm in the tutorials/combustion/XiEngineFoam/kivaTest case are
now specified in system/controlDict:
userTime
{
type engine;
rpm 1500;
}
The default specification is real-time:
userTime
{
type real;
}
but this entry can be omitted as the real-time class is instantiated
automatically if the userTime entry is not present in system/controlDict.
162 lines
4.4 KiB
C++
162 lines
4.4 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2016-2021 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Global
|
|
postProcess
|
|
|
|
Description
|
|
Execute application functionObjects to post-process existing results.
|
|
|
|
If the "dict" argument is specified the functionObjectList is constructed
|
|
from that dictionary otherwise the functionObjectList is constructed from
|
|
the "functions" sub-dictionary of "system/controlDict"
|
|
|
|
Multiple time-steps may be processed and the standard utility time
|
|
controls are provided.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#ifndef CREATE_TIME
|
|
#define CREATE_TIME createTime.H
|
|
#endif
|
|
|
|
#ifndef CREATE_MESH
|
|
#define CREATE_MESH createMesh.H
|
|
#endif
|
|
|
|
#ifndef CREATE_FIELDS
|
|
#define CREATE_FIELDS createFields.H
|
|
#endif
|
|
|
|
#ifndef CREATE_CONTROL
|
|
#define CREATE_CONTROL createControl.H
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#define INCLUDE_FILE(X) INCLUDE_FILE2(X)
|
|
#define INCLUDE_FILE2(X) #X
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
Foam::argList::addBoolOption
|
|
(
|
|
argList::postProcessOptionName,
|
|
"Execute functionObjects only"
|
|
);
|
|
|
|
if (argList::postProcess(argc, argv))
|
|
{
|
|
Foam::timeSelector::addOptions();
|
|
#include "addRegionOption.H"
|
|
#include "addFunctionObjectOptions.H"
|
|
|
|
// Set functionObject post-processing mode
|
|
functionObject::postProcess = true;
|
|
|
|
#include "setRootCase.H"
|
|
|
|
if (args.optionFound("list"))
|
|
{
|
|
functionObjectList::list();
|
|
return 0;
|
|
}
|
|
|
|
#include INCLUDE_FILE(CREATE_TIME)
|
|
Foam::instantList timeDirs = Foam::timeSelector::select0(runTime, args);
|
|
#include INCLUDE_FILE(CREATE_MESH)
|
|
|
|
#ifndef NO_CONTROL
|
|
#include INCLUDE_FILE(CREATE_CONTROL)
|
|
#endif
|
|
|
|
forAll(timeDirs, timei)
|
|
{
|
|
runTime.setTime(timeDirs[timei], timei);
|
|
|
|
Info<< "Time = " << runTime.userTimeName() << endl;
|
|
|
|
FatalIOError.throwExceptions();
|
|
|
|
try
|
|
{
|
|
#include INCLUDE_FILE(CREATE_FIELDS)
|
|
|
|
#ifdef CREATE_FIELDS_2
|
|
#include INCLUDE_FILE(CREATE_FIELDS_2)
|
|
#endif
|
|
|
|
#ifdef CREATE_FIELDS_3
|
|
#include INCLUDE_FILE(CREATE_FIELDS_3)
|
|
#endif
|
|
|
|
// Externally stored dictionary for functionObjectList
|
|
// if not constructed from runTime
|
|
dictionary functionsControlDict("controlDict");
|
|
|
|
HashSet<word> selectedFields;
|
|
|
|
// Construct functionObjectList
|
|
autoPtr<functionObjectList> functionsPtr
|
|
(
|
|
functionObjectList::New
|
|
(
|
|
args,
|
|
runTime,
|
|
functionsControlDict,
|
|
selectedFields
|
|
)
|
|
);
|
|
|
|
functionsPtr->execute();
|
|
}
|
|
catch (IOerror& err)
|
|
{
|
|
Warning<< err << endl;
|
|
}
|
|
|
|
// Clear the objects owned by the mesh
|
|
mesh.objectRegistry::clear();
|
|
|
|
Info<< endl;
|
|
}
|
|
|
|
Info<< "End\n" << endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#undef INCLUDE_FILE
|
|
#undef INCLUDE_FILE2
|
|
|
|
#undef CREATE_MESH
|
|
#undef CREATE_FIELDS
|
|
#undef CREATE_CONTROL
|
|
|
|
// ************************************************************************* //
|