Skip to content

Commit 1c1eb93

Browse files
authored
Merge pull request #781 from MichaelWolloch/Fix-SCAN-INCARs-to-have-LELF-=-False
Fixes reference INCARs for MPSCANRelaxSet calculations to correspond …
2 parents 52608a1 + 3440d3d commit 1c1eb93

File tree

10 files changed

+10
-12
lines changed
  • .circleci
  • .github/workflows
  • atomate/vasp/test_files
    • PBESol_pre_opt_for_SCAN_Al/inputs
    • PBESol_pre_opt_for_SCAN_LiF_vdw/inputs
    • PBESol_pre_opt_for_SCAN_LiF/inputs
    • PBESol_pre_opt_for_SCAN_LiH/inputs
    • SCAN_structure_optimization_Al/inputs
    • SCAN_structure_optimization_LiF_vdw/inputs
    • SCAN_structure_optimization_LiF/inputs
    • SCAN_structure_optimization_LiH/inputs

10 files changed

+10
-12
lines changed

.circleci/config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,15 @@ jobs:
88
steps:
99
- checkout
1010
- restore_cache:
11-
key: deps-{{ checksum "requirements-ci.txt" }}-{{ checksum "setup.py" }}
11+
key: deps-{{ checksum "setup.py" }}
1212
- run:
1313
name: Install dependencies
1414
command: |
1515
export PATH=$HOME/miniconda3/bin:$PATH
1616
conda create --name test_env python=3.8
1717
source activate test_env
1818
conda install -c conda-forge openbabel gcc_linux-64
19-
pip install -r requirements-ci.txt
20-
pip install .
19+
pip install .[complete]
2120
no_output_timeout: 1h
2221
- run:
2322
name: pytest

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
cache: pip
2727
cache-dependency-path: |
2828
setup.py
29-
requirements-ci.txt
3029
python-version: 3.8
3130

3231
- name: Install OpenBabel

atomate/vasp/test_files/PBESol_pre_opt_for_SCAN_Al/inputs/INCAR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ KSPACING = 0.22
1212
LAECHG = True
1313
LASPH = True
1414
LCHARG = True
15-
LELF = True
15+
LELF = False
1616
LMIXTAU = True
1717
LORBIT = 11
1818
LREAL = Auto

atomate/vasp/test_files/PBESol_pre_opt_for_SCAN_LiF/inputs/INCAR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ KSPACING = 0.22
1212
LAECHG = True
1313
LASPH = True
1414
LCHARG = True
15-
LELF = True
15+
LELF = False
1616
LMIXTAU = True
1717
LORBIT = 11
1818
LREAL = Auto

atomate/vasp/test_files/PBESol_pre_opt_for_SCAN_LiF_vdw/inputs/INCAR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ KSPACING = 0.22
1212
LAECHG = True
1313
LASPH = True
1414
LCHARG = True
15-
LELF = True
15+
LELF = False
1616
LMIXTAU = True
1717
LORBIT = 11
1818
LREAL = Auto

atomate/vasp/test_files/PBESol_pre_opt_for_SCAN_LiH/inputs/INCAR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ KSPACING = 0.22
1212
LAECHG = True
1313
LASPH = True
1414
LCHARG = True
15-
LELF = True
15+
LELF = False
1616
LMIXTAU = True
1717
LORBIT = 11
1818
LREAL = Auto

atomate/vasp/test_files/SCAN_structure_optimization_Al/inputs/INCAR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ KSPACING = 0.22
1212
LAECHG = True
1313
LASPH = True
1414
LCHARG = True
15-
LELF = True
15+
LELF = False
1616
LMIXTAU = True
1717
LORBIT = 11
1818
LREAL = Auto

atomate/vasp/test_files/SCAN_structure_optimization_LiF/inputs/INCAR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ KSPACING = 0.44
1212
LAECHG = True
1313
LASPH = True
1414
LCHARG = True
15-
LELF = True
15+
LELF = False
1616
LMIXTAU = True
1717
LORBIT = 11
1818
LREAL = Auto

atomate/vasp/test_files/SCAN_structure_optimization_LiF_vdw/inputs/INCAR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ KSPACING = 0.44
1212
LAECHG = True
1313
LASPH = True
1414
LCHARG = True
15-
LELF = True
15+
LELF = False
1616
LMIXTAU = True
1717
LORBIT = 11
1818
LREAL = Auto

atomate/vasp/test_files/SCAN_structure_optimization_LiH/inputs/INCAR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ KSPACING = 0.34292160173571584
1212
LAECHG = True
1313
LASPH = True
1414
LCHARG = True
15-
LELF = True
15+
LELF = False
1616
LMIXTAU = True
1717
LORBIT = 11
1818
LREAL = Auto

0 commit comments

Comments
 (0)