]> git.treefish.org Git - phys/heatbath.git/commitdiff
Doing the right rho overrelaxation update now.
authorAlexander Schmidt <alex@treefish.org>
Thu, 28 Nov 2013 08:38:42 +0000 (09:38 +0100)
committerAlexander Schmidt <alex@treefish.org>
Thu, 28 Nov 2013 08:38:42 +0000 (09:38 +0100)
sim-nonmetro.hpp

index 064a7bbb8fd77e8d5d3a9289c7aa17de0a4117c1..7acab4df05de57ce0384990f30f1223038449a38 100644 (file)
@@ -53,6 +53,8 @@ void sim::updatePhi (const int& x)
   for (int nu=0; nu<4; nu++)
     V += conf[ (*nb)[x*4+nu] ].phi;
 
+  Y = sqrt(M) * conf[x].phi - V / sqrt(M);
+
 #if defined(ALGORITHM_AHBMHB) || defined(ALGORITHM_AHBMOR) || defined(ALGORITHM_AHBM0)
   Y = polar( abs(Y), gsl_rng_uniform(rangsl) * 2*M_PI );
 #elif defined(ALGORITHM_AORMHB) || defined(ALGORITHM_AORMOR) || defined(ALGORITHM_AORM0)
@@ -65,8 +67,10 @@ void sim::updatePhi (const int& x)
 #if defined(ALGORITHM_AHBMHB) || defined(ALGORITHM_AORMHB) || defined(ALGORITHM_A0MHB)
   Y = polar( magnYOfR( gsl_rng_uniform(rangsl) ), arg(Y) );
 #elif defined(ALGORITHM_AHBMOR) || defined(ALGORITHM_AORMOR) || defined(ALGORITHM_A0MOR)
-  Y = polar( magnYOfR( 1 - exp(-norm(Y)) ), arg(Y) ); //!!!!
+  Y = polar( magnYOfR( exp( -norm(Y) ) ), arg(Y) );
 #endif
+
+  conf[x].phi = Y / sqrt(M) + V / M;
 }
 
 void sim::_makeSweep() {