MPS-Basic
Loading...
Searching...
No Matches
neighbor_searcher.hpp
Go to the documentation of this file.
1#include "bucket.hpp"
2#include "domain.hpp"
3#include "particles.hpp"
4
5#include <vector>
6
8public:
9 NeighborSearcher() = default;
10
11 NeighborSearcher(const double& re, const Domain& domain, const size_t& particleSize);
12
13 void setNeighbors(Particles& particles);
14
15private:
16 double re;
19};
Class for bucket for neighbor search.
Definition bucket.hpp:17
represents the domain of the simulation
Definition domain.hpp:8
NeighborSearcher()=default
void setNeighbors(Particles &particles)
A collection of particles.
Definition particles.hpp:10