Skip to content

Commit

Permalink
Merge pull request #77 from libAtoms/elastic_constants
Browse files Browse the repository at this point in the history
ENH: Analytic Hessian, non-affine forces and elastic constants
  • Loading branch information
pastewka authored Jul 29, 2021
2 parents 23be0e4 + e0b2ba5 commit f54d2ce
Show file tree
Hide file tree
Showing 104 changed files with 34,172 additions and 32,920 deletions.
5 changes: 4 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
matscipy/_version.py export-subst
*.fs -linguist-detectable
*.fs -linguist-detectable
.gitattributes text eol=lf
*.py text eol=lf
*.sh text eol=lf
8 changes: 4 additions & 4 deletions .github/workflows/main.yml → .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Test compilation and publish documentation

on:
push:
Expand All @@ -21,15 +21,15 @@ jobs:
sudo apt-get install -y python3-dev python3-pip libxml2-dev libxslt-dev zlib1g-dev
sudo pip3 install -r requirements.txt
- name: build_c
- name: build
run: |
python3 setup.py build
sudo python3 setup.py install
- name: test
- name: pytest
run: |
cd tests
pytest -v
pytest -s --verbose
- name: package_dist
run: |
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Run tests

on:
push:
branches:
- '*'
tags:
- '*'

jobs:
tests:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- name: install_python
run: |
sudo apt-get update -qy
sudo apt-get install -y python3-dev python3-pip libxml2-dev libxslt-dev zlib1g-dev
sudo pip3 install -r requirements.txt
- name: build_c
run: |
python3 setup.py build
sudo python3 setup.py install
- name: pytest
run: |
cd tests
pytest -s --verbose
26 changes: 0 additions & 26 deletions .travis.before_install.bash

This file was deleted.

11 changes: 0 additions & 11 deletions .travis.before_script.bash

This file was deleted.

33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

14 changes: 6 additions & 8 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
Change log
==========

v0.8.0 (not yet released)
v0.7.0 (not yet released)
-------------------------

- Calculator for bond-order potentials and Stillinger-Weber
- Hessian calculation for bond-order potentials and Stillinger-Weber
- Specific bond-order parameterization for Kumagai and Tersoff3

v0.7.0 (17Nov20)
----------------

- Calculator for Manybody potentials e.g. Stillinger-Weber and Bond-order
- Specific parametrizations for Tersoff-Brenner potentials, Stillinger-Weber and Kumagai
- Analytic computation of Hessian matrix for manybody potentials
- Analytic computation of zero-temperature elastic constants for pair potential and manybody potentials
- CLI for electrochemistry functions
- Proper molecular id numbering in electrochemistry
- Generation of dislocations

v0.6.0 (10Sep20)
----------------
Expand Down
Loading

0 comments on commit f54d2ce

Please sign in to comment.