OOPS
HessianMatrix.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef OOPS_ASSIMILATION_HESSIANMATRIX_H_
12 #define OOPS_ASSIMILATION_HESSIANMATRIX_H_
13 
14 #include <memory>
15 #include <utility>
16 
17 #include <boost/noncopyable.hpp>
18 
22 #include "oops/util/PrintAdjTest.h"
23 
24 namespace oops {
25  template<typename MODEL> class JqTermTLAD;
26 
27 /// The Hessian matrix: \f$ B^{-1} + H^T R^{-1} H \f$.
28 /*!
29  * The solvers represent matrices as objects that implement a "multiply"
30  * method. This class defines objects that apply a generalized Hessian
31  * matrix which includes all the terms of the cost function.
32  */
33 
34 template<typename MODEL, typename OBS> class HessianMatrix : private boost::noncopyable {
38 
39  public:
40  explicit HessianMatrix(const CostFct_ & j, const bool test = false);
41 
42  void multiply(const CtrlInc_ & dx, CtrlInc_ & dz) const;
43 
44  private:
45  CostFct_ const & j_;
46  bool test_;
47  mutable int iter_;
48 };
49 
50 // -----------------------------------------------------------------------------
51 
52 template<typename MODEL, typename OBS>
54  : j_(j), test_(test), iter_(0)
55 {}
56 
57 // -----------------------------------------------------------------------------
58 
59 template<typename MODEL, typename OBS>
61 // Increment counter
62  iter_++;
63 
64 // Setup TL terms of cost function
66  for (unsigned jj = 0; jj < j_.nterms(); ++jj) {
67  j_.jterm(jj).setPostProcTL(dx, costtl);
68  }
69 
70 // Run TLM
71  CtrlInc_ mdx(dx);
72  j_.runTLM(mdx, costtl);
73 
74 // Finalize Jb+Jq
75 
76 // Get TLM outputs, multiply by covariance inverses and setup ADJ forcing terms
78  dz.zero();
79  CtrlInc_ dw(j_.jb());
80 
81 // Jb
82  CtrlInc_ tmp(j_.jb());
83  j_.jb().finalizeTL(dx, dw);
84  j_.jb().multiplyBinv(dw, tmp);
85  j_.jb().initializeAD(dz, tmp, costad);
86 
87  j_.zeroAD(dw);
88 
91 
92 // Jo + Jc
93  for (unsigned jj = 0; jj < j_.nterms(); ++jj) {
94  std::unique_ptr<GeneralizedDepartures> wtmp = j_.jterm(jj).newDualVector();
95  j_.jterm(jj).computeCostTL(dx, *wtmp);
96  zz.append(j_.jterm(jj).multiplyCoInv(*wtmp));
97  j_.jterm(jj).computeCostAD(zz.getv(jj), dw, costad);
98  if (test_) ww.append(std::move(wtmp));
99  }
100 
101 // Run ADJ
102  j_.runADJ(dw, costad);
103  dz += dw;
104  j_.jb().finalizeAD();
105  for (unsigned jj = 0; jj < j_.nterms(); ++jj) {
106  j_.jterm(jj).setPostProcAD();
107  }
108 
109  if (test_) {
110  // <G dx, dy>, where dy = Rinv H dx
111  double adj_tst_fwd = dot_product(ww, zz);
112  // <dx, Gt dy> , where dy = Rinv H dx
113  double adj_tst_bwd = dot_product(dx, dw);
114 
115  Log::info() << "Online adjoint test, iteration: " << iter_ << std::endl
116  << util::PrintAdjTest(adj_tst_fwd, adj_tst_bwd, "G") << std::endl;
117  }
118 }
119 
120 // -----------------------------------------------------------------------------
121 
122 } // namespace oops
123 
124 #endif // OOPS_ASSIMILATION_HESSIANMATRIX_H_
void zero()
Linear algebra operators.
Cost Function.
Definition: CostFunction.h:53
Container of dual space vectors for all terms of the cost function.
Definition: DualVector.h:35
void append(std::unique_ptr< GeneralizedDepartures > &&)
Definition: DualVector.h:110
std::shared_ptr< const GeneralizedDepartures > getv(const unsigned) const
Definition: DualVector.h:129
The Hessian matrix: .
Definition: HessianMatrix.h:34
CostFct_ const & j_
Definition: HessianMatrix.h:45
ControlIncrement< MODEL, OBS > CtrlInc_
Definition: HessianMatrix.h:35
HessianMatrix(const CostFct_ &j, const bool test=false)
Definition: HessianMatrix.h:53
void multiply(const CtrlInc_ &dx, CtrlInc_ &dz) const
Definition: HessianMatrix.h:60
JqTermTLAD< MODEL > JqTermTLAD_
Definition: HessianMatrix.h:37
CostFunction< MODEL, OBS > CostFct_
Definition: HessianMatrix.h:36
Control model post processing.
The namespace for the main oops code.