2013-07-17 19:24:07 +02:00
|
|
|
.. index::
|
|
|
|
single: Green's functions; block Green's function
|
|
|
|
module: gf_imtime
|
|
|
|
|
|
|
|
.. _GfImTime:
|
|
|
|
|
|
|
|
Matsubara Green's function in imaginary time (GfImTime)
|
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
This object stores a matrix valued Green function in imaginary time
|
2014-10-17 18:15:19 +02:00
|
|
|
in the Matsubara formalism:
|
2013-07-17 19:24:07 +02:00
|
|
|
|
|
|
|
.. math::
|
|
|
|
|
|
|
|
G_{\alpha \beta} (\tau) \equiv - \mathcal{T} <c_{\alpha}(\tau) c^{\dagger}_{\beta} (0)> \qquad \text{ for } 0 \leq \tau \leq \beta
|
|
|
|
|
|
|
|
|
|
|
|
Reference
|
|
|
|
---------------
|
|
|
|
|
|
|
|
.. autoclass:: pytriqs.gf.local.GfImTime
|
|
|
|
:members: set_from_inverse_fourier, set_from_legendre, transpose, conjugate
|
|
|
|
|
|
|
|
|
|
|
|
HDF5 data scheme
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2014-10-17 18:15:19 +02:00
|
|
|
The GfImTime (TRIQS_HDF5_data_scheme = "GfImTime") is decomposed in the following objects:
|
2013-07-17 19:24:07 +02:00
|
|
|
|
|
|
|
========================= =========================== ===========================================================================
|
|
|
|
Name Type Meaning
|
|
|
|
========================= =========================== ===========================================================================
|
|
|
|
Mesh MeshGf The mesh
|
|
|
|
Tail TailGf The tail
|
|
|
|
Data 3d numpy of double Data[i1,i2,n] is the element of the Green function where :
|
|
|
|
* i1, i2 are the indices
|
|
|
|
* n is the index of the time slice, starting at tau =0
|
|
|
|
IndicesL,IndicesR string The Python repr of the indices, e.g. (1,2), or (1,)
|
|
|
|
repr(this_string) reproduces the indices
|
|
|
|
Name string Name of the Green function block
|
|
|
|
Note string Note
|
|
|
|
========================= =========================== ===========================================================================
|
|
|
|
|
|
|
|
Example
|
|
|
|
-------
|
|
|
|
|
2014-10-17 18:15:19 +02:00
|
|
|
.. plot:: reference/gfs/py/block/green_imtime.py
|
2013-07-17 19:24:07 +02:00
|
|
|
:include-source:
|
|
|
|
:scale: 70
|
|
|
|
|