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
|
# -*- coding: utf-8 -*-
#
# Copyright (c) 2023, 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 Born-Oppenheimer molecular dynamics (BOMD) logfiles in cclib."""
import os
import unittest
__filedir__ = os.path.realpath(os.path.dirname(__file__))
class GenericBOMDTest(unittest.TestCase):
"""Generic Born-Oppenheimer molecular dynamics unittest"""
# To calculate the initial set of forces/velocities, programs
# first converge the energy at the input geometry, so there is
# always one more geometry/energy than MD step.
nsteps = 35
nenergies = 36
def testdimscfenergies(self):
"""Are the number of parsed energies consistent with the number of MD
steps?
"""
assert self.data.scfenergies.shape == (self.nenergies, )
def testdimatomcoords(self):
"""Are the number of parsed geometries consistent with the number of
MD steps?
"""
assert self.data.atomcoords.shape == (self.nenergies, 20, 3)
def testdimtime(self):
"""Are the number of time points consistent with the number of MD
steps?
"""
assert self.data.time.shape == (self.nsteps, )
class GaussianBOMDTest(GenericBOMDTest):
"""Customized Born-Oppenheimer molecular dynamics unittest"""
# This may have something to do with our corrections for
# extrapolation step rejection.
nenergies = 35
if __name__=="__main__":
import sys
sys.path.append(os.path.join(__filedir__, ".."))
from test_data import DataSuite
suite = DataSuite(['BOMD'])
suite.testall()
|