soprano.properties.map.map#
Classes
|
Returns a structure remapped to the one given as reference. |
|
Returns a list of the indices which will remap a given structure to the one given as reference. |
- class soprano.properties.map.map.Remap(name=None, **params)[source]#
Bases:
AtomsProperty
Returns a structure remapped to the one given as reference. Remapping means creating a one-to-one correspondence between atoms based on their distances (which may include the periodic boundaries).
Parameters:reference (ase.Atoms): Reference structure to map to. Requiredmic (bool): If True, take into account periodic boundariesvia the minimum image convention. We use the general methodfrom ASE. It’s slow but robust.Default is True.check_species (bool): If True, only compare atoms of the same species.Default is True.tolerance (float): Tolerance for the distance comparison.Default is 0.1 Angstrom.Returns:remap_indices ([int]): List of indices for the structure in the orderin which they will make it map to the referencebestInitialize an AtomsProperty and set its parameters. The AtomsProperty instance can then be called with a structure as its only argument to get the property with the given parameters.
Args:name (str): a name to give to this specific instance of theproperty (will be used to store it as array ifrequested)params: named arguments specific to this type of property- __call__(s, store_array=False)#
Calling the AtomsProperty returns the value of the property as extracted with the parameters of this specific instance.
Args:s (ase.Atoms or AtomsCollection): the structure or collectionfrom which to extract thepropertystore_array (bool): if s is a collection, whether to store theresulting data as an array in the collectionusing the given name for this instanceReturns:property: the value of the property for the given structure ora list of values if a collection has been passed
- static extract(s, reference, mic, check_species, tolerance)[source]#
Extract the given property with given parameters from an Atoms object.
Args:s (ase.Atoms): the structure from which to extract the propertyparams: named arguments specific to this type of propertyReturns:property: the value of the property for the given structure andparameters
- classmethod get(s, store_array=False, **kwargs)#
Extract the given property using the default parameters on an Atoms object s
Args:s (ase.Atoms or AtomsCollection): the structure or collectionfrom which to extract thepropertystore_array (bool): if s is a collection, whether to store theresulting data as an array in the collectionusing the default name for this propertyReturns:property: the value of the property for the given structure ora list of values if a collection has been passed
- class soprano.properties.map.map.RemapIndices(name=None, **params)[source]#
Bases:
AtomsProperty
Returns a list of the indices which will remap a given structure to the one given as reference. Remapping means creating a one-to-one correspondence between atoms based on their distances (which may include the periodic boundaries).
Parameters:reference (ase.Atoms): Reference structure to map to. Requiredmic (bool): If True, take into account periodic boundariesvia the minimum image convention. We use the general methodfrom ASE. It’s slow in some cases but robust.Default is True.check_species (bool): If True, only compare atoms of the same species.Default is True.tolerance (float): Tolerance (in Angstroms) for the distance comparison. If no atomis found within this distance, an error is raised.Default is 0.1 Angstrom.Returns:remap_indices ([int]): List of indices for the structure in the orderin which they will make it map to the referencebestInitialize an AtomsProperty and set its parameters. The AtomsProperty instance can then be called with a structure as its only argument to get the property with the given parameters.
Args:name (str): a name to give to this specific instance of theproperty (will be used to store it as array ifrequested)params: named arguments specific to this type of property- __call__(s, store_array=False)#
Calling the AtomsProperty returns the value of the property as extracted with the parameters of this specific instance.
Args:s (ase.Atoms or AtomsCollection): the structure or collectionfrom which to extract thepropertystore_array (bool): if s is a collection, whether to store theresulting data as an array in the collectionusing the given name for this instanceReturns:property: the value of the property for the given structure ora list of values if a collection has been passed
- static extract(s, reference, mic, check_species, tolerance)[source]#
Extract the given property with given parameters from an Atoms object.
Args:s (ase.Atoms): the structure from which to extract the propertyparams: named arguments specific to this type of propertyReturns:property: the value of the property for the given structure andparameters
- classmethod get(s, store_array=False, **kwargs)#
Extract the given property using the default parameters on an Atoms object s
Args:s (ase.Atoms or AtomsCollection): the structure or collectionfrom which to extract thepropertystore_array (bool): if s is a collection, whether to store theresulting data as an array in the collectionusing the default name for this propertyReturns:property: the value of the property for the given structure ora list of values if a collection has been passed