2013-08-22 16:55:51 +02:00
|
|
|
.. highlight:: c
|
|
|
|
|
|
|
|
.. _gf_retime:
|
|
|
|
|
2013-12-30 22:31:36 +01:00
|
|
|
Real time
|
2013-08-22 16:55:51 +02:00
|
|
|
===================================================
|
|
|
|
|
|
|
|
This is a specialisation of :ref:`gf_and_view` for imaginary Matsubara frequencies.
|
|
|
|
|
2013-12-30 22:31:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
Synopsis
|
|
|
|
------------
|
|
|
|
|
|
|
|
.. code::
|
|
|
|
|
|
|
|
gf<retime, Target, Opt>
|
|
|
|
|
|
|
|
The *Target* template parameter can take the following values :
|
|
|
|
|
|
|
|
+-------------------------+-----------------------------------------------------+
|
|
|
|
| Target | Meaning |
|
|
|
|
+=========================+=====================================================+
|
|
|
|
| scalar_valued | The function is scalar valued (double, complex...). |
|
|
|
|
+-------------------------+-----------------------------------------------------+
|
|
|
|
| matrix_valued [default] | The function is matrix valued. |
|
|
|
|
+-------------------------+-----------------------------------------------------+
|
|
|
|
|
2013-08-22 16:55:51 +02:00
|
|
|
Domain & mesh
|
|
|
|
----------------
|
|
|
|
|
2013-12-30 22:31:36 +01:00
|
|
|
CORRECT THIS !! PUT OUT THE C++ impl for doxy doc
|
|
|
|
|
|
|
|
The domain is :doxy:`matsubara_freq_domain<triqs::gfs::matsubara_domain>`.
|
|
|
|
|
|
|
|
The mesh is :doxy:`matsubara_freq_mesh<triqs::gfs::matsubara_freq_mesh>`.
|
|
|
|
|
2013-08-22 16:55:51 +02:00
|
|
|
|
|
|
|
Singularity
|
|
|
|
-------------
|
|
|
|
|
2013-12-30 22:31:36 +01:00
|
|
|
The singularity is a high frequency expansion, :ref:`gf_tail`.
|
|
|
|
|
|
|
|
|
|
|
|
Evaluation method
|
2013-08-22 16:55:51 +02:00
|
|
|
---------------------
|
|
|
|
|
2013-12-30 22:31:36 +01:00
|
|
|
* Linear interpolation on the mesh.
|
|
|
|
|
|
|
|
* Return type :
|
|
|
|
|
|
|
|
* If Target==scalar_valued : a complex
|
|
|
|
* If Target==matrix_valued : an object modeling ImmutableMatrix concept.
|
|
|
|
|
|
|
|
* When the point is outside of the mesh, the evaluation of the gf returns :
|
|
|
|
|
|
|
|
* the evaluation of the high frequency tail if no_tail is not set.
|
|
|
|
* 0 otherwise
|
|
|
|
|
2013-09-18 15:13:23 +02:00
|
|
|
|
2013-08-22 16:55:51 +02:00
|
|
|
Data storage
|
|
|
|
---------------
|
|
|
|
|
2013-12-30 22:31:36 +01:00
|
|
|
* If Target==scalar_valued :
|
|
|
|
|
|
|
|
* `data_t` : 1d array of complex<double>.
|
|
|
|
|
|
|
|
* g.data()(i) is the value of g for the i-th point of the mesh.
|
|
|
|
|
|
|
|
* If Target==matrix_valued :
|
|
|
|
|
|
|
|
* `data_t` : 3d array (C ordered) of complex<double>.
|
2013-09-18 15:13:23 +02:00
|
|
|
|
2013-12-30 22:31:36 +01:00
|
|
|
* g.data()(i, range(), range()) is the value of g for the i-th point of the mesh.
|
2013-08-22 16:55:51 +02:00
|
|
|
|
|
|
|
HDF5 storage convention
|
|
|
|
---------------------------
|
|
|
|
|
2013-09-18 15:13:23 +02:00
|
|
|
h5 tag : `ReTime`
|
2013-08-22 16:55:51 +02:00
|
|
|
|
|
|
|
Examples
|
|
|
|
---------
|
|
|
|
|
2014-05-31 19:12:21 +02:00
|
|
|
.. triqs_example:: ./gf_retime_0.cpp
|