diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-23 16:12:27 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-06-23 16:12:27 +0200 |
commit | 5a166a02efe011931faa7a9ff9fe4043e3a8017a (patch) | |
tree | bdb7432e95f451bfacad651e26b44aaea1917a08 /tests/particle_flow_coupling.cpp | |
parent | 9e37ff62b668694f705a8d132469f40ead9f6f0f (diff) |
Upgrading the cavity example
Diffstat (limited to 'tests/particle_flow_coupling.cpp')
-rw-r--r-- | tests/particle_flow_coupling.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/particle_flow_coupling.cpp b/tests/particle_flow_coupling.cpp new file mode 100644 index 0000000..216c229 --- /dev/null +++ b/tests/particle_flow_coupling.cpp @@ -0,0 +1,20 @@ +#include <forstio/test/suite.hpp> + +#include <iostream> +#include "../c++/particle/geometry/circle.hpp" + + +namespace { +namespace sch { +using namespace kel::lbm::sch; + +using T = Float64; +} + +SAW_TEST("Particle Coupling"){ + using namespace kel; + lbm::particle_system<sch::T,2,sch::Particle<sch::T,2>> system; + + +} +} |