mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 19:53:45 +01:00
51 lines
1.4 KiB
Python
51 lines
1.4 KiB
Python
|
|
||
|
################################################################################
|
||
|
#
|
||
|
# TRIQS: a Toolbox for Research in Interacting Quantum Systems
|
||
|
#
|
||
|
# Copyright (C) 2011 by M. Ferrero, O. Parcollet
|
||
|
#
|
||
|
# TRIQS is free software: you can redistribute it and/or modify it under the
|
||
|
# terms of the GNU General Public License as published by the Free Software
|
||
|
# Foundation, either version 3 of the License, or (at your option) any later
|
||
|
# version.
|
||
|
#
|
||
|
# TRIQS is distributed in the hope that it will be useful, but WITHOUT ANY
|
||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||
|
# details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License along with
|
||
|
# TRIQS. If not, see <http://www.gnu.org/licenses/>.
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
from pytriqs.archive import *
|
||
|
from pytriqs.gf.local import *
|
||
|
import numpy
|
||
|
|
||
|
|
||
|
|
||
|
h=HDFArchive('gf_init.output.h5','w')
|
||
|
|
||
|
g = GfImFreq(indices = ['eg1','eg2'], beta = 50, n_points = 100, name = "egBlock")
|
||
|
g['eg1','eg1'] <<= SemiCircular(half_bandwidth = 1)
|
||
|
g['eg2','eg2'] <<= SemiCircular(half_bandwidth = 2)
|
||
|
|
||
|
|
||
|
h['g1'] = g
|
||
|
|
||
|
g <<= numpy.array([[1,2],[2,3]])
|
||
|
|
||
|
h['g2'] = g
|
||
|
|
||
|
some_mesh = numpy.arange(-5,5,0.1)
|
||
|
g = GfReFreq(indices = ['eg1','eg2'], window = (-5, 4.9), n_points = 100, name = "egBlock")
|
||
|
|
||
|
g['eg1','eg1'] <<= iOmega_n - 1.0
|
||
|
g['eg2','eg2'] <<= iOmega_n + 1.0
|
||
|
|
||
|
h['g3'] = g
|
||
|
|
||
|
del h
|