OOPS
RinvHMatrix.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_RINVHMATRIX_H_
12 #define OOPS_ASSIMILATION_RINVHMATRIX_H_
13 
14 #include <memory>
15 
16 #include <boost/noncopyable.hpp>
17 #include <boost/shared_ptr.hpp>
18 
22 #include "oops/base/Departures.h"
24 #include "oops/util/formats.h"
25 #include "oops/util/Logger.h"
26 #include "oops/util/PrintAdjTest.h"
27 
28 namespace oops {
29 
30 /// The \f$ R^{-1} H \f$ matrix.
31 /*!
32  * The solvers represent matrices as objects that implement a "multiply"
33  * method. This class defines objects that apply a generalized
34  * \f$ R^{-1} H \f$ matrix that also includes the equivalent
35  * operators for the other terms of the cost function.
36  */
37 
38 template<typename MODEL, typename OBS> class RinvHMatrix : private boost::noncopyable {
42 
43  public:
44  explicit RinvHMatrix(const CostFct_ & j);
45 
46  void multiply(const CtrlInc_ & dx, Dual_ & zz) const;
47 
48  private:
49  CostFct_ const & j_;
50 };
51 
52 // -----------------------------------------------------------------------------
53 
54 template<typename MODEL, typename OBS>
56  : j_(j)
57 {}
58 
59 // -----------------------------------------------------------------------------
60 
61 template<typename MODEL, typename OBS>
62 void RinvHMatrix<MODEL, OBS>::multiply(const CtrlInc_ & dx, Dual_ & zz) const {
63 // Setup TL terms of cost function
65  for (unsigned jj = 0; jj < j_.nterms(); ++jj) {
66  j_.jterm(jj).setPostProcTL(dx, costtl);
67  }
68 
69 // Run TLM
70  CtrlInc_ mdx(dx);
71  j_.runTLM(mdx, costtl);
72 
73 // Get TLM outputs, multiply by covariance inverses
74  for (unsigned jj = 0; jj < j_.nterms(); ++jj) {
75  std::unique_ptr<GeneralizedDepartures> wtmp(j_.jterm(jj).newDualVector());
76  j_.jterm(jj).computeCostTL(dx, *wtmp);
77  zz.append(j_.jterm(jj).multiplyCoInv(*wtmp));
78  }
79 }
80 
81 // -----------------------------------------------------------------------------
82 
83 } // namespace oops
84 
85 #endif // OOPS_ASSIMILATION_RINVHMATRIX_H_
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
Control model post processing.
The matrix.
Definition: RinvHMatrix.h:38
RinvHMatrix(const CostFct_ &j)
Definition: RinvHMatrix.h:55
void multiply(const CtrlInc_ &dx, Dual_ &zz) const
Definition: RinvHMatrix.h:62
CostFunction< MODEL, OBS > CostFct_
Definition: RinvHMatrix.h:40
DualVector< MODEL, OBS > Dual_
Definition: RinvHMatrix.h:41
ControlIncrement< MODEL, OBS > CtrlInc_
Definition: RinvHMatrix.h:39
CostFct_ const & j_
Definition: RinvHMatrix.h:49
The namespace for the main oops code.