WallPotential¶
- class hoomd.hpmc.external.WallPotential(walls)¶
Bases:
ExternalHPMC wall potential.
- Parameters:
walls (
list[hoomd.wall.WallGeometry]) – A list of wall definitions that confine particles to specific regions of space.
WallPotentialadds hard walls to HPMC simulations. Define the wall geometry with a collection ofwall.WallGeometryobjects. These walls break space into forbidden and allowed regions, controlled by theinsideargument for spherical and cylindrical walls and thenormalargument for planar walls. HPMC rejects trial moves that cause any part of the particle’s shape to enter the the space defined by the points with a negative signed distance from any wall in the collection. Formally, the contribution of the particle-wall interactions to the potential energy of the system is given by\[U_{\mathrm{walls}} = \sum_{i=0}^{N_{\mathrm{particles}-1}} \sum_{j=0}^{N_{\mathrm{walls}-1}} U_{i,j},\]where the energy of interaction \(U_{i,j}\) between particle \(i\) and wall \(j\) is given by
\[\begin{split}U_{i,j} = \begin{cases} \infty & d_{i,j} <= 0 \\ 0 & d_{i,j} > 0 \\ \end{cases}\end{split}\]where \(d_{i,j} = \min{\{(\vec{r}_i - \vec{r}_j) \cdot \vec{n}_j : \vec{r}_i \in V_I, \vec{r}_j \in W_J\}}\) is the minimum signed distance between all pairs of points \(\vec{r}_i\) on the body of the particle \(V_I\) and \(\vec{r}_j\) on the surface of the wall \(W_J\) and \(\vec{n}_j\) is the vector normal to the surface of the wall at \(\vec{r}_j\) pointing to the allowed region of space defined by the wall.
Walls are enforced by the HPMC integrator. Append a
WallPotentialinstance tohpmc.integrate.HPMCIntegrator.external_potentialsto activate the wall potential. Not all combinations of HPMC integrators and wall geometries have overlap checks implemented, and aNotImplementedErroris raised if a wall geometry is attached to a simulation with a specific HPMC integrator attached and the overlap checks between the specific shape and wall geometry are not implemented. See the individual subclasses ofhoomd.hpmc.integrate.HPMCIntegratorfor their wall support.Note
WallPotentialdoes not support execution on GPUs.See also
Example
walls = [hoomd.wall.Sphere(radius=4.0)] wall_potential = hoomd.hpmc.external.wall.WallPotential(walls) simulation.operations.integrator.external_potentials = [wall_potential]
Members inherited from
External:- property energy¶
Potential energy contributed by this potential \([\mathrm{energy}]\).
Read more...
Members defined in
WallPotential:- property overlaps¶
The total number of overlaps between particles and walls.
(
Loggable: category=”scalar”)- Type:
- property walls¶
The wall geometries associated with this potential.
- Type: