diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-09-16 19:36:41 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-09-16 19:36:41 +0200 |
commit | 08f2d21521c107fef57abf20d81707020aa3bd47 (patch) | |
tree | 7c44b674fe2616a73602fd36c2fbe7d2678c1924 /c++ | |
parent | 94eb372b6dd81178f95635e1a9c847e7d16a8fe1 (diff) |
Dangling afternoon changesdev
Diffstat (limited to 'c++')
-rw-r--r-- | c++/hlbm.hpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/c++/hlbm.hpp b/c++/hlbm.hpp new file mode 100644 index 0000000..1c665ce --- /dev/null +++ b/c++/hlbm.hpp @@ -0,0 +1,24 @@ +#pragma once + +#include "macroscopic.hpp" +#include "component.hpp" +#include "equilibrium.hpp" + +namespace kel { +namespace lbm { +namespace cmpt { +struct HLBM {}; +} + +/** + * HLBM collision operator for LBM + */ +template<typename T, typename Descriptor> +class component<T, Descriptor, cmpt::HLBM> { +private: +public: + component() = default; +}; + +} +} |