Bugfix: force flux recalculation on GGI motion
This commit is contained in:
parent
5315544ff8
commit
c272cb06ba
2 changed files with 6 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Reference in a new issue