OOPS
CostJb4D.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_COSTJB4D_H_
12 #define OOPS_ASSIMILATION_COSTJB4D_H_
13 
14 #include <memory>
15 #include <vector>
16 
17 #include "eckit/config/LocalConfiguration.h"
19 #include "oops/base/Geometry.h"
20 #include "oops/base/Increment.h"
22 #include "oops/base/State.h"
23 #include "oops/base/Variables.h"
24 #include "oops/util/DateTime.h"
25 #include "oops/util/dot_product.h"
26 #include "oops/util/Logger.h"
27 
28 namespace oops {
29  template<typename MODEL> class JqTermTLAD;
30 
31 // -----------------------------------------------------------------------------
32 
33 /// 4D Jb Cost Function
34 /*!
35  * CostJb4D encapsulates the generalized four dimensional Jb term of
36  * the 4D-Ens-Var cost function.
37  */
38 
39 template<typename MODEL> class CostJb4D : public CostJbState<MODEL> {
43 
44  public:
45 /// Construct \f$ J_b\f$.
46  CostJb4D(const eckit::Configuration &, const eckit::mpi::Comm &,
47  const Geometry_ &, const Variables &, const State_ &);
48 
49 /// Destructor
50  virtual ~CostJb4D() {}
51 
52 /// Get increment from state (usually first guess).
53  void computeIncrement(const State_ &, const State_ &, const State_ &,
54  Increment_ &) const override;
55 
56 /// Linearize before the linear computations.
57  void linearize(const State_ &, const Geometry_ &) override;
58 
59 /// Add Jb gradient.
60  void addGradient(const Increment_ &, Increment_ &, Increment_ &) const override;
61 
62 /// Empty Jq observer.
63  JqTermTLAD<MODEL> * initializeJqTLAD() const override {return 0;}
64 
65 /// Empty TL Jq observer.
66  JqTermTLAD<MODEL> * initializeJqTL() const override {return 0;}
67 
68 /// Empty AD Jq observer.
69  JqTermTLAD<MODEL> * initializeJqAD(const Increment_ &) const override {return 0;}
70 
71 /// Multiply by \f$ B\f$ and \f$ B^{-1}\f$.
72  void Bmult(const Increment_ &, Increment_ &) const override;
73  void Bminv(const Increment_ &, Increment_ &) const override;
74 
75 /// Randomize
76  void randomize(Increment_ &) const override;
77 
78 /// Create new increment (set to 0).
79  Increment_ * newStateIncrement() const override;
80 
81  private:
82  const State_ & xb_;
83  std::unique_ptr<ModelSpaceCovarianceBase<MODEL> > B_;
85  std::unique_ptr<const Geometry_> resol_;
86  util::DateTime time_;
87  const eckit::LocalConfiguration conf_;
88  const eckit::mpi::Comm & commTime_;
89 };
90 
91 // =============================================================================
92 
93 // Generalized Jb Term of Cost Function
94 // -----------------------------------------------------------------------------
95 
96 template<typename MODEL>
97 CostJb4D<MODEL>::CostJb4D(const eckit::Configuration & config, const eckit::mpi::Comm & comm,
98  const Geometry_ &, const Variables & ctlvars, const State_ & xb)
99  : xb_(xb), B_(), ctlvars_(ctlvars), resol_(), time_(xb.validTime()),
100  conf_(config, "background error"), commTime_(comm)
101 {
102  Log::trace() << "CostJb4D contructed." << std::endl;
103 }
104 
105 // -----------------------------------------------------------------------------
106 
107 template<typename MODEL>
108 void CostJb4D<MODEL>::linearize(const State_ & fg, const Geometry_ & lowres) {
109  resol_.reset(new Geometry_(lowres));
110  B_.reset(CovarianceFactory<MODEL>::create(conf_, lowres, ctlvars_, xb_, fg));
111 }
112 
113 // -----------------------------------------------------------------------------
114 
115 template<typename MODEL>
116 void CostJb4D<MODEL>::computeIncrement(const State_ & xb, const State_ & fg, const State_ &,
117  Increment_ & dx) const {
118  dx.diff(fg, xb);
119 }
120 
121 // -----------------------------------------------------------------------------
122 
123 template<typename MODEL>
125  Increment_ & gradJb) const {
126  grad += gradJb;
127 }
128 
129 // -----------------------------------------------------------------------------
130 
131 template<typename MODEL>
132 void CostJb4D<MODEL>::Bmult(const Increment_ & dxin, Increment_ & dxout) const {
133  B_->multiply(dxin, dxout);
134 }
135 
136 // -----------------------------------------------------------------------------
137 
138 template<typename MODEL>
139 void CostJb4D<MODEL>::Bminv(const Increment_ & dxin, Increment_ & dxout) const {
140  B_->inverseMultiply(dxin, dxout);
141 }
142 
143 // -----------------------------------------------------------------------------
144 
145 template<typename MODEL>
147  B_->randomize(dx);
148 }
149 
150 // -----------------------------------------------------------------------------
151 
152 template<typename MODEL>
155  Increment_ * incr = new Increment_(*resol_, ctlvars_, time_);
156  return incr;
157 }
158 
159 // -----------------------------------------------------------------------------
160 
161 } // namespace oops
162 
163 #endif // OOPS_ASSIMILATION_COSTJB4D_H_
4D Jb Cost Function
Definition: CostJb4D.h:39
virtual ~CostJb4D()
Destructor.
Definition: CostJb4D.h:50
CostJb4D(const eckit::Configuration &, const eckit::mpi::Comm &, const Geometry_ &, const Variables &, const State_ &)
Construct .
Definition: CostJb4D.h:97
const State_ & xb_
Definition: CostJb4D.h:82
util::DateTime time_
Definition: CostJb4D.h:86
JqTermTLAD< MODEL > * initializeJqTLAD() const override
Empty Jq observer.
Definition: CostJb4D.h:63
Geometry< MODEL > Geometry_
Definition: CostJb4D.h:40
JqTermTLAD< MODEL > * initializeJqAD(const Increment_ &) const override
Empty AD Jq observer.
Definition: CostJb4D.h:69
void addGradient(const Increment_ &, Increment_ &, Increment_ &) const override
Add Jb gradient.
Definition: CostJb4D.h:124
void linearize(const State_ &, const Geometry_ &) override
Linearize before the linear computations.
Definition: CostJb4D.h:108
Increment< MODEL > Increment_
Definition: CostJb4D.h:41
void Bminv(const Increment_ &, Increment_ &) const override
Definition: CostJb4D.h:139
JqTermTLAD< MODEL > * initializeJqTL() const override
Empty TL Jq observer.
Definition: CostJb4D.h:66
std::unique_ptr< const Geometry_ > resol_
Definition: CostJb4D.h:85
void computeIncrement(const State_ &, const State_ &, const State_ &, Increment_ &) const override
Get increment from state (usually first guess).
Definition: CostJb4D.h:116
std::unique_ptr< ModelSpaceCovarianceBase< MODEL > > B_
Definition: CostJb4D.h:83
const eckit::LocalConfiguration conf_
Definition: CostJb4D.h:87
const Variables ctlvars_
Definition: CostJb4D.h:84
const eckit::mpi::Comm & commTime_
Definition: CostJb4D.h:88
Increment_ * newStateIncrement() const override
Create new increment (set to 0).
Definition: CostJb4D.h:154
State< MODEL > State_
Definition: CostJb4D.h:42
void randomize(Increment_ &) const override
Randomize.
Definition: CostJb4D.h:146
void Bmult(const Increment_ &, Increment_ &) const override
Multiply by and .
Definition: CostJb4D.h:132
Jb Cost Function Base Class.
Definition: CostJbState.h:37
Geometry class used in oops; subclass of interface class interface::Geometry.
Increment class used in oops.
State class used in oops; subclass of interface class interface::State.
void diff(const State_ &state1, const State_ &state2)
Set this Increment to be difference between state1 and state2.
The namespace for the main oops code.