MolSim
Loading...
Searching...
No Matches
PositionCalculation.h
Go to the documentation of this file.
1
9#pragma once
12
31void calculateX(ParticleContainer &particles, double delta_t, double g_grav, CellContainer *lc = nullptr,
32 bool membrane = false);
33
58void calculateX_LC(ParticleContainer &particles, double delta_t, double g_grav, CellContainer *lc,
59 bool membrane = false);
Class for holding a vector of Cells that divide a domain of Particle objects.
Class for encapsulating and iterating over multiple Particle objects.
void calculateX_LC(ParticleContainer &particles, double delta_t, double g_grav, CellContainer *lc, bool membrane=false)
Calculates the position for all Particle objects in a given ParticleContainer when using the linked ...
void calculateX(ParticleContainer &particles, double delta_t, double g_grav, CellContainer *lc=nullptr, bool membrane=false)
Calculates the position for all Particle objects in a given ParticleContainer.
Cell encapsulation class for implementing the linked cell method.
Definition CellContainer.h:31
Class for encapsulating multiple Particle objects..
Definition ParticleContainer.h:17