mirror of
https://github.com/triqs/dft_tools
synced 2025-01-03 10:05:49 +01:00
39 lines
937 B
Python
39 lines
937 B
Python
|
|
||
|
import os
|
||
|
|
||
|
import numpy as np
|
||
|
import applications.dft.converters.plovasp.atm as atm
|
||
|
import mytest
|
||
|
|
||
|
################################################################################
|
||
|
#
|
||
|
# TestProjectorShell
|
||
|
#
|
||
|
################################################################################
|
||
|
class TestProjectorShell(mytest.MyTestCase):
|
||
|
"""
|
||
|
Class:
|
||
|
|
||
|
ProjectorShell(sh_pars, proj_raw)
|
||
|
|
||
|
Scenarios:
|
||
|
- **if** a correct input is given **compare** output arrays
|
||
|
"""
|
||
|
# Scenario 1
|
||
|
def test_example(self):
|
||
|
eigs = np.array([-1.5, -1.309017, -1.0, -0.5])
|
||
|
en = -0.55
|
||
|
itt = np.array([[1, 0, 1, 2, 3]]).T
|
||
|
|
||
|
res = atm.dos_tetra_weights_3d(eigs, en, itt)[:, 0]
|
||
|
|
||
|
r_should = np.zeros(4)
|
||
|
r_should[0] = 0.000309016992226;
|
||
|
r_should[1] = 0.000381966005939;
|
||
|
r_should[2] = 0.000618033984453;
|
||
|
r_should[3] = 0.017232002550965;
|
||
|
|
||
|
self.assertEqual(res, r_should)
|
||
|
|
||
|
|