OOPS
|
Base class for MODEL-specific implementations of the LinearModel interface. interface::LinearModelBase overrides oops::LinearModelBase methods to pass MODEL-specific implementations of State, Increment and ModelAuxIncrement to the MODEL-specific implementation of LinearModel. More...
#include <LinearModelBase.h>
Public Member Functions | |
LinearModelBase ()=default | |
virtual | ~LinearModelBase ()=default |
void | initializeTL (oops::Increment< MODEL > &dx) const final |
void | stepTL (oops::Increment< MODEL > &dx, const ModelAuxIncrement< MODEL > &modelaux) const final |
Tangent linear "step", called during run; updates increment to the next time. More... | |
void | finalizeTL (oops::Increment< MODEL > &dx) const final |
Tangent linear finalization; called after each run. More... | |
void | initializeAD (oops::Increment< MODEL > &dx) const final |
Tangent linear initialization, called before every run. More... | |
void | stepAD (oops::Increment< MODEL > &dx, ModelAuxIncrement< MODEL > &modelaux) const final |
Tangent linear "step", called during run; updates increment to the next time. More... | |
void | finalizeAD (oops::Increment< MODEL > &dx) const final |
Tangent linear finalization; called after each run. More... | |
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. More... | |
virtual void | initializeTL (Increment_ &) const =0 |
Tangent linear forecast initialization, called before every run. More... | |
virtual void | stepTL (Increment_ &, const ModelAuxInc_ &) const =0 |
Tangent linear forecast "step", called during run; updates Increment to the next time. More... | |
virtual void | finalizeTL (Increment_ &) const =0 |
Tangent linear forecast finalization; called after each run. More... | |
virtual void | initializeAD (Increment_ &) const =0 |
Adjoint forecast initialization, called before every run. More... | |
virtual void | stepAD (Increment_ &, ModelAuxInc_ &) const =0 |
Adjoint forecast "step", called during run; updates increment to the previous time. More... | |
virtual void | finalizeAD (Increment_ &) const =0 |
Adjoint forecast finalization; called after each run. More... | |
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 is output from the nonlinear forecast. The adjustable State is interpolated to the resolution of the linear model. More... | |
void | print (std::ostream &) const =0 |
Print, used in logging. More... | |
![]() | |
LinearModelBase ()=default | |
virtual const util::Duration & | timeResolution () const =0 |
Time step for running LinearModel's forecast in oops (frequency with which the increment will be updated) More... | |
virtual const oops::Variables & | variables () const =0 |
LinearModel variables (only used in 4DVar) More... | |
Static Public Member Functions | |
static const std::string | classname () |
![]() | |
static const std::string | classname () |
Private Types | |
typedef MODEL::Increment | Increment_ |
typedef MODEL::ModelAuxControl | ModelAuxCtl_ |
typedef MODEL::ModelAuxIncrement | ModelAuxInc_ |
typedef MODEL::State | State_ |
Base class for MODEL-specific implementations of the LinearModel interface. interface::LinearModelBase overrides oops::LinearModelBase methods to pass MODEL-specific implementations of State, Increment and ModelAuxIncrement to the MODEL-specific implementation of LinearModel.
Note: implementations of this interface can opt to extract their settings either from a Configuration object or from a subclass of LinearModelParametersBase.
In the former case, they should provide a constructor with the following signature:
LinearModelBase(const Geometry_ &, const eckit::Configuration &);
In the latter case, the implementer should first define a subclass of LinearModelParametersBase holding the settings of the linear model in question. The implementation of the LinearModelBase interface should then typedef Parameters_
to the name of that subclass and provide a constructor with the following signature:
LinearModelBase(const Geometry_ &, const Parameters_ &);
Definition at line 50 of file interface/LinearModelBase.h.
|
private |
Definition at line 51 of file interface/LinearModelBase.h.
|
private |
Definition at line 52 of file interface/LinearModelBase.h.
|
private |
Definition at line 53 of file interface/LinearModelBase.h.
|
private |
Definition at line 54 of file interface/LinearModelBase.h.
|
default |
|
virtualdefault |
Reimplemented from oops::LinearModelBase< MODEL >.
|
inlinestatic |
Definition at line 57 of file interface/LinearModelBase.h.
|
pure virtual |
Adjoint forecast finalization; called after each run.
Implements oops::LinearModelBase< MODEL >.
|
inlinefinalvirtual |
Tangent linear finalization; called after each run.
Implements oops::LinearModelBase< MODEL >.
Definition at line 75 of file interface/LinearModelBase.h.
|
pure virtual |
Tangent linear forecast finalization; called after each run.
Implements oops::LinearModelBase< MODEL >.
|
inlinefinalvirtual |
Tangent linear finalization; called after each run.
Implements oops::LinearModelBase< MODEL >.
Definition at line 68 of file interface/LinearModelBase.h.
|
pure virtual |
Adjoint forecast initialization, called before every run.
Implements oops::LinearModelBase< MODEL >.
|
inlinefinalvirtual |
Tangent linear initialization, called before every run.
Implements oops::LinearModelBase< MODEL >.
Definition at line 71 of file interface/LinearModelBase.h.
|
pure virtual |
Tangent linear forecast initialization, called before every run.
Implements oops::LinearModelBase< MODEL >.
|
inlinefinalvirtual |
Overrides for oops::LinearModelBase classes, passing MODEL-specific classes to the MODEL-specific implementations of LinearModel
Implements oops::LinearModelBase< MODEL >.
Definition at line 64 of file interface/LinearModelBase.h.
|
pure virtual |
Print, used in logging.
Implements oops::LinearModelBase< MODEL >.
Implemented in qg::TlmQG, and lorenz95::TLML95.
|
inlinefinalvirtual |
Set the trajectory for the linear model, called after each step of the forecast.
Implements oops::LinearModelBase< MODEL >.
Definition at line 78 of file interface/LinearModelBase.h.
|
pure virtual |
Set the trajectory for the linear model, called after each step of the forecast. The incoming State is output from the nonlinear forecast. The adjustable State is interpolated to the resolution of the linear model.
Implements oops::LinearModelBase< MODEL >.
|
pure virtual |
Adjoint forecast "step", called during run; updates increment to the previous time.
Implements oops::LinearModelBase< MODEL >.
|
inlinefinalvirtual |
Tangent linear "step", called during run; updates increment to the next time.
Implements oops::LinearModelBase< MODEL >.
Definition at line 73 of file interface/LinearModelBase.h.
|
pure virtual |
Tangent linear forecast "step", called during run; updates Increment to the next time.
Implements oops::LinearModelBase< MODEL >.
|
inlinefinalvirtual |
Tangent linear "step", called during run; updates increment to the next time.
Implements oops::LinearModelBase< MODEL >.
Definition at line 66 of file interface/LinearModelBase.h.