OOPS
LBHessianMatrix.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_LBHESSIANMATRIX_H_
12 #define OOPS_ASSIMILATION_LBHESSIANMATRIX_H_
13 
14 #include <memory>
15 
16 #include <boost/noncopyable.hpp>
17 
22 
23 namespace oops {
24  template<typename MODEL> class JqTermTLAD;
25 
26 /// The Hessian matrix: \f$ I + B H^T R^{-1} H \f$.
27 /*!
28  * The solvers represent matrices as objects that implement a "multiply"
29  * method. This class defines objects that apply a generalized Hessian
30  * matrix which includes all the terms of the cost function.
31  */
32 
33 template<typename MODEL, typename OBS> class LBHessianMatrix : private boost::noncopyable {
37 
38  public:
39  explicit LBHessianMatrix(const CostFct_ & j): j_(j) {}
40 
41  void multiply(const CtrlInc_ & dx, CtrlInc_ & dz) const {
42 // Setup TL terms of cost function
44  for (unsigned jj = 0; jj < j_.nterms(); ++jj) {
45  j_.jterm(jj).setPostProcTL(dx, costtl);
46  }
47 
48 // Run TLM
49  CtrlInc_ mdx(dx);
50  j_.runTLM(mdx, costtl);
51 
52 // Finalize Jb+Jq
53 
54 // Get TLM outputs, multiply by covariance inverses and setup ADJ forcing terms
56  dz.zero();
57  CtrlInc_ dw(j_.jb());
58 
59 // Jb
60  CtrlInc_ tmp(j_.jb());
61  j_.jb().finalizeTL(dx, dw);
62  tmp = dw;
63  j_.jb().initializeAD(dz, tmp, costad);
64 
65  j_.zeroAD(dw);
66 // Jo + Jc
67  for (unsigned jj = 0; jj < j_.nterms(); ++jj) {
68  std::unique_ptr<GeneralizedDepartures> ww = j_.jterm(jj).newDualVector();
69  j_.jterm(jj).computeCostTL(dx, *ww);
70  std::shared_ptr<GeneralizedDepartures> zz(j_.jterm(jj).multiplyCoInv(*ww));
71  j_.jterm(jj).computeCostAD(zz, dw, costad);
72  }
73 
74 // Run ADJ
75  j_.runADJ(dw, costad);
76 
77 // Multiply by B
78  CtrlInc_ zz(j_.jb());
79  j_.jb().multiplyB(dw, zz);
80 
81  dz += zz;
82  j_.jb().finalizeAD();
83  for (unsigned jj = 0; jj < j_.nterms(); ++jj) {
84  j_.jterm(jj).setPostProcAD();
85  }
86  }
87 
88  private:
89  CostFct_ const & j_;
90 };
91 
92 } // namespace oops
93 
94 #endif // OOPS_ASSIMILATION_LBHESSIANMATRIX_H_
void zero()
Linear algebra operators.
Cost Function.
Definition: CostFunction.h:53
const JbTotal_ & jb() const
Access .
Definition: CostFunction.h:91
virtual void runTLM(CtrlInc_ &, PostProcessorTLAD< MODEL > &, PostProcessor< Increment_ > post=PostProcessor< Increment_ >(), const bool idModel=false) const =0
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 zeroAD(CtrlInc_ &) const =0
void finalizeTL(const CtrlInc_ &, CtrlInc_ &) const
Definition: CostJbTotal.h:282
void initializeAD(CtrlInc_ &, const CtrlInc_ &, PostProcTLAD_ &) const
Initialize before starting the AD run.
Definition: CostJbTotal.h:293
void multiplyB(const CtrlInc_ &, CtrlInc_ &) const
Multiply by covariance matrix and its inverse.
Definition: CostJbTotal.h:315
void finalizeAD() const
Definition: CostJbTotal.h:305
virtual void computeCostTL(const ControlIncrement< MODEL, OBS > &, GeneralizedDepartures &) const =0
Finish cost computation after TL model integration.
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 std::unique_ptr< GeneralizedDepartures > newDualVector() const =0
Provide new dual space vector (for example a Departure for Jo).
virtual void setPostProcAD() const =0
Adjoint ot setPostProcTL (clean-up)
virtual std::unique_ptr< GeneralizedDepartures > multiplyCoInv(const GeneralizedDepartures &) const =0
virtual void setPostProcTL(const ControlIncrement< MODEL, OBS > &, PostProcTLAD_ &) const =0
Initialize and set TL post-processors to collect data during TL model integration.
The Hessian matrix: .
JqTermTLAD< MODEL > JqTermTLAD_
void multiply(const CtrlInc_ &dx, CtrlInc_ &dz) const
CostFct_ const & j_
CostFunction< MODEL, OBS > CostFct_
LBHessianMatrix(const CostFct_ &j)
ControlIncrement< MODEL, OBS > CtrlInc_
Control model post processing.
The namespace for the main oops code.