mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 03:33:50 +01:00
f2c7d449cc
for earlier commits, see TRIQS0.x repository.
13 lines
376 B
Python
13 lines
376 B
Python
from pytriqs.gf.local import GfReFreq
|
|
from pytriqs.gf.local.descriptors import SemiCircular
|
|
from pytriqs.archive import HDFArchive
|
|
import numpy
|
|
|
|
R = HDFArchive('myfile.h5', 'w')
|
|
for D in range(1,10,2) :
|
|
g = GfReFreq(indices = [0], beta = 50, mesh_array = numpy.arange(-1.99,2.00,0.02) , name = "D=%s"%D)
|
|
g <<= SemiCircular(half_bandwidth = 0.1*D)
|
|
R[g.name]= g
|
|
|
|
|