From 0e68b9b33fc84528bcef2774b8fe34da5b600b55 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Wed, 25 Feb 2026 13:38:59 +0100 Subject: Changed to stable values --- examples/poiseulle_3d_gpu/sim.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples') diff --git a/examples/poiseulle_3d_gpu/sim.cpp b/examples/poiseulle_3d_gpu/sim.cpp index 8b5a831..e7294e5 100644 --- a/examples/poiseulle_3d_gpu/sim.cpp +++ b/examples/poiseulle_3d_gpu/sim.cpp @@ -130,7 +130,7 @@ saw::error_or setup_initial_conditions( auto& rho = rho_f.at(index); rho.at({}) = {1}; auto& vel = vel_f.at(index); - vel.at({{0u}}) = 0.1; + vel.at({{0u}}) = 0.01; auto eq = equilibrium(rho,vel); df = eq; @@ -168,7 +168,7 @@ saw::error_or step( saw::data> rho_b; rho_b.at({}) = 1.0; saw::data> vel_b; - vel_b.at({{0u}}) = 0.1; + vel_b.at({{0u}}) = 0.01; component> equi{rho_b,vel_b}; @@ -274,7 +274,7 @@ saw::error_or lbm_main(int argc, char** argv){ {{1.0}} }; - print_lbm_meta(conv,{0.01}); + print_lbm_meta(conv,{0.1}); auto lbm_data_ptr = saw::heap>>(); auto lbm_macro_data_ptr = saw::heap>>(); -- cgit v1.2.3