Skip to content

Commit d0ca17c

Browse files
author
cclib
committed
See cclib/cclib@90bfaad from refs/heads/master
1 parent 40f922b commit d0ca17c

6 files changed

+27
-27
lines changed

_sources/attributes_dev.rst.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Couldn't find cython becke routine
1010
`atommasses`_ atom masses daltons array of rank 1
1111
`atomnos`_ atomic numbers array of rank 1
1212
`atomspins`_ atomic spin densities dict of arrays of rank 1
13-
`ccenergies`_ molecular energies with Coupled-Cluster corrections eV array of rank 2
13+
`ccenergies`_ molecular energies with Coupled-Cluster corrections hartree array of rank 2
1414
`charge`_ net charge of the system integer
1515
`coreelectrons`_ number of core electrons in atom pseudopotentials array of rank 1
16-
`dispersionenergies`_ dispersion energy corrections eV array of rank 1
16+
`dispersionenergies`_ dispersion energy corrections hartree array of rank 1
1717
`enthalpy`_ sum of electronic and thermal enthalpies hartree/particle float
1818
`entropy`_ entropy (float, hartree/ particle*kelvin
19-
`etenergies`_ energies of electronic transitions 1/cm array of rank 1
19+
`etenergies`_ energies of electronic transitions hartree array of rank 1
2020
`etoscs`_ oscillator strengths of electronic transitions array of rank 1
2121
`etdips`_ electric transition dipoles of electronic transitions ebohr array of rank 2
2222
`etveldips`_ velocity-gauge electric transition dipoles of electronic transitions ebohr array of rank 2
@@ -37,10 +37,10 @@ Couldn't find cython becke routine
3737
`homos`_ molecular orbital indices of HOMO(s) array of rank 1
3838
`metadata`_ various metadata about the package and computation dict
3939
`mocoeffs`_ molecular orbital coefficients list of arrays of rank 2
40-
`moenergies`_ molecular orbital energies eV list of arrays of rank 1
40+
`moenergies`_ molecular orbital energies hartree list of arrays of rank 1
4141
`moments`_ molecular multipole moments a.u. list of arrays[]
4242
`mosyms`_ orbital symmetries list of lists
43-
`mpenergies`_ molecular electronic energies with Møller-Plesset corrections eV array of rank 2
43+
`mpenergies`_ molecular electronic energies with Møller-Plesset corrections hartree array of rank 2
4444
`mult`_ multiplicity of the system integer
4545
`natom`_ number of atoms integer
4646
`nbasis`_ number of basis functions integer
@@ -60,7 +60,7 @@ Couldn't find cython becke routine
6060
`scanenergies`_ energies of potential energy surface list
6161
`scannames`_ names of variables scanned list of strings
6262
`scanparm`_ values of parameters in potential energy surface list of tuples
63-
`scfenergies`_ molecular electronic energies after SCF (Hartree-Fock, DFT) eV array of rank 1
63+
`scfenergies`_ molecular electronic energies after SCF (Hartree-Fock, DFT) hartree array of rank 1
6464
`scftargets`_ targets for convergence of the SCF array of rank 2
6565
`scfvalues`_ current values for convergence of the SCF list of arrays of rank 2
6666
`temperature`_ temperature used for Thermochemistry kelvin float

_sources/data_notes.rst.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ However, in *all* cases the dispersion energy for a given geometry will also be
149149
etenergies
150150
----------
151151

152-
This is a rank 1 array that contains the energies of electronic transitions from a reference state to the excited states of the molecule, in ``cm<sup>-1</sup>``. There should be as many elements to this array as there are excited states calculated. Any type of excited state calculation should provide output that can be parsed into this attribute.
152+
This is a rank 1 array that contains the energies of electronic transitions from a reference state to the excited states of the molecule, in hartree. There should be as many elements to this array as there are excited states calculated. Any type of excited state calculation should provide output that can be parsed into this attribute.
153153

154154
etoscs
155155
------
@@ -389,7 +389,7 @@ Note: For restricted calculation, ``mocoeffs`` is still a list, but it only cont
389389
moenergies
390390
----------
391391

392-
A list of rank 1 arrays containing the molecular orbital energies in eV. The list is of length 1 for restricted calculations, but length 2 for unrestricted calculations.
392+
A list of rank 1 arrays containing the molecular orbital energies in hartree. The list is of length 1 for restricted calculations, but length 2 for unrestricted calculations.
393393

394394
**GAMESS-UK**: similar to `mocoeffs`_, the directive `FORMAT HIGH`_ needs to be used if you want all of the eigenvalues printed.
395395

@@ -521,7 +521,7 @@ An array containing the geometries for each step of shape ``[number of scan step
521521
scanenergies
522522
------------
523523

524-
A list containing the energies at each point of the scan. As with `scancoords`_, ``scanenergies`` is only equivalent to ``{scf,mp,cc}energies`` in the case of an unrelaxed scan of the scf, mp, and/or cc potential energy surface.
524+
A list containing the energies at each point of the scan. As with `scancoords`_, ``scanenergies`` is only equivalent to ``{scf,mp,cc}energies`` in the case of an unrelaxed scan of the SCF, MP, and/or CC potential energy surface.
525525

526526
scannames
527527
---------
@@ -536,7 +536,7 @@ A list of lists where each list contains the values scanned for each parameter i
536536
scfenergies
537537
-----------
538538

539-
An array containing the converged SCF energies of the calculation, in eV. For an optimisation log file, there will be as many elements in this array as there were optimisation steps.
539+
An array containing the converged SCF energies of the calculation, in hartree. For an optimisation log file, there will be as many elements in this array as there were optimisation steps.
540540

541541
If a dispersion correction of any form was used, it is part of the SCF energy and, in the event that it is separable, such as with D3 and similar empirical corrections, it is also available separately under `dispersionenergies`_.
542542

attributes_dev.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
</tr>
136136
<tr class="row-even"><td><p><a class="reference external" href="data_notes.html#ccenergies">ccenergies</a></p></td>
137137
<td><p>molecular energies with Coupled-Cluster corrections</p></td>
138-
<td><p>eV</p></td>
138+
<td><p>hartree</p></td>
139139
<td><p>array of rank 2</p></td>
140140
</tr>
141141
<tr class="row-odd"><td><p><a class="reference external" href="data_notes.html#charge">charge</a></p></td>
@@ -150,7 +150,7 @@
150150
</tr>
151151
<tr class="row-odd"><td><p><a class="reference external" href="data_notes.html#dispersionenergies">dispersionenergies</a></p></td>
152152
<td><p>dispersion energy corrections</p></td>
153-
<td><p>eV</p></td>
153+
<td><p>hartree</p></td>
154154
<td><p>array of rank 1</p></td>
155155
</tr>
156156
<tr class="row-even"><td><p><a class="reference external" href="data_notes.html#enthalpy">enthalpy</a></p></td>
@@ -165,7 +165,7 @@
165165
</tr>
166166
<tr class="row-even"><td><p><a class="reference external" href="data_notes.html#etenergies">etenergies</a></p></td>
167167
<td><p>energies of electronic transitions</p></td>
168-
<td><p>1/cm</p></td>
168+
<td><p>hartree</p></td>
169169
<td><p>array of rank 1</p></td>
170170
</tr>
171171
<tr class="row-odd"><td><p><a class="reference external" href="data_notes.html#etoscs">etoscs</a></p></td>
@@ -270,7 +270,7 @@
270270
</tr>
271271
<tr class="row-odd"><td><p><a class="reference external" href="data_notes.html#moenergies">moenergies</a></p></td>
272272
<td><p>molecular orbital energies</p></td>
273-
<td><p>eV</p></td>
273+
<td><p>hartree</p></td>
274274
<td><p>list of arrays of rank 1</p></td>
275275
</tr>
276276
<tr class="row-even"><td><p><a class="reference external" href="data_notes.html#moments">moments</a></p></td>
@@ -285,7 +285,7 @@
285285
</tr>
286286
<tr class="row-even"><td><p><a class="reference external" href="data_notes.html#mpenergies">mpenergies</a></p></td>
287287
<td><p>molecular electronic energies with Møller-Plesset corrections</p></td>
288-
<td><p>eV</p></td>
288+
<td><p>hartree</p></td>
289289
<td><p>array of rank 2</p></td>
290290
</tr>
291291
<tr class="row-odd"><td><p><a class="reference external" href="data_notes.html#mult">mult</a></p></td>
@@ -385,7 +385,7 @@
385385
</tr>
386386
<tr class="row-even"><td><p><a class="reference external" href="data_notes.html#scfenergies">scfenergies</a></p></td>
387387
<td><p>molecular electronic energies after SCF (Hartree-Fock, DFT)</p></td>
388-
<td><p>eV</p></td>
388+
<td><p>hartree</p></td>
389389
<td><p>array of rank 1</p></td>
390390
</tr>
391391
<tr class="row-odd"><td><p><a class="reference external" href="data_notes.html#scftargets">scftargets</a></p></td>

data_dev.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ <h2>Description of parsed data<a class="headerlink" href="#description-of-parsed
147147
</tr>
148148
<tr class="row-even"><td><p><a class="reference external" href="data_notes.html#ccenergies">ccenergies</a></p></td>
149149
<td><p>molecular energies with Coupled-Cluster corrections</p></td>
150-
<td><p>eV</p></td>
150+
<td><p>hartree</p></td>
151151
<td><p>array of rank 2</p></td>
152152
</tr>
153153
<tr class="row-odd"><td><p><a class="reference external" href="data_notes.html#charge">charge</a></p></td>
@@ -162,7 +162,7 @@ <h2>Description of parsed data<a class="headerlink" href="#description-of-parsed
162162
</tr>
163163
<tr class="row-odd"><td><p><a class="reference external" href="data_notes.html#dispersionenergies">dispersionenergies</a></p></td>
164164
<td><p>dispersion energy corrections</p></td>
165-
<td><p>eV</p></td>
165+
<td><p>hartree</p></td>
166166
<td><p>array of rank 1</p></td>
167167
</tr>
168168
<tr class="row-even"><td><p><a class="reference external" href="data_notes.html#enthalpy">enthalpy</a></p></td>
@@ -177,7 +177,7 @@ <h2>Description of parsed data<a class="headerlink" href="#description-of-parsed
177177
</tr>
178178
<tr class="row-even"><td><p><a class="reference external" href="data_notes.html#etenergies">etenergies</a></p></td>
179179
<td><p>energies of electronic transitions</p></td>
180-
<td><p>1/cm</p></td>
180+
<td><p>hartree</p></td>
181181
<td><p>array of rank 1</p></td>
182182
</tr>
183183
<tr class="row-odd"><td><p><a class="reference external" href="data_notes.html#etoscs">etoscs</a></p></td>
@@ -282,7 +282,7 @@ <h2>Description of parsed data<a class="headerlink" href="#description-of-parsed
282282
</tr>
283283
<tr class="row-odd"><td><p><a class="reference external" href="data_notes.html#moenergies">moenergies</a></p></td>
284284
<td><p>molecular orbital energies</p></td>
285-
<td><p>eV</p></td>
285+
<td><p>hartree</p></td>
286286
<td><p>list of arrays of rank 1</p></td>
287287
</tr>
288288
<tr class="row-even"><td><p><a class="reference external" href="data_notes.html#moments">moments</a></p></td>
@@ -297,7 +297,7 @@ <h2>Description of parsed data<a class="headerlink" href="#description-of-parsed
297297
</tr>
298298
<tr class="row-even"><td><p><a class="reference external" href="data_notes.html#mpenergies">mpenergies</a></p></td>
299299
<td><p>molecular electronic energies with Møller-Plesset corrections</p></td>
300-
<td><p>eV</p></td>
300+
<td><p>hartree</p></td>
301301
<td><p>array of rank 2</p></td>
302302
</tr>
303303
<tr class="row-odd"><td><p><a class="reference external" href="data_notes.html#mult">mult</a></p></td>
@@ -397,7 +397,7 @@ <h2>Description of parsed data<a class="headerlink" href="#description-of-parsed
397397
</tr>
398398
<tr class="row-even"><td><p><a class="reference external" href="data_notes.html#scfenergies">scfenergies</a></p></td>
399399
<td><p>molecular electronic energies after SCF (Hartree-Fock, DFT)</p></td>
400-
<td><p>eV</p></td>
400+
<td><p>hartree</p></td>
401401
<td><p>array of rank 1</p></td>
402402
</tr>
403403
<tr class="row-odd"><td><p><a class="reference external" href="data_notes.html#scftargets">scftargets</a></p></td>

data_notes.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ <h2>dispersionenergies<a class="headerlink" href="#dispersionenergies" title="Li
266266
</section>
267267
<section id="etenergies">
268268
<h2>etenergies<a class="headerlink" href="#etenergies" title="Link to this heading"></a></h2>
269-
<p>This is a rank 1 array that contains the energies of electronic transitions from a reference state to the excited states of the molecule, in <code class="docutils literal notranslate"><span class="pre">cm&lt;sup&gt;-1&lt;/sup&gt;</span></code>. There should be as many elements to this array as there are excited states calculated. Any type of excited state calculation should provide output that can be parsed into this attribute.</p>
269+
<p>This is a rank 1 array that contains the energies of electronic transitions from a reference state to the excited states of the molecule, in hartree. There should be as many elements to this array as there are excited states calculated. Any type of excited state calculation should provide output that can be parsed into this attribute.</p>
270270
</section>
271271
<section id="etoscs">
272272
<h2>etoscs<a class="headerlink" href="#etoscs" title="Link to this heading"></a></h2>
@@ -440,7 +440,7 @@ <h2>mocoeffs<a class="headerlink" href="#mocoeffs" title="Link to this heading">
440440
</section>
441441
<section id="moenergies">
442442
<span id="index-8"></span><h2>moenergies<a class="headerlink" href="#moenergies" title="Link to this heading"></a></h2>
443-
<p>A list of rank 1 arrays containing the molecular orbital energies in eV. The list is of length 1 for restricted calculations, but length 2 for unrestricted calculations.</p>
443+
<p>A list of rank 1 arrays containing the molecular orbital energies in hartree. The list is of length 1 for restricted calculations, but length 2 for unrestricted calculations.</p>
444444
<p><strong>GAMESS-UK</strong>: similar to <a class="reference internal" href="#mocoeffs">mocoeffs</a>, the directive <a class="reference external" href="https://web.archive.org/web/20190809100513/http://www.cfs.dl.ac.uk/docs/html/part3/node8.html">FORMAT HIGH</a> needs to be used if you want all of the eigenvalues printed.</p>
445445
<p><strong>Jaguar</strong>: the first ten virtual orbitals are printed by default. In order to print more, use the <code class="docutils literal notranslate"><span class="pre">ipvirt</span></code> keyword, with <code class="docutils literal notranslate"><span class="pre">ipvirt=-1</span></code> printing all virtual orbitals.</p>
446446
</section>
@@ -613,7 +613,7 @@ <h2>scancoords<a class="headerlink" href="#scancoords" title="Link to this headi
613613
</section>
614614
<section id="scanenergies">
615615
<h2>scanenergies<a class="headerlink" href="#scanenergies" title="Link to this heading"></a></h2>
616-
<p>A list containing the energies at each point of the scan. As with <a class="reference internal" href="#scancoords">scancoords</a>, <code class="docutils literal notranslate"><span class="pre">scanenergies</span></code> is only equivalent to <code class="docutils literal notranslate"><span class="pre">{scf,mp,cc}energies</span></code> in the case of an unrelaxed scan of the scf, mp, and/or cc potential energy surface.</p>
616+
<p>A list containing the energies at each point of the scan. As with <a class="reference internal" href="#scancoords">scancoords</a>, <code class="docutils literal notranslate"><span class="pre">scanenergies</span></code> is only equivalent to <code class="docutils literal notranslate"><span class="pre">{scf,mp,cc}energies</span></code> in the case of an unrelaxed scan of the SCF, MP, and/or CC potential energy surface.</p>
617617
</section>
618618
<section id="scannames">
619619
<h2>scannames<a class="headerlink" href="#scannames" title="Link to this heading"></a></h2>
@@ -625,7 +625,7 @@ <h2>scanparm<a class="headerlink" href="#scanparm" title="Link to this heading">
625625
</section>
626626
<section id="scfenergies">
627627
<h2>scfenergies<a class="headerlink" href="#scfenergies" title="Link to this heading"></a></h2>
628-
<p>An array containing the converged SCF energies of the calculation, in eV. For an optimisation log file, there will be as many elements in this array as there were optimisation steps.</p>
628+
<p>An array containing the converged SCF energies of the calculation, in hartree. For an optimisation log file, there will be as many elements in this array as there were optimisation steps.</p>
629629
<p>If a dispersion correction of any form was used, it is part of the SCF energy and, in the event that it is separable, such as with D3 and similar empirical corrections, it is also available separately under <a class="reference internal" href="#dispersionenergies">dispersionenergies</a>.</p>
630630
<p>If any other corrections were present in calculating the SCF energy, in particular perturbative, empirical, or “single-shot” corrections, assume that they are <em>not</em> present in <code class="docutils literal notranslate"><span class="pre">scfenergies</span></code>. Corrections included self-consistently, such as from implicit solvation models, should be present. Check the parsed result carefully and, when in doubt, ask on the issue tracker.</p>
631631
<p><strong>Molpro</strong>: typically prints output about geometry optimisation in a separate logfile. So, both that and the initial output need to be passed to the cclib parser.</p>

searchindex.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)