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
|
import pytest
from ase.vibrations.resonant_raman import ResonantRamanCalculator
from ase.calculators.h2morse import (H2Morse,
H2MorseExcitedStates,
H2MorseExcitedStatesCalculator)
from ase.vibrations.albrecht import Albrecht
@pytest.fixture
def atoms():
return H2Morse()
@pytest.fixture
def rrname(atoms):
"""Prepare the Resonant Raman calculation"""
name = 'rrmorse'
rmc = ResonantRamanCalculator(atoms, H2MorseExcitedStatesCalculator,
overlap=lambda x, y: x.overlap(y),
name=name, txt='-')
rmc.run()
return name
def test_one_state(rrname, atoms):
om = 1
gam = 0.1
ao = Albrecht(atoms, H2MorseExcitedStates,
exkwargs={'nstates': 1},
name=rrname, overlap=True,
approximation='Albrecht A', txt=None)
aoi = ao.get_absolute_intensities(omega=om, gamma=gam)[-1]
al = Albrecht(atoms, H2MorseExcitedStates,
exkwargs={'nstates': 1},
name=rrname, approximation='Albrecht A', txt=None)
ali = al.get_absolute_intensities(omega=om, gamma=gam)[-1]
assert ali == pytest.approx(aoi, 1e-9)
def test_all_states(rrname, atoms):
"""Include degenerate states"""
om = 1
gam = 0.1
ao = Albrecht(atoms, H2MorseExcitedStates,
name=rrname, overlap=True,
approximation='Albrecht A', txt=None)
aoi = ao.get_absolute_intensities(omega=om, gamma=gam)[-1]
al = Albrecht(atoms, H2MorseExcitedStates,
name=rrname, approximation='Albrecht A', txt=None)
ali = al.get_absolute_intensities(omega=om, gamma=gam)[-1]
assert ali == pytest.approx(aoi, 1e-5)
def test_multiples(rrname, atoms):
"""Run multiple vibrational excitations"""
om = 1
gam = 0.1
ao = Albrecht(atoms, H2MorseExcitedStates,
name=rrname, overlap=True, combinations=2,
approximation='Albrecht A', txt=None)
aoi = ao.intensity(omega=om, gamma=gam)
assert len(aoi) == 27
def test_summary(rrname, atoms):
om = 1
gam = 0.1
ao = Albrecht(atoms, H2MorseExcitedStates,
name=rrname, overlap=True,
approximation='Albrecht B', txt=None)
ao.summary(om, gam)
ao = Albrecht(atoms, H2MorseExcitedStates,
name=rrname, overlap=True, combinations=2,
approximation='Albrecht A', txt=None)
ao.extended_summary(om, gam)
|