summaryrefslogtreecommitdiff
path: root/examples/one_particle_sedimentation_2d/init.hpp
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-08-24 17:15:52 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-08-24 17:15:52 +0200
commit2b153a0e0263e5a76550b15382e2609f7b5a5d41 (patch)
tree754727f9a5cd9cb2990fe0ba916ebbbfb9486e21 /examples/one_particle_sedimentation_2d/init.hpp
parente6168bb3f656ebab9b63be697c79819b08fc1ae0 (diff)
downloadlibs-lbm-2b153a0e0263e5a76550b15382e2609f7b5a5d41.tar.gz
Stuff
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;
}