8 #ifndef OOPS_INTERFACE_LINEARMODELBASE_H_
9 #define OOPS_INTERFACE_LINEARMODELBASE_H_
14 #include <boost/make_unique.hpp>
22 #include "oops/util/Logger.h"
49 template <
typename MODEL>
54 typedef typename MODEL::State
State_;
57 static const std::string
classname() {
return "oops::interface::LinearModelBase";}
67 { this->
stepTL(dx.increment(), modelaux.modelauxincrement()); }
74 { this->
stepAD(dx.increment(), modelaux.modelauxincrement()); }
80 { this->
setTrajectory(xx.state(), xxtraj.state(), modelaux.modelauxcontrol()); }
102 void print(std::ostream &)
const = 0;
109 template<
class MODEL,
class T>
114 typedef TParameters_IfAvailableElseFallbackType_t<T, GenericLinearModelParameters>
Parameters_;
123 Log::trace() <<
"interface::LinearModelBase<MODEL>::make starting" << std::endl;
124 const auto &stronglyTypedParameters =
dynamic_cast<const Parameters_&
>(parameters);
126 parametersOrConfiguration<HasParameters_<T>::value>(stronglyTypedParameters));
130 return boost::make_unique<Parameters_>();
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.
MODEL::ModelAuxIncrement ModelAuxInc_
virtual void finalizeTL(Increment_ &) const =0
Tangent linear forecast finalization; called after each run.
void initializeTL(oops::Increment< MODEL > &dx) const final
MODEL::ModelAuxControl ModelAuxCtl_
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.
MODEL::Increment Increment_
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.
LinearModelBase()=default
virtual ~LinearModelBase()=default
static const std::string classname()
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_
LinearModelMaker(const std::string &name)
std::unique_ptr< LinearModelParametersBase > makeParameters() const override
oops::Geometry< MODEL > Geometry_
oops::LinearModelBase< MODEL > * make(const Geometry_ &geom, const LinearModelParametersBase ¶meters) override
The namespace for the main oops code.