From ca08e207612bc2f129f19202495452c86323e9e4 Mon Sep 17 00:00:00 2001 From: sdcm Date: Wed, 22 May 2024 16:17:35 +0200 Subject: [PATCH] [TwoPhaseFlowSimulation] Refine geometry update position to avoid error in update check. --- src/TwoPhaseFlowSimulation/TwoPhaseFlowSimulationModule.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TwoPhaseFlowSimulation/TwoPhaseFlowSimulationModule.cc b/src/TwoPhaseFlowSimulation/TwoPhaseFlowSimulationModule.cc index c7821b5..80185f6 100644 --- a/src/TwoPhaseFlowSimulation/TwoPhaseFlowSimulationModule.cc +++ b/src/TwoPhaseFlowSimulation/TwoPhaseFlowSimulationModule.cc @@ -314,9 +314,9 @@ _initGroup() auto groupCreator(options() -> groupCreator()) ; groupCreator -> init() ; groupCreator -> prepare() ; - groupCreator -> apply() ; // Group creation add new Geometry properties: need to update GeometryMng _updateGeometry(); + groupCreator -> apply() ; } /*---------------------------------------------------------------------------*/