2727from atomate .vasp .config import (
2828 DB_FILE ,
2929 HALF_KPOINTS_FIRST_RELAX ,
30- RELAX_MAX_FORCE ,
3130 VASP_CMD ,
3231 VDW_KERNEL_DIR ,
3332)
@@ -65,7 +64,6 @@ def __init__(
6564 db_file = DB_FILE ,
6665 force_gamma = True ,
6766 job_type = "double_relaxation_run" ,
68- max_force_threshold = RELAX_MAX_FORCE ,
6967 auto_npar = ">>auto_npar<<" ,
7068 half_kpts_first_relax = HALF_KPOINTS_FIRST_RELAX ,
7169 parents = None ,
@@ -86,7 +84,6 @@ def __init__(
8684 db_file (str): Path to file specifying db credentials to place output parsing.
8785 force_gamma (bool): Force gamma centered kpoint generation
8886 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
9087 auto_npar (bool or str): whether to set auto_npar. defaults to env_chk: ">>auto_npar<<"
9188 half_kpts_first_relax (bool): whether to use half the kpoints for the first relaxation
9289 parents ([Firework]): Parents of this particular Firework.
@@ -111,7 +108,6 @@ def __init__(
111108 RunVaspCustodian (
112109 vasp_cmd = vasp_cmd ,
113110 job_type = job_type ,
114- max_force_threshold = max_force_threshold ,
115111 ediffg = ediffg ,
116112 auto_npar = auto_npar ,
117113 half_kpts_first_relax = half_kpts_first_relax ,
@@ -243,7 +239,7 @@ def __init__(
243239
244240 # Enable vdW for the SCAN step
245241 settings ["_set" ]["LUSE_VDW" ] = True
246- settings ["_set" ]["BPARAM" ] = 15.7
242+ settings ["_set" ]["BPARAM" ] = 11.95
247243
248244 t .append (ModifyIncar (incar_dictmod = settings ))
249245
@@ -266,7 +262,7 @@ def __init__(
266262 # Disable vdW for the precondition step
267263 if vasp_input_set_params .get ("vdw" ):
268264 pre_opt_settings .update ({"_unset" : {"LUSE_VDW" : True ,
269- "BPARAM" : 15.7 ,
265+ "BPARAM" : 11.95 ,
270266 "METAGGA" : metagga_type }})
271267
272268 t .append (ModifyIncar (incar_dictmod = pre_opt_settings ))
0 commit comments