From 7cfe432ee2dac71797aeaa1590e64690576ee694 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Tue, 30 Jun 2015 15:02:27 +0100 Subject: [PATCH] VPGCR updates --- .../PrecGeneralisedConjugateResidual.h | 31 +++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/lib/algorithms/iterative/PrecGeneralisedConjugateResidual.h b/lib/algorithms/iterative/PrecGeneralisedConjugateResidual.h index 77b7df49..148359a8 100644 --- a/lib/algorithms/iterative/PrecGeneralisedConjugateResidual.h +++ b/lib/algorithms/iterative/PrecGeneralisedConjugateResidual.h @@ -5,6 +5,8 @@ //VPGCR Abe and Zhang, 2005. //INTERNATIONAL JOURNAL OF NUMERICAL ANALYSIS AND MODELING //Computing and Information Volume 2, Number 2, Pages 147-161 +//NB. Likely not original reference since they are focussing on a preconditioner variant. +// but VPGCR was nicely written up in their paper /////////////////////////////////////////////////////////////////////////////////////////////////////// namespace Grid { @@ -19,7 +21,7 @@ namespace Grid { int steps; LinearFunction &Preconditioner; - PrecGeneralisedConjugateResidual(RealD tol,Integer maxit,LinearFunction &Prec,int _mmax,int _nstep) : + PrecGeneralisedConjugateResidual(RealD tol,Integer maxit,LinearFunction &Prec,int _mmax,int _nstep) : Tolerance(tol), MaxIterations(maxit), Preconditioner(Prec), @@ -71,6 +73,8 @@ namespace Grid { Field r(grid); Field z(grid); + Field tmp(grid); + Field ttmp(grid); Field Az(grid); //////////////////////////////// @@ -91,6 +95,24 @@ namespace Grid { // p = Prec(r) ///////////////////// Preconditioner(r,z); + + std::cout<< " Preconditioner in " << norm2(r)<