1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-19 00:07:05 +01:00

Added ForceGradient integrator. dH dropped so seems to work. Will only

believe it is right once I have pulled a dt^4 error scaling plot out.
This commit is contained in:
Peter Boyle
2015-08-31 06:23:02 +01:00
parent 29fd004d54
commit 755dca9533
4 changed files with 110 additions and 21 deletions

View File

@ -49,9 +49,10 @@ int main (int argc, char ** argv)
FullSet.push_back(Level2);
// Create integrator
// typedef LeapFrog IntegratorAlgorithm;// change here to change the algorithm
// IntegratorParameters MDpar(12,40,1.0);
typedef MinimumNorm2<LatticeGaugeField> IntegratorAlgorithm;// change here to change the algorithm
//typedef LeapFrog<LatticeGaugeField> IntegratorAlgorithm;// change here to change the algorithm
//typedef MinimumNorm2<LatticeGaugeField> IntegratorAlgorithm;// change here to change the algorithm
typedef ForceGradient<LatticeGaugeField> IntegratorAlgorithm;// change here to change the algorithm
IntegratorParameters MDpar(10);
IntegratorAlgorithm MDynamics(&Fine,MDpar, FullSet);