functionObject::age: Changed from "execute" to "write" control

This commit is contained in:
Henry Weller
2019-01-22 15:12:25 +00:00
parent 008a768286
commit f96a431bc0

View File

@ -107,6 +107,12 @@ bool Foam::functionObjects::age::read(const dictionary& dict)
bool Foam::functionObjects::age::execute()
{
return true;
}
bool Foam::functionObjects::age::write()
{
volScalarField t
(
@ -181,10 +187,4 @@ bool Foam::functionObjects::age::execute()
}
bool Foam::functionObjects::age::write()
{
return true;
}
// ************************************************************************* //