mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
Simplified and generalized the handling of functionObjects which fail to construct by removing them from the list rather than maintaining an "enabled" switch in each functionObject.
158 lines
3.6 KiB
C
158 lines
3.6 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::start()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
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& mpm
|
|
)
|
|
{}
|
|
|
|
|
|
void Foam::functionObjects::setTimeStepFunctionObject::movePoints
|
|
(
|
|
const polyMesh& mesh
|
|
)
|
|
{}
|
|
|
|
|
|
// ************************************************************************* //
|