diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-07-05 15:26:36 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-07-05 15:26:58 +0200 |
| commit | 4cf145a8178ff11d137e10013da9db0599f0c7e3 (patch) | |
| tree | 86de09d49328ce94904c1207cb85dff50b8f04a6 | |
| parent | 4476303fae9dfe44b1b0aee35a1978f9c885ff1d (diff) | |
| download | libs-lbm-4cf145a8178ff11d137e10013da9db0599f0c7e3.tar.gz | |
Adding csv write out
| -rw-r--r-- | examples/stokes_drag_particle_2d_psm_gpu/sim.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/stokes_drag_particle_2d_psm_gpu/sim.cpp b/examples/stokes_drag_particle_2d_psm_gpu/sim.cpp index 7a14e3f..a94a2ce 100644 --- a/examples/stokes_drag_particle_2d_psm_gpu/sim.cpp +++ b/examples/stokes_drag_particle_2d_psm_gpu/sim.cpp @@ -473,6 +473,12 @@ saw::error_or<void> lbm_main(int argc, char** argv){ return eov; } } + { + auto eov = write_csv_file(out_dir,"m",time_steps.get(), *lbm_macro_data_ptr); + if(eov.is_error()){ + return eov; + } + } sycl_q.wait(); return saw::make_void(); |
