2015-07-03 08:51:41 +01:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
/*! @file Integrator_base.h
|
|
|
|
* @brief Declaration of classes for the abstract Molecular Dynamics integrator
|
|
|
|
*
|
|
|
|
* @author Guido Cossu
|
|
|
|
*/
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef INTEGRATOR_INCLUDED
|
|
|
|
#define INTEGRATOR_INCLUDED
|
|
|
|
|
2015-07-04 09:47:50 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2015-07-03 08:51:41 +01:00
|
|
|
class Observer;
|
|
|
|
|
|
|
|
|
|
|
|
/*! @brief Abstract base class for Molecular Dynamics management */
|
|
|
|
|
|
|
|
namespace Grid{
|
|
|
|
namespace QCD{
|
2015-07-03 18:43:14 +01:00
|
|
|
|
|
|
|
typedef Action<LatticeLorentzColourMatrix>* ActPtr; // now force the same size as the rest of the code
|
|
|
|
typedef std::vector<ActPtr> ActionLevel;
|
|
|
|
typedef std::vector<ActionLevel> ActionSet;
|
|
|
|
typedef std::vector<Observer*> ObserverList;
|
|
|
|
|
2015-07-04 09:47:50 +01:00
|
|
|
struct IntegratorParameters{
|
|
|
|
int Nexp;
|
|
|
|
int MDsteps; // number of outer steps
|
|
|
|
RealD trajL; // trajectory length
|
|
|
|
RealD stepsize;
|
|
|
|
|
|
|
|
IntegratorParameters(int Nexp_,
|
|
|
|
int MDsteps_,
|
|
|
|
RealD trajL_):
|
|
|
|
Nexp(Nexp_),MDsteps(MDsteps_),trajL(trajL_),stepsize(trajL/MDsteps){};
|
2015-07-03 18:43:14 +01:00
|
|
|
};
|
2015-07-04 09:47:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
namespace MDutils{
|
|
|
|
void generate_momenta(LatticeLorentzColourMatrix&,GridParallelRNG&);
|
|
|
|
void generate_momenta_su3(LatticeLorentzColourMatrix&,GridParallelRNG&);
|
|
|
|
}
|
|
|
|
|
2015-07-03 18:43:14 +01:00
|
|
|
|
|
|
|
template< class IntegratorPolicy >
|
2015-07-03 08:51:41 +01:00
|
|
|
class Integrator{
|
|
|
|
private:
|
2015-07-04 09:47:50 +01:00
|
|
|
IntegratorParameters Params;
|
2015-07-03 18:43:14 +01:00
|
|
|
const ActionSet as;
|
2015-07-04 09:47:50 +01:00
|
|
|
const std::vector<int> Nrel; //relative step size per level
|
|
|
|
std::unique_ptr<LatticeLorentzColourMatrix> P;
|
2015-07-06 08:17:32 +01:00
|
|
|
GridParallelRNG pRNG;
|
|
|
|
//ObserverList observers; // not yet
|
|
|
|
|
|
|
|
IntegratorPolicy TheIntegrator;
|
2015-07-04 09:47:50 +01:00
|
|
|
|
2015-07-06 08:17:32 +01:00
|
|
|
void register_observers();
|
|
|
|
void notify_observers();
|
2015-07-04 09:47:50 +01:00
|
|
|
|
|
|
|
void update_P(LatticeLorentzColourMatrix&U, int level,double ep){
|
|
|
|
for(int a=0; a<as[level].size(); ++a){
|
|
|
|
LatticeLorentzColourMatrix force(U._grid);
|
|
|
|
as[level].at(a)->deriv(U,force);
|
|
|
|
*P -= force*ep;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void update_U(LatticeLorentzColourMatrix&U, double ep){
|
2015-07-06 04:58:49 +01:00
|
|
|
//rewrite exponential to deal automatically with the lorentz index?
|
2015-07-04 09:47:50 +01:00
|
|
|
LatticeColourMatrix Umu(U._grid);
|
|
|
|
LatticeColourMatrix Pmu(U._grid);
|
|
|
|
for (int mu = 0; mu < Nd; mu++){
|
|
|
|
Umu=peekLorentz(U, mu);
|
|
|
|
Pmu=peekLorentz(*P, mu);
|
2015-07-06 08:17:32 +01:00
|
|
|
Umu = expMat(Pmu, ep, Params.Nexp)*Umu;
|
2015-07-05 18:24:58 +01:00
|
|
|
pokeLorentz(U, Umu, mu);
|
2015-07-04 09:47:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2015-07-03 08:51:41 +01:00
|
|
|
|
2015-07-06 08:17:32 +01:00
|
|
|
|
2015-07-03 08:51:41 +01:00
|
|
|
|
2015-07-04 09:47:50 +01:00
|
|
|
friend void IntegratorPolicy::step (LatticeLorentzColourMatrix& U,
|
|
|
|
int level, std::vector<int>& clock,
|
2015-07-06 08:17:32 +01:00
|
|
|
Integrator<IntegratorPolicy>* Integ);
|
2015-07-03 18:43:14 +01:00
|
|
|
public:
|
2015-07-06 08:17:32 +01:00
|
|
|
Integrator(GridBase* grid, IntegratorParameters Par,
|
2015-07-04 09:47:50 +01:00
|
|
|
ActionSet& Aset, std::vector<int> Nrel_):
|
2015-07-06 08:17:32 +01:00
|
|
|
Params(Par),as(Aset),Nrel(Nrel_),P(new LatticeLorentzColourMatrix(grid)),pRNG(grid){
|
2015-07-04 09:47:50 +01:00
|
|
|
assert(as.size() == Nrel.size());
|
2015-07-06 08:17:32 +01:00
|
|
|
pRNG.SeedRandomDevice();
|
2015-07-04 09:47:50 +01:00
|
|
|
};
|
|
|
|
|
2015-07-03 18:43:14 +01:00
|
|
|
~Integrator(){}
|
2015-07-04 09:47:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
//Initialization of momenta and actions
|
2015-07-06 08:17:32 +01:00
|
|
|
void init(LatticeLorentzColourMatrix& U){
|
2015-07-04 09:47:50 +01:00
|
|
|
std::cout<< "Integrator init\n";
|
2015-07-06 08:17:32 +01:00
|
|
|
|
2015-07-04 09:47:50 +01:00
|
|
|
MDutils::generate_momenta(*P,pRNG);
|
|
|
|
for(int level=0; level< as.size(); ++level){
|
|
|
|
for(int actionID=0; actionID<as.at(level).size(); ++actionID){
|
|
|
|
as[level].at(actionID)->init(U, pRNG);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-06 08:17:32 +01:00
|
|
|
// Calculate action
|
2015-07-04 09:47:50 +01:00
|
|
|
RealD S(LatticeLorentzColourMatrix& U){
|
2015-07-05 18:24:58 +01:00
|
|
|
LatticeComplex Hloc(U._grid);
|
|
|
|
Hloc = zero;
|
2015-07-04 09:47:50 +01:00
|
|
|
// Momenta
|
2015-07-05 18:24:58 +01:00
|
|
|
for (int mu=0; mu <Nd; mu++){
|
|
|
|
LatticeColourMatrix Pmu = peekLorentz(*P, mu);
|
2015-07-06 04:58:49 +01:00
|
|
|
Hloc -= trace(Pmu*Pmu);
|
2015-07-05 18:24:58 +01:00
|
|
|
}
|
2015-07-04 09:47:50 +01:00
|
|
|
Complex Hsum = sum(Hloc);
|
|
|
|
|
|
|
|
RealD H = Hsum.real();
|
|
|
|
|
2015-07-05 18:24:58 +01:00
|
|
|
std::cout << "H_p = "<< H << "\n";
|
|
|
|
|
2015-07-04 09:47:50 +01:00
|
|
|
// Actions
|
|
|
|
for(int level=0; level<as.size(); ++level)
|
|
|
|
for(int actionID=0; actionID<as.at(level).size(); ++actionID)
|
|
|
|
H += as[level].at(actionID)->S(U);
|
|
|
|
|
|
|
|
return H;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void integrate(LatticeLorentzColourMatrix& U, int level){
|
|
|
|
std::vector<int> clock;
|
|
|
|
clock.resize(as.size(),0);
|
|
|
|
for(int step=0; step< Params.MDsteps; ++step) // MD step
|
2015-07-05 18:24:58 +01:00
|
|
|
TheIntegrator.step(U,0,clock, (this));
|
2015-07-04 09:47:50 +01:00
|
|
|
}
|
2015-07-03 08:51:41 +01:00
|
|
|
};
|
|
|
|
|
2015-07-04 09:47:50 +01:00
|
|
|
|
|
|
|
class MinimumNorm2{
|
|
|
|
const double lambda = 0.1931833275037836;
|
|
|
|
public:
|
2015-07-06 08:17:32 +01:00
|
|
|
void step (LatticeLorentzColourMatrix& U,
|
|
|
|
int level, std::vector<int>& clock,
|
|
|
|
Integrator<MinimumNorm2>* Integ){
|
|
|
|
// level : current level
|
|
|
|
// fl : final level
|
|
|
|
// eps : current step size
|
|
|
|
|
|
|
|
int fl = Integ->as.size() -1;
|
|
|
|
double eps = Integ->Params.stepsize;
|
|
|
|
|
|
|
|
for(int l=0; l<=level; ++l) eps/= 2.0*Integ->Nrel[l];
|
|
|
|
|
|
|
|
int fin = Integ->Nrel[0];
|
|
|
|
for(int l=1; l<=level; ++l) fin*= 2.0*Integ->Nrel[l];
|
|
|
|
fin = 3*Integ->Params.MDsteps*fin -1;
|
|
|
|
|
|
|
|
|
|
|
|
for(int e=0; e<Integ->Nrel[level]; ++e){
|
|
|
|
|
|
|
|
if(clock[level] == 0){ // initial half step
|
|
|
|
Integ->update_P(U,level,lambda*eps);
|
|
|
|
++clock[level];
|
|
|
|
for(int l=0; l<level;++l) std::cout<<" ";
|
|
|
|
std::cout<<"P "<< clock[level] <<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(level == fl){ // lowest level
|
|
|
|
Integ->update_U(U,0.5*eps);
|
|
|
|
|
|
|
|
for(int l=0; l<level;++l) std::cout<<" ";
|
|
|
|
std::cout<<"U "<< (clock[level]+1) <<std::endl;
|
|
|
|
}else{ // recursive function call
|
|
|
|
step(U,level+1,clock, Integ);
|
|
|
|
}
|
|
|
|
|
|
|
|
Integ->update_P(U,level,(1.0-2.0*lambda)*eps);
|
|
|
|
++clock[level];
|
|
|
|
for(int l=0; l<level;++l) std::cout<<" ";
|
|
|
|
std::cout<<"P "<< (clock[level]) <<std::endl;
|
|
|
|
|
|
|
|
if(level == fl){ // lowest level
|
|
|
|
Integ->update_U(U,0.5*eps);
|
|
|
|
|
|
|
|
for(int l=0; l<level;++l) std::cout<<" ";
|
|
|
|
std::cout<<"U "<< (clock[level]+1) <<std::endl;
|
|
|
|
}else{ // recursive function call
|
|
|
|
step(U,level+1,clock, Integ);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(clock[level] == fin){ // final half step
|
|
|
|
Integ->update_P(U,level,lambda*eps);
|
|
|
|
|
|
|
|
++clock[level];
|
|
|
|
for(int l=0; l<level;++l) std::cout<<" ";
|
|
|
|
std::cout<<"P "<< clock[level] <<std::endl;
|
|
|
|
}else{ // bulk step
|
|
|
|
Integ->update_P(U,level,lambda*2.0*eps);
|
|
|
|
|
|
|
|
clock[level]+=2;
|
|
|
|
for(int l=0; l<level;++l) std::cout<<" ";
|
|
|
|
std::cout<<"P "<< clock[level] <<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2015-07-04 09:47:50 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class LeapFrog{
|
|
|
|
public:
|
|
|
|
void step (LatticeLorentzColourMatrix& U,
|
|
|
|
int level, std::vector<int>& clock,
|
|
|
|
Integrator<LeapFrog>* Integ){
|
|
|
|
// fl : final level
|
|
|
|
// eps : current step size
|
|
|
|
|
|
|
|
int fl = Integ->as.size() -1;
|
|
|
|
double eps = Integ->Params.stepsize;
|
|
|
|
|
|
|
|
// Get current level step size
|
|
|
|
for(int l=0; l<=level; ++l) eps/= Integ->Nrel[l];
|
|
|
|
|
|
|
|
int fin = 1;
|
|
|
|
for(int l=0; l<=level; ++l) fin*= Integ->Nrel[l];
|
|
|
|
fin = 2*Integ->Params.MDsteps*fin - 1;
|
|
|
|
|
|
|
|
for(int e=0; e<Integ->Nrel[level]; ++e){
|
|
|
|
|
|
|
|
if(clock[level] == 0){ // initial half step
|
2015-07-06 08:17:32 +01:00
|
|
|
Integ->update_P(U, level,eps/2.0);
|
2015-07-04 09:47:50 +01:00
|
|
|
++clock[level];
|
|
|
|
for(int l=0; l<level;++l) std::cout<<" ";
|
|
|
|
std::cout<<"P "<< 0.5*clock[level] <<std::endl;
|
|
|
|
}
|
|
|
|
if(level == fl){ // lowest level
|
|
|
|
Integ->update_U(U, eps);
|
|
|
|
for(int l=0; l<level;++l) std::cout<<" ";
|
|
|
|
std::cout<<"U "<< 0.5*(clock[level]+1) <<std::endl;
|
|
|
|
}else{ // recursive function call
|
|
|
|
step(U, level+1,clock, Integ);
|
|
|
|
}
|
|
|
|
if(clock[level] == fin){ // final half step
|
2015-07-06 08:17:32 +01:00
|
|
|
Integ->update_P(U, level,eps/2.0);
|
2015-07-04 09:47:50 +01:00
|
|
|
|
|
|
|
++clock[level];
|
|
|
|
for(int l=0; l<level;++l) std::cout<<" ";
|
|
|
|
std::cout<<"P "<< 0.5*clock[level] <<std::endl;
|
|
|
|
}else{ // bulk step
|
|
|
|
Integ->update_P(U, level,eps);
|
|
|
|
|
|
|
|
clock[level]+=2;
|
|
|
|
for(int l=0; l<level;++l) std::cout<<" ";
|
|
|
|
std::cout<<"P "<< 0.5*clock[level] <<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-07-03 08:51:41 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif//INTEGRATOR_INCLUDED
|