diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-03-04 22:17:34 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-03-04 22:17:34 +0100 |
| commit | adc69d0f0065228393b055604bb595510bf9cd60 (patch) | |
| tree | f3c8760173a5d0c5ebd99949119882be3869c2a1 /lib/core/c++/geometry | |
| parent | f6d15fa2bd684e8120d8aa88bd01c41bc714f241 (diff) | |
| parent | c4226ba28f0bd783686e6b245f35738dc34cd644 (diff) | |
| download | libs-lbm-adc69d0f0065228393b055604bb595510bf9cd60.tar.gz | |
Merge branch 'dev'
Diffstat (limited to 'lib/core/c++/geometry')
| -rw-r--r-- | lib/core/c++/geometry/poiseulle_channel.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/core/c++/geometry/poiseulle_channel.hpp b/lib/core/c++/geometry/poiseulle_channel.hpp index f675a99..f719ec4 100644 --- a/lib/core/c++/geometry/poiseulle_channel.hpp +++ b/lib/core/c++/geometry/poiseulle_channel.hpp @@ -1,7 +1,22 @@ #pragma once +#include "../geometry.hpp" + namespace kel { namespace lbm { +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>){ + auto& info_f = field.template get<"info">(); + } +}; } } |
