2013-07-19 13:30:52 +02:00
|
|
|
#define TRIQS_ARRAYS_ENFORCE_BOUNDCHECK
|
|
|
|
|
2013-10-16 23:55:26 +02:00
|
|
|
#include <triqs/gfs.hpp>
|
2013-07-29 09:57:07 +02:00
|
|
|
#include <triqs/gfs/local/fourier_real.hpp>
|
2013-07-19 13:30:52 +02:00
|
|
|
|
|
|
|
namespace tql= triqs::clef;
|
2013-07-28 13:28:19 +02:00
|
|
|
using namespace triqs::gfs;
|
2013-07-19 13:30:52 +02:00
|
|
|
|
|
|
|
int main() {
|
2013-07-27 22:59:51 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
|
2013-07-19 13:30:52 +02:00
|
|
|
double beta =1.;
|
|
|
|
|
|
|
|
double tmin=0.;
|
|
|
|
double tmax=1.0;
|
|
|
|
int n_re_time=100;
|
|
|
|
int n_im_time=100;
|
|
|
|
|
|
|
|
double wmin=0.;
|
|
|
|
double wmax=1.0;
|
|
|
|
int n_re_freq=100;
|
|
|
|
int n_im_freq=100;
|
|
|
|
|
2013-10-16 23:55:26 +02:00
|
|
|
auto G_w= gf<refreq, scalar_valued>{{wmin, wmax, n_re_freq}};
|
2013-07-27 22:59:51 +02:00
|
|
|
|
2013-10-16 23:55:26 +02:00
|
|
|
auto G_t_tau= gf<cartesian_product<retime,imtime>, scalar_valued>({ gf_mesh<retime>(tmin, tmax, n_re_time), gf_mesh<imtime>(beta, Fermion, n_im_time)} );
|
2013-07-27 22:59:51 +02:00
|
|
|
|
2013-10-16 23:55:26 +02:00
|
|
|
auto G_w_wn = gf<cartesian_product<refreq,imfreq>, scalar_valued>( {gf_mesh<refreq>(wmin, wmax, n_re_freq), gf_mesh<imfreq>(beta, Fermion, n_im_freq)});
|
|
|
|
auto G_w_tau =gf<cartesian_product<refreq,imtime>, scalar_valued>( {gf_mesh<refreq>(wmin, wmax, n_re_freq), gf_mesh<imtime>(beta, Fermion, n_im_time,full_bins)});
|
2013-07-27 22:59:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
//auto g_tau = slice_mesh1(G_w_tau(),1);
|
|
|
|
//auto g_wn = G_w_wn_curry0[1];
|
|
|
|
|
|
|
|
//std::cout << G_t_tau_N (0.1,0.2) << std::endl;
|
|
|
|
|
2013-10-16 23:55:26 +02:00
|
|
|
auto G_w_wn_view = G_w_wn();
|
2013-10-21 17:03:50 +02:00
|
|
|
auto G_w_wn_sl0_a = partial_eval<0>(G_w_wn(), 8);
|
2013-09-06 15:53:28 +02:00
|
|
|
static_assert(std::is_same<typename std::remove_reference<decltype(G_w_wn_sl0_a.mesh())>::type, const gf_mesh<imfreq>>::value, "oops");
|
2013-10-16 23:55:26 +02:00
|
|
|
//auto G_w_wn_curry0_a = curry0(G_w_wn);
|
|
|
|
//auto G_w_wn_sl0_a = slice_mesh0(G_w_wn(), 8);
|
2013-07-27 22:59:51 +02:00
|
|
|
|
2013-07-19 13:30:52 +02:00
|
|
|
triqs::clef::placeholder<0> w_;
|
|
|
|
triqs::clef::placeholder<1> wn_;
|
|
|
|
triqs::clef::placeholder<2> tau_;
|
|
|
|
G_w_wn(w_,wn_)<<1/(wn_-1)/( pow(w_,3) );
|
2013-07-19 11:33:39 +02:00
|
|
|
G_w_tau(w_,tau_)<< exp( -2*tau_ ) / (w_*w_ + 1 );
|
|
|
|
|
|
|
|
int index = n_re_freq/3;
|
|
|
|
double tau = std::get<1>(G_w_tau.mesh().components())[index];
|
2013-07-19 13:30:52 +02:00
|
|
|
|
2013-07-19 11:33:39 +02:00
|
|
|
//identical functions
|
|
|
|
G_w(w_) << exp( -2*tau ) / (w_*w_ + 1 );
|
|
|
|
//the singularity must be removed as it is inexistent in re_im_time, to give the same TF.
|
|
|
|
G_w.singularity()(0)=triqs::arrays::matrix<double>{{0}};
|
|
|
|
G_w.singularity()(1)=triqs::arrays::matrix<double>{{0}};
|
|
|
|
G_w.singularity()(2)=triqs::arrays::matrix<double>{{0}};
|
2013-07-27 22:59:51 +02:00
|
|
|
//auto G_w2 = slice_mesh1(G_w_tau(), index);
|
2013-10-16 23:55:26 +02:00
|
|
|
|
|
|
|
/*auto G_w2 = slice_mesh_imtime(G_w_tau, index);
|
2013-07-19 11:33:39 +02:00
|
|
|
for(auto& w:G_w.mesh())
|
2013-07-28 13:47:42 +02:00
|
|
|
if ( std::abs(G_w[w]-G_w2[w]) > precision) TRIQS_RUNTIME_ERROR<<" fourier_slice error : w="<< w <<" ,G_w="<< G_w[w]<<" ,G_w2="<< G_w2[w] <<"\n";
|
2013-10-16 23:55:26 +02:00
|
|
|
*/
|
|
|
|
|
2013-07-19 11:33:39 +02:00
|
|
|
//test of the interpolation
|
2013-07-19 13:30:52 +02:00
|
|
|
std::cout << G_t_tau(0.789,0.123) << std::endl;
|
2013-11-18 21:47:22 +01:00
|
|
|
std::cout << "G_w_wn( 0.789,3) "<<G_w_wn( 0.789,3) << std::endl;
|
2013-07-27 22:59:51 +02:00
|
|
|
std::cout << "G_w_tau(0.789,0.123)" << G_w_tau(0.789,0.123) << std::endl;
|
|
|
|
|
|
|
|
// test curry
|
|
|
|
std::cout << "curry no"<< G_w_wn.on_mesh(8,3) << std::endl ;
|
|
|
|
|
2013-10-21 17:03:50 +02:00
|
|
|
|
2013-10-16 23:55:26 +02:00
|
|
|
auto G_w_wn_curry0 = curry<0>(G_w_wn);
|
2013-09-06 15:53:28 +02:00
|
|
|
static_assert(std::is_same<typename std::remove_reference<decltype(G_w_wn_curry0[0].mesh())>::type, const gf_mesh<imfreq>>::value, "oops");
|
|
|
|
static_assert(std::is_same<typename std::remove_reference<decltype(G_w_wn_curry0.mesh())>::type, const gf_mesh<refreq>>::value, "oops");
|
2013-10-16 23:55:26 +02:00
|
|
|
auto G_w_wn_curry1 = curry<1>(G_w_wn);
|
|
|
|
auto G_w_wn_view2 = G_w_wn();
|
|
|
|
std::cout << " curry "<<G_w_wn_curry0[8] << G_w_wn_curry0[8][3] << G_w_wn_view2.on_mesh(8,3) << G_w_wn_view2.on_mesh(8,3) <<std::endl ;
|
2013-07-27 22:59:51 +02:00
|
|
|
std::cout << " curry "<<G_w_wn_curry1[3][8] << std::endl;
|
|
|
|
std::cout << "G_w_wn_sl0_a [3]"<<G_w_wn_sl0_a[3] << std::endl ;
|
2013-07-19 13:30:52 +02:00
|
|
|
// test hdf5
|
|
|
|
H5::H5File file("gf_re_im_freq_time.h5", H5F_ACC_TRUNC );
|
|
|
|
h5_write(file, "g_t_tau", G_t_tau);
|
2013-10-16 23:55:26 +02:00
|
|
|
h5_write(file, "g_w_wn", G_w_wn);
|
2013-07-19 13:30:52 +02:00
|
|
|
h5_write(file, "g_w_tau", G_w_tau);
|
|
|
|
|
2013-07-27 22:59:51 +02:00
|
|
|
/*
|
2013-07-19 13:30:52 +02:00
|
|
|
// try to slice it
|
|
|
|
auto gt = slice_mesh_imtime(G_t_tau, 1);
|
|
|
|
h5_write(file, "gt0", gt);
|
|
|
|
auto gw = slice_mesh_imtime(G_w_tau, 1);
|
|
|
|
h5_write(file, "gw0", gw);
|
|
|
|
|
2013-07-19 11:33:39 +02:00
|
|
|
//comparison of the TF of the one time and sliced two times GF's
|
|
|
|
auto G_t = inverse_fourier(G_w);
|
|
|
|
auto G_t2 = inverse_fourier(slice_mesh_imtime(G_w_tau, index) );
|
|
|
|
for(auto& t:G_t.mesh())
|
2013-07-28 13:47:42 +02:00
|
|
|
if ( std::abs(G_t[t]-G_t2[t]) > precision) TRIQS_RUNTIME_ERROR<<" fourier_slice_re_time error : t="<< t <<" ,G_t="<< G_t[t] <<" ,G_t2="<< G_t2[t] <<"\n";
|
2013-07-27 22:59:51 +02:00
|
|
|
*/
|
|
|
|
}
|
2013-10-16 23:55:26 +02:00
|
|
|
TRIQS_CATCH_AND_ABORT;
|
2013-07-19 13:30:52 +02:00
|
|
|
}
|