1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
|
# -*- coding: utf-8 -*-
#
# Copyright (c) 2017, the cclib development team
#
# This file is part of cclib (http://cclib.github.io) and is distributed under
# the terms of the BSD 3-Clause License.
"""Test geometry optimization logfiles in cclib"""
import os
import unittest
import numpy
from common import get_minimum_carbon_separation
from skip import skipForParser
__filedir__ = os.path.realpath(os.path.dirname(__file__))
class GenericGeoOptTest(unittest.TestCase):
"""Generic geometry optimization unittest"""
# In STO-3G, H has 1, C has 3.
nbasisdict = {1:1, 6:5}
# Some programs print surplus atom coordinates by default.
extracoords = 0
# Some programs do surplus SCF cycles by default.
extrascfs = 0
# Approximate B3LYP energy of dvb after SCF in STO-3G.
b3lyp_energy = -10365
b3lyp_tolerance = 40
@skipForParser('Molcas','The parser is still being developed so we skip this test')
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def test_success(self):
self.assertTrue(self.data.metadata['success'])
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testnatom(self):
"""Is the number of atoms equal to 20?"""
self.assertEquals(self.data.natom, 20)
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testatomnos(self):
"""Are the atomnos correct?"""
# This will work only for numpy
#self.assertEquals(self.data.atomnos.dtype.char, 'i')
atomnos_types = [numpy.issubdtype(atomno, numpy.signedinteger)
for atomno in self.data.atomnos]
self.failUnless(numpy.alltrue(atomnos_types))
self.assertEquals(self.data.atomnos.shape, (20,) )
count_C = sum(self.data.atomnos == 6)
count_H = sum(self.data.atomnos == 1)
self.assertEquals(count_C + count_H, 20)
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testatomcoords(self):
"""Are atomcoords consistent with natom and Angstroms?"""
natom = len(self.data.atomcoords[0])
ref = self.data.natom
msg = "natom is %d but len(atomcoords[0]) is %d" % (ref, natom)
self.assertEquals(natom, ref, msg)
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testatomcoords_units(self):
"""Are atomcoords consistent with Angstroms?"""
min_carbon_dist = get_minimum_carbon_separation(self.data)
dev = abs(min_carbon_dist - 1.34)
self.assertTrue(dev < 0.15, "Minimum carbon dist is %.2f (not 1.34)" % min_carbon_dist)
@skipForParser('Molcas','The parser is still being developed so we skip this test')
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testcharge_and_mult(self):
"""Are the charge and multiplicity correct?"""
self.assertEquals(self.data.charge, 0)
self.assertEquals(self.data.mult, 1)
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testnbasis(self):
"""Is the number of basis set functions correct?"""
count = sum([self.nbasisdict[n] for n in self.data.atomnos])
self.assertEquals(self.data.nbasis, count)
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testcoreelectrons(self):
"""Are the coreelectrons all 0?"""
ans = numpy.zeros(self.data.natom, 'i')
numpy.testing.assert_array_equal(self.data.coreelectrons, ans)
@skipForParser('Molcas','The parser is still being developed so we skip this test')
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testnormalisesym(self):
"""Did this subclass overwrite normalisesym?"""
# https://stackoverflow.com/a/8747890
self.logfile.normalisesym("A")
@skipForParser('Molcas','The parser is still being developed so we skip this test')
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testhomos(self):
"""Is the index of the HOMO equal to 34?"""
ref = numpy.array([34], "i")
msg = "%s != array([34], 'i')" % numpy.array_repr(self.data.homos)
numpy.testing.assert_array_equal(self.data.homos, ref, msg)
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testscfvaluetype(self):
"""Are scfvalues and its elements the right type?"""
self.assertEquals(type(self.data.scfvalues),type([]))
self.assertEquals(type(self.data.scfvalues[0]),type(numpy.array([])))
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testscfenergy(self):
"""Is the SCF energy close to target?"""
scf = self.data.scfenergies[-1]
ref = self.b3lyp_energy
tol = self.b3lyp_tolerance
msg = "Final scf energy: %f not %i +- %ieV" %(scf, ref, tol)
self.assertAlmostEquals(scf, ref, delta=40, msg=msg)
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testscfenergydim(self):
"""Is the number of SCF energies consistent with atomcoords?"""
count_scfenergies = self.data.scfenergies.shape[0] - self.extrascfs
count_atomcoords = self.data.atomcoords.shape[0] - self.extracoords
self.assertEquals(count_scfenergies, count_atomcoords)
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testscftargetdim(self):
"""Do the scf targets have the right dimensions?"""
dim_scftargets = self.data.scftargets.shape
dim_scfvalues = (len(self.data.scfvalues),len(self.data.scfvalues[0][0]))
self.assertEquals(dim_scftargets, dim_scfvalues)
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testgeovalues_atomcoords(self):
"""Are atomcoords consistent with geovalues?"""
count_geovalues = len(self.data.geovalues)
count_coords = len(self.data.atomcoords) - self.extracoords
msg = "len(atomcoords) is %d but len(geovalues) is %d" % (count_coords, count_geovalues)
self.assertEquals(count_geovalues, count_coords, msg)
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testgeovalues_scfvalues(self):
"""Are scfvalues consistent with geovalues?"""
count_scfvalues = len(self.data.scfvalues) - self.extrascfs
count_geovalues = len(self.data.geovalues)
self.assertEquals(count_scfvalues, count_geovalues)
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testgeotargets(self):
"""Do the geo targets have the right dimensions?"""
dim_geotargets = self.data.geotargets.shape
dim_geovalues = (len(self.data.geovalues[0]), )
self.assertEquals(dim_geotargets, dim_geovalues)
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testoptdone(self):
"""Has the geometry converged and set optdone to True?"""
self.assertTrue(self.data.optdone)
self.assertTrue(numpy.all(numpy.abs(self.data.geovalues[-1]) <= self.data.geotargets))
@skipForParser("ADF", "Not implemented.")
@skipForParser("DALTON", "Not implemented.")
@skipForParser("GAMESS", "Not implemented.")
@skipForParser("GAMESSUK", "Not implemented.")
@skipForParser("Jaguar", "Not implemented.")
@skipForParser('Molcas','The parser is still being developed so we skip this test')
@skipForParser("Molpro", "Not implemented.")
@skipForParser("NWChem", "Not implemented.")
@skipForParser("ORCA", "Not implemented.")
@skipForParser("QChem", "Not implemented.")
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testoptstatus(self):
"""Is optstatus consistent with geovalues and reasonable?"""
self.assertEqual(len(self.data.optstatus), len(self.data.geovalues))
self.assertEqual(self.data.optstatus[0], self.data.OPT_NEW)
for i in range(1, len(self.data.optstatus)-1):
self.assertEqual(self.data.optstatus[i], self.data.OPT_UNKNOWN)
self.assertEqual(self.data.optstatus[-1], self.data.OPT_DONE)
@skipForParser('Molcas','The parser is still being developed so we skip this test')
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testmoenergies(self):
"""Are only the final MOs parsed?"""
self.assertEquals(len(self.data.moenergies), 1)
if hasattr(self.data, "mocoeffs"):
self.assertEquals(len(self.data.mocoeffs), 1)
@skipForParser("ADF", "Not implemented.")
@skipForParser("DALTON", "Not implemented.")
@skipForParser("GAMESS", "Not implemented.")
@skipForParser("GAMESSUK", "Not implemented.")
@skipForParser("Jaguar", "Not implemented.")
@skipForParser('Molcas','The parser is still being developed so we skip this test')
@skipForParser("NWChem", "Not implemented.")
@skipForParser('Turbomole','The parser is still being developed so we skip this test')
def testgradsdim(self):
"""Do the grads have the right dimensions?"""
self.assertEquals(self.data.grads.shape,(len(self.data.geovalues),self.data.natom,3))
class ADFGeoOptTest(GenericGeoOptTest):
"""Customized geometry optimization unittest"""
extracoords = 1
extrascfs = 1
b3lyp_energy = -140
b3lyp_tolerance = 1
class DALTONGeoOptTest(GenericGeoOptTest):
"""Customzed geometry optimziation unittest"""
# DALTON will normally print the geometry several extra times as the "final geometry"
# when an optimziation converges. We don't parse those coordinates, but the parser
# does catch the geometry printed in the final static property calculation when
# that is done for the final geometry (presumably always).
extracoords = 1
# Although DALTON generally has three criteria for convergence, it normally only
# requires two of them to end a geometry optimization. This is printed in the output
# and can probably be tweaked in the input, but we don't parsed that in cclib.
def testoptdone(self):
"""Has the geometry converged and set optdone to True?"""
self.assertTrue(self.data.optdone)
convergence = numpy.abs(self.data.geovalues[-1]) <= self.data.geotargets
self.assertTrue(sum(convergence) >= 2)
class MolcasGeoOptTest(GenericGeoOptTest):
"""Customized restricted single point HF unittest"""
# Molcas prints the input coordinates and performs the &scf job
# once before entering the optimization part where the coordinates and
# scf section are printed for each iteration. Hence we have an extra set of
# coordinates and extra set of SCF attributes (scfenergies, scftargets & scfvalues).
extracoords = 1
extrascfs = 1
class MolproGeoOptTest(GenericGeoOptTest):
"""Customized geometry optimization unittest"""
# Note that these extra coordinates and energies will be available only
# if the appropriate output is parsed, and Molpro often saves the initial
# SCF run and subsequent geometry optimization to separate files, which
# both need to be given to the cclib parser (as a list).
extracoords = 1
extrascfs = 2
# Here is what the manual has to say about convergence:
# The standard MOLPRO convergency criterion requires the maximum component of the gradient
# to be less then $3 \cdot 10^{-4}$ [a.u.] and the maximum energy change to be less than
# $1 \cdot 10^{-6}$ [H] or the maximum component of the gradient to be less then
# $3 \cdot 10^{-4}$ [a.u.] and the maximum component of the step to be less then
# $3 \cdot 10^{-4}$ [a.u.].
#
# It is also possible to use the convergency criterion of (...)
#
# Source: https://www.molpro.net/info/2012.1/doc/manual/node592.html
def testoptdone(self):
"""Has the geometry converged and set optdone to True?"""
self.assertTrue(self.data.optdone)
target_e, target_g, target_s = self.data.geotargets
value_e, value_g, value_s = self.data.geovalues[-1]
converged = (value_e < target_e and value_g < target_g) or (value_g < target_g and value_s < target_s)
self.assertTrue(converged)
class NWChemGeoOptTest(GenericGeoOptTest):
"""Customized restricted single point HF unittest"""
# NWChem typically prints the coordinates in the input module, at the
# beginning of each geometry optimization step, and then again after
# the optimziation is finished, so the first and last coordinates
# are repeated. On the other hand, each optimization step often
# involves a line search which we don't parse (see parse code for details).
extracoords = 2
extrascfs = 0
class OrcaGeoOptTest(GenericGeoOptTest):
"""Customized geometry optimization unittest"""
extracoords = 1
extrascfs = 1
# Besides all the geovalues being below their tolerances, ORCA also considers
# an optimization finished in some extra cases. These are:
# 1) everything converged except the energy (within 25 x tolerance)
# 2) gradient is overachieved and displacement is reasonable (3 x tolerance)
# 3) displacement is overachieved and gradient is reasonable (3 x tolerance)
# 4) energy, gradients and angles are converged (displacements not considered)
# All these exceptions are signaleld in the output with some comments, and here
# we include the first three exceptions for the pruposes of the unit test.
def testoptdone(self):
"""Has the geometry converged and set optdone to True?"""
self.assertTrue(self.data.optdone)
targets = self.data.geotargets
values = numpy.abs(self.data.geovalues[-1])
target_e = targets[0]
target_g = targets[1:3]
target_x = targets[3:]
value_e = values[0]
value_g = values[1:3]
value_x = values[3:]
conv_all = all(values < targets)
conv_e = value_e < 25*target_e and all(value_g < target_g) and all(value_x < target_x)
conv_g = value_e < target_e and all(value_g < target_g/3.0) and all(value_x < target_x*3.0)
conv_x = value_e < target_e and all(value_g < target_g*3.0) and all(value_x < target_x/3.0)
converged = conv_all or conv_e or conv_g or conv_x
self.assertTrue(converged)
class Psi4GeoOptTest(GenericGeoOptTest):
"""Customized geometry optimization unittest"""
# Psi has a number of different convergence strategies to choose from, as described here:
# http://sirius.chem.vt.edu/psi4manual/latest/optking.html
# and the default is to check that the max. force is converged and if the max energy change
# or dispalcement is converged. This is in fact what is tested below.
def testoptdone(self):
"""Has the geometry converged and set optdone to True?"""
self.assertTrue(self.data.optdone)
targets = self.data.geotargets
values = numpy.abs(self.data.geovalues[-1])
# Since the other criteria are not used and are not printed in this case, they should
# be parsed as numpy.inf, for which we can check.
self.assertTrue(numpy.isinf(targets[2]))
self.assertTrue(numpy.isinf(targets[4]))
conv = values[1] < targets[1] and (values[0] < targets[0] or values[3] < targets[3])
self.assertTrue(conv)
if __name__=="__main__":
import sys
sys.path.insert(1, os.path.join(__filedir__, ".."))
from test_data import DataSuite
suite = DataSuite(['GeoOpt'])
suite.testall()
|