Skip to content
Snippets Groups Projects
Commit 091b51ef authored by mattijs's avatar mattijs
Browse files

BUG: overset: FaceCellWave survive 0 cells. Fixes #2156

parent 80eb31dc
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
\\ / A nd | www.openfoam.com \\ / A nd | www.openfoam.com
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
Copyright (C) 2017-2020 OpenCFD Ltd. Copyright (C) 2017-2021 OpenCFD Ltd.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
This file is part of OpenFOAM. This file is part of OpenFOAM.
...@@ -129,7 +129,7 @@ void Foam::waveMethod::calculate ...@@ -129,7 +129,7 @@ void Foam::waveMethod::calculate
changedFacesInfo, changedFacesInfo,
faceData, faceData,
cellData, cellData,
src.globalData().nTotalCells(), // max iterations src.globalData().nTotalCells()+1, // max iterations
td td
); );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment