diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-07-08 12:19:54 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-07-08 12:19:54 +0200 |
| commit | 8980c8de6d0efb0fe798427ebed254847d80b7da (patch) | |
| tree | b11c9bda8e1a020fd3c0ecc19202dc1d29f9eb6c /examples/poiseulle_particles_2d_psm_gpu/sim.cpp | |
| parent | 5437a8e0c730cbee5bceb93915d1df36776d210d (diff) | |
| download | libs-lbm-8980c8de6d0efb0fe798427ebed254847d80b7da.tar.gz | |
Forgot PSM CSV
Diffstat (limited to 'examples/poiseulle_particles_2d_psm_gpu/sim.cpp')
| -rw-r--r-- | examples/poiseulle_particles_2d_psm_gpu/sim.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/poiseulle_particles_2d_psm_gpu/sim.cpp b/examples/poiseulle_particles_2d_psm_gpu/sim.cpp index f307d70..c2ab675 100644 --- a/examples/poiseulle_particles_2d_psm_gpu/sim.cpp +++ b/examples/poiseulle_particles_2d_psm_gpu/sim.cpp @@ -441,6 +441,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(); |
