OOPS
|
Abstract linear forecast model used by high level algorithms and applications. More...
#include <LinearModel.h>
Public Member Functions | |
LinearModel (const Geometry_ &, const LinearModelParametersBase &) | |
LinearModel (const Geometry_ &, const eckit::Configuration &) | |
virtual | ~LinearModel () |
void | forecastTL (Increment_ &dx, const ModelAuxInc_ &, const util::Duration &len, PostProcessor< Increment_ > post=PostProcessor< Increment_ >(), PostProcessorTLAD< MODEL > cost=PostProcessorTLAD< MODEL >(), const bool idmodel=false) const |
Run the linear forecast from increment dx for len time, with post postprocessors. Does not need to be implemented in the subclasses of LinearModelBase. More... | |
void | forecastAD (Increment_ &dx, ModelAuxInc_ &, const util::Duration &len, PostProcessor< Increment_ > post=PostProcessor< Increment_ >(), PostProcessorTLAD< MODEL > cost=PostProcessorTLAD< MODEL >(), const bool idmodel=false) const |
Run the adjoint linear forecast from increment dx for len -time, with post postprocessors. Note that the clock ticks backwards. Does not need to be implemented in the subclasses of LinearModelBase. More... | |
void | setTrajectory (const State_ &, State_ &, const ModelAuxCtl_ &) |
Set the trajectory for the linear model. More... | |
const util::Duration & | timeResolution () const |
Time step for running LinearModel's forecast in oops (frequency with which the State will be updated) More... | |
const oops::Variables & | variables () const |
LinearModel variables (only used in 4DVar) More... | |
Static Public Member Functions | |
static const std::string | classname () |
Private Types | |
typedef LinearModelBase< MODEL > | LinearModelBase_ |
typedef Geometry< MODEL > | Geometry_ |
typedef Increment< MODEL > | Increment_ |
typedef ModelAuxControl< MODEL > | ModelAuxCtl_ |
typedef ModelAuxIncrement< MODEL > | ModelAuxInc_ |
typedef State< MODEL > | State_ |
Private Member Functions | |
void | initializeTL (Increment_ &) const |
Tangent linear forecast initialization, called before every run. More... | |
void | stepTL (Increment_ &, const ModelAuxInc_ &) const |
Tangent linear forecast "step", called during run; updates increment to the next time. More... | |
void | finalizeTL (Increment_ &) const |
Tangent linear forecast finalization; called after each run. More... | |
void | initializeAD (Increment_ &) const |
Adjoint forecast initialization, called before every run. More... | |
void | stepAD (Increment_ &, ModelAuxInc_ &) const |
Adjoint forecast "step", called during run; updates increment to the next time. More... | |
void | finalizeAD (Increment_ &) const |
Adjoint forecast finalization; called after each run. More... | |
void | print (std::ostream &) const |
Print, used in logging. More... | |
Private Attributes | |
std::unique_ptr< LinearModelBase_ > | linearmodel_ |
Pointer to the LinearModel implementation. More... | |
Abstract linear forecast model used by high level algorithms and applications.
Note: to see methods that need to be implemented in a generic linear forecast model implementation, see LinearModelBase class in generic/LinearModelBase.h. To see methods that need to be implemented in a MODEL-specific linear forecast model implementation, see interface::LinearModelBase class in interface/LinearModelBase.h.
Definition at line 45 of file oops/base/LinearModel.h.
|
private |
Definition at line 49 of file oops/base/LinearModel.h.
|
private |
Definition at line 50 of file oops/base/LinearModel.h.
|
private |
Definition at line 48 of file oops/base/LinearModel.h.
|
private |
Definition at line 51 of file oops/base/LinearModel.h.
|
private |
Definition at line 52 of file oops/base/LinearModel.h.
|
private |
Definition at line 53 of file oops/base/LinearModel.h.
oops::LinearModel< MODEL >::LinearModel | ( | const Geometry_ & | resol, |
const LinearModelParametersBase & | params | ||
) |
oops::LinearModel< MODEL >::LinearModel | ( | const Geometry_ & | resol, |
const eckit::Configuration & | conf | ||
) |
Definition at line 125 of file oops/base/LinearModel.h.
|
virtual |
Definition at line 133 of file oops/base/LinearModel.h.
|
inlinestatic |
|
private |
Adjoint forecast finalization; called after each run.
Definition at line 273 of file oops/base/LinearModel.h.
|
private |
Tangent linear forecast finalization; called after each run.
Definition at line 243 of file oops/base/LinearModel.h.
void oops::LinearModel< MODEL >::forecastAD | ( | Increment_ & | dx, |
ModelAuxInc_ & | maux, | ||
const util::Duration & | len, | ||
PostProcessor< Increment_ > | post = PostProcessor<Increment_>() , |
||
PostProcessorTLAD< MODEL > | cost = PostProcessorTLAD<MODEL>() , |
||
const bool | idmodel = false |
||
) | const |
Run the adjoint linear forecast from increment dx
for len
-time, with post
postprocessors. Note that the clock ticks backwards. Does not need to be implemented in the subclasses of LinearModelBase.
Definition at line 183 of file oops/base/LinearModel.h.
void oops::LinearModel< MODEL >::forecastTL | ( | Increment_ & | dx, |
const ModelAuxInc_ & | maux, | ||
const util::Duration & | len, | ||
PostProcessor< Increment_ > | post = PostProcessor<Increment_>() , |
||
PostProcessorTLAD< MODEL > | cost = PostProcessorTLAD<MODEL>() , |
||
const bool | idmodel = false |
||
) | const |
Run the linear forecast from increment dx
for len
time, with post
postprocessors. Does not need to be implemented in the subclasses of LinearModelBase.
Definition at line 143 of file oops/base/LinearModel.h.
|
private |
Adjoint forecast initialization, called before every run.
Definition at line 253 of file oops/base/LinearModel.h.
|
private |
Tangent linear forecast initialization, called before every run.
Definition at line 223 of file oops/base/LinearModel.h.
|
private |
Print, used in logging.
Definition at line 283 of file oops/base/LinearModel.h.
void oops::LinearModel< MODEL >::setTrajectory | ( | const State_ & | xx, |
State_ & | xtraj, | ||
const ModelAuxCtl_ & | maux | ||
) |
Set the trajectory for the linear model.
Definition at line 293 of file oops/base/LinearModel.h.
|
private |
Adjoint forecast "step", called during run; updates increment to the next time.
Definition at line 263 of file oops/base/LinearModel.h.
|
private |
Tangent linear forecast "step", called during run; updates increment to the next time.
Definition at line 233 of file oops/base/LinearModel.h.
|
inline |
Time step for running LinearModel's forecast in oops (frequency with which the State will be updated)
Definition at line 84 of file oops/base/LinearModel.h.
|
inline |
LinearModel variables (only used in 4DVar)
Definition at line 86 of file oops/base/LinearModel.h.
|
private |
Pointer to the LinearModel implementation.
Definition at line 106 of file oops/base/LinearModel.h.