Open ezpzbz opened 3 years ago
In hybrid calcs, we use ALGO = All. If the calculation fails to converge, the current mechanism to handle and re-submi the issue fails. https://github.com/morgan-group-bath/aiida-bjm/blob/038e22380724b18f9e56c3a15171e78981ddb51b/aiida_bjm/workchains/vasp_multistage.py#L523-L532
ALGO = All
It can be fixed by modifying elif as:
elif
elif self.ctx.vasp_base.vasp.parameters['ALGO'] in ['Normal','All']: self.ctx.modifications.update({'ALGO': 'All', 'NELM': nelm, 'ISTART': 0, 'ICHARG': 2})
In hybrid calcs, we use
ALGO = All
. If the calculation fails to converge, the current mechanism to handle and re-submi the issue fails. https://github.com/morgan-group-bath/aiida-bjm/blob/038e22380724b18f9e56c3a15171e78981ddb51b/aiida_bjm/workchains/vasp_multistage.py#L523-L532It can be fixed by modifying
elif
as: