1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 17:25:37 +01:00
Grid/lib/qcd/smearing/WilsonFlow.h

134 lines
4.5 KiB
C
Raw Normal View History

2017-03-21 02:52:05 +00:00
/*************************************************************************************
Grid physics library, www.github.com/paboyle/Grid
Source file: ./lib/qcd/modules/plaquette.h
Copyright (C) 2017
Author: Guido Cossu <guido.cossu@ed.ac.uk>
This program 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 2 of the License, or
(at your option) any later version.
This program 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 this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
See the full license in the file "LICENSE" in the top level distribution
directory
*************************************************************************************/
/* END LEGAL */
#ifndef WILSONFLOW_H
#define WILSONFLOW_H
namespace Grid {
namespace QCD {
template <class Gimpl>
class WilsonFlow: public Smear<Gimpl>{
unsigned int Nstep;
unsigned int measure_interval;
2017-03-21 02:52:05 +00:00
RealD epsilon;
2017-03-21 07:11:35 +00:00
mutable WilsonGaugeAction<Gimpl> SG;
2017-03-21 02:52:05 +00:00
2017-03-21 07:11:35 +00:00
void evolve_step(typename Gimpl::GaugeField&) const;
2017-03-21 02:52:05 +00:00
RealD tau(unsigned int t)const {return epsilon*(t+1.0); }
public:
INHERIT_GIMPL_TYPES(Gimpl)
explicit WilsonFlow(unsigned int Nstep, RealD epsilon, unsigned int interval = 1):
2017-03-21 02:52:05 +00:00
Nstep(Nstep),
epsilon(epsilon),
measure_interval(interval),
2017-03-21 07:11:35 +00:00
SG(WilsonGaugeAction<Gimpl>(3.0)) {
2017-03-21 02:52:05 +00:00
// WilsonGaugeAction with beta 3.0
assert(epsilon > 0.0);
LogMessage();
}
void LogMessage() {
std::cout << GridLogMessage
2017-03-21 07:11:35 +00:00
<< "[WilsonFlow] Nstep : " << Nstep << std::endl;
std::cout << GridLogMessage
<< "[WilsonFlow] epsilon : " << epsilon << std::endl;
std::cout << GridLogMessage
<< "[WilsonFlow] full trajectory : " << Nstep * epsilon << std::endl;
2017-03-21 02:52:05 +00:00
}
virtual void smear(GaugeField&, const GaugeField&) const;
virtual void derivative(GaugeField&, const GaugeField&, const GaugeField&) const {
2017-03-21 07:11:35 +00:00
assert(0);
// undefined for WilsonFlow
2017-03-21 02:52:05 +00:00
}
RealD energyDensityPlaquette(unsigned int step, const GaugeField& U) const;
};
2017-03-21 07:11:35 +00:00
////////////////////////////////////////////////////////////////////////////////
// Implementations
////////////////////////////////////////////////////////////////////////////////
template <class Gimpl>
2017-03-21 07:11:35 +00:00
void WilsonFlow<Gimpl>::evolve_step(typename Gimpl::GaugeField &U) const{
2017-03-21 02:52:05 +00:00
GaugeField Z(U._grid);
GaugeField tmp(U._grid);
SG.deriv(U, Z);
Z *= 0.25; // Z0 = 1/4 * F(U)
Gimpl::update_field(Z, U, -2.0*epsilon); // U = W1 = exp(ep*Z0)*W0
Z *= -17.0/8.0;
SG.deriv(U, tmp); Z += tmp; // -17/32*Z0 +Z1
Z *= 8.0/9.0; // Z = -17/36*Z0 +8/9*Z1
Gimpl::update_field(Z, U, -2.0*epsilon); // U_= W2 = exp(ep*Z)*W1
Z *= -4.0/3.0;
SG.deriv(U, tmp); Z += tmp; // 4/3*(17/36*Z0 -8/9*Z1) +Z2
Z *= 3.0/4.0; // Z = 17/36*Z0 -8/9*Z1 +3/4*Z2
Gimpl::update_field(Z, U, -2.0*epsilon); // V(t+e) = exp(ep*Z)*W2
}
template <class Gimpl>
RealD WilsonFlow<Gimpl>::energyDensityPlaquette(unsigned int step, const GaugeField& U) const {
2017-03-21 02:52:05 +00:00
RealD td = tau(step);
return 2.0 * td * td * SG.S(U)/U._grid->gSites();
2017-03-21 02:52:05 +00:00
}
template <class Gimpl>
void WilsonFlow<Gimpl>::smear(GaugeField& out, const GaugeField& in) const {
2017-03-21 02:52:05 +00:00
out = in;
for (unsigned int step = 1; step <= Nstep; step++) {
auto start = std::chrono::high_resolution_clock::now();
2017-03-21 02:52:05 +00:00
evolve_step(out);
auto end = std::chrono::high_resolution_clock::now();
std::chrono::duration<double> diff = end - start;
std::cout << "Time to evolve " << diff.count() << " s\n";
std::cout << GridLogMessage << "[WilsonFlow] Energy density (plaq) : "
<< step << " "
2017-03-21 07:11:35 +00:00
<< energyDensityPlaquette(step,out) << std::endl;
if( step % measure_interval == 0){
std::cout << GridLogMessage << "[WilsonFlow] Top. charge : "
<< step << " "
<< WilsonLoops<PeriodicGimplR>::TopologicalCharge(out) << std::endl;
}
2017-03-21 07:11:35 +00:00
}
}
2017-03-21 02:52:05 +00:00
} // namespace QCD
} // namespace Grid
#endif // WILSONFLOW_H