OOPS
interface/LinearModelBase.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2018-2021 UCAR
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  */
7 
8 #ifndef OOPS_INTERFACE_LINEARMODELBASE_H_
9 #define OOPS_INTERFACE_LINEARMODELBASE_H_
10 
11 #include <memory>
12 #include <string>
13 
14 #include <boost/make_unique.hpp>
15 
21 #include "oops/interface/State.h"
22 #include "oops/util/Logger.h"
23 
24 namespace oops {
25 
26 namespace interface {
27 
28 // -----------------------------------------------------------------------------
29 
30 /// \brief Base class for MODEL-specific implementations of the LinearModel interface.
31 /// interface::LinearModelBase overrides oops::LinearModelBase methods to pass MODEL-specific
32 /// implementations of State, Increment and ModelAuxIncrement to the MODEL-specific implementation
33 /// of LinearModel.
34 ///
35 /// Note: implementations of this interface can opt to extract their settings either from
36 /// a Configuration object or from a subclass of LinearModelParametersBase.
37 ///
38 /// In the former case, they should provide a constructor with the following signature:
39 ///
40 /// LinearModelBase(const Geometry_ &, const eckit::Configuration &);
41 ///
42 /// In the latter case, the implementer should first define a subclass of LinearModelParametersBase
43 /// holding the settings of the linear model in question. The implementation of the LinearModelBase
44 /// interface should then typedef `Parameters_` to the name of that subclass and provide a
45 /// constructor with the following signature:
46 ///
47 /// LinearModelBase(const Geometry_ &, const Parameters_ &);
48 ///
49 template <typename MODEL>
50 class LinearModelBase : public oops::LinearModelBase<MODEL> {
51  typedef typename MODEL::Increment Increment_;
52  typedef typename MODEL::ModelAuxControl ModelAuxCtl_;
53  typedef typename MODEL::ModelAuxIncrement ModelAuxInc_;
54  typedef typename MODEL::State State_;
55 
56  public:
57  static const std::string classname() {return "oops::interface::LinearModelBase";}
58 
59  LinearModelBase() = default;
60  virtual ~LinearModelBase() = default;
61 
62  /// Overrides for oops::LinearModelBase classes, passing MODEL-specific classes to the
63  /// MODEL-specific implementations of LinearModel
64  void initializeTL(oops::Increment<MODEL> & dx) const final
65  { this->initializeTL(dx.increment()); }
66  void stepTL(oops::Increment<MODEL> & dx, const ModelAuxIncrement<MODEL> & modelaux) const final
67  { this->stepTL(dx.increment(), modelaux.modelauxincrement()); }
68  void finalizeTL(oops::Increment<MODEL> & dx) const final
69  { this->finalizeTL(dx.increment()); }
70 
71  void initializeAD(oops::Increment<MODEL> & dx) const final
72  { this->initializeAD(dx.increment()); }
73  void stepAD(oops::Increment<MODEL> & dx, ModelAuxIncrement<MODEL> & modelaux) const final
74  { this->stepAD(dx.increment(), modelaux.modelauxincrement()); }
75  void finalizeAD(oops::Increment<MODEL> & dx) const final
76  { this->finalizeAD(dx.increment()); }
77 
79  const ModelAuxControl<MODEL> & modelaux) final
80  { this->setTrajectory(xx.state(), xxtraj.state(), modelaux.modelauxcontrol()); }
81 
82  /// \brief Tangent linear forecast initialization, called before every run
83  virtual void initializeTL(Increment_ &) const = 0;
84  /// \brief Tangent linear forecast "step", called during run; updates Increment to the next time
85  virtual void stepTL(Increment_ &, const ModelAuxInc_ &) const = 0;
86  /// \brief Tangent linear forecast finalization; called after each run
87  virtual void finalizeTL(Increment_ &) const = 0;
88 
89  /// \brief Adjoint forecast initialization, called before every run
90  virtual void initializeAD(Increment_ &) const = 0;
91  /// \brief Adjoint forecast "step", called during run; updates increment to the previous time
92  virtual void stepAD(Increment_ &, ModelAuxInc_ &) const = 0;
93  /// \brief Adjoint forecast finalization; called after each run
94  virtual void finalizeAD(Increment_ &) const = 0;
95 
96  /// \brief Set the trajectory for the linear model, called after each step of the forecast.
97  /// The incoming State is output from the nonlinear forecast. The adjustable State is
98  /// interpolated to the resolution of the linear model.
99  virtual void setTrajectory(const State_ &, State_ &, const ModelAuxCtl_ &) = 0;
100 
101  /// \brief Print, used in logging
102  void print(std::ostream &) const = 0;
103 };
104 
105 // -----------------------------------------------------------------------------
106 
107 /// \brief A subclass of LinearModelFactory able to create instances of T (a concrete subclass of
108 /// interface::LinearModelBase<MODEL>). Passes MODEL::Geometry to the constructor of T.
109 template<class MODEL, class T>
110 class LinearModelMaker : public LinearModelFactory<MODEL> {
111  private:
112  /// Defined as T::Parameters_ if T defines a Parameters_ type; otherwise as
113  /// GenericLinearModelParameters.
114  typedef TParameters_IfAvailableElseFallbackType_t<T, GenericLinearModelParameters> Parameters_;
115 
116  public:
118 
119  explicit LinearModelMaker(const std::string & name) : LinearModelFactory<MODEL>(name) {}
120 
122  const LinearModelParametersBase & parameters) override {
123  Log::trace() << "interface::LinearModelBase<MODEL>::make starting" << std::endl;
124  const auto &stronglyTypedParameters = dynamic_cast<const Parameters_&>(parameters);
125  return new T(geom.geometry(),
126  parametersOrConfiguration<HasParameters_<T>::value>(stronglyTypedParameters));
127  }
128 
129  std::unique_ptr<LinearModelParametersBase> makeParameters() const override {
130  return boost::make_unique<Parameters_>();
131  }
132 };
133 
134 // -----------------------------------------------------------------------------
135 
136 } // namespace interface
137 
138 } // namespace oops
139 
140 #endif // OOPS_INTERFACE_LINEARMODELBASE_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
Increment class used in oops.
Base class for generic implementations of the linearized forecasting models. Use this class as a base...
Base class for classes storing linear model-specific parameters.
Auxiliary state related to model (could be e.g. model bias), not used at the moment.
Auxiliary Increment related to model, not used at the moment.
State class used in oops; subclass of interface class interface::State.
const Geometry_ & geometry() const
Base class for MODEL-specific implementations of the LinearModel interface. interface::LinearModelBas...
void stepAD(oops::Increment< MODEL > &dx, ModelAuxIncrement< MODEL > &modelaux) const final
Tangent linear "step", called during run; updates increment to the next time.
virtual void setTrajectory(const State_ &, State_ &, const ModelAuxCtl_ &)=0
Set the trajectory for the linear model, called after each step of the forecast. The incoming State i...
void setTrajectory(const oops::State< MODEL > &xx, oops::State< MODEL > &xxtraj, const ModelAuxControl< MODEL > &modelaux) final
Set the trajectory for the linear model, called after each step of the forecast.
virtual void finalizeTL(Increment_ &) const =0
Tangent linear forecast finalization; called after each run.
void initializeTL(oops::Increment< MODEL > &dx) const final
void initializeAD(oops::Increment< MODEL > &dx) const final
Tangent linear initialization, called before every run.
virtual void stepAD(Increment_ &, ModelAuxInc_ &) const =0
Adjoint forecast "step", called during run; updates increment to the previous time.
void print(std::ostream &) const =0
Print, used in logging.
void finalizeAD(oops::Increment< MODEL > &dx) const final
Tangent linear finalization; called after each run.
void stepTL(oops::Increment< MODEL > &dx, const ModelAuxIncrement< MODEL > &modelaux) const final
Tangent linear "step", called during run; updates increment to the next time.
virtual void stepTL(Increment_ &, const ModelAuxInc_ &) const =0
Tangent linear forecast "step", called during run; updates Increment to the next time.
virtual void initializeAD(Increment_ &) const =0
Adjoint forecast initialization, called before every run.
virtual void finalizeAD(Increment_ &) const =0
Adjoint forecast finalization; called after each run.
virtual ~LinearModelBase()=default
virtual void initializeTL(Increment_ &) const =0
Tangent linear forecast initialization, called before every run.
void finalizeTL(oops::Increment< MODEL > &dx) const final
Tangent linear finalization; called after each run.
A subclass of LinearModelFactory able to create instances of T (a concrete subclass of interface::Lin...
TParameters_IfAvailableElseFallbackType_t< T, GenericLinearModelParameters > Parameters_
std::unique_ptr< LinearModelParametersBase > makeParameters() const override
oops::LinearModelBase< MODEL > * make(const Geometry_ &geom, const LinearModelParametersBase &parameters) override
The namespace for the main oops code.