OOPS
CostJbState.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_COSTJBSTATE_H_
12 #define OOPS_ASSIMILATION_COSTJBSTATE_H_
13 
14 #include <memory>
15 #include <boost/noncopyable.hpp>
16 
17 namespace util {
18  class Duration;
19 }
20 
21 namespace oops {
22 
23 // Forward declaration
24  template<typename MODEL> class Geometry;
25  template<typename MODEL> class Increment;
26  template<typename MODEL> class State;
27  template<typename MODEL> class JqTermTLAD;
28 
29 // -----------------------------------------------------------------------------
30 
31 /// Jb Cost Function Base Class
32 /*!
33  * The CostJbState is the base class for the Jb term corresponding to the
34  * state part of the control variable.
35  */
36 
37 template<typename MODEL> class CostJbState : private boost::noncopyable {
41 
42  public:
43 /// Constructor
45 
46 /// Destructor
47  virtual ~CostJbState() {}
48 
49 /// Get increment from state. This is usually first guess - background.
50 /// The third state argument is M(x) at the end of the window/subwindows for
51 /// computing the model error term (M(x_{i-1})-x_i) when active.
52  virtual void computeIncrement(const State_ &, const State_ &, const State_ &,
53  Increment_ &) const = 0;
54 
55 /// Linearize before the linear computations.
56  virtual void linearize(const State_ &, const Geometry_ &) = 0;
57 
58 /// Add Jb gradient.
59  virtual void addGradient(const Increment_ &, Increment_ &, Increment_ &) const = 0;
60 
61 /// Initialize Jq computations if needed.
62  virtual JqTermTLAD<MODEL> * initializeJqTLAD() const = 0;
63 
64 /// Finalize \f$ J_b\f$ after the TL run.
65  virtual JqTermTLAD<MODEL> * initializeJqTL() const = 0;
66 
67 /// Initialize \f$ J_b\f$ before the AD run.
68  virtual JqTermTLAD<MODEL> * initializeJqAD(const Increment_ &) const = 0;
69 
70 /// Multiply by \f$ B\f$ and \f$ B^{-1}\f$.
71  virtual void Bmult(const Increment_ &, Increment_ &) const = 0;
72  virtual void Bminv(const Increment_ &, Increment_ &) const = 0;
73 
74 /// Randomize
75  virtual void randomize(Increment_ &) const = 0;
76 
77 /// Create new increment (set to 0).
78  virtual Increment_ * newStateIncrement() const = 0;
79 };
80 
81 // -----------------------------------------------------------------------------
82 
83 } // namespace oops
84 
85 #endif // OOPS_ASSIMILATION_COSTJBSTATE_H_
Jb Cost Function Base Class.
Definition: CostJbState.h:37
State< MODEL > State_
Definition: CostJbState.h:40
virtual JqTermTLAD< MODEL > * initializeJqTL() const =0
Finalize after the TL run.
Geometry< MODEL > Geometry_
Definition: CostJbState.h:38
Increment< MODEL > Increment_
Definition: CostJbState.h:39
virtual Increment_ * newStateIncrement() const =0
Create new increment (set to 0).
virtual JqTermTLAD< MODEL > * initializeJqTLAD() const =0
Initialize Jq computations if needed.
virtual void linearize(const State_ &, const Geometry_ &)=0
Linearize before the linear computations.
virtual void Bminv(const Increment_ &, Increment_ &) const =0
virtual void Bmult(const Increment_ &, Increment_ &) const =0
Multiply by and .
virtual void randomize(Increment_ &) const =0
Randomize.
virtual void addGradient(const Increment_ &, Increment_ &, Increment_ &) const =0
Add Jb gradient.
virtual JqTermTLAD< MODEL > * initializeJqAD(const Increment_ &) const =0
Initialize before the AD run.
virtual ~CostJbState()
Destructor.
Definition: CostJbState.h:47
CostJbState()
Constructor.
Definition: CostJbState.h:44
virtual void computeIncrement(const State_ &, const State_ &, const State_ &, Increment_ &) const =0
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.
The namespace for the main oops code.
Definition: TLML95.h:34