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
|
# fmt: off
import pytest
from ase import Atoms
from ase.calculators.aims import AimsCube
from ase.optimize import QuasiNewton
@pytest.mark.calculator('aims')
def test_H2O_aims(factory):
water = Atoms('HOH', [(1, 0, 0), (0, 0, 0), (0, 1, 0)])
water_cube = AimsCube(points=(29, 29, 29),
plots=('total_density',
'delta_density',
'eigenstate 5',
'eigenstate 6'))
calc = factory.calc(
xc='LDA',
output=['dipole'],
sc_accuracy_etot=1e-2,
sc_accuracy_eev=1e-1,
sc_accuracy_rho=1e-2,
sc_accuracy_forces=1e-1,
cubes=water_cube
)
water.calc = calc
dynamics = QuasiNewton(water)
dynamics.run(fmax=0.2)
|