Interface Module¶
Overview
Measures the interface between two sets of points. |
Details
The freud.interface
module contains functions to measure the interface
between sets of points.
- class freud.interface.Interface¶
Bases:
_PairCompute
Measures the interface between two sets of points.
- compute(self, system, query_points, neighbors=None)¶
Compute the particles at the interface between two sets of points.
- Parameters:
system – Any object that is a valid argument to
freud.locality.NeighborQuery.from_system
.query_points ((\(N_{query\_points}\), 3)
numpy.ndarray
, optional) – Second set of points (in addition to the system points) to calculate the interface.neighbors (
freud.locality.NeighborList
or dict, optional) – Either aNeighborList
of neighbor pairs to use in the calculation, or a dictionary of query arguments (Default value: None).
- default_query_args¶
No default query arguments.
- property point_ids¶
The particle IDs from
points
.- Type:
np.ndarray
- property query_point_ids¶
The particle IDs from
query_points
.- Type:
np.ndarray