diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-27 10:00:10 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-27 10:00:10 +0200 |
commit | bffab324ca4d71c0eacb2389f1441638ac465b2e (patch) | |
tree | 27261440a161d52429e8f74bea82359c7d7d58f1 /examples/poiseulle_2d.cpp | |
parent | 7e4d50062f0d5eec2f59d4113beedf282c3e2da4 (diff) |
Moving towards poiseulle
Diffstat (limited to 'examples/poiseulle_2d.cpp')
-rw-r--r-- | examples/poiseulle_2d.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
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 <forstio/codec/data.hpp> @@ -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<typename Desc> -using DfCell = Cell<T, Desc, 0, 0, 1>; +using DfCell = Cell<T, Desc, 0u, 0u, 1u>; template<typename Desc> -using CellInfo = Cell<UInt8, D2Q9, 1, 0, 0>; +using CellInfo = Cell<UInt8, D2Q9, 1u, 0u, 0u>; /** * Basic type for simulation |