Skip to content

Commit

Permalink
CLI: Fix bug in aiida-quantumespresso workflow launc pw-base (#1039)
Browse files Browse the repository at this point in the history
The command would not specify the `CONTROL` key for the input parameters
resulting in an exception in the upload step. This was not discovered by
tests because the workflow is not actually run and the exception is only
hit when the calcjob is actually executed.
  • Loading branch information
sphuber authored Sep 11, 2024
1 parent b79189d commit ea76d9b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/aiida_quantumespresso/cli/workflows/pw/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ def launch_workflow(
cutoff_wfc, cutoff_rho = pseudo_family.get_recommended_cutoffs(structure=structure, unit='Ry')

parameters = {
'CONTROL': {
'calculation': 'scf',
},
'SYSTEM': {
'ecutwfc': ecutwfc or cutoff_wfc,
'ecutrho': ecutrho or cutoff_rho,
Expand Down

0 comments on commit ea76d9b

Please sign in to comment.