Skip to content

Commit

Permalink
Update installation docs to match default SSSP
Browse files Browse the repository at this point in the history
  • Loading branch information
mbercx committed Dec 12, 2023
1 parent d276f6a commit a5e2eb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/source/howto/calculations/pw.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ from ase.build import bulk
from aiida.orm import StructureData, load_code, load_group

# Load the pseudopotential family whose pseudos to use
family = load_group('SSSP/1.1/PBE/effiency')
family = load_group('SSSP/1.3/PBEsol/effiency')
structure = StructureData(ase=bulk('GaAs', 'fcc', 5.4))

builder = load_code('pw').get_builder()
Expand All @@ -226,7 +226,7 @@ from ase.build import bulk
from aiida.orm import StructureData, load_code, load_group

# Load the pseudopotential family whose pseudos to use
family = load_group('SSSP/1.1/PBE/effiency')
family = load_group('SSSP/1.3/PBEsol/effiency')
structure = StructureData(ase=bulk('GaAs', 'fcc', 5.4))

builder = load_code('pw').get_builder()
Expand Down
4 changes: 2 additions & 2 deletions docs/source/installation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,10 +212,10 @@ $ pip install aiida-pseudo
```

At a minimum, at least one pseudo potential family should be installed.
We recommend using the [SSSP] with the PBEsol functional:
We recommend using the [SSSP] v1.3 with the PBEsol functional:

```console
$ aiida-pseudo install sssp -x PBEsol
$ aiida-pseudo install sssp -v 1.3 -x PBEsol
```

For more detailed information on installing other pseudo potential families, please refer to the documentation of [aiida-pseudo].

0 comments on commit a5e2eb8

Please sign in to comment.