From a7420c5f5f56bb21de0241ed152ad9b55965d42d Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Fri, 30 Jan 2026 19:08:54 +0100 Subject: Simulation works partially. Reconfirm with writing data out --- lib/core/c++/stream.hpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 lib/core/c++/stream.hpp (limited to 'lib/core/c++/stream.hpp') diff --git a/lib/core/c++/stream.hpp b/lib/core/c++/stream.hpp new file mode 100644 index 0000000..d217373 --- /dev/null +++ b/lib/core/c++/stream.hpp @@ -0,0 +1,25 @@ +#pragma once + +#include "component.hpp" + +namespace kel { +namespace lbm { +namespace cmpt { +struct Stream {}; +} + +template +class component final { +private: +public: + static constexpr saw::string_literal name = "streaming"; + static constexpr saw::string_literal after = "collide"; + static constexpr saw::string_literal before = ""; + + template + void apply(const saw::data& field, const saw::data>& index, saw::data time_step) const { + + } +}; +} +} -- cgit v1.2.3