-void sim::updatePhi_r (const int& x, const complex<double>& V)
-{
- const double r = exp( - M * norm(conf[x].phi)
- - 1./M * norm(V)
- + 2 * real( conf[x].phi * conj(V) ) );
-
- conf[x].phi = sqrt(std::log( 1./(1-r) )) / sqrt(M)
- * polar( 1.0, arg(conf[x].phi) )
- + V / M;
-}
-
-void sim::updatePhi_angle_relax (const int& x, const complex<double>& V)
-{
- const double V2diff = pow(real(V), 2) - pow(imag(V), 2);
- const double Vprod = real(V)*imag(V);
- conf[x].phi = complex<double> ( + real(conf[x].phi) * V2diff + 2 * imag(conf[x].phi) * Vprod,
- - imag(conf[x].phi) * V2diff + 2 * real(conf[x].phi) * Vprod ) / norm(V);
-}
-
-void sim::updatePhi_angle_rand (const int& x, const complex<double>& V)
-{
- conf[x].phi = polar( abs(conf[x].phi), gsl_rng_uniform(rangsl) * 2*M_PI );
-}
-