blob: c3e37693761cedfba4701720ebba28ef5a69257a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#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;
/// What are the steps?#
///
/// Collide and Stream
}
}
|