24template <
class ParticleCell>
38 const double cutoff,
double skin,
unsigned int rebuildFrequency)
69 [[nodiscard]]
const std::array<double, 3> &
getBoxMax() const final {
return _boxMax; }
74 [[nodiscard]]
const std::array<double, 3> &
getBoxMin() const final {
return _boxMin; }
79 [[nodiscard]]
double getCutoff() const final {
return _cutoff; }
84 void setCutoff(
double cutoff)
final { _cutoff = cutoff; }
102 AUTOPAS_OPENMP(parallel
for num_threads(std::clamp(
static_cast<int>(this->
_cells.size()) / 1000, \
105 for (
size_t i = 0; i < this->
_cells.size(); ++i) {
114 size_t numParticles = 0ul;
117 AUTOPAS_OPENMP(parallel
for num_threads(std::clamp(
static_cast<int>(this->
_cells.size()) / 100000, \
120 reduction(+ : numParticles))
121 for (
size_t index = 0; index <
_cells.size(); ++index) {
122 numParticles +=
_cells[index].getNumberOfParticles(behavior);
131 [[nodiscard]]
size_t size()
const override {
132 size_t numParticles = 0ul;
135 AUTOPAS_OPENMP(parallel
for num_threads(std::clamp(
static_cast<int>(this->
_cells.size()) / 100000, \
138 reduction(+ : numParticles))
139 for (
size_t index = 0; index <
_cells.size(); ++index) {
140 numParticles +=
_cells[index].size();
149 [[nodiscard]]
const std::vector<ParticleCell> &
getCells()
const {
return _cells; }
160 std::array<double, 3> _boxMin;
161 std::array<double, 3> _boxMax;
#define AUTOPAS_OPENMP(args)
Empty macro to throw away any arguments.
Definition: WrapOpenMP.h:126
The CellBasedParticleContainer class stores particles in some object and provides methods to iterate ...
Definition: CellBasedParticleContainer.h:25
double getVerletSkin() const final
Returns the verlet Skin length.
Definition: CellBasedParticleContainer.h:94
CellBasedParticleContainer(const CellBasedParticleContainer &obj)=delete
Delete the copy constructor to prevent unwanted copies.
double getInteractionLength() const final
Return the interaction length (cutoff+skin) of the container.
Definition: CellBasedParticleContainer.h:89
std::vector< ParticleCell > _cells
Vector of particle cells.
Definition: CellBasedParticleContainer.h:157
double getCutoff() const final
Return the cutoff of the container.
Definition: CellBasedParticleContainer.h:79
size_t getNumberOfParticles(IteratorBehavior behavior) const override
Get the number of particles with respect to the specified IteratorBehavior.
Definition: CellBasedParticleContainer.h:113
void setCutoff(double cutoff) final
Set the cutoff of the container.
Definition: CellBasedParticleContainer.h:84
size_t size() const override
Get the total number of particles saved in the container (owned + halo + dummy).
Definition: CellBasedParticleContainer.h:131
const std::array< double, 3 > & getBoxMin() const final
Get the lower corner of the container without halo.
Definition: CellBasedParticleContainer.h:74
const std::vector< ParticleCell > & getCells() const
Get immutable vector of cells.
Definition: CellBasedParticleContainer.h:149
CellBasedParticleContainer(const std::array< double, 3 > &boxMin, const std::array< double, 3 > &boxMax, const double cutoff, double skin, unsigned int rebuildFrequency)
Constructor of CellBasedParticleContainer.
Definition: CellBasedParticleContainer.h:37
const std::array< double, 3 > & getBoxMax() const final
Get the upper corner of the container without halo.
Definition: CellBasedParticleContainer.h:69
CellBasedParticleContainer & operator=(const CellBasedParticleContainer &other)=delete
Delete the copy assignment operator to prevent unwanted copies No particle container should ever be c...
void deleteAllParticles() override
Deletes all particles from the container.
Definition: CellBasedParticleContainer.h:99
~CellBasedParticleContainer() override=default
Destructor of CellBasedParticleContainer.
Particle_T ParticleType
The particle type for this cell.
Definition: ParticleCell.h:56
The ParticleContainerInterface class provides a basic interface for all Containers within AutoPas.
Definition: ParticleContainerInterface.h:37
This is the main namespace of AutoPas.
Definition: AutoPasDecl.h:32
int autopas_get_max_threads()
Dummy for omp_get_max_threads() when no OpenMP is available.
Definition: WrapOpenMP.h:144