summaryrefslogtreecommitdiff
path: root/examples/poiseulle_particles_channel_2d
diff options
context:
space:
mode:
Diffstat (limited to 'examples/poiseulle_particles_channel_2d')
-rw-r--r--examples/poiseulle_particles_channel_2d/poiseulle_particles_channel_2d.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/poiseulle_particles_channel_2d/poiseulle_particles_channel_2d.cpp b/examples/poiseulle_particles_channel_2d/poiseulle_particles_channel_2d.cpp
index 096e45e..f3caf3a 100644
--- a/examples/poiseulle_particles_channel_2d/poiseulle_particles_channel_2d.cpp
+++ b/examples/poiseulle_particles_channel_2d/poiseulle_particles_channel_2d.cpp
@@ -611,7 +611,8 @@ void lbm_step(
* 1. Transform from lagrangian to euler grid
* 2. Cast down to index (x,y).
* 3. calculate distance to each neighbour node. (x,y),(x+1,y),(x,y+1),(x+1,y+1)
- * 4. Write calculated forces. Atomicly of course.
+ * 4. Trilinear interpolation
+ * 5. Write calculated forces. Atomicly of course.
*/