11 #ifndef LORENZ95_MODELL95_H_
12 #define LORENZ95_MODELL95_H_
17 #include "eckit/config/Configuration.h"
20 #include "oops/util/DateTime.h"
21 #include "oops/util/Duration.h"
22 #include "oops/util/ObjectCounter.h"
23 #include "oops/util/parameters/Parameters.h"
24 #include "oops/util/parameters/RequiredParameter.h"
25 #include "oops/util/Printable.h"
33 class ModelTrajectory;
42 oops::RequiredParameter<util::Duration>
tstep{
"tstep",
this};
43 oops::RequiredParameter<double>
f{
"f",
this};
51 private util::ObjectCounter<ModelL95> {
55 static const std::string
classname() {
return "lorenz95::ModelL95";}
71 void print(std::ostream &)
const;
Class to represent fields for the L95 model.
Model error for Lorenz 95 model.
Lorenz 95 model configuration and computations.
const util::Duration tstep_
const oops::Variables vars_
void finalize(StateL95 &) const
static const std::string classname()
void initialize(StateL95 &) const
const oops::Variables & variables() const
Model variables (only used in 4DVar)
void print(std::ostream &) const
Print; used for logging.
const util::Duration & timeResolution() const
Time step for running Model's forecast in oops (frequency with which the State will be updated)
void tendencies(const FieldL95 &, const double &, FieldL95 &) const
void step(StateL95 &, const ModelBias &) const
ModelL95Parameters Parameters_
void stepRK(FieldL95 &, const ModelBias &, ModelTrajectory &) const
ModelL95(const Resolution &, const ModelL95Parameters &)
oops::RequiredParameter< util::Duration > tstep
oops::RequiredParameter< double > f
Base class for classes storing model-specific parameters.
Base class for MODEL-specific implementations of the Model interface. interface::ModelBase overrides ...
The namespace for the L95 model.