summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-10-08 11:03:22 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-10-08 11:03:22 +0200
commita980da34513a9ad41e309e66432fcb80ddaf2e31 (patch)
treee644e491f6c1d90f8ce4dae8d6646e683cfba04d
parentc410ddfebd40aedf75d0927a0e6581bf48b5b1c3 (diff)
downloadlibs-lbm-a980da34513a9ad41e309e66432fcb80ddaf2e31.tar.gz
change comment
-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.
*/