summaryrefslogtreecommitdiff
path: root/examples/one_particle_sedimentation_2d/init.hpp
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-08-24 19:47:22 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-08-24 19:47:22 +0200
commitdf4fbe3f6776ba25d7267fdb50ce48eca26b9fba (patch)
treeed211c81d68102c8035e61d6110aba242017b486 /examples/one_particle_sedimentation_2d/init.hpp
parent4f8ba172c7c6cbe278cbf20927df543cd6c58c28 (diff)
parent692b413fec56fbb5c6198813df369106721c33f5 (diff)
downloadlibs-lbm-df4fbe3f6776ba25d7267fdb50ce48eca26b9fba.tar.gz
Merge branch 'dev'
Diffstat (limited to 'examples/one_particle_sedimentation_2d/init.hpp')
-rw-r--r--examples/one_particle_sedimentation_2d/init.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/one_particle_sedimentation_2d/init.hpp b/examples/one_particle_sedimentation_2d/init.hpp
index a35c6e8..d9b8a37 100644
--- a/examples/one_particle_sedimentation_2d/init.hpp
+++ b/examples/one_particle_sedimentation_2d/init.hpp
@@ -87,8 +87,8 @@ saw::error_or<void> init(
auto& prb = p.template get<"rigid_body">();
auto& p_pos = prb.template get<"position">();
auto& p_posold = prb.template get<"position_old">();
- p_pos.at({{0u}}) = conv.meter_si_to_lbm({{0.16}}).handle();
- p_pos.at({{1u}}) = conv.meter_si_to_lbm({{0.2}}).handle();
+ p_pos.at({{0u}}) = conv.meter_si_to_lbm({{0.01}}).handle();
+ p_pos.at({{1u}}) = conv.meter_si_to_lbm({{0.04}}).handle();
p_posold = p_pos;
}