You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -830,18 +830,18 @@ void LBM::update_moving_boundaries() { // mark/unmark nodes next to TYPE_S nodes
830
830
#endif// MOVING_BOUNDARIES
831
831
832
832
#if defined(PARTICLES)&&!defined(FORCE_FIELD)
833
-
voidLBM::integrate_particles(const ulong steps) { // intgegrate passive tracer particles forward in time in stationary flow field
833
+
voidLBM::integrate_particles(const ulong steps, constuint time_step_multiplicator) { // intgegrate passive tracer particles forward in time in stationary flow field
Copy file name to clipboardexpand all lines: src/lbm.hpp
+3-3
Original file line number
Diff line number
Diff line change
@@ -99,10 +99,10 @@ class LBM_Domain {
99
99
voidenqueue_update_moving_boundaries(); // mark/unmark nodes next to TYPE_S nodes with velocity!=0 with TYPE_MS
100
100
#endif// MOVING_BOUNDARIES
101
101
#ifdef PARTICLES
102
-
voidenqueue_integrate_particles(); // intgegrates particles forward in time and couples particles to fluid
102
+
voidenqueue_integrate_particles(constuint time_step_multiplicator=1u); // intgegrates particles forward in time and couples particles to fluid
103
103
#endif// PARTICLES
104
104
105
-
voidincrement_time_step(); // increment time step
105
+
voidincrement_time_step(constuint steps=1u); // increment time step
106
106
voidreset_time_step(); // reset time step
107
107
voidfinish_queue();
108
108
@@ -387,7 +387,7 @@ class LBM {
387
387
voidupdate_moving_boundaries(); // mark/unmark nodes next to TYPE_S nodes with velocity!=0 with TYPE_MS
388
388
#endif// MOVING_BOUNDARIES
389
389
#if defined(PARTICLES)&&!defined(FORCE_FIELD)
390
-
voidintegrate_particles(const ulong steps=max_ulong); // intgegrate passive tracer particles forward in time in stationary flow field
390
+
voidintegrate_particles(const ulong steps=max_ulong, constuint time_step_multiplicator=1u); // intgegrate passive tracer particles forward in time in stationary flow field
391
391
#endif// PARTICLES&&!FORCE_FIELD
392
392
393
393
uintget_Nx() const { return Nx; } // get (global) lattice dimensions in x-direction
0 commit comments