-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feat] use orbital occupations measured by cthyb / ctseg for reportin…
…g and add SVO CRM ctseg test
- Loading branch information
1 parent
376cc5f
commit 69b7064
Showing
10 changed files
with
93 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[general] | ||
seedname = "inp" | ||
jobname = "out" | ||
enforce_off_diag = false | ||
block_threshold= 0.001 | ||
mu_initial_guess = -0.027041 | ||
|
||
prec_mu = 0.001 | ||
n_iw = 501 | ||
n_tau = 10001 | ||
|
||
h_int_type = "kanamori_den_den" | ||
U = 8.0 | ||
J = 0.65 | ||
|
||
store_solver = true | ||
|
||
beta = 10 | ||
|
||
n_iter_dmft = 1 | ||
|
||
dc_type = 1 | ||
dc = true | ||
dc_dmft = false | ||
|
||
|
||
[solver] | ||
type = "ctseg" | ||
length_cycle = 60 | ||
n_warmup_cycles = 1e+4 | ||
n_cycles_tot = 1e+6 | ||
crm_dyson_solver = true | ||
crm_dlr_wmax = 4 | ||
crm_dlr_eps = 1e-8 |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import shutil | ||
import triqs.utility.mpi as mpi | ||
import solid_dmft.main as solid | ||
|
||
import sys | ||
import importlib.util | ||
|
||
# try triqs_ctseg import | ||
ctseg = importlib.util.find_spec("triqs_ctseg") is not None | ||
if not ctseg: | ||
mpi.report('ImportWarning: ctseg needs to be installed to run this test') | ||
sys.exit() | ||
|
||
if mpi.is_master_node(): | ||
shutil.rmtree('out', ignore_errors=True) | ||
mpi.barrier() | ||
|
||
solid.main([None, 'dmft_config.toml']) |