27
27
from atomate .vasp .config import (
28
28
DB_FILE ,
29
29
HALF_KPOINTS_FIRST_RELAX ,
30
- RELAX_MAX_FORCE ,
31
30
VASP_CMD ,
32
31
VDW_KERNEL_DIR ,
33
32
)
@@ -65,7 +64,6 @@ def __init__(
65
64
db_file = DB_FILE ,
66
65
force_gamma = True ,
67
66
job_type = "double_relaxation_run" ,
68
- max_force_threshold = RELAX_MAX_FORCE ,
69
67
auto_npar = ">>auto_npar<<" ,
70
68
half_kpts_first_relax = HALF_KPOINTS_FIRST_RELAX ,
71
69
parents = None ,
@@ -86,7 +84,6 @@ def __init__(
86
84
db_file (str): Path to file specifying db credentials to place output parsing.
87
85
force_gamma (bool): Force gamma centered kpoint generation
88
86
job_type (str): custodian job type (default "double_relaxation_run")
89
- max_force_threshold (float): max force on a site allowed at end; otherwise, reject job
90
87
auto_npar (bool or str): whether to set auto_npar. defaults to env_chk: ">>auto_npar<<"
91
88
half_kpts_first_relax (bool): whether to use half the kpoints for the first relaxation
92
89
parents ([Firework]): Parents of this particular Firework.
@@ -111,7 +108,6 @@ def __init__(
111
108
RunVaspCustodian (
112
109
vasp_cmd = vasp_cmd ,
113
110
job_type = job_type ,
114
- max_force_threshold = max_force_threshold ,
115
111
ediffg = ediffg ,
116
112
auto_npar = auto_npar ,
117
113
half_kpts_first_relax = half_kpts_first_relax ,
@@ -243,7 +239,7 @@ def __init__(
243
239
244
240
# Enable vdW for the SCAN step
245
241
settings ["_set" ]["LUSE_VDW" ] = True
246
- settings ["_set" ]["BPARAM" ] = 15.7
242
+ settings ["_set" ]["BPARAM" ] = 11.95
247
243
248
244
t .append (ModifyIncar (incar_dictmod = settings ))
249
245
@@ -266,7 +262,7 @@ def __init__(
266
262
# Disable vdW for the precondition step
267
263
if vasp_input_set_params .get ("vdw" ):
268
264
pre_opt_settings .update ({"_unset" : {"LUSE_VDW" : True ,
269
- "BPARAM" : 15.7 ,
265
+ "BPARAM" : 11.95 ,
270
266
"METAGGA" : metagga_type }})
271
267
272
268
t .append (ModifyIncar (incar_dictmod = pre_opt_settings ))
0 commit comments