Skip to content
Snippets Groups Projects
Commit 7340d92a authored by Lukas Werner's avatar Lukas Werner
Browse files

Improved description of SubCyclingManager

parent c917016e
Branches
Tags
No related merge requests found
...@@ -25,7 +25,12 @@ ...@@ -25,7 +25,12 @@
namespace walberla { namespace walberla {
namespace lbm_mesapd_coupling { namespace lbm_mesapd_coupling {
// loosely based on Timeloop class /*! \brief Handles the execution of subcycles in a timeloop to allow for finer grained time steps than the LBM ones.
*
* Supports registration of functions that are run before, during or after a subcycle.
* The SubCyclingManager itself has to be added to a parent (LBM) time loop, and will execute the functions registered
* for execution during the subcycling procedure numberOfSubCycles times.
*/
class SubCyclingManager { class SubCyclingManager {
public: public:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment