From 7ed372ba6d4b3ea3b73b8c65076dd5d341883533 Mon Sep 17 00:00:00 2001 From: mbreit Date: Sun, 10 Jan 2021 15:11:23 +0100 Subject: [PATCH] smoothing on rim as GMG default behavior --- .../linear_operator/multi_grid_solver/mg_solver_impl.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ugbase/lib_disc/operator/linear_operator/multi_grid_solver/mg_solver_impl.hpp b/ugbase/lib_disc/operator/linear_operator/multi_grid_solver/mg_solver_impl.hpp index 2ccad9c48..ebdb78e7f 100644 --- a/ugbase/lib_disc/operator/linear_operator/multi_grid_solver/mg_solver_impl.hpp +++ b/ugbase/lib_disc/operator/linear_operator/multi_grid_solver/mg_solver_impl.hpp @@ -82,7 +82,7 @@ AssembledMultiGridCycle() : m_baseLev(0), m_cycleType(_V_), m_numPreSmooth(2), m_numPostSmooth(2), m_LocalFullRefLevel(0), m_GridLevelType(GridLevel::LEVEL), - m_bUseRAP(false), m_bSmoothOnSurfaceRim(false), + m_bUseRAP(false), m_bSmoothOnSurfaceRim(true), m_bCommCompOverlap(false), m_spPreSmootherPrototype(new Jacobi()), m_spPostSmootherPrototype(m_spPreSmootherPrototype), @@ -104,7 +104,7 @@ AssembledMultiGridCycle(SmartPtr > approxSpace) : m_baseLev(0), m_cycleType(_V_), m_numPreSmooth(2), m_numPostSmooth(2), m_LocalFullRefLevel(0), m_GridLevelType(GridLevel::LEVEL), - m_bUseRAP(false), m_bSmoothOnSurfaceRim(false), + m_bUseRAP(false), m_bSmoothOnSurfaceRim(true), m_bCommCompOverlap(false), m_spPreSmootherPrototype(new Jacobi()), m_spPostSmootherPrototype(m_spPreSmootherPrototype),