OOPS
IdentityLinearModel.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020-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_GENERIC_IDENTITYLINEARMODEL_H_
9 #define OOPS_GENERIC_IDENTITYLINEARMODEL_H_
10 
11 #include <string>
12 
13 #include "oops/base/Geometry.h"
15 #include "oops/base/State.h"
16 #include "oops/base/Variables.h"
21 #include "oops/util/Duration.h"
22 #include "oops/util/Logger.h"
23 #include "oops/util/parameters/Parameters.h"
24 #include "oops/util/parameters/RequiredParameter.h"
25 
26 namespace oops {
27 
30 
31  public:
32  oops::RequiredParameter<util::Duration> tstep{"tstep", this};
33  oops::RequiredParameter<Variables> vars{"increment variables", this};
34  // This does not really belong here but adding as a quick fix
35  oops::OptionalParameter<std::string> variableChange{"variable change", this};
36 };
37 
38 /// Generic implementation of identity linear model
39 template <typename MODEL>
40 class IdentityLinearModel : public LinearModelBase<MODEL> {
46 
47  public:
49 
50  static const std::string classname() {return "oops::IdentityLinearModel";}
51 
53 
54 /// initialize tangent linear forecast
55  void initializeTL(Increment_ &) const override;
56 /// one tangent linear forecast step
57  void stepTL(Increment_ &, const ModelAuxInc_ &) const override;
58 /// finalize tangent linear forecast
59  void finalizeTL(Increment_ &) const override;
60 
61 /// initialize tangent linear forecast
62  void initializeAD(Increment_ &) const override;
63 /// one tangent linear forecast step
64  void stepAD(Increment_ &, ModelAuxInc_ &) const override;
65 /// finalize tangent linear forecast
66  void finalizeAD(Increment_ &) const override;
67 
68 /// set trajectory
69  void setTrajectory(const State_ &, State_ &, const ModelAuxCtl_ &) override;
70 
71 /// linear model time step
72  const util::Duration & timeResolution() const override {return params_.tstep;}
73 /// linear model variables
74  const oops::Variables & variables() const override {return params_.vars;}
75 
76  private:
77  void print(std::ostream &) const override {}
79 };
80 
81 // -----------------------------------------------------------------------------
82 
83 template<typename MODEL>
85  const IdentityLinearModelParameters & params)
86  : params_(params) {
87  Log::trace() << "IdentityLinearModel<MODEL>::IdentityLinearModel done" << std::endl;
88 }
89 
90 // -----------------------------------------------------------------------------
91 
92 template<typename MODEL>
94  Log::trace() << "IdentityLinearModel<MODEL>::initializeTL done" << std::endl;
95 }
96 
97 // -----------------------------------------------------------------------------
98 
99 template<typename MODEL>
101  Log::trace() << "IdentityLinearModel<MODEL>:stepTL Starting " << std::endl;
102  dx.updateTime(params_.tstep);
103  Log::trace() << "IdentityLinearModel<MODEL>::stepTL done" << std::endl;
104 }
105 
106 // -----------------------------------------------------------------------------
107 
108 template<typename MODEL>
110  Log::trace() << "IdentityLinearModel<MODEL>::finalizeTL done" << std::endl;
111 }
112 
113 // -----------------------------------------------------------------------------
114 
115 template<typename MODEL>
117  Log::trace() << "IdentityLinearModel<MODEL>::initializeAD done" << std::endl;
118 }
119 
120 // -----------------------------------------------------------------------------
121 
122 template<typename MODEL>
124  Log::trace() << "IdentityLinearModel<MODEL>:stepAD Starting " << std::endl;
125  const util::Duration tstep = params_.tstep;
126  dx.updateTime(-tstep);
127  Log::trace() << "IdentityLinearModel<MODEL>::stepAD done" << std::endl;
128 }
129 
130 // -----------------------------------------------------------------------------
131 
132 template<typename MODEL>
134  Log::trace() << "IdentityLinearModel<MODEL>::finalizeAD done" << std::endl;
135 }
136 
137 // -----------------------------------------------------------------------------
138 
139 template<typename MODEL>
141  const ModelAuxCtl_ & maux) {
142  Log::trace() << "IdentityLinearModel<MODEL>::finalizeAD done" << std::endl;
143 }
144 
145 // -----------------------------------------------------------------------------
146 
147 } // namespace oops
148 
149 #endif // OOPS_GENERIC_IDENTITYLINEARMODEL_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
Generic implementation of identity linear model.
const IdentityLinearModelParameters params_
IdentityLinearModel(const Geometry_ &, const IdentityLinearModelParameters &)
void finalizeAD(Increment_ &) const override
finalize tangent linear forecast
void initializeTL(Increment_ &) const override
initialize tangent linear forecast
void finalizeTL(Increment_ &) const override
finalize tangent linear forecast
void stepTL(Increment_ &, const ModelAuxInc_ &) const override
one tangent linear forecast step
void initializeAD(Increment_ &) const override
initialize tangent linear forecast
static const std::string classname()
void setTrajectory(const State_ &, State_ &, const ModelAuxCtl_ &) override
set trajectory
const util::Duration & timeResolution() const override
linear model time step
void stepAD(Increment_ &, ModelAuxInc_ &) const override
one tangent linear forecast step
Increment< MODEL > Increment_
void print(std::ostream &) const override
Print; used for logging.
ModelAuxControl< MODEL > ModelAuxCtl_
IdentityLinearModelParameters Parameters_
const oops::Variables & variables() const override
linear model variables
ModelAuxIncrement< MODEL > ModelAuxInc_
oops::RequiredParameter< Variables > vars
oops::RequiredParameter< util::Duration > tstep
oops::OptionalParameter< std::string > variableChange
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.
void updateTime(const util::Duration &dt)
Updates this Increment's valid time by dt (used in PseudoModel)
The namespace for the main oops code.