hoomd.box¶
Overview
The class interface which HOOMD considers to be a box-like object. |
|
Objects that are or can be converted to |
Details
Implement Box.
- class hoomd.box.BoxInterface¶
The class interface which HOOMD considers to be a box-like object.
Note
This class is exclusively used for help with typing and documentation in HOOMD, and is not meant to be used.
- hoomd.box.box_like¶
Objects that are or can be converted to
Box.This includes
hoomd.Boxobjects.Objects with attributes
Lx, Ly, Lz, xy, xz, yz.Lists like
[Lx, Ly, Lz, xy, xz, yz].Dictionaries with keys
'Lx', 'Ly', 'Lz', 'xy', 'xz', 'yz'.3x3 NumPy arrays or objects convertible to a 3x3 array (see
hoomd.Box.from_matrix).
Note
If any of
Lz, xy, xz, yzfor these different types are not provided, they are considered 0.alias of
Union[Box,BoxInterface,Sequence[float],Mapping[str,float],ndarray]