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
Is it possible to compute ACE descriptors for a subset of atoms instead of all atoms in a simulation box?
site_descriptors(basis, atoms) extracts the feature vector for all atoms.
The text was updated successfully, but these errors were encountered:
There is this:
site_descriptor(basis, atoms::AbstractAtoms, i::Integer)
which returns a single one. Since site_descriptors just broadcasts this one, I think you could just do one of the following:
site_descriptors
[ site_descriptor(basis, atoms, i) for i in list] site_descriptor.(Ref(basis), Ref(atoms), list)
But it would be nice to have syntax for this, basically,
site_descriptors(basis, atoms, list)
or something similar. Do you feel like making a PR?
Sorry, something went wrong.
actually it should be a very quick fix. I'll do this and let you know when it's done.
No branches or pull requests
Is it possible to compute ACE descriptors for a subset of atoms instead of all atoms in a simulation box?
site_descriptors(basis, atoms) extracts the feature vector for all atoms.
The text was updated successfully, but these errors were encountered: