OOPS
CostTermBase.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_COSTTERMBASE_H_
12 #define OOPS_ASSIMILATION_COSTTERMBASE_H_
13 
14 #include <memory>
15 
18 #include "oops/base/Geometry.h"
21 #include "oops/base/State.h"
22 
23 namespace eckit {
24  class Configuration;
25 }
26 
27 namespace oops {
28 
29 // -----------------------------------------------------------------------------
30 
31 /// Base Class for Cost Function Terms
32 /*!
33  * Abstract base class for the terms of the cost function (other than Jb).
34  */
35 
36 template<typename MODEL, typename OBS> class CostTermBase {
41 
42  public:
43 /// Destructor
44  virtual ~CostTermBase() {}
45 
46 /// Initialize and set post-processors to collect data during nonlinear model integration
47  virtual void setPostProc(const ControlVariable<MODEL, OBS> &, const eckit::Configuration &,
48  PostProc_ &) = 0;
49 /// Finish computation of cost function term after nonlinear model integration
50  virtual double computeCost() = 0;
51 
52 /// Set post-processors for nonlinear model integration and save linearisation trajectory
53  virtual void setPostProcTraj(const ControlVariable<MODEL, OBS> &, const eckit::Configuration &,
54  const Geometry_ &, PostProcTLAD_ &) = 0;
55 /// Finish cost computation and trajectory handling after nonlinear model integration
56  virtual void computeCostTraj() = 0;
57 
58 /// Initialize and set TL post-processors to collect data during TL model integration
59  virtual void setPostProcTL(const ControlIncrement<MODEL, OBS> &, PostProcTLAD_ &) const = 0;
60 /// Finish cost computation after TL model integration
62  GeneralizedDepartures &) const = 0;
63 
64 /// Adjoint of computeCostTL (initialize and set post-processors adjoint to force AD model)
65 // Going by the book, computeCostAD should have the same arguments as computeCostTL (with
66 // swapped constness). PostProcTLAD is added because it is the way forcing is passed to the
67 // model (adjoint operations are called in reverse order so computeCostAD will come first).
68  virtual void computeCostAD(std::shared_ptr<const GeneralizedDepartures>,
70 /// Adjoint ot setPostProcTL (clean-up)
71  virtual void setPostProcAD() const = 0;
72 
73 /// Multiply by covariance (or weight) matrix and its inverse.
74  virtual std::unique_ptr<GeneralizedDepartures>
76  virtual std::unique_ptr<GeneralizedDepartures>
78 
79 /// Provide new dual space vector (for example a Departure for Jo).
80  virtual std::unique_ptr<GeneralizedDepartures> newDualVector() const = 0;
81 
82 /// Gradient at first guess.
83  virtual std::unique_ptr<GeneralizedDepartures> newGradientFG() const = 0;
84 
85 /// Reset trajectory.
86  virtual void resetLinearization() = 0;
87 };
88 
89 // -----------------------------------------------------------------------------
90 
91 } // namespace oops
92 
93 #endif // OOPS_ASSIMILATION_COSTTERMBASE_H_
Control variable.
Base Class for Cost Function Terms.
Definition: CostTermBase.h:36
Geometry< MODEL > Geometry_
Definition: CostTermBase.h:37
PostProcessor< State_ > PostProc_
Definition: CostTermBase.h:39
virtual std::unique_ptr< GeneralizedDepartures > newGradientFG() const =0
Gradient at first guess.
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 double computeCost()=0
Finish computation of cost function term after nonlinear model integration.
virtual ~CostTermBase()
Destructor.
Definition: CostTermBase.h:44
virtual void computeCostTraj()=0
Finish cost computation and trajectory handling after nonlinear model integration.
PostProcessorTLAD< MODEL > PostProcTLAD_
Definition: CostTermBase.h:40
State< MODEL > State_
Definition: CostTermBase.h:38
virtual void setPostProcTL(const ControlIncrement< MODEL, OBS > &, PostProcTLAD_ &) const =0
Initialize and set TL post-processors to collect data during TL model integration.
virtual void setPostProcTraj(const ControlVariable< MODEL, OBS > &, const eckit::Configuration &, const Geometry_ &, PostProcTLAD_ &)=0
Set post-processors for nonlinear model integration and save linearisation trajectory.
virtual void setPostProc(const ControlVariable< MODEL, OBS > &, const eckit::Configuration &, PostProc_ &)=0
Initialize and set post-processors to collect data during nonlinear model integration.
virtual std::unique_ptr< GeneralizedDepartures > multiplyCovar(const GeneralizedDepartures &) const =0
Multiply by covariance (or weight) matrix and its inverse.
virtual void resetLinearization()=0
Reset trajectory.
Abstract base class for quantities.
Geometry class used in oops; subclass of interface class interface::Geometry.
Control model post processing.
Definition: PostProcessor.h:30
Control model post processing.
State class used in oops; subclass of interface class interface::State.
Definition: FieldL95.h:22
The namespace for the main oops code.