forked from QcmPlab/CDMFT-LANC-ED
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCDMFT_ED.f90
51 lines (40 loc) · 1.74 KB
/
CDMFT_ED.f90
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
MODULE CDMFT_ED
USE ED_INPUT_VARS
USE ED_AUX_FUNX, only: &
ed_search_variable
USE ED_HLOC_DECOMPOSITION,only: &
set_Hloc
USE ED_IO, only: &
ed_print_impSigma , &
ed_read_impSigma , &
ed_print_impG , &
ed_read_impG , &
ed_print_impG0 , &
ed_get_sigma_matsubara , &
ed_get_sigma_realaxis , &
ed_get_gimp_matsubara , &
ed_get_gimp_realaxis , &
ed_get_g0imp_matsubara , &
ed_get_g0imp_realaxis , &
ed_get_delta_matsubara , &
ed_get_g0and_matsubara , &
ed_get_delta_realaxis , &
ed_get_g0and_realaxis
USE ED_BATH, only: &
get_bath_dimension , &
impose_bath_offset , &
impose_equal_lambda !, &
!hermiticize_bath , &
!spin_symmetrize_bath , &
!orb_equality_bath , &
!break_symmetry_bath
!USE ED_BATH_FUNCTIONS, only: &
USE ED_MAIN, only: &
ed_init_solver , &
ed_solve
USE ED_OBSERVABLES, only: &
init_custom_observables , &
clear_custom_observables , &
add_custom_observable
USE ED_FIT_CHI2, only: ed_chi2_fitgf
END MODULE CDMFT_ED