ENH: additional feedback about controlled mesh motion update type

- ensure that the updateControl is "non-sticky" on re-read,
  even if we do not support runtime-modifiable here

STYLE: add syntax example (wingMotion), but with updateInterval 1
This commit is contained in:
Mark Olesen 2019-12-13 10:02:46 +01:00
parent 49ed79d537
commit 370c8a39af

View File

@ -60,12 +60,13 @@ void Foam::dynamicFvMesh::readDict()
{
// Feedback about the trigger mechanism
Info<< "Controlled mesh update triggered on "
<< timeControl_.type() << nl;
<< timeControl_.type() << " interval "
<< timeControl_.interval() << nl;
}
}
else
{
// Ensure it is pass-through
// Ensure it is indeed pass-through
timeControl_.clear();
}
}