diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-07-25 20:40:58 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-07-25 20:40:58 +0200 |
| commit | b6f536a44152aa93c697fbeda49500f722c9bcd5 (patch) | |
| tree | fe589c6dfaa62c89f296cde698e36a060a4b97ed /examples/moving_poiseulle_particles_2d_hlbm_gpu | |
| parent | 4e6cedae1bba1eb02f1dac96e11bd8b692fc1df7 (diff) | |
| parent | 3bc151904b7388bcd578f3b81fadd69399932900 (diff) | |
| download | libs-lbm-b6f536a44152aa93c697fbeda49500f722c9bcd5.tar.gz | |
Merge branch 'dev'
Diffstat (limited to 'examples/moving_poiseulle_particles_2d_hlbm_gpu')
| -rw-r--r-- | examples/moving_poiseulle_particles_2d_hlbm_gpu/sim.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/moving_poiseulle_particles_2d_hlbm_gpu/sim.cpp b/examples/moving_poiseulle_particles_2d_hlbm_gpu/sim.cpp index f89f5da..9e812e2 100644 --- a/examples/moving_poiseulle_particles_2d_hlbm_gpu/sim.cpp +++ b/examples/moving_poiseulle_particles_2d_hlbm_gpu/sim.cpp @@ -214,9 +214,9 @@ saw::error_or<void> step( [&](){ uint64_t target_t_i = 8u; if(t_i.get() < target_t_i){ - return 1.0 + (0.005 / target_t_i) * t_i.get(); + return 1.0 + (0.01 / target_t_i) * t_i.get(); } - return 1.005; + return 1.01; }() }; component<T,Desc,cmpt::ZouHeHorizontal<false>,encode::Sycl<saw::encode::Native>> flow_out{1.0}; |
