11 #ifndef OOPS_ASSIMILATION_HTRINVHMATRIX_H_
12 #define OOPS_ASSIMILATION_HTRINVHMATRIX_H_
17 #include <boost/noncopyable.hpp>
23 #include "oops/util/dot_product.h"
24 #include "oops/util/formats.h"
25 #include "oops/util/Logger.h"
26 #include "oops/util/PrintAdjTest.h"
38 template<
typename MODEL,
typename OBS>
class HtRinvHMatrix :
private boost::noncopyable {
55 template<
typename MODEL,
typename OBS>
57 : j_(j), test_(
test), iter_(0)
62 template<
typename MODEL,
typename OBS>
69 for (
unsigned jj = 0; jj < j_.nterms(); ++jj) {
70 j_.jterm(jj).setPostProcTL(dx, costtl);
75 j_.runTLM(mdx, costtl);
84 for (
unsigned jj = 0; jj < j_.nterms(); ++jj) {
85 std::unique_ptr<GeneralizedDepartures> wtmp(j_.jterm(jj).newDualVector());
86 j_.jterm(jj).computeCostTL(dx, *wtmp);
87 zz.
append(j_.jterm(jj).multiplyCoInv(*wtmp));
88 j_.jterm(jj).computeCostAD(zz.
getv(jj), dz, costad);
89 if (test_) ww.
append(std::move(wtmp));
93 j_.runADJ(dz, costad);
95 for (
unsigned jj = 0; jj < j_.nterms(); ++jj) {
96 j_.jterm(jj).setPostProcAD();
101 double adj_tst_fwd = dot_product(ww, zz);
103 double adj_tst_bwd = dot_product(dx, dz);
105 Log::info() <<
"Online adjoint test, iteration: " << iter_ << std::endl
106 << util::PrintAdjTest(adj_tst_fwd, adj_tst_bwd,
"G") << std::endl;
Container of dual space vectors for all terms of the cost function.
void append(std::unique_ptr< GeneralizedDepartures > &&)
std::shared_ptr< const GeneralizedDepartures > getv(const unsigned) const
CostFunction< MODEL, OBS > CostFct_
HtRinvHMatrix(const CostFct_ &j, const bool test=false)
void multiply(const CtrlInc_ &dx, CtrlInc_ &dz) const
ControlIncrement< MODEL, OBS > CtrlInc_
Control model post processing.
The namespace for the main oops code.