2013-07-17 19:24:07 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* TRIQS: a Toolbox for Research in Interacting Quantum Systems
|
|
|
|
*
|
2013-12-30 22:31:36 +01:00
|
|
|
* Copyright (C) 2012-2013 by O. Parcollet
|
2013-07-17 19:24:07 +02:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
2013-12-30 22:31:36 +01:00
|
|
|
#pragma once
|
2013-07-17 19:24:07 +02:00
|
|
|
#include "./tools.hpp"
|
|
|
|
#include "./gf.hpp"
|
|
|
|
#include "./local/tail.hpp"
|
2013-10-23 15:51:51 +02:00
|
|
|
#include "./local/no_tail.hpp"
|
2013-11-05 08:56:42 +01:00
|
|
|
#include "./meshes/matsubara_freq.hpp"
|
2013-10-16 23:55:26 +02:00
|
|
|
#include "./evaluators.hpp"
|
2013-11-05 08:56:42 +01:00
|
|
|
namespace triqs {
|
|
|
|
namespace gfs {
|
2013-07-17 19:24:07 +02:00
|
|
|
|
|
|
|
struct imfreq {};
|
|
|
|
|
2013-11-05 08:56:42 +01:00
|
|
|
template <typename Opt> struct gf_mesh<imfreq, Opt> : matsubara_freq_mesh {
|
2013-12-30 22:31:36 +01:00
|
|
|
template <typename... T> gf_mesh(T &&... x) : matsubara_freq_mesh(std::forward<T>(x)...) {}
|
2014-09-05 13:26:21 +02:00
|
|
|
// using matsubara_freq_mesh::matsubara_freq_mesh;
|
2013-08-24 14:47:47 +02:00
|
|
|
};
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
// singularity
|
|
|
|
template <> struct gf_default_singularity<imfreq, matrix_valued> {
|
2014-09-18 14:40:44 +02:00
|
|
|
using type = tail;
|
2014-09-05 13:26:21 +02:00
|
|
|
};
|
|
|
|
template <> struct gf_default_singularity<imfreq, scalar_valued> {
|
2014-09-18 14:40:44 +02:00
|
|
|
using type = tail;
|
2014-09-05 13:26:21 +02:00
|
|
|
};
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
namespace gfs_implementation {
|
2013-08-24 14:47:47 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
/// --------------------------- hdf5 ---------------------------------
|
|
|
|
|
|
|
|
template <typename S, typename Opt> struct h5_name<imfreq, matrix_valued, S, Opt> {
|
2013-11-05 08:56:42 +01:00
|
|
|
static std::string invoke() { return "ImFreq"; }
|
|
|
|
};
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
/// --------------------------- data access ---------------------------------
|
|
|
|
|
|
|
|
template <typename Opt> struct data_proxy<imfreq, matrix_valued, Opt> : data_proxy_array<std::complex<double>, 3> {};
|
|
|
|
template <typename Opt> struct data_proxy<imfreq, scalar_valued, Opt> : data_proxy_array<std::complex<double>, 1> {};
|
|
|
|
|
2013-07-17 19:24:07 +02:00
|
|
|
/// --------------------------- evaluator ---------------------------------
|
2013-10-16 23:55:26 +02:00
|
|
|
|
2013-11-05 08:56:42 +01:00
|
|
|
// simple evaluation : take the point on the grid...
|
|
|
|
template <> struct evaluator_fnt_on_mesh<imfreq> {
|
|
|
|
long n;
|
2014-01-06 17:46:09 +01:00
|
|
|
double w;
|
2013-11-05 08:56:42 +01:00
|
|
|
evaluator_fnt_on_mesh() = default;
|
2014-01-06 17:46:09 +01:00
|
|
|
template <typename MeshType> evaluator_fnt_on_mesh(MeshType const &m, long p) { n = p; w=1; }
|
|
|
|
template <typename MeshType> evaluator_fnt_on_mesh(MeshType const &m, matsubara_freq const &p) {
|
2014-02-19 12:59:47 +01:00
|
|
|
if ((p.n >= m.first_index()) && (p.n < m.size()+m.first_index())) {w=1; n =p.n;}
|
2014-01-06 17:46:09 +01:00
|
|
|
else {w=0; n=0;}
|
|
|
|
}
|
2014-09-18 14:40:44 +02:00
|
|
|
template <typename F> AUTO_DECL operator()(F const &f) const RETURN(w*f(n));
|
2013-11-05 08:56:42 +01:00
|
|
|
};
|
2013-10-16 23:55:26 +02:00
|
|
|
|
2013-11-05 08:56:42 +01:00
|
|
|
// ------------- evaluator -------------------
|
|
|
|
// handle the case where the matsu. freq is out of grid...
|
2013-10-16 23:55:26 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
struct _eval_imfreq_base_impl {
|
|
|
|
static constexpr int arity = 1;
|
2014-03-04 20:22:33 +01:00
|
|
|
template <typename G> int sh(G const * g) const { return (g->mesh().domain().statistic == Fermion ? 1 : 0);}
|
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
// int -> replace by matsubara_freq
|
2013-11-05 08:56:42 +01:00
|
|
|
template <typename G>
|
2014-09-05 13:26:21 +02:00
|
|
|
AUTO_DECL operator()(G const *g, int n) const
|
|
|
|
RETURN((*g)(matsubara_freq(n, g->mesh().domain().beta, g->mesh().domain().statistic)));
|
|
|
|
|
2014-09-18 14:40:44 +02:00
|
|
|
template <typename G> typename G::singularity_t operator()(G const *g, tail_view t) const {
|
|
|
|
return compose(g->singularity(),t);
|
|
|
|
//return g->singularity();
|
2014-09-05 13:26:21 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
// --- various 4 specializations
|
|
|
|
|
|
|
|
// scalar_valued, tail
|
2014-09-18 14:40:44 +02:00
|
|
|
template <typename Opt> struct evaluator<imfreq, scalar_valued, tail, Opt> : _eval_imfreq_base_impl {
|
2014-09-05 13:26:21 +02:00
|
|
|
|
|
|
|
using _eval_imfreq_base_impl::operator();
|
|
|
|
|
|
|
|
template <typename G> std::complex<double> operator()(G const *g, matsubara_freq const &f) const {
|
|
|
|
if (g->mesh().positive_only()) { // only positive Matsubara frequencies
|
2014-01-06 16:43:16 +01:00
|
|
|
if ((f.n >= 0) && (f.n < g->mesh().size())) return (*g)[f.n];
|
2014-09-05 13:26:21 +02:00
|
|
|
if ((f.n < 0) && ((-f.n - this->sh(g)) < g->mesh().size())) return conj((*g)[-f.n - this->sh(g)]);
|
|
|
|
} else {
|
|
|
|
if ((f.n >= g->mesh().first_index()) && (f.n < g->mesh().size() + g->mesh().first_index())) return (*g)[f.n];
|
2014-01-06 16:43:16 +01:00
|
|
|
}
|
2014-09-18 14:40:44 +02:00
|
|
|
return evaluate(g->singularity(),f)(0, 0);
|
2013-11-05 08:56:42 +01:00
|
|
|
}
|
2014-09-05 13:26:21 +02:00
|
|
|
};
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
// scalar_valued, no tail
|
|
|
|
template <typename Opt> struct evaluator<imfreq, scalar_valued, nothing, Opt> : _eval_imfreq_base_impl {
|
|
|
|
|
|
|
|
using _eval_imfreq_base_impl::operator();
|
|
|
|
|
|
|
|
template <typename G> std::complex<double> operator()(G const *g, matsubara_freq const &f) const {
|
|
|
|
if (g->mesh().positive_only()) { // only positive Matsubara frequencies
|
2014-01-06 16:43:16 +01:00
|
|
|
if ((f.n >= 0) && (f.n < g->mesh().size())) return (*g)[f.n];
|
2014-09-05 13:26:21 +02:00
|
|
|
if ((f.n < 0) && ((-f.n - this->sh(g)) < g->mesh().size())) return conj((*g)[-f.n - this->sh(g)]);
|
|
|
|
} else {
|
|
|
|
if ((f.n >= g->mesh().first_index()) && (f.n < g->mesh().size() + g->mesh().first_index())) return (*g)[f.n];
|
2014-01-06 16:43:16 +01:00
|
|
|
}
|
2013-11-05 08:56:42 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2014-09-05 13:26:21 +02:00
|
|
|
};
|
2013-11-05 08:56:42 +01:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
// matrix_valued, tail
|
2014-09-18 14:40:44 +02:00
|
|
|
template <typename Opt> struct evaluator<imfreq, matrix_valued, tail, Opt> : _eval_imfreq_base_impl {
|
2014-09-05 13:26:21 +02:00
|
|
|
|
|
|
|
using _eval_imfreq_base_impl::operator();
|
|
|
|
|
|
|
|
template <typename G> arrays::matrix_const_view<std::complex<double>> operator()(G const *g, matsubara_freq const &f) const {
|
|
|
|
if (g->mesh().positive_only()) { // only positive Matsubara frequencies
|
2014-01-06 16:43:16 +01:00
|
|
|
if ((f.n >= 0) && (f.n < g->mesh().size())) return (*g)[f.n]();
|
2014-09-05 13:26:21 +02:00
|
|
|
if ((f.n < 0) && ((-f.n - this->sh(g)) < g->mesh().size()))
|
|
|
|
return arrays::matrix<std::complex<double>>{conj((*g)[-f.n - this->sh(g)]())};
|
|
|
|
} else {
|
|
|
|
if ((f.n >= g->mesh().first_index()) && (f.n < g->mesh().size() + g->mesh().first_index())) return (*g)[f.n];
|
2014-01-06 16:43:16 +01:00
|
|
|
}
|
2014-09-18 14:40:44 +02:00
|
|
|
return evaluate(g->singularity(), f);
|
2013-11-05 08:56:42 +01:00
|
|
|
}
|
2014-09-05 13:26:21 +02:00
|
|
|
};
|
2013-11-05 08:56:42 +01:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
// matrix_valued, no tail
|
|
|
|
template <typename Opt> struct evaluator<imfreq, matrix_valued, nothing, Opt> : _eval_imfreq_base_impl {
|
|
|
|
|
|
|
|
using _eval_imfreq_base_impl::operator();
|
|
|
|
|
|
|
|
template <typename G> arrays::matrix_const_view<std::complex<double>> operator()(G const *g, matsubara_freq const &f) const {
|
|
|
|
if (g->mesh().positive_only()) { // only positive Matsubara frequencies
|
2014-01-06 16:43:16 +01:00
|
|
|
if ((f.n >= 0) && (f.n < g->mesh().size())) return (*g)[f.n]();
|
2014-09-05 13:26:21 +02:00
|
|
|
if ((f.n < 0) && ((-f.n - this->sh(g)) < g->mesh().size()))
|
|
|
|
return arrays::matrix<std::complex<double>>{conj((*g)[-f.n - this->sh(g)]())};
|
|
|
|
} else {
|
|
|
|
if ((f.n >= g->mesh().first_index()) && (f.n < g->mesh().size() + g->mesh().first_index())) return (*g)[f.n];
|
2014-01-06 16:43:16 +01:00
|
|
|
}
|
2013-11-05 08:56:42 +01:00
|
|
|
auto r = arrays::matrix<std::complex<double>>{get_target_shape(*g)};
|
|
|
|
r() = 0;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // gfs_implementation
|
2014-09-06 15:53:01 +02:00
|
|
|
|
|
|
|
// specific operations (for legacy python code).
|
|
|
|
// +=, -= with a matrix
|
|
|
|
inline void operator+=(gf_view<imfreq> g, arrays::matrix<std::complex<double>> m) {
|
2014-10-18 21:05:36 +02:00
|
|
|
for (int u = 0; u < int(first_dim(g.data())); ++u) g.data()(u, arrays::ellipsis()) += m;
|
2014-09-06 15:53:01 +02:00
|
|
|
g.singularity()(0) += m;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void operator-=(gf_view<imfreq> g, arrays::matrix<std::complex<double>> m) {
|
2014-10-18 21:05:36 +02:00
|
|
|
for (int u = 0; u < int(first_dim(g.data())); ++u) g.data()(u, arrays::ellipsis()) -= m;
|
2014-09-06 15:53:01 +02:00
|
|
|
g.singularity()(0) -= m;
|
|
|
|
}
|
2013-11-05 08:56:42 +01:00
|
|
|
}
|
|
|
|
}
|