diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/particle_flow_coupling.cpp | 3 | ||||
-rw-r--r-- | tests/particles.cpp | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/tests/particle_flow_coupling.cpp b/tests/particle_flow_coupling.cpp index 216c229..c3e3769 100644 --- a/tests/particle_flow_coupling.cpp +++ b/tests/particle_flow_coupling.cpp @@ -15,6 +15,9 @@ SAW_TEST("Particle Coupling"){ using namespace kel; lbm::particle_system<sch::T,2,sch::Particle<sch::T,2>> system; + /// What are the steps?# + /// + /// Collide and Stream } } diff --git a/tests/particles.cpp b/tests/particles.cpp index 260caf0..edf00c1 100644 --- a/tests/particles.cpp +++ b/tests/particles.cpp @@ -16,7 +16,7 @@ SAW_TEST("Minor Test for mask"){ lbm::particle_circle_geometry<sch::T> geo; - auto mask = geo.generate_mask<sch::T>(4,2); + auto mask = geo.generate_mask<sch::T>(16u,2); auto& grid = mask.template get<"grid">(); @@ -60,8 +60,8 @@ SAW_TEST("Verlet integration test"){ std::cout<<std::endl; } - for(uint64_t i = 0u; i < 360u; ++i){ - system.step(saw::data<sch::T>{1e-2}); + for(uint64_t i = 0u; i < 36u; ++i){ + system.step(saw::data<sch::T>{1e-1}); { auto& p = system.at({0u}); |