Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dfttk/fworks.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def __init__(self, structure, isif=7, name="structure optimization", isif4=False
t.append(PassCalcLocs(name=name))
if db_insert:
t.append(VaspToDb(db_file=">>db_file<<", additional_fields={"task_label": name, "metadata": metadata}, store_volumetric_data=store_volumetric_data))
t.append(CheckSymmetryToDb(db_file=">>db_file<<", tag=tag, site_properties=site_properties))
t.append(CheckSymmetryToDb(db_file=">>db_file<<", tag=tag, site_properties=site_properties, override_symmetry_tolerances=override_symmetry_tolerances))

common_kwargs = {'vasp_cmd': vasp_cmd, 'db_file': ">>db_file<<", "metadata": metadata, "tag": tag,
'override_default_vasp_params': override_default_vasp_params}
Expand Down
2 changes: 1 addition & 1 deletion dfttk/wflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def get_wf_EV_bjb(structure, deformation_fraction=(-0.08, 0.12), store_volumetri
struct = deepcopy(structure)
struct.scale_lattice(defo)
full_relax_fw = RobustOptimizeFW(struct, isif=5, vasp_cmd=VASP_CMD, db_file=DB_FILE,
store_volumetric_data=store_volumetric_data)
store_volumetric_data=store_volumetric_data, override_symmetry_tolerances=override_symmetry_tolerances)
fws.append(full_relax_fw)
if metadata is not None and all(x in metadata for x in ('phase_name', 'sublattice_configuration')):
# create a nicer name for the workflow
Expand Down