Skip to content

Commit 2ddd498

Browse files
author
cclib
committed
See cclib/cclib@6a6c66c from refs/heads/master
1 parent 3ad6206 commit 2ddd498

6 files changed

+67
-30
lines changed

_sources/attributes_dev.rst.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
`atommasses`_ atom masses daltons array of rank 1
1010
`atomnos`_ atomic numbers array of rank 1
1111
`atomspins`_ atomic spin densities dict of arrays of rank 1
12-
`ccenergies`_ molecular energies with Coupled-Cluster corrections hartree array of rank 2
12+
`ccenergies`_ molecular energies with Coupled-Cluster corrections eV array of rank 2
1313
`charge`_ net charge of the system integer
1414
`coreelectrons`_ number of core electrons in atom pseudopotentials array of rank 1
15-
`dispersionenergies`_ dispersion energy corrections hartree array of rank 1
15+
`dispersionenergies`_ dispersion energy corrections eV array of rank 1
1616
`enthalpy`_ sum of electronic and thermal enthalpies hartree/particle float
1717
`entropy`_ entropy (float, hartree/ particle*kelvin
18-
`etenergies`_ energies of electronic transitions hartree array of rank 1
18+
`etenergies`_ energies of electronic transitions 1/cm array of rank 1
1919
`etoscs`_ oscillator strengths of electronic transitions array of rank 1
2020
`etdips`_ electric transition dipoles of electronic transitions ebohr array of rank 2
2121
`etveldips`_ velocity-gauge electric transition dipoles of electronic transitions ebohr array of rank 2
@@ -36,10 +36,10 @@
3636
`homos`_ molecular orbital indices of HOMO(s) array of rank 1
3737
`metadata`_ various metadata about the package and computation dict
3838
`mocoeffs`_ molecular orbital coefficients list of arrays of rank 2
39-
`moenergies`_ molecular orbital energies hartree list of arrays of rank 1
39+
`moenergies`_ molecular orbital energies eV list of arrays of rank 1
4040
`moments`_ molecular multipole moments a.u. list of arrays[]
4141
`mosyms`_ orbital symmetries list of lists
42-
`mpenergies`_ molecular electronic energies with Møller-Plesset corrections hartree array of rank 2
42+
`mpenergies`_ molecular electronic energies with Møller-Plesset corrections eV array of rank 2
4343
`mult`_ multiplicity of the system integer
4444
`natom`_ number of atoms integer
4545
`nbasis`_ number of basis functions integer
@@ -50,7 +50,7 @@
5050
`nooccnos`_ natural orbital occupation numbers array of rank 1
5151
`nsocoeffs`_ natural spin orbital coefficients list of array of rank 2
5252
`nsooccnos`_ natural spin orbital occupation numbers list of array of rank 1
53-
`optdone`_ flags whether an optimization has converged list of int
53+
`optdone`_ flags whether an optimization has converged bool or list of int
5454
`optstatus`_ optimization status for each set of atomic coordinates array of rank 1
5555
`polarizabilities`_ (dipole) polarizabilities, static or dynamic list of arrays of rank 2
5656
`pressure`_ pressure used for Thermochemistry atm float
@@ -59,7 +59,7 @@
5959
`scanenergies`_ energies of potential energy surface list
6060
`scannames`_ names of variables scanned list of strings
6161
`scanparm`_ values of parameters in potential energy surface list of tuples
62-
`scfenergies`_ molecular electronic energies after SCF (Hartree-Fock, DFT) hartree array of rank 1
62+
`scfenergies`_ molecular electronic energies after SCF (Hartree-Fock, DFT) eV array of rank 1
6363
`scftargets`_ targets for convergence of the SCF array of rank 2
6464
`scfvalues`_ current values for convergence of the SCF list of arrays of rank 2
6565
`temperature`_ temperature used for Thermochemistry kelvin float

_sources/data_notes.rst.txt

+24-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 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.
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.
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 hartree. 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 eV. 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

@@ -511,7 +511,27 @@ A dictionary where the keys zero-index the atomic center for which the chemical
511511
optdone
512512
-------
513513

514-
A list that indexes which elements of `atomcoords`_ represent converged geometries.
514+
Flags whether a geometry optimisation has completed. Currently this attribute is a single Boolean value, which is set to True when the final `atomcoords`_ represent a converged geometry optimisation. In the future, ``optdone`` will be a list that indexes which elements of `atomcoords`_ represent converged geometries. This functionality can be used starting from version 1.3, from the command line by passing the ``--future`` option to ``ccget``,
515+
516+
.. code-block:: bash
517+
518+
$ ccget optdone data/Gaussian/basicGaussian09/dvb_gopt.out
519+
Attempting to parse data/Gaussian/basicGaussian09/dvb_gopt.out
520+
optdone:
521+
True
522+
523+
$ ccget --future optdone data/Gaussian/basicGaussian09/dvb_gopt.out
524+
Attempting to parse data/Gaussian/basicGaussian09/dvb_gopt.out
525+
optdone:
526+
[4]
527+
528+
or by providing the corresponding argument to ``ccopen``,
529+
530+
.. code-block:: python
531+
532+
from cclib.parser import ccopen
533+
parser = ccopen("filename", optdone_as_list=True) # could also do future=True instead of optdone_as_list
534+
data = parser.parse()
515535
516536
optstatus
517537
---------
@@ -548,7 +568,7 @@ A list of lists where each list contains the values scanned for each parameter i
548568
scfenergies
549569
-----------
550570

551-
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.
571+
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.
552572

553573
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`_.
554574

attributes_dev.html

+7-7
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>hartree</p></td>
138+
<td><p>eV</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>hartree</p></td>
153+
<td><p>eV</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>hartree</p></td>
168+
<td><p>1/cm</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>hartree</p></td>
273+
<td><p>eV</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>hartree</p></td>
288+
<td><p>eV</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>
@@ -341,7 +341,7 @@
341341
<tr class="row-odd"><td><p><a class="reference external" href="data_notes.html#optdone">optdone</a></p></td>
342342
<td><p>flags whether an optimization has converged</p></td>
343343
<td></td>
344-
<td><p>list of int</p></td>
344+
<td><p>bool or list of int</p></td>
345345
</tr>
346346
<tr class="row-even"><td><p><a class="reference external" href="data_notes.html#optstatus">optstatus</a></p></td>
347347
<td><p>optimization status for each set of atomic coordinates</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>hartree</p></td>
388+
<td><p>eV</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

+7-7
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>hartree</p></td>
150+
<td><p>eV</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>hartree</p></td>
165+
<td><p>eV</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>hartree</p></td>
180+
<td><p>1/cm</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>hartree</p></td>
285+
<td><p>eV</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>hartree</p></td>
300+
<td><p>eV</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>
@@ -353,7 +353,7 @@ <h2>Description of parsed data<a class="headerlink" href="#description-of-parsed
353353
<tr class="row-odd"><td><p><a class="reference external" href="data_notes.html#optdone">optdone</a></p></td>
354354
<td><p>flags whether an optimization has converged</p></td>
355355
<td></td>
356-
<td><p>list of int</p></td>
356+
<td><p>bool or list of int</p></td>
357357
</tr>
358358
<tr class="row-even"><td><p><a class="reference external" href="data_notes.html#optstatus">optstatus</a></p></td>
359359
<td><p>optimization status for each set of atomic coordinates</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>hartree</p></td>
400+
<td><p>eV</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>

0 commit comments

Comments
 (0)