Skip to content

Commit 1beb6ec

Browse files
committed
update test
1 parent 9f9b39f commit 1beb6ec

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed

tests/non-mpi/w90_two_orb/dmft_square.ini

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,32 @@ max_step = 1
2222

2323
[tool]
2424
knode = [(G,0,0,0),(X,0.5,0,0),(M,0.5,0.5,0),(G,0,0,0)]
25-
nk_line = 10
25+
26+
[post]
2627
omega_max = 6.0
2728
omega_min = -6.0
2829
Nomega = 21
30+
31+
[post.anacont]
32+
solver = pade
33+
show_result = false
34+
save_result = false
35+
36+
[post.anacont.pade]
37+
n_min = 2
38+
n_max = 100
39+
iomega_max = 1e+20
40+
eta = 0.0
41+
42+
[post.anacont.spm]
43+
n_matsubara = 1000
44+
n_tau = 101
45+
n_tail = 5
46+
n_sv = 10
47+
lambda = 1e-5
48+
49+
50+
[post.spectrum]
51+
knode = [(G,0,0,0),(X,0.5,0,0),(M,0.5,0.5,0),(G,0,0,0)]
52+
nk_line = 10
2953
broadening = 0.1

tests/non-mpi/w90_two_orb/test_w90_two_orb.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@
1919
import os
2020
import numpy
2121
from dcore.dcore_pre import dcore_pre
22-
from dcore.dcore_post import dcore_post
2322
from dcore.dcore import dcore
23+
from dcore.dcore_anacont import dcore_anacont
24+
from dcore.dcore_spectrum import dcore_spectrum
2425
from dcore._dispatcher import HDFArchive
2526

2627

@@ -51,4 +52,5 @@ def test_dcore_pre(request):
5152
# We do not check the correctness of the results,
5253
# but want to make sure the rest runs without errors!
5354
dcore('dmft_square.ini')
54-
dcore_post('dmft_square.ini')
55+
dcore_anacont('dmft_square.ini')
56+
dcore_spectrum('dmft_square.ini')

0 commit comments

Comments
 (0)