diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-07-25 00:07:23 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-07-25 00:07:23 +0200 |
| commit | 3bc151904b7388bcd578f3b81fadd69399932900 (patch) | |
| tree | fe589c6dfaa62c89f296cde698e36a060a4b97ed /examples/moving_poiseulle_particles_2d_hlbm_gpu/sim.cpp | |
| parent | 34bcca5a8d9234febbed9c11c2c801c3e5d63581 (diff) | |
| download | libs-lbm-3bc151904b7388bcd578f3b81fadd69399932900.tar.gz | |
Dangling
Diffstat (limited to 'examples/moving_poiseulle_particles_2d_hlbm_gpu/sim.cpp')
| -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}; |
