Bugfix: force flux recalculation on GGI motion

This commit is contained in:
Hrvoje Jasak 2016-02-03 11:31:24 +00:00
parent 5315544ff8
commit c272cb06ba
2 changed files with 6 additions and 4 deletions

View file

@ -322,8 +322,9 @@ bool Foam::mixerGgiFvMesh::update()
)
);
// The mesh is not morphing
return false;
// The mesh is not morphing, but flux re-calculation is required
// HJ, 25/Jan/2016
return true;
}

View file

@ -235,8 +235,9 @@ bool Foam::turboFvMesh::update()
)
);
// The mesh is not morphing
return false;
// The mesh is not morphing, but flux re-calculation is required
// HJ, 25/Jan/2016
return true;
}