mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: cellSetOption: allow geometric selection update (fixes #3161)
This commit is contained in:
@ -408,9 +408,13 @@ bool Foam::fv::cellSetOption::isActive()
|
|||||||
// Report new volume (if changed)
|
// Report new volume (if changed)
|
||||||
setVol();
|
setVol();
|
||||||
}
|
}
|
||||||
else if (selectionMode_ == smMovingPoints)
|
else if
|
||||||
|
(
|
||||||
|
selectionMode_ == smMovingPoints
|
||||||
|
|| selectionMode_ == smGeometric
|
||||||
|
)
|
||||||
{
|
{
|
||||||
// Update the cell selection if it moves
|
// Update the cell selection even if mesh is not moving
|
||||||
setCellSelection();
|
setCellSelection();
|
||||||
setVol();
|
setVol();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user