Skip to content

Commit 708ad2a

Browse files
authored
Merge pull request #71 from pyiron/snap
Calculate SNAP descriptors
2 parents f15e8e4 + 65ece1a commit 708ad2a

File tree

5 files changed

+1080
-0
lines changed

5 files changed

+1080
-0
lines changed

.ci_support/environment-lammps.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
channels:
2+
- conda-forge
3+
dependencies:
4+
- lammps =2023.11.21

.github/workflows/unittests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ jobs:
4646

4747
steps:
4848
- uses: actions/checkout@v4
49+
- name: Merge conda environment
50+
if: matrix.operating-system != 'windows-latest'
51+
run: tail --lines=+4 .ci_support/environment-lammps.yml >> .ci_support/environment.yml
4952
- name: Setup Mambaforge
5053
uses: conda-incubator/setup-miniconda@v2
5154
with:

structuretoolkit/analyse/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@
2323
get_voronoi_vertices,
2424
)
2525
from structuretoolkit.analyse.strain import get_strain
26+
from structuretoolkit.analyse.snap import (
27+
get_snap_descriptor_names,
28+
get_snap_descriptors_per_atom,
29+
get_snap_descriptor_derivatives,
30+
)
2631

2732

2833
def get_symmetry(

0 commit comments

Comments
 (0)