11 #ifndef OOPS_ASSIMILATION_RPCGMINIMIZER_H_
12 #define OOPS_ASSIMILATION_RPCGMINIMIZER_H_
24 #include "oops/util/dot_product.h"
25 #include "oops/util/formats.h"
26 #include "oops/util/Logger.h"
75 const std::string
classname()
const override {
return "RPCGMinimizer";}
81 const int &,
const double &,
Dual_ &,
const double &)
override;
86 template<
typename MODEL,
typename OBS>
89 const int & maxiter,
const double & tolerance,
90 Dual_ & dy,
const double & sigma) {
114 std::vector<Dual_> vVEC;
115 std::vector<Dual_> wVEC;
117 vVEC.reserve(maxiter+1);
118 wVEC.reserve(maxiter+1);
120 std::vector<double> vpVEC;
121 std::vector<double> wpVEC;
126 llp = dot_product(dy, rr) + sigma*rrp;
136 double dotwr = dot_product(rr, ww) + rrp*wwp;
137 double normReduction = 1.0;
138 double dotw0r0 = dotwr;
139 double dotwr_old = 0.0;
160 Log::info() << std::endl;
161 for (
int jiter = 0; jiter < maxiter; ++jiter) {
162 Log::info() <<
"RPCG Starting Iteration " << jiter+1 << std::endl;
165 double beta = dotwr/dotwr_old;
166 Log::info() <<
"RPCG beta = " << beta << std::endl;
186 double alpha = dotwr/(dot_product(qq, tt) + qqp * ttp);
187 Log::info() <<
"RPCG alpha = " << alpha << std::endl;
190 vvp = vvp + alpha*ppp;
193 rrp = rrp - alpha*qqp;
196 for (
int iiter = 0; iiter < jiter; ++iiter) {
197 double proj = dot_product(rr, wVEC[iiter]) + rrp * wpVEC[iiter];
198 rr.
axpy(-proj, vVEC[iiter]);
199 rrp -= proj*vpVEC[iiter];
205 llp = dot_product(dy, rr) + sigma * rrp;
216 dotwr = dot_product(ww, rr) + rrp * wwp;
232 normReduction = sqrt(dotwr/dotw0r0);
234 Log::info() <<
"RPCG end of iteration " << jiter+1 << std::endl;
237 if (normReduction < tolerance) {
238 Log::info() <<
"RPCG: Achieved required reduction in residual norm." << std::endl;
242 return normReduction;
Container of dual space vectors for all terms of the cost function.
void axpy(const double, const DualVector &)
void multiply(const Dual_ &dy, Dual_ &dz) const
void multiply(const VECTOR &a, VECTOR &b) const
RPCGMinimizer(const eckit::Configuration &, const CostFct_ &J)
DualVector< MODEL, OBS > Dual_
HBHtMatrix< MODEL, OBS > HBHt_
CostFunction< MODEL, OBS > CostFct_
RinvMatrix< MODEL, OBS > Rinv_
double solve(Dual_ &, double &, Dual_ &, const HBHt_ &, const Rinv_ &, const int &, const double &, Dual_ &, const double &) override
const std::string classname() const override
void multiply(const Dual_ &dx, Dual_ &dy) const
The namespace for the main oops code.
void printNormReduction(int iteration, const double &grad, const double &norm)