diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-07-07 22:52:08 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-07-07 22:52:08 +0200 |
| commit | 3cf348cdbbc2ce7f2e29c43771e6ea7e773d6347 (patch) | |
| tree | 73bf0c7f19d1653104f9cca23ad15772f5c623d8 | |
| parent | 1f52fece4204e130fc5e46778f50f6902ee2f219 (diff) | |
| parent | 8021c6b1a32b9bd61968b52bb3612b899a19e2bc (diff) | |
| download | libs-lbm-3cf348cdbbc2ce7f2e29c43771e6ea7e773d6347.tar.gz | |
Merge branch 'dev'
| -rw-r--r-- | default.nix | 8 | ||||
| -rw-r--r-- | examples/poiseulle_particles_2d_hlbm_gpu/sim.cpp | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 8e4322f..c129635 100644 --- a/default.nix +++ b/default.nix @@ -266,6 +266,14 @@ in rec { examples.stokes_drag_particle_2d_fplbm_gpu ]; }; + + ecmor = pkgs.symlinkJoin { + name = "kel_ecmor"; + paths = [ + release.stokes_drag_2d + release.poiseulle_particles_2d + ]; + }; }; default = release.examples; diff --git a/examples/poiseulle_particles_2d_hlbm_gpu/sim.cpp b/examples/poiseulle_particles_2d_hlbm_gpu/sim.cpp index 454fb08..6cadbd0 100644 --- a/examples/poiseulle_particles_2d_hlbm_gpu/sim.cpp +++ b/examples/poiseulle_particles_2d_hlbm_gpu/sim.cpp @@ -400,7 +400,7 @@ saw::error_or<void> lbm_main(int argc, char** argv){ } } { - auto eov = write_csv_file(out_dir,"m",i.get(), *lbm_macro_data_ptr); + auto eov = write_csv_file(out_dir,"m",time_steps.get(), *lbm_macro_data_ptr); if(eov.is_error()){ return eov; } |
