summaryrefslogtreecommitdiff
path: root/c++/hlbm.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'c++/hlbm.hpp')
-rw-r--r--c++/hlbm.hpp24
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;
+};
+
+}
+}