Skip to content

Commit

Permalink
Merge pull request #629 from pyiron/meltingoutputfile
Browse files Browse the repository at this point in the history
Fix for the interface method
  • Loading branch information
jan-janssen committed May 4, 2020
2 parents 81de5d2 + d33065c commit 696487a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyiron/thermodynamics/interfacemethod.py
Expand Up @@ -723,7 +723,7 @@ def validate_convergence(pr, temperature_left, temperature_next, temperature_rig
'ratio_boundary': ratio_boundary,
'temperature_next': temperature_next,
'center': center}
with open(os.path.join(pr.path, output_file), 'w') as f:
with open(output_file, 'w') as f:
json.dump(step_dict, f)
else:
timestep = step_dict[step_count]['timestep']
Expand Down

0 comments on commit 696487a

Please sign in to comment.