diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-01-15 19:20:49 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-01-15 19:20:49 +0100 |
| commit | 5f185684f6c3634b699c2bc28197033903d59518 (patch) | |
| tree | 375787f6a2fa4197b4a2d134e610f6539212d804 | |
| parent | 4e25534211969951e5b932caf4501f6bd0061c2a (diff) | |
| download | libs-lbm-5f185684f6c3634b699c2bc28197033903d59518.tar.gz | |
feierabend
| -rw-r--r-- | lib/core/c++/geometry.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/core/c++/geometry.hpp b/lib/core/c++/geometry.hpp index d582b2c..6875e90 100644 --- a/lib/core/c++/geometry.hpp +++ b/lib/core/c++/geometry.hpp @@ -1,5 +1,7 @@ #pragma once +#include "component.hpp" + namespace kel { namespace lbm { /* @@ -10,6 +12,17 @@ struct geometry { } }; */ +namespace cmpt { +struct PoiseulleChannel; +} + +template<typename Schema, typename Desc, typename Encode> +class component<Schema, Desc, cmpt::PoiseulleChannel, Encode> final { +private: +public: + template<typename CellFieldSchema> + void apply(saw::data<CellFieldSchema,Encode>& field, const saw::data<sch::FixedArraysch::UInt64,Desc::D>) +}; // Ghost - 0 // Wall - 1 |
