diff options
Diffstat (limited to 'tests')
-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; + + +} +} |