Skip to content

Latest commit

 

History

History
71 lines (53 loc) · 2.78 KB

CHANGELOG.md

File metadata and controls

71 lines (53 loc) · 2.78 KB

Changelog

All notable changes to featomic are documented here, following the keep a changelog format. This project follows Semantic Versioning.

Changed

  • Bug fixes in featomic.clebsch_gordan, see issue #370:
    • fixed cartesian_to_spherical transformation for tensors of rank greater than 2. Previously, axes weren't properly rolled to yzx.
    • added a missing transformation in the real to complex spherical harmonics transformation, used in the calculation of CG coefficients.

Version 0.6.0 - 2024-12-20

Added

  • Multiple atomistic features calculators with a native implementation:

    • SOAP spherical expansion, radial spectrum, power spectrum and spherical expansion for pairs of atoms;
    • LODE spherical expansion;
    • Neighbor list;
    • Sorted distances vector;
    • Atomic composition.
  • All the calculator outputs are stored in metatensor's TensorMap objects. This allow to both store the features in a very sparse format, saving memory; and to store different irreducible representations (for SO(3) equivariant atomsitic features)

  • Most of the calculators can compute gradients with respect to positions, cell or stress, storing them in the gradient() of metatensor's TensorBlock.

  • All the native calculators are exposed through a C API, and accessible from multiple languages: Rust, C++ and Python.

  • Interface to mutliple system providers, and a way to define custom system providers in user code. The following system providers are supported from Python: ASE (https://wiki.fysik.dtu.dk/ase/); chemfiles (https://chemfiles.org/); and PySCF (https://pyscf.org/)

  • Python-only calculators, based on Clebsch-Gordan tensor products to combine equivariant featurizations. This includes

    • PowerSpectrum, able to combine two different spherical expansions
    • EquivariantPowerSpectrum, the same but producing features both invariant and covariant with respect to rotations
    • DensityCorrelations to compute arbitrary body-order density correlations;
    • ClebschGordanProduct, the core building block that does a single Clebsch-Gordan tensor product.
  • Python tools to define custom atomic density and radial basis functions, and then compute splines for the radial integral apearing in SOAP and LODE spherical expansions. This enables using these native calculators with user-defined atomic densities and basis functions.