We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab22b71 commit d659066Copy full SHA for d659066
1 file changed
quantum_espresso_workflow.py
@@ -31,7 +31,7 @@ def write_input(input_dict, working_directory="."):
31
def collect_output(working_directory="."):
32
output = parse_pw(os.path.join(working_directory, "pwscf.xml"))
33
return {
34
- "structure": output["ase_structure"].todict(),
+ "structure": atoms_to_json_dict(atoms=output["ase_structure"]),
35
"energy": output["energy"],
36
"volume": output["ase_structure"].get_volume(),
37
}
0 commit comments