OOPS
HMatrix.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_HMATRIX_H_
12 #define OOPS_ASSIMILATION_HMATRIX_H_
13 
14 #include <memory>
15 #include <utility>
16 
17 #include <boost/noncopyable.hpp>
18 
22 #include "oops/base/Increment.h"
25 
26 namespace oops {
27 
28 /// The \f$ H \f$ matrix.
29 /*!
30  * The solvers represent matrices as objects that implement a "multiply"
31  * method. This class defines objects that apply a generalized \f$ H \f$
32  * matrix which includes \f$ H \f$ itself and the equivalent operators
33  * for the other terms of the cost function.
34  */
35 
36 template<typename MODEL, typename OBS> class HMatrix : private boost::noncopyable {
40 
41  public:
42  explicit HMatrix(const CostFct_ & j): j_(j) {}
43 
44  void multiply(CtrlInc_ & dx, DualVector<MODEL, OBS> & dy, const bool idModel = false) const {
47 
48  for (unsigned jj = 0; jj < j_.nterms(); ++jj) {
49  j_.jterm(jj).setPostProcTL(dx, cost);
50  }
51 
52  j_.runTLM(dx, cost, post, idModel);
53 
54  dy.clear();
55  for (unsigned jj = 0; jj < j_.nterms(); ++jj) {
56  std::unique_ptr<GeneralizedDepartures> dytmp(j_.jterm(jj).newDualVector());
57  j_.jterm(jj).computeCostTL(dx, *dytmp);
58  dy.append(std::move(dytmp));
59  }
60  }
61 
62  private:
63  CostFct_ const & j_;
64 };
65 
66 } // namespace oops
67 
68 #endif // OOPS_ASSIMILATION_HMATRIX_H_
Cost Function.
Definition: CostFunction.h:53
virtual void runTLM(CtrlInc_ &, PostProcessorTLAD< MODEL > &, PostProcessor< Increment_ > post=PostProcessor< Increment_ >(), const bool idModel=false) const =0
size_t nterms() const
Definition: CostFunction.h:94
const CostBase_ & jterm(const size_t ii) const
Access terms of the cost function other than .
Definition: CostFunction.h:93
virtual void computeCostTL(const ControlIncrement< MODEL, OBS > &, GeneralizedDepartures &) const =0
Finish cost computation after TL model integration.
virtual std::unique_ptr< GeneralizedDepartures > newDualVector() const =0
Provide new dual space vector (for example a Departure for Jo).
virtual void setPostProcTL(const ControlIncrement< MODEL, OBS > &, PostProcTLAD_ &) const =0
Initialize and set TL post-processors to collect data during TL model integration.
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
The matrix.
Definition: HMatrix.h:36
CostFunction< MODEL, OBS > CostFct_
Definition: HMatrix.h:39
Increment< MODEL > Increment_
Definition: HMatrix.h:37
HMatrix(const CostFct_ &j)
Definition: HMatrix.h:42
CostFct_ const & j_
Definition: HMatrix.h:63
ControlIncrement< MODEL, OBS > CtrlInc_
Definition: HMatrix.h:38
void multiply(CtrlInc_ &dx, DualVector< MODEL, OBS > &dy, const bool idModel=false) const
Definition: HMatrix.h:44
Increment class used in oops.
Control model post processing.
Definition: PostProcessor.h:30
Control model post processing.
The namespace for the main oops code.