sponge.partition.DistanceNeighbours
- class sponge.partition.DistanceNeighbours(cutoff: float, num_neighbours: int = None, atom_mask: Tensor = None, exclude_index: Tensor = None, use_pbc: bool = None, cutoff_scale: float = 1.2, large_dis: float = 10000.0, cast_fp16: bool = False)[源代码]
根据距离计算近邻表。
- 参数:
cutoff (float) - 截止距离。
num_neighbours (int,可选) - 邻近原子的数量。如果给定
None
,则该值将根据邻近网格与总网格数的比例计算。默认值:None
。atom_mask (Tensor,可选) - Tensor,shape为 \((B, A)\)。数据类型为bool。系统中原子的掩码。默认值:
None
。exclude_index (Tensor,可选) - Tensor,shape为 \((B, A, Ex)\)。数据类型为int32。可以从近邻表中排除的邻近原子的索引。默认值:
None
。use_pbc (bool,可选) - 是否使用周期性边界条件。默认值:
None
。cutoff_scale (float,可选) - 缩放截止距离的因子。默认值:
1.2
。large_dis (float,可选) - 一个大数,用于填充被掩码邻近原子的距离。默认值:
1e4
。cast_fp16 (bool,可选) - 如果设置为
True
,在排序前将数据转换为float16。用于一些仅支持float16数据排序的设备。默认值:False
。
说明
B:模拟行者的数量。
A:系统中原子的数量。
N:邻近原子的数量。
Ex:最多排除的邻近原子数量。
- 支持平台:
Ascend
GPU
样例:
>>> import sponge >>> from sponge.partition import DistanceNeighbours >>> import mindspore >>> from mindspore import Tensor >>> distance_neighbours = DistanceNeighbours(0.5, use_pbc=False) >>> coordinate = Tensor([[[0.0, 0.0, 0.0], [0.0, 0.0, 1.0]]]) >>> distance_neighbours(coordinate) (Tensor(shape=[1, 2, 1], dtype=Float32, value= [[[ 1.00000000e+00], [ 1.00000000e+00]]]), Tensor(shape=[1, 2, 1], dtype=Int64, value= [[[0], [1]]]), Tensor(shape=[1, 2, 1], dtype=Bool, value= [[[False], [False]]])) >>> distance = Tensor([[[1.0, 0.0, 0.0], [0.0, 0.0, 0.0]]]) >>> distance_neighbours.calc_max_neighbours(distance, 0.5) Tensor(shape=[], dtype=Int32, value= 2) >>> distance_neighbours.check_neighbour_list() DistanceNeighbours< (get_distance): GetDistance<> >
- calc_max_neighbours(distances: Tensor, cutoff: float)[源代码]
计算近邻原子的最大数量。
- 参数:
distances (Tensor) - Tensor,shape为 \((B, A, N)\)。数据类型为float。邻近原子的距离。
cutoff (float) - 截止距离。
- set_exclude_index(exclude_index: Tensor)[源代码]
设置应从近邻表中排除的原子索引。
- 参数:
exclude_index (Tensor) - Tensor,shape为 \((B, A, Ex)\)。数据类型为int。应从近邻表中排除的原子索引。
- set_num_neighbours(coordinate: Tensor, pbc_box: Tensor = None, scale_factor: float = 1.25)[源代码]
设置近邻原子的最大数量。
- 参数:
coordinate (Tensor) - Tensor,shape为 \((B, A, D)\)。数据类型为float。原子的位置坐标。
pbc_box (Tensor,可选) - Tensor,shape为 \((B, D)\)。数据类型为bool。周期性边界条件盒子。默认值:
None
。scale_factor (float,可选) - 缩放系数。默认值:
1.25
。