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.
152 lines
3.5 KiB
C
152 lines
3.5 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2013-2016 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/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "setTimeStepFunctionObject.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace functionObjects
|
|
{
|
|
defineTypeNameAndDebug(setTimeStepFunctionObject, 0);
|
|
|
|
addToRunTimeSelectionTable
|
|
(
|
|
functionObject,
|
|
setTimeStepFunctionObject,
|
|
dictionary
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::functionObjects::setTimeStepFunctionObject::setTimeStepFunctionObject
|
|
(
|
|
const word& name,
|
|
const Time& runTime,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
functionObject(name),
|
|
time_(runTime)
|
|
{
|
|
read(dict);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::functionObjects::setTimeStepFunctionObject::~setTimeStepFunctionObject()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
const Foam::Time&
|
|
Foam::functionObjects::setTimeStepFunctionObject::time() const
|
|
{
|
|
return time_;
|
|
}
|
|
|
|
|
|
bool Foam::functionObjects::setTimeStepFunctionObject::execute
|
|
(
|
|
const bool forceWrite
|
|
)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
bool Foam::functionObjects::setTimeStepFunctionObject::end()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
bool Foam::functionObjects::setTimeStepFunctionObject::timeSet()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
bool Foam::functionObjects::setTimeStepFunctionObject::adjustTimeStep()
|
|
{
|
|
const_cast<Time&>(time()).setDeltaT
|
|
(
|
|
timeStepPtr_().value(time_.timeOutputValue()),
|
|
false
|
|
);
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
bool Foam::functionObjects::setTimeStepFunctionObject::read
|
|
(
|
|
const dictionary& dict
|
|
)
|
|
{
|
|
timeStepPtr_ = Function1<scalar>::New("deltaT", dict);
|
|
|
|
// Check that adjustTimeStep is active
|
|
const dictionary& controlDict = time_.controlDict();
|
|
|
|
Switch adjust;
|
|
if
|
|
(
|
|
!controlDict.readIfPresent<Switch>("adjustTimeStep", adjust)
|
|
|| !adjust
|
|
)
|
|
{
|
|
FatalIOErrorInFunction(dict)
|
|
<< "Need to set 'adjustTimeStep' true to allow timestep control"
|
|
<< exit(FatalIOError);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
void Foam::functionObjects::setTimeStepFunctionObject::updateMesh
|
|
(
|
|
const mapPolyMesh&
|
|
)
|
|
{}
|
|
|
|
|
|
void Foam::functionObjects::setTimeStepFunctionObject::movePoints
|
|
(
|
|
const polyMesh&
|
|
)
|
|
{}
|
|
|
|
|
|
// ************************************************************************* //
|