surfaceFieldValue: Corrected input of the orientWeightField

Resolves bug-report https://bugs.openfoam.org/view.php?id=3689
This commit is contained in:
Henry Weller
2021-06-19 12:12:06 +01:00
parent af5ec2230c
commit c8307122c6
2 changed files with 25 additions and 22 deletions

View File

@ -86,7 +86,10 @@ Foam::functionObjects::timeControl::timeControl
writeControl_(t, dict, "write"),
foPtr_(functionObject::New(name, t, dict))
{
read(dict);
writeControl_.read(dict);
executeControl_.read(dict);
readControls(dict);
}