8 #ifndef OOPS_GENERIC_IDENTITYLINEARMODEL_H_
9 #define OOPS_GENERIC_IDENTITYLINEARMODEL_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"
32 oops::RequiredParameter<util::Duration>
tstep{
"tstep",
this};
33 oops::RequiredParameter<Variables>
vars{
"increment variables",
this};
35 oops::OptionalParameter<std::string>
variableChange{
"variable change",
this};
39 template <
typename MODEL>
50 static const std::string
classname() {
return "oops::IdentityLinearModel";}
77 void print(std::ostream &)
const override {}
83 template<
typename MODEL>
87 Log::trace() <<
"IdentityLinearModel<MODEL>::IdentityLinearModel done" << std::endl;
92 template<
typename MODEL>
94 Log::trace() <<
"IdentityLinearModel<MODEL>::initializeTL done" << std::endl;
99 template<
typename MODEL>
101 Log::trace() <<
"IdentityLinearModel<MODEL>:stepTL Starting " << std::endl;
103 Log::trace() <<
"IdentityLinearModel<MODEL>::stepTL done" << std::endl;
108 template<
typename MODEL>
110 Log::trace() <<
"IdentityLinearModel<MODEL>::finalizeTL done" << std::endl;
115 template<
typename MODEL>
117 Log::trace() <<
"IdentityLinearModel<MODEL>::initializeAD done" << std::endl;
122 template<
typename MODEL>
124 Log::trace() <<
"IdentityLinearModel<MODEL>:stepAD Starting " << std::endl;
125 const util::Duration tstep = params_.tstep;
127 Log::trace() <<
"IdentityLinearModel<MODEL>::stepAD done" << std::endl;
132 template<
typename MODEL>
134 Log::trace() <<
"IdentityLinearModel<MODEL>::finalizeAD done" << std::endl;
139 template<
typename MODEL>
142 Log::trace() <<
"IdentityLinearModel<MODEL>::finalizeAD done" << std::endl;
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()
Geometry< MODEL > Geometry_
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.