OOPS
HtMatrix.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_HTMATRIX_H_
12 #define OOPS_ASSIMILATION_HTMATRIX_H_
13 
14 #include <boost/noncopyable.hpp>
15 
19 #include "oops/base/Increment.h"
22 
23 namespace oops {
24 
25 /// The \f$ H^T \f$ matrix.
26 /*!
27  * The solvers represent matrices as objects that implement a "multiply"
28  * method. This class defines objects that apply a generalized \f$ H^T \f$
29  * matrix which includes \f$ H^T \f$ itself and the equivalent operators
30  * for the other terms of the cost function.
31  */
32 
33 template<typename MODEL, typename OBS> class HtMatrix : private boost::noncopyable {
36 
37  public:
38  explicit HtMatrix(const CostFct_ & j): j_(j) {}
39 
41  const bool idModel = false) const {
44  // Don't zero out dx here
45  for (unsigned jj = 0; jj < j_.nterms(); ++jj) {
46  j_.jterm(jj).computeCostAD(dy.getv(jj), dx, cost);
47  }
48  j_.runADJ(dx, cost, post, idModel);
49  for (unsigned jj = 0; jj < j_.nterms(); ++jj) {
50  j_.jterm(jj).setPostProcAD();
51  }
52  }
53 
54  private:
55  CostFct_ const & j_;
56 };
57 
58 } // namespace oops
59 
60 #endif // OOPS_ASSIMILATION_HTMATRIX_H_
Cost Function.
Definition: CostFunction.h:53
virtual void runADJ(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 computeCostAD(std::shared_ptr< const GeneralizedDepartures >, ControlIncrement< MODEL, OBS > &, PostProcTLAD_ &) const =0
Adjoint of computeCostTL (initialize and set post-processors adjoint to force AD model)
virtual void setPostProcAD() const =0
Adjoint ot setPostProcTL (clean-up)
Container of dual space vectors for all terms of the cost function.
Definition: DualVector.h:35
std::shared_ptr< const GeneralizedDepartures > getv(const unsigned) const
Definition: DualVector.h:129
The matrix.
Definition: HtMatrix.h:33
HtMatrix(const CostFct_ &j)
Definition: HtMatrix.h:38
CostFct_ const & j_
Definition: HtMatrix.h:55
CostFunction< MODEL, OBS > CostFct_
Definition: HtMatrix.h:34
Increment< MODEL > Increment_
Definition: HtMatrix.h:35
void multiply(const DualVector< MODEL, OBS > &dy, ControlIncrement< MODEL, OBS > &dx, const bool idModel=false) const
Definition: HtMatrix.h:40
Increment class used in oops.
Control model post processing.
Definition: PostProcessor.h:30
Control model post processing.
The namespace for the main oops code.