From bffab324ca4d71c0eacb2389f1441638ac465b2e Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Fri, 27 Jun 2025 10:00:10 +0200 Subject: Moving towards poiseulle --- examples/poiseulle_2d.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'examples/poiseulle_2d.cpp') diff --git a/examples/poiseulle_2d.cpp b/examples/poiseulle_2d.cpp index f5a7981..0ec4fc0 100644 --- a/examples/poiseulle_2d.cpp +++ b/examples/poiseulle_2d.cpp @@ -1,4 +1,6 @@ -#include "../c++/descriptor.hpp" +#include "../c++/lbm.hpp" +#include "../c++/collision.hpp" +#include "../c++/boundary.hpp" #include @@ -17,14 +19,14 @@ using namespace saw::schema; * Q factor */ using T = Float32; -using D2Q5 = Descriptor<2,5>; -using D2Q9 = Descriptor<2,9>; +using D2Q5 = Descriptor<2u,5u>; +using D2Q9 = Descriptor<2u,9u>; template -using DfCell = Cell; +using DfCell = Cell; template -using CellInfo = Cell; +using CellInfo = Cell; /** * Basic type for simulation -- cgit v1.2.3