Skip to content

nexus rmg updates #4747

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

Open
wants to merge 15 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix space
  • Loading branch information
anbenali committed Sep 27, 2023
commit bd23610da32ffd36aaa00ed2b079b163dcd8e3eb
9 changes: 8 additions & 1 deletion nexus/lib/rmg_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class RmgInputSettings(DevBase):
Allowed: "Exx Only" "NEB Relax" "Band Structure Only" "Psi Plot" "Plot"
"Constant Pressure And Energy" "TDDFT" "Dimer Relax" "Constant
Temperature And Energy" "Constant Volume And Energy" "Relax
Structure" "Quench Electrons"
Structure" "Quench Electrons" "NSCF"
Description: Type of calculation to perform.

Key name: cell_relax
Expand Down Expand Up @@ -3059,6 +3059,7 @@ class RmgCalcModes(DevBase):
def __init__(self):
self.full_calc = obj(
scf = 'Quench Electrons',
nscf = 'NSCF',
exx = 'Exx Only',
neb = 'NEB Relax',
band = 'Band Structure Only',
Expand Down Expand Up @@ -3553,3 +3554,9 @@ def generate_any_rmg_input(**kwargs):

return ri
#end def generate_any_rmg_input