-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: update abacus input parameters for test_make_fp.py #836
Merged
wanghan-iapcm
merged 15 commits into
deepmodeling:devel
from
hongriTianqi:abacus_make_fp
Aug 4, 2022
Merged
Changes from 12 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
7ec7717
test: update abacus input paramters
hongriTianqi 82730f5
refactor: add fp_incar function for abacus users
hongriTianqi bdb78cb
modify make_abacus_scf_input
hongriTianqi 2e15647
modify make_abacus_scf_input for on-off keys
hongriTianqi 67b39cb
modify make_abacus_scf_input for on-off keys 2rd
hongriTianqi 1a93b51
modify README.md
hongriTianqi 9980bcc
revise abacus_scf.py
hongriTianqi 95061b9
Merge branch 'devel' into abacus_make_fp
hongriTianqi 18481c7
refactor: change ways of gen KPT file in run step
hongriTianqi 6e8d6f0
revise run.py
hongriTianqi 9496313
modify dpgen/generator/arginfo.py as zjz said
hongriTianqi 3884144
modify abacus_scf.py
hongriTianqi 364da7f
Merge branch 'devel' into abacus_make_fp
hongriTianqi b02da39
delete redundant lines for forward_files of abacus
hongriTianqi 06370e3
delete redundant lines for forward_files of abacus 2nd
hongriTianqi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
ntype 2 | ||
ecutwfc 80 | ||
scf_thr 1e-7 | ||
scf_nmax 50 | ||
basis_type pw | ||
gamma_only 1 | ||
dft_functional pbe | ||
mixing_type pulay | ||
mixing_beta 0.4 | ||
symmetry 1 | ||
nbands 5 | ||
nspin 1 | ||
ks_solver cg | ||
smearing_method fixed | ||
smearing_sigma 0.001 | ||
cal_force 1 | ||
cal_stress 1 | ||
deepks_out_labels 0 | ||
deepks_descriptor_lmax 0 | ||
deepks_scf 0 | ||
deepks_model model.ptg | ||
_kspacing 0.04 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
K_POINTS | ||
0 | ||
Gamma | ||
2 2 2 0 0 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This
elif
is necessary. Thek_points
is also specified infp_params
, but can not be written inINPUT
file.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This
k_points
tag has been upgraded to the same level as 'user_fp_param'. Users may also use 'fp_kpt_file' to read KPT file now.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got that. I have no other questions.