Skip to content

Commit 326815a

Browse files
committed
Add pseudo rcut=10 for PseudoDojo psps
1 parent 496145f commit 326815a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/aiida_common_workflows/workflows/relax/dftk/generator.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ def _construct_builder(self, **kwargs) -> engine.ProcessBuilder:
106106
}
107107
}
108108
}
109+
# For PseudoDojo potentials, add an rcut of 10 to match results of QE
110+
if pseudo_family_label.startswith('PseudoDojo'):
111+
override['dftk']['pseudo_rcut'] = orm.Float(10)
109112

110113
builder = self.process_class.get_builder()
111114

0 commit comments

Comments
 (0)