forked from hackingmaterials/atomate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request hackingmaterials#267 from mkhorton/magnetism-workf…
…low-staging Magnetic ordering and deformation workflows
- Loading branch information
Showing
15 changed files
with
99,457 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,7 @@ | |
from fireworks import explicit_serialize, FiretaskBase, FWAction | ||
|
||
from atomate.utils.utils import env_chk, get_logger | ||
from atomate.vasp.config import CUSTODIAN_MAX_ERRORS | ||
|
||
__author__ = 'Anubhav Jain <[email protected]>' | ||
__credits__ = 'Shyue Ping Ong <ong.sp>' | ||
|
@@ -121,7 +122,7 @@ def run_task(self, fw_spec): | |
job_type = self.get("job_type", "normal") | ||
scratch_dir = env_chk(self.get("scratch_dir"), fw_spec) | ||
gzip_output = self.get("gzip_output", True) | ||
max_errors = self.get("max_errors", 5) | ||
max_errors = self.get("max_errors", CUSTODIAN_MAX_ERRORS) | ||
auto_npar = env_chk(self.get("auto_npar"), fw_spec, strict=False, default=False) | ||
gamma_vasp_cmd = env_chk(self.get("gamma_vasp_cmd"), fw_spec, strict=False, default=None) | ||
if gamma_vasp_cmd: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.