From 63b0fe3c29c15de681edba1fa42422bc1c708b9a Mon Sep 17 00:00:00 2001 From: Sebastian Eibl <sebastian.eibl@fau.de> Date: Mon, 12 Feb 2018 15:52:33 +0100 Subject: [PATCH] separated update function of hashgrids --- src/pe/ccd/HashGrids.cpp | 37 +++++++++++++++++++++++-------------- src/pe/ccd/HashGrids.h | 1 + 2 files changed, 24 insertions(+), 14 deletions(-) diff --git a/src/pe/ccd/HashGrids.cpp b/src/pe/ccd/HashGrids.cpp index e126e554d..31d4c96cc 100644 --- a/src/pe/ccd/HashGrids.cpp +++ b/src/pe/ccd/HashGrids.cpp @@ -770,23 +770,12 @@ void HashGrids::reloadBodies() } //************************************************************************************************* -//**Implementation of ICCD interface ******************************************************** + //************************************************************************************************* -/*!\brief Contact generation between colliding rigid bodies. - * - * \return Vector of possible contacts. - * - * This function generates all contacts between all registered rigid bodies. The contacts are - * added to the contact container which can be retrieved via getPossibleContacts(). +/*!\brief Updates all hash grids and reassigns bodies. */ -PossibleContacts& HashGrids::generatePossibleContacts( WcTimingTree* tt ) +void HashGrids::update(WcTimingTree* tt) { - if (tt != NULL) tt->start("CCD"); - - contacts_.clear(); - - WALBERLA_LOG_DETAIL( " Finding the contacts via the hierarchical hash grids algorithm..."); - // ----- UPDATE PHASE ----- // if (tt != NULL) tt->start("AddNewBodies"); @@ -921,6 +910,26 @@ PossibleContacts& HashGrids::generatePossibleContacts( WcTimingTree* tt ) } } if (tt != NULL) tt->stop("Update"); +} + +//**Implementation of ICCD interface ******************************************************** +//************************************************************************************************* +/*!\brief Contact generation between colliding rigid bodies. + * + * \return Vector of possible contacts. + * + * This function generates all contacts between all registered rigid bodies. The contacts are + * added to the contact container which can be retrieved via getPossibleContacts(). + */ +PossibleContacts& HashGrids::generatePossibleContacts( WcTimingTree* tt ) +{ + if (tt != NULL) tt->start("CCD"); + + contacts_.clear(); + + WALBERLA_LOG_DETAIL( " Finding the contacts via the hierarchical hash grids algorithm..."); + + update(tt); if (tt != NULL) tt->start("Detection"); // ----- DETECTION STEP ----- // diff --git a/src/pe/ccd/HashGrids.h b/src/pe/ccd/HashGrids.h index 18871eff3..b1ab8198b 100644 --- a/src/pe/ccd/HashGrids.h +++ b/src/pe/ccd/HashGrids.h @@ -276,6 +276,7 @@ public: //@} //********************************************************************************************** + void update(WcTimingTree* tt); //**Implementation of ICCD interface ******************************************************** virtual PossibleContacts& generatePossibleContacts( WcTimingTree* tt = NULL ); -- GitLab