From b79e5cf1a3c07cad4edcad2c909318a5a5b6115e Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Thu, 5 Feb 2026 18:05:18 +0100 Subject: Fixing boundary conditions --- examples/poiseulle_particles_2d_gpu/sim.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/poiseulle_particles_2d_gpu') diff --git a/examples/poiseulle_particles_2d_gpu/sim.cpp b/examples/poiseulle_particles_2d_gpu/sim.cpp index bdd93b0..305ef80 100644 --- a/examples/poiseulle_particles_2d_gpu/sim.cpp +++ b/examples/poiseulle_particles_2d_gpu/sim.cpp @@ -7,8 +7,8 @@ namespace kel { namespace lbm { -constexpr uint64_t dim_x = 1024u; -constexpr uint64_t dim_y = 512u; +constexpr uint64_t dim_x = 2048u; +constexpr uint64_t dim_y = 1024u; namespace sch { using namespace saw::schema; @@ -119,7 +119,7 @@ saw::error_or step( // Need nicer things to handle the flow. I see improvement here component> collision{0.6}; component> bb; - component,encode::Sycl> flow_in{1.001}; + component,encode::Sycl> flow_in{1.01}; component,encode::Sycl> flow_out{1.0}; h.parallel_for(acpp::sycl::range{dim_x,dim_y}, [=](acpp::sycl::id idx){ -- cgit v1.2.3