From 4ffcce338176350465dbd4245ad443b766d196f0 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Thu, 3 Apr 2025 15:55:22 +0200 Subject: wip --- c++/collision.hpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 c++/collision.hpp (limited to 'c++/collision.hpp') diff --git a/c++/collision.hpp b/c++/collision.hpp new file mode 100644 index 0000000..4e16832 --- /dev/null +++ b/c++/collision.hpp @@ -0,0 +1,24 @@ +#pragma once + +#include "component.hpp" +#include "equilibrium.hpp" + +namespace kel { +namespace lbm { +namespace cmpt { +struct BGK {}; +} + +template +class component { +public: + using access = cmpt::access_tuple< + cmpt::access<"dfs", 0, true, true> + >; + + static constexpr saw::string_literal name = "collision"; + static constexpr saw::string_literal after = ""; + static constexpr saw::string_literal before = "streaming"; +}; +} +} -- cgit v1.2.3