mirror of
https://github.com/triqs/dft_tools
synced 2024-11-13 01:23:50 +01:00
819fc987f0
The files from the original vasp-interface repository are reshuffled in accord with the directory structure of dft_tools. Some of the directories, such as 'test' (unit tests for the interface), 'examples' (simple examples for the development purposes) are temporarily placed into 'python/vasp' directory to avoid confusion with integral tests and examples of dft_tools.
33 lines
742 B
Python
33 lines
742 B
Python
r"""
|
|
Tests for class 'Doscar' from module 'vaspio'
|
|
"""
|
|
import mytest
|
|
import numpy as np
|
|
from vaspio import Doscar
|
|
|
|
################################################################################
|
|
#
|
|
# TestDoscar
|
|
#
|
|
################################################################################
|
|
class TestDoscar(mytest.MyTestCase):
|
|
"""
|
|
Function:
|
|
|
|
def Doscar.from_file(vasp_dir, dos_filename)
|
|
|
|
Scenarios:
|
|
- correct DOSCAR file
|
|
|
|
"""
|
|
# Scenario 1
|
|
def test_example(self):
|
|
filename = 'DOSCAR.example'
|
|
doscar = Doscar()
|
|
doscar.from_file(vasp_dir='./', dos_filename=filename)
|
|
|
|
test_efermi = doscar.efermi
|
|
expected = 5.84395237
|
|
self.assertAlmostEqual(test_efermi, expected)
|
|
|