Skip to content
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

update WIEN2k easyblock for v23.2 #3035

Merged
Merged
Changes from all commits
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
5 changes: 5 additions & 0 deletions easybuild/easyblocks/w/wien2k.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,9 @@ def configure_step(self):
libxcquestion4 = 'Please enter the lib-directory of your LIBXC-installation (usually lib or lib64)!:'
libxcquestion5 = 'LIBXC (usually not needed, ONLY for experts who want to play with different DFT options. '
libxcquestion5 += 'It must have been installed before)? (y,N):'
libxcquestion6 = 'Would you like to use LIBXC (needed ONLY for self-consistent gKS mGGA calculations, '
libxcquestion6 += 'for the stress tensor and experts who want to play with different DFT options. '
libxcquestion6 += 'It must have been installed before)? (y,N):'

if libxcroot:
qanda.update({
Expand All @@ -256,11 +259,13 @@ def configure_step(self):
libxcquestion3: libxcroot,
libxcquestion4: 'lib',
libxcquestion5: 'y',
libxcquestion6: 'y',
})
else:
qanda.update({
libxcquestion1: 'N',
libxcquestion5: 'N',
libxcquestion6: 'N',
})

if LooseVersion(self.version) >= LooseVersion("17"):
Expand Down
Loading