8000 Thermochemistry fields in ORCA · Issue #810 · cclib/cclib · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Thermochemistry fields in ORCA #810

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
3 of 11 tasks
schneiderfelipe opened this issue Mar 10, 2020 · 0 comments
Open
3 of 11 tasks

Thermochemistry fields in ORCA #810

schneiderfelipe opened this issue Mar 10, 2020 · 0 comments
Labels
Milestone

Comments

@schneiderfelipe
Copy link
Contributor
schneiderfelipe commented Mar 10, 2020

Hi,

The following thermochemical values are written by ORCA when one requests a frequency calculation (this issue was inspired by #625, that discusses similar matters in Gaussian):

(Above are only the terms that I believe are non-trivial to calculate from the others.)

The electronic energy is simply the "final single point energy", i.e., the SCF energy plus corrections (coupled-cluster corrections, dispersion, gCP, etc.). I tried to separate the relevant corrections and reference some related issues/PRs.

The thermal correction to the (electronic) energy is actually shown in the logfile as the three separate contributions (vibrational, rotational and translational). Do we need them separately? I'm assuming no and including only the sum in the list above (this would apply as to why not parse vibrational, rotational and translational entropies too). (As a side note, the total thermal energy in the logfile includes ZPE. Should we separate ZPE?)

So, in the end, all that I believe to be needed is marked in the following with a *:

U = E(el)* + E(ZPE)* + E(vib+rot+trans)*  [or = E(el)* + E(ZPE+vib+rot+trans)*]
G = U + kB T - T*S(el+vib+rot+trans)*

As such, cclib:


The thermal enthalpy correction has a (?) in the list since it is easily reproduced. Compare the result below with the example logfile section below.

from scipy.constants import R, kilo, calorie, physical_constants, N_A
hartree = physical_constants["Hartree energy"][0]
temperature = 298.15

R * temperature / (hartree * N_A)  # 0.0009441848676268876 Eh
R * temperature / (kilo * calorie)  # 0.5924849497028442 kcal/mol

A similar comment holds for the thermal correction to Gibbs free energy. (Observe that entropies in ORCA are given multiplied by temperature, giving units of energy, see #663).


Below are pieces of a typical thermochemistry section (from this logfile) for reference:

--------------------------
THERMOCHEMISTRY AT 298.15K
--------------------------

Temperature         ... 298.15 K
Pressure            ... 1.00 atm
Total Mass          ... 2.02 AMU
The molecule is recognized as being linear

...

------------
INNER ENERGY
------------

...

Summary of contributions to the inner energy U:
Electronic energy                ...     -1.17581168 Eh
Zero point energy                ...      0.00988644 Eh       6.20 kcal/mol
Thermal vibrational correction   ...      0.00000000 Eh       0.00 kcal/mol
Thermal rotational correction    ...      0.00094418 Eh       0.59 kcal/mol
Thermal translational correction ...      0.00141627 Eh       0.89 kcal/mol
-----------------------------------------------------------------------
Total thermal energy                     -1.16356479 Eh


Summary of corrections to the electronic energy:
(perhaps to be used in another calculation)
Total thermal correction                  0.00236045 Eh       1.48 kcal/mol
Non-thermal (ZPE) correction              0.00988644 Eh       6.20 kcal/mol
-----------------------------------------------------------------------
Total correction                          0.01224689 Eh       7.69 kcal/mol


--------
ENTHALPY
--------

...
Total free energy                 ...     -1.16356479 Eh
Thermal Enthalpy correction       ...      0.00094421 Eh       0.59 kcal/mol
-----------------------------------------------------------------------
Total Enthalpy                    ...     -1.16262058 Eh

...

-------
ENTROPY
-------

...

Electronic entropy                ...      0.00000000 Eh      0.00 kcal/mol
Vibrational entropy               ...     -0.00000000 Eh     -0.00 kcal/mol
Rotational entropy                ...      0.00146684 Eh      0.92 kcal/mol
Translational entropy             ...      0.01334204 Eh      8.37 kcal/mol
-----------------------------------------------------------------------
Final entropy term                ...      0.01480888 Eh      9.29 kcal/mol

...

-------------------
GIBBS FREE ENERGY
-------------------

The Gibbs free energy is G = H - T*S

Total enthalpy                    ...     -1.16262058 Eh
Total entropy correction          ...     -0.01480888 Eh     -9.29 kcal/mol
-----------------------------------------------------------------------
Final Gibbs free energy         ...     -1.17742946 Eh

...
@langner langner added the ORCA label Mar 11, 2020
@langner langner added this to the v1.6.3 milestone Mar 11, 2020
@langner langner modified the milestones: v1.6.3, v1.6.4 May 5, 2020
@langner langner modified the milestones: v1.6.4, v1.6.5 Oct 6, 2020
@langner langner modified the milestones: v1.6.5, v1.7 Nov 4, 2020
@langner langner modified the milestones: v1.7, v1.7.1 Dec 2, 2020
@langner langner modified the milestones: v1.7.1, v1.7.2 Aug 11, 2021
@langner langner modified the milestones: v1.7.2, v1.8 May 31, 2022
@berquist berquist modified the milestones: v1.8, v1.8.1 Jun 13, 2023
@berquist berquist modified the milestones: v1.8.1, v2.0 Dec 19, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants
0