Skip to content

Commit

Permalink
Merge pull request #1267 from pyiron/ekin_fix
Browse files Browse the repository at this point in the history
Do not use .project_hdf5
  • Loading branch information
pmrv authored Dec 21, 2023
2 parents bb93280 + c285da3 commit 6fa2d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyiron_atomistics/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@


def _vasp_energy_kin_affected(job):
e_kin = job.project_hdf5["output/generic/dft/scf_energy_kin"]
e_kin = job["output/generic/dft/scf_energy_kin"]
return e_kin is not None and not isinstance(e_kin, np.ndarray)


Expand Down

0 comments on commit 6fa2d44

Please sign in to comment.