You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The free energy calculated by VASP and stored in a pyiron HDF5 file is not consistent when the D3 (VDW) correction is enabled.
pyiron Version and Platform
Python Version: 3.10.8
pyiron Version: 0.5.0
Expected Behavior
The job['output/generic/dft/scf_energy_free'] should provide all free energy values, including those that consider the D3 correction when IVDW=11 is added to the INCAR file.
Actual Behavior
The job['output/generic/dft/scf_energy_free'] currently provides the following values:
However, when searching for all occurrences of "TOTEN" in the OUTCAR file, I found the following values:
...
free energy TOTEN = -3542.71855450 eV
free energy TOTEN = -3542.71855383 eV
free energy TOTEN = -3645.65385697 eV
It appears that the last "free energy" value is not included in job['output/generic/dft/scf_energy_free']. This energy corresponds to the calculation with the D3 correction.
Steps to Reproduce
To reproduce the issue, follow these steps:
Set up a VASP calculation with D3 correction by adding IVDW=11 to the INCAR file.
Calculate the free energy using VASP.
Store the results in a pyiron HDF5 file.
Access job['output/generic/dft/scf_energy_free'] to compare the values.
Further Information, Files, and Links
There is an additional space between the last "free energy."
The text was updated successfully, but these errors were encountered:
Conducted a test using an H2 molecule in a cubic box with VASP 6.4.0 and set IVDW=11. The obtained results in job['output/generic/dft/scf_energy_free'] are as follows:
[...,
-6.73179963,
-6.73181333,
-6.7318166
]
The "free energy" values in the OUTCAR file are:
free energy TOTEN = -6.73181333 eV
free energy TOTEN = -6.73181660 eV
free energy TOTEN = -6.73181772 eV
It appears that the last value from the OUTCAR file is not included in the hd5f file of the job.
Summary
The free energy calculated by VASP and stored in a pyiron HDF5 file is not consistent when the D3 (VDW) correction is enabled.
pyiron Version and Platform
Expected Behavior
The
job['output/generic/dft/scf_energy_free']
should provide all free energy values, including those that consider the D3 correction whenIVDW=11
is added to the INCAR file.Actual Behavior
The
job['output/generic/dft/scf_energy_free']
currently provides the following values:However, when searching for all occurrences of "TOTEN" in the OUTCAR file, I found the following values:
It appears that the last "free energy" value is not included in
job['output/generic/dft/scf_energy_free']
. This energy corresponds to the calculation with the D3 correction.Steps to Reproduce
To reproduce the issue, follow these steps:
IVDW=11
to the INCAR file.job['output/generic/dft/scf_energy_free']
to compare the values.Further Information, Files, and Links
There is an additional space between the last "free energy."
The text was updated successfully, but these errors were encountered: