We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/connectivity
A group of either time dependent or time independent data:
/connectivity/
see https://h5md.nongnu.org/h5md.html#connectivity-group
class Atoms(ase.Atoms): bonds def get_graph() -> networkx
also see https://github.com/imagdau/aseMolec
The text was updated successfully, but these errors were encountered:
Add a custom NLTool to the io - some preprocessor maybe?
NLTool
io
import ase.neighborlist as nl import networkx as nx import numpy as np cutoffs = nl.natural_cutoffs(atoms) # scale for bond order neighbor_list = nl.NeighborList(cutoffs, self_interaction=False, bothways=False) neighbor_list.update(atoms) matrix = neighbor_list.get_connectivity_matrix() g = nx.from_scipy_sparse_array(matrix) np.array(g.edges)
RDKit might also have some very handy tools on hand to compute bond order or some ML toolset.
Sorry, something went wrong.
No branches or pull requests
A group of either time dependent or time independent data:
see https://h5md.nongnu.org/h5md.html#connectivity-group
also see https://github.com/imagdau/aseMolec
The text was updated successfully, but these errors were encountered: