Commit ·
ba6dc6d
1
Parent(s): dba5eb2
Copied from old repo
Browse files- README.md +35 -0
- datasets/.gitignore +37 -0
- datasets/README.md +33 -0
- docs/CONTRIBUTING.md +30 -0
- docs/GitHub_actions.md +30 -0
- docs/large_files.md +31 -0
- make_artifacts.jl +108 -0
- pseudo/.gitignore +8 -0
- pseudo/download.sh +15 -0
- pseudo/metadata.json +597 -0
README.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
+
|
| 5 |
+
# WannierDatasets
|
| 6 |
+
|
| 7 |
+
Datasets for playing with Wannier functions.
|
| 8 |
+
|
| 9 |
+
Specifically, this repo
|
| 10 |
+
|
| 11 |
+
- provides input data files for running the examples inside
|
| 12 |
+
[`Wannier.jl`](https://github.com/qiaojunfeng/Wannier.jl) documentation
|
| 13 |
+
- provides a set of cheap and small datasets for testing
|
| 14 |
+
[`Wannier.jl`](https://github.com/qiaojunfeng/Wannier.jl)
|
| 15 |
+
and [`WannierIO.jl`](https://github.com/qiaojunfeng/WannierIO.jl)
|
| 16 |
+
- allow users to quickly load typical systems when developing algorithms for
|
| 17 |
+
Wannier functions. Fully focus on Wannier algorithms, without the need of
|
| 18 |
+
running density functional theory (DFT) calculations
|
| 19 |
+
|
| 20 |
+
On technical side, we use [Julia Artifacts](https://pkgdocs.julialang.org/v1/artifacts/)
|
| 21 |
+
to manage the datasets. This allows us to
|
| 22 |
+
|
| 23 |
+
- keep the `Wannier.jl` and `WannierIO.jl` repositories small and clean
|
| 24 |
+
- safely rewrite the datasets without the risk of rebasing the history of
|
| 25 |
+
`Wannier.jl` and `WannierIO.jl` repositories
|
| 26 |
+
- still providing a convenient way to load the datasets in Julia scripts/REPL.
|
| 27 |
+
|
| 28 |
+
## Structure of the repo
|
| 29 |
+
|
| 30 |
+
- [`datasets/`](./datasets/) each subfolder contains a dataset for a specific system
|
| 31 |
+
- [`pseudo/`](./pseudo/) pseudopotentials used when generating the datasets
|
| 32 |
+
- [`src/`](./src/) a fake folder just to make `Project.toml` happy
|
| 33 |
+
- [`util/`](./util/) Several small scripts that help with running the examples
|
| 34 |
+
|
| 35 |
+
## Contributing
|
| 36 |
+
|
| 37 |
+
If you feel your dataset is useful for the community, please feel free to contribute.
|
| 38 |
+
Please have a look at the [contributing guidelines](./docs/CONTRIBUTING.md).
|
datasets/.gitignore
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# pseudo
|
| 2 |
+
*.upf
|
| 3 |
+
*.UPF
|
| 4 |
+
|
| 5 |
+
# QE outputs
|
| 6 |
+
out/
|
| 7 |
+
*.out
|
| 8 |
+
bands.dat
|
| 9 |
+
*.projwfc_up
|
| 10 |
+
*.pdos_atm#*
|
| 11 |
+
*.pdos_tot
|
| 12 |
+
|
| 13 |
+
# W90 inputs
|
| 14 |
+
# I should git add these files
|
| 15 |
+
# *.amn
|
| 16 |
+
# *.mmn
|
| 17 |
+
# *.eig
|
| 18 |
+
# *.spn
|
| 19 |
+
# UNK*
|
| 20 |
+
|
| 21 |
+
# W90 outputs
|
| 22 |
+
*.nnkp
|
| 23 |
+
*.wout
|
| 24 |
+
*.cube
|
| 25 |
+
*.xsf
|
| 26 |
+
*_band.gnu
|
| 27 |
+
*_band.dat
|
| 28 |
+
*_band.labelinfo.dat
|
| 29 |
+
*_band.kpt
|
| 30 |
+
*.chk
|
| 31 |
+
*.chk.fmt
|
| 32 |
+
*.werr
|
| 33 |
+
|
| 34 |
+
# misc
|
| 35 |
+
*.log
|
| 36 |
+
CRASH
|
| 37 |
+
.ipynb_checkpoints
|
datasets/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Datasets
|
| 2 |
+
|
| 3 |
+
## List of datasets
|
| 4 |
+
|
| 5 |
+
- `Si2_valence`: Silicon valence band only
|
| 6 |
+
- `Si2`: Silicon valence and conduction bands
|
| 7 |
+
- `Cu`: copper, metal
|
| 8 |
+
- `CrI3`: chromium triiodide, magnetic calculation
|
| 9 |
+
|
| 10 |
+
## Dataset generation
|
| 11 |
+
|
| 12 |
+
These files are generated by the respective `creator/run.sh` script in each subdirectory.
|
| 13 |
+
The `creator` subdirectory contains all the script and input files for DFT codes
|
| 14 |
+
to generate the Wannier input `amn/mmn/eig/...` files.
|
| 15 |
+
|
| 16 |
+
The Fortran binary (also called unformatted) files are written by QE binaries
|
| 17 |
+
which are compiled with
|
| 18 |
+
|
| 19 |
+
```bash
|
| 20 |
+
GNU Fortran (Ubuntu 11.2.0-19ubuntu1) 11.2.0
|
| 21 |
+
```
|
| 22 |
+
|
| 23 |
+
To add a new dataset:
|
| 24 |
+
|
| 25 |
+
- Create a new subdirectory, e.g. `Si2`
|
| 26 |
+
- Put all the input files for the DFT code in the subdirectory `Si2/creator/`
|
| 27 |
+
- Create a `run.sh` script in `creator/` which runs the DFT code and generates the `amn/mmn/eig/...` files
|
| 28 |
+
- Move the `amn/mmn/eig/...` files to `Si2/`
|
| 29 |
+
- (Optional) Create a `README.md` file in `Si2/` which describes the dataset
|
| 30 |
+
- (Optional) Add reference results in a subdirectory `Si2/reference/`
|
| 31 |
+
|
| 32 |
+
Out goal is that the `run.sh` script should be able to reproduce the `amn/mmn/eig/...` files,
|
| 33 |
+
on any machine. So we can easily regenerate the dataset if we need to.
|
docs/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Contributing guidelines
|
| 2 |
+
|
| 3 |
+
Thanks for taking the time to contribute! :+1:
|
| 4 |
+
|
| 5 |
+
In general, we would like to
|
| 6 |
+
|
| 7 |
+
- keep the repository as small as possible but still produce (more or less)
|
| 8 |
+
physically meaningful results (e.g., roughly correct band structures).
|
| 9 |
+
Of course, for testing datasets, no such requirement is needed.
|
| 10 |
+
- keep the original DFT input files and scripts for generating the datasets,
|
| 11 |
+
to ensure reproducibility. This also allows us to regenerate the datasets
|
| 12 |
+
if needed.
|
| 13 |
+
|
| 14 |
+
## All Code Changes Happen Through Pull Requests
|
| 15 |
+
|
| 16 |
+
Pull requests are the best way to propose changes to the codebase.
|
| 17 |
+
We actively welcome your pull requests:
|
| 18 |
+
|
| 19 |
+
1. Fork the repo and create your branch from `main`.
|
| 20 |
+
2. Add dataset(s), ideally small (in terms of file size) but still gives
|
| 21 |
+
physical results. The `prefix` of the files (i.e. `prefix.amn`/`prefix.mmn`)
|
| 22 |
+
should be the same as the folder name, to allow easy loading of the dataset
|
| 23 |
+
by `Wannier.jl` (the function `Wannier.Datasets.load_dataset`)
|
| 24 |
+
3. Make sure the original input files are committed in a `generator` subfolder,
|
| 25 |
+
so we can always reproduce the results on different machines.
|
| 26 |
+
4. (Optional) put useful reference files in a `reference` subfolder
|
| 27 |
+
5. Always `git rebase` your branch on top of the latest `main` branch, so that
|
| 28 |
+
we can merge your PR without ugly :worried: merge commits.
|
| 29 |
+
Otherwise, we will rebase explicitly your branch when merging.
|
| 30 |
+
6. Create that pull request!
|
docs/GitHub_actions.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Notes on GitHub Actions
|
| 2 |
+
|
| 3 |
+
## Release process
|
| 4 |
+
|
| 5 |
+
The current process of bumping version is:
|
| 6 |
+
|
| 7 |
+
- create a branch, since the `main` branch is protected.
|
| 8 |
+
The branch name can be `bumpversion`.
|
| 9 |
+
- use `bump2version (major|minor|patch)` to update
|
| 10 |
+
`.bumpversion.cfg` and `Project.toml`, and it will create a git commit
|
| 11 |
+
- create a PR
|
| 12 |
+
- the release workflow will run, it will
|
| 13 |
+
- build the artifact tarballs
|
| 14 |
+
- commit `Artifacts.toml`
|
| 15 |
+
- create a draft release, with tarballs attached
|
| 16 |
+
- check if the version in `Project.toml` is consistent with that suggested
|
| 17 |
+
by the `release-drafter` workflow, and if not, add a comment to the PR
|
| 18 |
+
- once the PR is merged, publish the draft release, and it will create
|
| 19 |
+
a git tag pointing to main (thus including the just merged PR)
|
| 20 |
+
|
| 21 |
+
In the end, we have:
|
| 22 |
+
|
| 23 |
+
- a new version git tagged
|
| 24 |
+
- an `Artifacts.toml` with updated tarball SHA
|
| 25 |
+
- a GitHub release with tarballs attached
|
| 26 |
+
- the version in `Project.toml` is consistent with the git tag
|
| 27 |
+
|
| 28 |
+
## Debugging
|
| 29 |
+
|
| 30 |
+
- to debug github workflows, set `ACTIONS_STEP_DEBUG` to `true` in secrets
|
docs/large_files.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Notes on large files
|
| 2 |
+
|
| 3 |
+
## `util/GitHub-ForceLargeFiles`
|
| 4 |
+
|
| 5 |
+
GitHub has a limit of 100MB per file, to bypass this limit, there is a
|
| 6 |
+
python script `util/GitHub-ForceLargeFiles/src/main.py` that will auto
|
| 7 |
+
compress large files and split them into chunks.
|
| 8 |
+
|
| 9 |
+
To use it
|
| 10 |
+
|
| 11 |
+
```shell
|
| 12 |
+
python util/GitHub-ForceLargeFiles/src/main.py DIR_TO_CHECK
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
where `DIR_TO_CHECK` is the directory to check for large files.
|
| 16 |
+
|
| 17 |
+
To decompress the files, use
|
| 18 |
+
|
| 19 |
+
```shell
|
| 20 |
+
python util/GitHub-ForceLargeFiles/src/reverse.py DIR_TO_CHECK
|
| 21 |
+
```
|
| 22 |
+
|
| 23 |
+
For more information, see the two scripts.
|
| 24 |
+
|
| 25 |
+
## Adding large dataset files
|
| 26 |
+
|
| 27 |
+
Therefore, in general we should avoid adding large files. However, if e.g.
|
| 28 |
+
without enough kpoint sampling the band structure is really poor, then we
|
| 29 |
+
can use `main.py` script to compress the files and git commit the 7z files.
|
| 30 |
+
In the GitHub workflow, the `reverse.py` script will be run to decompress
|
| 31 |
+
the files and pack them into artifact tarballs.
|
make_artifacts.jl
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env -S julia --project
|
| 2 |
+
# Script to generate `Artifacts.toml` and `artifacts/*.tar.gz`.
|
| 3 |
+
#
|
| 4 |
+
# For the 1st time running this script, you need to run
|
| 5 |
+
# using Pkg; Pkg.instantiate()
|
| 6 |
+
# to install the dependencies.
|
| 7 |
+
#
|
| 8 |
+
# Artifacts docs:
|
| 9 |
+
# https://pkgdocs.julialang.org/v1/artifacts/
|
| 10 |
+
#
|
| 11 |
+
using Tar, Inflate, SHA, TOML
|
| 12 |
+
|
| 13 |
+
# let Artifacts.toml point to local tarballs, otherwise point to GitHub releases
|
| 14 |
+
LOCAL = false
|
| 15 |
+
# if on local machine, I assume all the 7z files are already decompressed
|
| 16 |
+
DECOMPRESS_7Z = true
|
| 17 |
+
|
| 18 |
+
# check if we are running in github actions
|
| 19 |
+
if isnothing(get(ENV, "GITHUB_ACTIONS", nothing))
|
| 20 |
+
LOCAL = true
|
| 21 |
+
DECOMPRESS_7Z = false
|
| 22 |
+
else
|
| 23 |
+
LOCAL = false
|
| 24 |
+
DECOMPRESS_7Z = true
|
| 25 |
+
end
|
| 26 |
+
|
| 27 |
+
if DECOMPRESS_7Z
|
| 28 |
+
PY_SCRIPT = joinpath(@__DIR__, "util/GitHub-ForceLargeFiles/src/reverse.py")
|
| 29 |
+
run(
|
| 30 |
+
Cmd([
|
| 31 |
+
"python",
|
| 32 |
+
PY_SCRIPT,
|
| 33 |
+
# reverse.py will delete the 7z files by default
|
| 34 |
+
"--delete_partitions",
|
| 35 |
+
# workaround for python argparse: only empty string "" -> false
|
| 36 |
+
"",
|
| 37 |
+
"--root_dir",
|
| 38 |
+
joinpath(@__DIR__, "datasets"),
|
| 39 |
+
]),
|
| 40 |
+
)
|
| 41 |
+
end
|
| 42 |
+
|
| 43 |
+
artifacts = Dict()
|
| 44 |
+
|
| 45 |
+
const datasets_dir = joinpath(@__DIR__, "datasets")
|
| 46 |
+
const artifacts_dir = joinpath(@__DIR__, "artifacts")
|
| 47 |
+
# exclude the generator folder which contains the inputs for generating the datasets
|
| 48 |
+
const tar_excludes = ["generator", ".gitignore", "README.md", "*.7z.*"]
|
| 49 |
+
|
| 50 |
+
# gzip compression level, highest
|
| 51 |
+
const GZIP = "-9"
|
| 52 |
+
# By default, use gzip
|
| 53 |
+
compress_prog = "gzip $GZIP"
|
| 54 |
+
# Try to use pigz for parallel compression.
|
| 55 |
+
# However, it is not available in github workflow (ubuntu-latest)
|
| 56 |
+
try
|
| 57 |
+
run(`which pigz`)
|
| 58 |
+
# -k: keep original files
|
| 59 |
+
global compress_prog = "pigz $GZIP -k"
|
| 60 |
+
catch
|
| 61 |
+
# pigz is not available
|
| 62 |
+
end
|
| 63 |
+
|
| 64 |
+
TAR_CMD = [
|
| 65 |
+
"tar",
|
| 66 |
+
"--exclude-vcs",
|
| 67 |
+
"--exclude-vcs-ignores",
|
| 68 |
+
"--use-compress-program=$compress_prog",
|
| 69 |
+
]
|
| 70 |
+
append!(TAR_CMD, ["--exclude=" * f for f in tar_excludes])
|
| 71 |
+
|
| 72 |
+
mkpath(artifacts_dir)
|
| 73 |
+
|
| 74 |
+
for data in readdir(datasets_dir)
|
| 75 |
+
startswith(data, "_") && continue
|
| 76 |
+
fullpath = joinpath(datasets_dir, data)
|
| 77 |
+
isdir(fullpath) || continue
|
| 78 |
+
|
| 79 |
+
tar_name = "$(data).tar.gz"
|
| 80 |
+
outpath = joinpath(artifacts_dir, tar_name)
|
| 81 |
+
cd(fullpath) do
|
| 82 |
+
files = readdir()
|
| 83 |
+
run(Cmd(vcat(TAR_CMD, ["-cvf", outpath], files)))
|
| 84 |
+
end
|
| 85 |
+
|
| 86 |
+
if LOCAL
|
| 87 |
+
# if you want to test locally
|
| 88 |
+
url = "file://$(outpath)"
|
| 89 |
+
else
|
| 90 |
+
# use github release to host the artifacts
|
| 91 |
+
# https://docs.github.com/en/repositories/releasing-projects-on-github/linking-to-releases
|
| 92 |
+
# 2GB limit per file, no limit on total size, no bandwidth limit
|
| 93 |
+
# https://docs.github.com/en/repositories/releasing-projects-on-github/about-releases
|
| 94 |
+
url = "https://github.com/qiaojunfeng/WannierDatasets/releases/latest/download/$(tar_name)"
|
| 95 |
+
end
|
| 96 |
+
|
| 97 |
+
artifact_name = data
|
| 98 |
+
artifacts[artifact_name] = Dict(
|
| 99 |
+
"git-tree-sha1" => Tar.tree_hash(IOBuffer(inflate_gzip(outpath))),
|
| 100 |
+
"lazy" => true,
|
| 101 |
+
"download" =>
|
| 102 |
+
[Dict("url" => url, "sha256" => bytes2hex(open(sha256, outpath)))],
|
| 103 |
+
)
|
| 104 |
+
end
|
| 105 |
+
|
| 106 |
+
open("Artifacts.toml", "w") do io
|
| 107 |
+
TOML.print(io, artifacts)
|
| 108 |
+
end
|
pseudo/.gitignore
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
SSSP_1.1.2_PBEsol_efficiency.tar.gz
|
| 2 |
+
archive.tar.gz
|
| 3 |
+
#metadata.json
|
| 4 |
+
|
| 5 |
+
nc-fr-04_pbe_standard_upf.tgz
|
| 6 |
+
|
| 7 |
+
*.UPF
|
| 8 |
+
*.upf
|
pseudo/download.sh
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
# pseudos are downloaded from SSSP
|
| 4 |
+
# https://www.materialscloud.org/discover/sssp/table/efficiency
|
| 5 |
+
|
| 6 |
+
# auto download with either aiida-pseudo, or wget
|
| 7 |
+
# aiida-pseudo install sssp -x PBEsol --download-only
|
| 8 |
+
|
| 9 |
+
F='SSSP_1.1.2_PBEsol_efficiency.tar.gz'
|
| 10 |
+
wget "https://archive.materialscloud.org/record/file?filename=${F}&parent_id=19" -O $F
|
| 11 |
+
tar xvf $F
|
| 12 |
+
|
| 13 |
+
F='nc-fr-04_pbe_standard_upf.tgz'
|
| 14 |
+
wget "http://www.pseudo-dojo.org/pseudos/${F}" -O $F
|
| 15 |
+
tar xvf $F
|
pseudo/metadata.json
ADDED
|
@@ -0,0 +1,597 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"Ag": {
|
| 3 |
+
"filename": "Ag_ONCV_PBEsol-1.0.upf",
|
| 4 |
+
"md5": "be0296cafe7c2d67c3292db0cbbac4d1",
|
| 5 |
+
"pseudopotential": "SG15",
|
| 6 |
+
"cutoff_wfc": 50.0,
|
| 7 |
+
"cutoff_rho": 200.0
|
| 8 |
+
},
|
| 9 |
+
"Al": {
|
| 10 |
+
"filename": "Al.pbesol-n-kjpaw_psl.1.0.0.UPF",
|
| 11 |
+
"md5": "3401bcfaaf5f9b08e46a00870a1ef39d",
|
| 12 |
+
"pseudopotential": "100PAW",
|
| 13 |
+
"cutoff_wfc": 30.0,
|
| 14 |
+
"cutoff_rho": 240.0
|
| 15 |
+
},
|
| 16 |
+
"Ar": {
|
| 17 |
+
"filename": "Ar_ONCV_PBEsol-1.1.upf",
|
| 18 |
+
"md5": "c01a123fbe80b3fe80f6f94f1eb776dd",
|
| 19 |
+
"pseudopotential": "SG15-1.1",
|
| 20 |
+
"cutoff_wfc": 60.0,
|
| 21 |
+
"cutoff_rho": 240.0
|
| 22 |
+
},
|
| 23 |
+
"As": {
|
| 24 |
+
"filename": "As.pbesol-n-rrkjus_psl.0.2.UPF",
|
| 25 |
+
"md5": "1aa86e6aa4f77befd3aa87cac6788838",
|
| 26 |
+
"pseudopotential": "031US",
|
| 27 |
+
"cutoff_wfc": 35.0,
|
| 28 |
+
"cutoff_rho": 280.0
|
| 29 |
+
},
|
| 30 |
+
"Au": {
|
| 31 |
+
"filename": "Au_ONCV_PBEsol-1.0.upf",
|
| 32 |
+
"md5": "107326c382cdbc7cf544f5ac04d81467",
|
| 33 |
+
"pseudopotential": "SG15",
|
| 34 |
+
"cutoff_wfc": 45.0,
|
| 35 |
+
"cutoff_rho": 180.0
|
| 36 |
+
},
|
| 37 |
+
"B": {
|
| 38 |
+
"filename": "b_pbesol_v1.4.uspp.F.UPF",
|
| 39 |
+
"md5": "369b69bef2c3aeed4453bd8b804fd6a8",
|
| 40 |
+
"pseudopotential": "GBRV-1.4",
|
| 41 |
+
"cutoff_wfc": 35.0,
|
| 42 |
+
"cutoff_rho": 280.0
|
| 43 |
+
},
|
| 44 |
+
"Ba": {
|
| 45 |
+
"filename": "Ba.pbesol-spn-kjpaw_psl.1.0.0.UPF",
|
| 46 |
+
"md5": "f28c4a63d325c1a0d00fd3a4f19b8d73",
|
| 47 |
+
"pseudopotential": "100PAW",
|
| 48 |
+
"cutoff_wfc": 30.0,
|
| 49 |
+
"cutoff_rho": 240.0
|
| 50 |
+
},
|
| 51 |
+
"Be": {
|
| 52 |
+
"filename": "be_pbesol_v1.4.uspp.F.UPF",
|
| 53 |
+
"md5": "09f0a726f30643f9a0ebddd893618f5c",
|
| 54 |
+
"pseudopotential": "GBRV-1.4",
|
| 55 |
+
"cutoff_wfc": 40.0,
|
| 56 |
+
"cutoff_rho": 320.0
|
| 57 |
+
},
|
| 58 |
+
"Bi": {
|
| 59 |
+
"filename": "bi_pbesol_v1.uspp.F.UPF",
|
| 60 |
+
"md5": "588b87649a5c12ad5a0392deab1dcc00",
|
| 61 |
+
"pseudopotential": "GBRV-1.2",
|
| 62 |
+
"cutoff_wfc": 45.0,
|
| 63 |
+
"cutoff_rho": 360.0
|
| 64 |
+
},
|
| 65 |
+
"Br": {
|
| 66 |
+
"filename": "br_pbesol_v1.4.uspp.F.UPF",
|
| 67 |
+
"md5": "7bf6084e715f6bfd1944787c04c43e72",
|
| 68 |
+
"pseudopotential": "GBRV-1.4",
|
| 69 |
+
"cutoff_wfc": 30.0,
|
| 70 |
+
"cutoff_rho": 240.0
|
| 71 |
+
},
|
| 72 |
+
"C": {
|
| 73 |
+
"filename": "C.pbesol-n-kjpaw_psl.1.0.0.UPF",
|
| 74 |
+
"md5": "5f3a56537b2bcef3348431d8311bb923",
|
| 75 |
+
"pseudopotential": "100PAW",
|
| 76 |
+
"cutoff_wfc": 45.0,
|
| 77 |
+
"cutoff_rho": 360.0
|
| 78 |
+
},
|
| 79 |
+
"Ca": {
|
| 80 |
+
"filename": "ca_pbesol_v1.uspp.F.UPF",
|
| 81 |
+
"md5": "0533207b58cddeaa036efa5b63902087",
|
| 82 |
+
"pseudopotential": "GBRV-1.2",
|
| 83 |
+
"cutoff_wfc": 30.0,
|
| 84 |
+
"cutoff_rho": 240.0
|
| 85 |
+
},
|
| 86 |
+
"Cd": {
|
| 87 |
+
"filename": "Cd.pbesol-dn-rrkjus_psl.0.3.1.UPF",
|
| 88 |
+
"md5": "1f02951eb1ebb2be2329879281757063",
|
| 89 |
+
"pseudopotential": "031US",
|
| 90 |
+
"cutoff_wfc": 60.0,
|
| 91 |
+
"cutoff_rho": 480.0
|
| 92 |
+
},
|
| 93 |
+
"Ce": {
|
| 94 |
+
"filename": "Ce.GGA-PBESOL-paw.UPF",
|
| 95 |
+
"md5": "23607d9236a12d616006a21dc3c8e039",
|
| 96 |
+
"pseudopotential": "Wentzcovitch",
|
| 97 |
+
"cutoff_wfc": 40.0,
|
| 98 |
+
"cutoff_rho": 320.0
|
| 99 |
+
},
|
| 100 |
+
"Cl": {
|
| 101 |
+
"filename": "cl_pbesol_v1.4.uspp.F.UPF",
|
| 102 |
+
"md5": "ed6bbcf06f19043c0df9f6394706ff8f",
|
| 103 |
+
"pseudopotential": "GBRV-1.4",
|
| 104 |
+
"cutoff_wfc": 40.0,
|
| 105 |
+
"cutoff_rho": 320.0
|
| 106 |
+
},
|
| 107 |
+
"Co": {
|
| 108 |
+
"filename": "co_pbesol_v1.2.uspp.F.UPF",
|
| 109 |
+
"md5": "3b4cd4e7cc7df4da9fdede0fd33e2193",
|
| 110 |
+
"pseudopotential": "GBRV-1.2",
|
| 111 |
+
"cutoff_wfc": 45.0,
|
| 112 |
+
"cutoff_rho": 360.0
|
| 113 |
+
},
|
| 114 |
+
"Cr": {
|
| 115 |
+
"filename": "cr_pbesol_v1.5.uspp.F.UPF",
|
| 116 |
+
"md5": "a621641e0be27168676a837af8893d0f",
|
| 117 |
+
"pseudopotential": "GBRV-1.5",
|
| 118 |
+
"cutoff_wfc": 40.0,
|
| 119 |
+
"cutoff_rho": 320.0
|
| 120 |
+
},
|
| 121 |
+
"Cs": {
|
| 122 |
+
"filename": "cs_pbesol_v1.uspp.F.UPF",
|
| 123 |
+
"md5": "ae4559e5c840913b791237f814e2d884",
|
| 124 |
+
"pseudopotential": "GBRV-1.2",
|
| 125 |
+
"cutoff_wfc": 30.0,
|
| 126 |
+
"cutoff_rho": 240.0
|
| 127 |
+
},
|
| 128 |
+
"Cu": {
|
| 129 |
+
"filename": "cu_pbesol_v1.2.uspp.F.UPF",
|
| 130 |
+
"md5": "9756a2ec9488b52ead7a8e4006543bdf",
|
| 131 |
+
"pseudopotential": "GBRV-1.2",
|
| 132 |
+
"cutoff_wfc": 55.0,
|
| 133 |
+
"cutoff_rho": 440.0
|
| 134 |
+
},
|
| 135 |
+
"Dy": {
|
| 136 |
+
"filename": "Dy.GGA-PBESOL-paw.UPF",
|
| 137 |
+
"md5": "87300e485cfe89bd0b23a3ce6d7c616b",
|
| 138 |
+
"pseudopotential": "Wentzcovitch",
|
| 139 |
+
"cutoff_wfc": 40.0,
|
| 140 |
+
"cutoff_rho": 320.0
|
| 141 |
+
},
|
| 142 |
+
"Er": {
|
| 143 |
+
"filename": "Er.GGA-PBESOL-paw.UPF",
|
| 144 |
+
"md5": "d8b3a218689ff1ecfc4479e98c14c765",
|
| 145 |
+
"pseudopotential": "Wentzcovitch",
|
| 146 |
+
"cutoff_wfc": 40.0,
|
| 147 |
+
"cutoff_rho": 320.0
|
| 148 |
+
},
|
| 149 |
+
"Eu": {
|
| 150 |
+
"filename": "Eu.GGA-PBESOL-paw.UPF",
|
| 151 |
+
"md5": "f3820d3063e0c66ddd8b5316f2038eb4",
|
| 152 |
+
"pseudopotential": "Wentzcovitch",
|
| 153 |
+
"cutoff_wfc": 40.0,
|
| 154 |
+
"cutoff_rho": 320.0
|
| 155 |
+
},
|
| 156 |
+
"F": {
|
| 157 |
+
"filename": "f_pbesol_v1.4.uspp.F.UPF",
|
| 158 |
+
"md5": "d2815ecb49b17b99c5724ffd2f9bbd8d",
|
| 159 |
+
"pseudopotential": "GBRV-1.4",
|
| 160 |
+
"cutoff_wfc": 45.0,
|
| 161 |
+
"cutoff_rho": 360.0
|
| 162 |
+
},
|
| 163 |
+
"Fe": {
|
| 164 |
+
"filename": "Fe.pbesol-spn-kjpaw_psl.0.2.1.UPF",
|
| 165 |
+
"md5": "4d7ec5aa2156491519a4322664fbbf52",
|
| 166 |
+
"pseudopotential": "031PAW",
|
| 167 |
+
"cutoff_wfc": 90.0,
|
| 168 |
+
"cutoff_rho": 1080.0
|
| 169 |
+
},
|
| 170 |
+
"Ga": {
|
| 171 |
+
"filename": "Ga.pbesol-dn-kjpaw_psl.1.0.0.UPF",
|
| 172 |
+
"md5": "2a7819223b42fad6ccd7f29fc9cbee49",
|
| 173 |
+
"pseudopotential": "100PAW",
|
| 174 |
+
"cutoff_wfc": 70.0,
|
| 175 |
+
"cutoff_rho": 560.0
|
| 176 |
+
},
|
| 177 |
+
"Gd": {
|
| 178 |
+
"filename": "Gd.GGA-PBESOL-paw.UPF",
|
| 179 |
+
"md5": "d9fdc7360015cd9620bad644bcc14b0d",
|
| 180 |
+
"pseudopotential": "Wentzcovitch",
|
| 181 |
+
"cutoff_wfc": 40.0,
|
| 182 |
+
"cutoff_rho": 320.0
|
| 183 |
+
},
|
| 184 |
+
"Ge": {
|
| 185 |
+
"filename": "ge_pbesol_v1.4.uspp.F.UPF",
|
| 186 |
+
"md5": "7bed0412183f5e553a4d27ec7023354d",
|
| 187 |
+
"pseudopotential": "GBRV-1.4",
|
| 188 |
+
"cutoff_wfc": 40.0,
|
| 189 |
+
"cutoff_rho": 320.0
|
| 190 |
+
},
|
| 191 |
+
"H": {
|
| 192 |
+
"filename": "H.pbesol-rrkjus_psl.1.0.0.UPF",
|
| 193 |
+
"md5": "0324ed591cc0147dc3d88cad0d33f665",
|
| 194 |
+
"pseudopotential": "100US",
|
| 195 |
+
"cutoff_wfc": 60.0,
|
| 196 |
+
"cutoff_rho": 480.0
|
| 197 |
+
},
|
| 198 |
+
"He": {
|
| 199 |
+
"filename": "He_ONCV_PBEsol-1.0.upf",
|
| 200 |
+
"md5": "3a98d7dc8e9b0e8c7e1be02b8995cc9d",
|
| 201 |
+
"pseudopotential": "SG15",
|
| 202 |
+
"cutoff_wfc": 50.0,
|
| 203 |
+
"cutoff_rho": 200.0
|
| 204 |
+
},
|
| 205 |
+
"Hf": {
|
| 206 |
+
"filename": "Hf-sp.oncvpsp.upf",
|
| 207 |
+
"md5": "3619c98de2ee908b1d969add25be4863",
|
| 208 |
+
"pseudopotential": "Dojo",
|
| 209 |
+
"cutoff_wfc": 50.0,
|
| 210 |
+
"cutoff_rho": 200.0
|
| 211 |
+
},
|
| 212 |
+
"Hg": {
|
| 213 |
+
"filename": "Hg_ONCV_PBEsol-1.0.upf",
|
| 214 |
+
"md5": "9b18bbaf32e5d8994dbbbf1f0a8e2d63",
|
| 215 |
+
"pseudopotential": "SG15",
|
| 216 |
+
"cutoff_wfc": 50.0,
|
| 217 |
+
"cutoff_rho": 200.0
|
| 218 |
+
},
|
| 219 |
+
"Ho": {
|
| 220 |
+
"filename": "Ho.GGA-PBESOL-paw.UPF",
|
| 221 |
+
"md5": "e4331f82ae8f480097e745152a969825",
|
| 222 |
+
"pseudopotential": "Wentzcovitch",
|
| 223 |
+
"cutoff_wfc": 40.0,
|
| 224 |
+
"cutoff_rho": 320.0
|
| 225 |
+
},
|
| 226 |
+
"I": {
|
| 227 |
+
"filename": "I.pbesol-n-kjpaw_psl.0.2.UPF",
|
| 228 |
+
"md5": "cecf1a22a184a0b1ae701638a037a48d",
|
| 229 |
+
"pseudopotential": "031PAW",
|
| 230 |
+
"cutoff_wfc": 35.0,
|
| 231 |
+
"cutoff_rho": 280.0
|
| 232 |
+
},
|
| 233 |
+
"In": {
|
| 234 |
+
"filename": "In.pbesol-dn-rrkjus_psl.0.2.2.UPF",
|
| 235 |
+
"md5": "2a3399a31491503da6b8c7d8e01e9843",
|
| 236 |
+
"pseudopotential": "031US",
|
| 237 |
+
"cutoff_wfc": 50.0,
|
| 238 |
+
"cutoff_rho": 400.0
|
| 239 |
+
},
|
| 240 |
+
"Ir": {
|
| 241 |
+
"filename": "ir_pbesol_v1.2.uspp.F.UPF",
|
| 242 |
+
"md5": "965d8bb5733ec2587acb56a50491f36d",
|
| 243 |
+
"pseudopotential": "GBRV-1.2",
|
| 244 |
+
"cutoff_wfc": 55.0,
|
| 245 |
+
"cutoff_rho": 440.0
|
| 246 |
+
},
|
| 247 |
+
"K": {
|
| 248 |
+
"filename": "K.pbesol-spn-kjpaw_psl.1.0.0.UPF",
|
| 249 |
+
"md5": "b302bede38c4f5fe00638ceae66f121b",
|
| 250 |
+
"pseudopotential": "100PAW",
|
| 251 |
+
"cutoff_wfc": 60.0,
|
| 252 |
+
"cutoff_rho": 480.0
|
| 253 |
+
},
|
| 254 |
+
"Kr": {
|
| 255 |
+
"filename": "Kr_ONCV_PBEsol-1.0.upf",
|
| 256 |
+
"md5": "5ac180be35b0c9edbb375e438c4855d9",
|
| 257 |
+
"pseudopotential": "SG15",
|
| 258 |
+
"cutoff_wfc": 45.0,
|
| 259 |
+
"cutoff_rho": 180.0
|
| 260 |
+
},
|
| 261 |
+
"La": {
|
| 262 |
+
"filename": "La.GGA-PBESOL-paw.UPF",
|
| 263 |
+
"md5": "2e80f1c10d694b9f13352ee8148412ff",
|
| 264 |
+
"pseudopotential": "Wentzcovitch",
|
| 265 |
+
"cutoff_wfc": 40.0,
|
| 266 |
+
"cutoff_rho": 320.0
|
| 267 |
+
},
|
| 268 |
+
"Li": {
|
| 269 |
+
"filename": "li_pbesol_v1.4.uspp.F.UPF",
|
| 270 |
+
"md5": "aa28d9aeea6a965f2dc95ee9517b3536",
|
| 271 |
+
"pseudopotential": "GBRV-1.4",
|
| 272 |
+
"cutoff_wfc": 40.0,
|
| 273 |
+
"cutoff_rho": 320.0
|
| 274 |
+
},
|
| 275 |
+
"Lu": {
|
| 276 |
+
"filename": "Lu.GGA-PBESOL-paw.UPF",
|
| 277 |
+
"md5": "3fcef48d55e219cc7c47d20c5f2554a6",
|
| 278 |
+
"pseudopotential": "Wentzcovitch",
|
| 279 |
+
"cutoff_wfc": 45.0,
|
| 280 |
+
"cutoff_rho": 360.0
|
| 281 |
+
},
|
| 282 |
+
"Mg": {
|
| 283 |
+
"filename": "Mg.pbesol-n-kjpaw_psl.0.3.0.UPF",
|
| 284 |
+
"md5": "a6c8d2ff726a5f7005dea00130d82930",
|
| 285 |
+
"pseudopotential": "031PAW",
|
| 286 |
+
"cutoff_wfc": 30.0,
|
| 287 |
+
"cutoff_rho": 240.0
|
| 288 |
+
},
|
| 289 |
+
"Mn": {
|
| 290 |
+
"filename": "mn_pbesol_v1.5.uspp.F.UPF",
|
| 291 |
+
"md5": "0716d5f563e6e95a34f9080f4c78c109",
|
| 292 |
+
"pseudopotential": "GBRV-1.5",
|
| 293 |
+
"cutoff_wfc": 65.0,
|
| 294 |
+
"cutoff_rho": 780.0
|
| 295 |
+
},
|
| 296 |
+
"Mo": {
|
| 297 |
+
"filename": "Mo_ONCV_PBEsol-1.0.upf",
|
| 298 |
+
"md5": "5193ba6a20874d27c2ef80314d1b3445",
|
| 299 |
+
"pseudopotential": "SG15",
|
| 300 |
+
"cutoff_wfc": 35.0,
|
| 301 |
+
"cutoff_rho": 140.0
|
| 302 |
+
},
|
| 303 |
+
"N": {
|
| 304 |
+
"filename": "N.pbesol-theos.UPF",
|
| 305 |
+
"md5": "1b64827339d390a5a22afef3ff345c9d",
|
| 306 |
+
"pseudopotential": "THEOS",
|
| 307 |
+
"cutoff_wfc": 60.0,
|
| 308 |
+
"cutoff_rho": 480.0
|
| 309 |
+
},
|
| 310 |
+
"Na": {
|
| 311 |
+
"filename": "na_pbesol_v1.5.uspp.F.UPF",
|
| 312 |
+
"md5": "164b46c7694b4bc5b1217b5d1ae6f423",
|
| 313 |
+
"pseudopotential": "GBRV-1.5",
|
| 314 |
+
"cutoff_wfc": 40.0,
|
| 315 |
+
"cutoff_rho": 320.0
|
| 316 |
+
},
|
| 317 |
+
"Nb": {
|
| 318 |
+
"filename": "Nb.pbesol-spn-kjpaw_psl.0.3.0.UPF",
|
| 319 |
+
"md5": "3501bca1474143575298708b2d32ca28",
|
| 320 |
+
"pseudopotential": "031PAW",
|
| 321 |
+
"cutoff_wfc": 40.0,
|
| 322 |
+
"cutoff_rho": 320.0
|
| 323 |
+
},
|
| 324 |
+
"Nd": {
|
| 325 |
+
"filename": "Nd.GGA-PBESOL-paw.UPF",
|
| 326 |
+
"md5": "37d3b6ddf0e3018c38af49be729a942f",
|
| 327 |
+
"pseudopotential": "Wentzcovitch",
|
| 328 |
+
"cutoff_wfc": 40.0,
|
| 329 |
+
"cutoff_rho": 320.0
|
| 330 |
+
},
|
| 331 |
+
"Ne": {
|
| 332 |
+
"filename": "Ne_ONCV_PBEsol-1.0.upf",
|
| 333 |
+
"md5": "6b58c9748b6c6bd8518a05c4ffec2876",
|
| 334 |
+
"pseudopotential": "SG15",
|
| 335 |
+
"cutoff_wfc": 50.0,
|
| 336 |
+
"cutoff_rho": 200.0
|
| 337 |
+
},
|
| 338 |
+
"Ni": {
|
| 339 |
+
"filename": "ni_pbesol_v1.4.uspp.F.UPF",
|
| 340 |
+
"md5": "de937c0c8ae4b350e69c02b76d8a83cb",
|
| 341 |
+
"pseudopotential": "GBRV-1.4",
|
| 342 |
+
"cutoff_wfc": 45.0,
|
| 343 |
+
"cutoff_rho": 360.0
|
| 344 |
+
},
|
| 345 |
+
"O": {
|
| 346 |
+
"filename": "O.pbesol-n-kjpaw_psl.0.1.UPF",
|
| 347 |
+
"md5": "81d73d1479e654e5638b0319f0d6c2c7",
|
| 348 |
+
"pseudopotential": "031PAW",
|
| 349 |
+
"cutoff_wfc": 50.0,
|
| 350 |
+
"cutoff_rho": 400.0
|
| 351 |
+
},
|
| 352 |
+
"Os": {
|
| 353 |
+
"filename": "os_pbesol_v1.2.uspp.F.UPF",
|
| 354 |
+
"md5": "417375b0b6115d11b925f9c92882b8df",
|
| 355 |
+
"pseudopotential": "GBRV-1.2",
|
| 356 |
+
"cutoff_wfc": 40.0,
|
| 357 |
+
"cutoff_rho": 320.0
|
| 358 |
+
},
|
| 359 |
+
"P": {
|
| 360 |
+
"filename": "P.pbesol-n-rrkjus_psl.1.0.0.UPF",
|
| 361 |
+
"md5": "bbb94b1b16383820d6a769669b5d42db",
|
| 362 |
+
"pseudopotential": "100US",
|
| 363 |
+
"cutoff_wfc": 30.0,
|
| 364 |
+
"cutoff_rho": 240.0
|
| 365 |
+
},
|
| 366 |
+
"Pb": {
|
| 367 |
+
"filename": "Pb.pbesol-dn-kjpaw_psl.0.2.2.UPF",
|
| 368 |
+
"md5": "df0e0ac60519e244e20a4bf230ae894d",
|
| 369 |
+
"pseudopotential": "031PAW",
|
| 370 |
+
"cutoff_wfc": 40.0,
|
| 371 |
+
"cutoff_rho": 320.0
|
| 372 |
+
},
|
| 373 |
+
"Pd": {
|
| 374 |
+
"filename": "Pd_ONCV_PBEsol-1.0.upf",
|
| 375 |
+
"md5": "252ac589d0cc8911379e98310815452c",
|
| 376 |
+
"pseudopotential": "SG15",
|
| 377 |
+
"cutoff_wfc": 45.0,
|
| 378 |
+
"cutoff_rho": 180.0
|
| 379 |
+
},
|
| 380 |
+
"Pm": {
|
| 381 |
+
"filename": "Pm.GGA-PBESOL-paw.UPF",
|
| 382 |
+
"md5": "7393b4891bb7c67805a884007ee3d7dc",
|
| 383 |
+
"pseudopotential": "Wentzcovitch",
|
| 384 |
+
"cutoff_wfc": 40.0,
|
| 385 |
+
"cutoff_rho": 320.0
|
| 386 |
+
},
|
| 387 |
+
"Po": {
|
| 388 |
+
"filename": "Po.pbesol-dn-rrkjus_psl.1.0.0.UPF",
|
| 389 |
+
"md5": "699150f1cfd13117cb33a6caa4356c05",
|
| 390 |
+
"pseudopotential": "100US",
|
| 391 |
+
"cutoff_wfc": 75.0,
|
| 392 |
+
"cutoff_rho": 600.0
|
| 393 |
+
},
|
| 394 |
+
"Pr": {
|
| 395 |
+
"filename": "Pr.GGA-PBESOL-paw.UPF",
|
| 396 |
+
"md5": "340b69098d76ddc3d434d602373e49e6",
|
| 397 |
+
"pseudopotential": "Wentzcovitch",
|
| 398 |
+
"cutoff_wfc": 40.0,
|
| 399 |
+
"cutoff_rho": 320.0
|
| 400 |
+
},
|
| 401 |
+
"Pt": {
|
| 402 |
+
"filename": "pt_pbesol_v1.4.uspp.F.UPF",
|
| 403 |
+
"md5": "d14d547907f752a992688280a7473f8c",
|
| 404 |
+
"pseudopotential": "GBRV-1.4",
|
| 405 |
+
"cutoff_wfc": 35.0,
|
| 406 |
+
"cutoff_rho": 280.0
|
| 407 |
+
},
|
| 408 |
+
"Rb": {
|
| 409 |
+
"filename": "Rb_ONCV_PBEsol-1.0.upf",
|
| 410 |
+
"md5": "84df3c5f64297d00eda9a2a6a50301db",
|
| 411 |
+
"pseudopotential": "SG15",
|
| 412 |
+
"cutoff_wfc": 30.0,
|
| 413 |
+
"cutoff_rho": 120.0
|
| 414 |
+
},
|
| 415 |
+
"Re": {
|
| 416 |
+
"filename": "re_pbesol_v1.2.uspp.F.UPF",
|
| 417 |
+
"md5": "aaf9138663fa2d46e1797bae542d0e3d",
|
| 418 |
+
"pseudopotential": "GBRV-1.2",
|
| 419 |
+
"cutoff_wfc": 30.0,
|
| 420 |
+
"cutoff_rho": 240.0
|
| 421 |
+
},
|
| 422 |
+
"Rh": {
|
| 423 |
+
"filename": "Rh_ONCV_PBEsol-1.0.upf",
|
| 424 |
+
"md5": "ec594c1794ddd2e1e7b303db34a9ee92",
|
| 425 |
+
"pseudopotential": "SG15",
|
| 426 |
+
"cutoff_wfc": 35.0,
|
| 427 |
+
"cutoff_rho": 140.0
|
| 428 |
+
},
|
| 429 |
+
"Rn": {
|
| 430 |
+
"filename": "Rn.pbesol-dn-kjpaw_psl.1.0.0.UPF",
|
| 431 |
+
"md5": "5c61dddfb132b66dc3f68191c02785a8",
|
| 432 |
+
"pseudopotential": "100PAW",
|
| 433 |
+
"cutoff_wfc": 120.0,
|
| 434 |
+
"cutoff_rho": 960.0
|
| 435 |
+
},
|
| 436 |
+
"Ru": {
|
| 437 |
+
"filename": "Ru_ONCV_PBEsol-1.0.upf",
|
| 438 |
+
"md5": "8f986bf37b5af91b2f53a4f9afee5fd8",
|
| 439 |
+
"pseudopotential": "SG15",
|
| 440 |
+
"cutoff_wfc": 35.0,
|
| 441 |
+
"cutoff_rho": 140.0
|
| 442 |
+
},
|
| 443 |
+
"S": {
|
| 444 |
+
"filename": "s_pbesol_v1.4.uspp.F.UPF",
|
| 445 |
+
"md5": "0ccfa86ec6eb59065d10aaae963ef2a7",
|
| 446 |
+
"pseudopotential": "GBRV-1.4",
|
| 447 |
+
"cutoff_wfc": 35.0,
|
| 448 |
+
"cutoff_rho": 280.0
|
| 449 |
+
},
|
| 450 |
+
"Sb": {
|
| 451 |
+
"filename": "sb_pbesol_v1.4.uspp.F.UPF",
|
| 452 |
+
"md5": "b66a27f2c95be5fc87b0bb5ef8c6d7fd",
|
| 453 |
+
"pseudopotential": "GBRV-1.4",
|
| 454 |
+
"cutoff_wfc": 40.0,
|
| 455 |
+
"cutoff_rho": 320.0
|
| 456 |
+
},
|
| 457 |
+
"Sc": {
|
| 458 |
+
"filename": "Sc_ONCV_PBEsol-1.0.upf",
|
| 459 |
+
"md5": "1a9da10301537f29e8fd13e102309a15",
|
| 460 |
+
"pseudopotential": "SG15",
|
| 461 |
+
"cutoff_wfc": 40.0,
|
| 462 |
+
"cutoff_rho": 160.0
|
| 463 |
+
},
|
| 464 |
+
"Se": {
|
| 465 |
+
"filename": "se_pbesol_v1.uspp.F.UPF",
|
| 466 |
+
"md5": "a3b4745ad650bb7419ce2e0d5f176975",
|
| 467 |
+
"pseudopotential": "GBRV-1.2",
|
| 468 |
+
"cutoff_wfc": 30.0,
|
| 469 |
+
"cutoff_rho": 240.0
|
| 470 |
+
},
|
| 471 |
+
"Si": {
|
| 472 |
+
"filename": "Si.pbesol-n-rrkjus_psl.1.0.0.UPF",
|
| 473 |
+
"md5": "c4212819de858c94c3a1644338846ac9",
|
| 474 |
+
"pseudopotential": "100US",
|
| 475 |
+
"cutoff_wfc": 30.0,
|
| 476 |
+
"cutoff_rho": 240.0
|
| 477 |
+
},
|
| 478 |
+
"Sm": {
|
| 479 |
+
"filename": "Sm.GGA-PBESOL-paw.UPF",
|
| 480 |
+
"md5": "6689040c10eac9660c2e310e7c4a0367",
|
| 481 |
+
"pseudopotential": "Wentzcovitch",
|
| 482 |
+
"cutoff_wfc": 40.0,
|
| 483 |
+
"cutoff_rho": 320.0
|
| 484 |
+
},
|
| 485 |
+
"Sn": {
|
| 486 |
+
"filename": "sn_pbesol_v1.4.uspp.F.UPF",
|
| 487 |
+
"md5": "463fec1d5456f1e96ec1bfcad4b7b038",
|
| 488 |
+
"pseudopotential": "GBRV-1.2",
|
| 489 |
+
"cutoff_wfc": 60.0,
|
| 490 |
+
"cutoff_rho": 480.0
|
| 491 |
+
},
|
| 492 |
+
"Sr": {
|
| 493 |
+
"filename": "sr_pbesol_v1.uspp.F.UPF",
|
| 494 |
+
"md5": "635bff1625df5273dba4129a01ed8c82",
|
| 495 |
+
"pseudopotential": "GBRV-1.2",
|
| 496 |
+
"cutoff_wfc": 30.0,
|
| 497 |
+
"cutoff_rho": 240.0
|
| 498 |
+
},
|
| 499 |
+
"Ta": {
|
| 500 |
+
"filename": "ta_pbesol_v1.uspp.F.UPF",
|
| 501 |
+
"md5": "5dd23d6859724cbb2c0d9b6294d5f84c",
|
| 502 |
+
"pseudopotential": "GBRV-1.2",
|
| 503 |
+
"cutoff_wfc": 45.0,
|
| 504 |
+
"cutoff_rho": 360.0
|
| 505 |
+
},
|
| 506 |
+
"Tb": {
|
| 507 |
+
"filename": "Tb.GGA-PBESOL-paw.UPF",
|
| 508 |
+
"md5": "bb25a619965335560b6ee28da5b6e46d",
|
| 509 |
+
"pseudopotential": "Wentzcovitch",
|
| 510 |
+
"cutoff_wfc": 40.0,
|
| 511 |
+
"cutoff_rho": 320.0
|
| 512 |
+
},
|
| 513 |
+
"Tc": {
|
| 514 |
+
"filename": "Tc_ONCV_PBEsol-1.0.upf",
|
| 515 |
+
"md5": "e1002180990b9df3eeb3e08c45184084",
|
| 516 |
+
"pseudopotential": "SG15",
|
| 517 |
+
"cutoff_wfc": 30.0,
|
| 518 |
+
"cutoff_rho": 120.0
|
| 519 |
+
},
|
| 520 |
+
"Te": {
|
| 521 |
+
"filename": "te_pbesol_v1.uspp.F.UPF",
|
| 522 |
+
"md5": "44ee7635674656c288d8e9a9a9ffd7e3",
|
| 523 |
+
"pseudopotential": "GBRV-1.2",
|
| 524 |
+
"cutoff_wfc": 30.0,
|
| 525 |
+
"cutoff_rho": 240.0
|
| 526 |
+
},
|
| 527 |
+
"Ti": {
|
| 528 |
+
"filename": "ti_pbesol_v1.4.uspp.F.UPF",
|
| 529 |
+
"md5": "193cf2c0c3c6a4da613d69453fa7e3e9",
|
| 530 |
+
"pseudopotential": "GBRV-1.4",
|
| 531 |
+
"cutoff_wfc": 35.0,
|
| 532 |
+
"cutoff_rho": 280.0
|
| 533 |
+
},
|
| 534 |
+
"Tl": {
|
| 535 |
+
"filename": "tl_pbesol_v1.2.uspp.F.UPF",
|
| 536 |
+
"md5": "ce331abb17083e2469b5604a64700343",
|
| 537 |
+
"pseudopotential": "GBRV-1.2",
|
| 538 |
+
"cutoff_wfc": 50.0,
|
| 539 |
+
"cutoff_rho": 400.0
|
| 540 |
+
},
|
| 541 |
+
"Tm": {
|
| 542 |
+
"filename": "Tm.GGA-PBESOL-paw.UPF",
|
| 543 |
+
"md5": "1277d8a20ca143f5a519eae978e5978a",
|
| 544 |
+
"pseudopotential": "Wentzcovitch",
|
| 545 |
+
"cutoff_wfc": 40.0,
|
| 546 |
+
"cutoff_rho": 320.0
|
| 547 |
+
},
|
| 548 |
+
"V": {
|
| 549 |
+
"filename": "v_pbesol_v1.4.uspp.F.UPF",
|
| 550 |
+
"md5": "72fa7d0034c41d8adc50bbc8c632b9f9",
|
| 551 |
+
"pseudopotential": "GBRV-1.4",
|
| 552 |
+
"cutoff_wfc": 35.0,
|
| 553 |
+
"cutoff_rho": 280.0
|
| 554 |
+
},
|
| 555 |
+
"W": {
|
| 556 |
+
"filename": "w_pbesol_v1.2.uspp.F.UPF",
|
| 557 |
+
"md5": "78d6efd6ad550bd5be97e9711072ceda",
|
| 558 |
+
"pseudopotential": "GBRV-1.2",
|
| 559 |
+
"cutoff_wfc": 30.0,
|
| 560 |
+
"cutoff_rho": 240.0
|
| 561 |
+
},
|
| 562 |
+
"Xe": {
|
| 563 |
+
"filename": "Xe_ONCV_PBEsol-1.1.upf",
|
| 564 |
+
"md5": "ed053c2ceb368a0b775438b7c863d821",
|
| 565 |
+
"pseudopotential": "SG15-1.1",
|
| 566 |
+
"cutoff_wfc": 60.0,
|
| 567 |
+
"cutoff_rho": 240.0
|
| 568 |
+
},
|
| 569 |
+
"Y": {
|
| 570 |
+
"filename": "y_pbesol_v1.4.uspp.F.UPF",
|
| 571 |
+
"md5": "dac24993bfd4491f22c7b9129ad9e93d",
|
| 572 |
+
"pseudopotential": "GBRV-1.2",
|
| 573 |
+
"cutoff_wfc": 35.0,
|
| 574 |
+
"cutoff_rho": 280.0
|
| 575 |
+
},
|
| 576 |
+
"Yb": {
|
| 577 |
+
"filename": "Yb.GGA-PBESOL-paw.UPF",
|
| 578 |
+
"md5": "bb287f6aeb53b1e1f1bc3782e219ba83",
|
| 579 |
+
"pseudopotential": "Wentzcovitch",
|
| 580 |
+
"cutoff_wfc": 40.0,
|
| 581 |
+
"cutoff_rho": 320.0
|
| 582 |
+
},
|
| 583 |
+
"Zn": {
|
| 584 |
+
"filename": "zn_pbesol_v1.uspp.F.UPF",
|
| 585 |
+
"md5": "7d8615e52efe7c1e2b1899de8658bae2",
|
| 586 |
+
"pseudopotential": "GBRV-1.2",
|
| 587 |
+
"cutoff_wfc": 40.0,
|
| 588 |
+
"cutoff_rho": 320.0
|
| 589 |
+
},
|
| 590 |
+
"Zr": {
|
| 591 |
+
"filename": "zr_pbesol_v1.uspp.F.UPF",
|
| 592 |
+
"md5": "f29f2a20533738a515abe666fee35838",
|
| 593 |
+
"pseudopotential": "GBRV-1.2",
|
| 594 |
+
"cutoff_wfc": 30.0,
|
| 595 |
+
"cutoff_rho": 240.0
|
| 596 |
+
}
|
| 597 |
+
}
|