9 #ifndef OOPS_BASE_MODEL_H_
10 #define OOPS_BASE_MODEL_H_
16 #include <boost/noncopyable.hpp>
22 #include "oops/util/Duration.h"
23 #include "oops/util/Logger.h"
24 #include "oops/util/Printable.h"
25 #include "oops/util/Timer.h"
42 template <
typename MODEL>
43 class Model :
public util::Printable,
44 private boost::noncopyable,
45 private util::ObjectCounter<Model<MODEL> > {
52 static const std::string
classname() {
return "oops::Model";}
56 explicit Model(std::unique_ptr<ModelBase_>);
78 void print(std::ostream &)
const;
86 template<
typename MODEL>
90 Log::trace() <<
"Model<MODEL>::Model starting" << std::endl;
92 Log::info() <<
"Model configuration is:" << params << std::endl;
94 Log::trace() <<
"Model<MODEL>::Model done" << std::endl;
99 template<
typename MODEL>
106 template<
typename MODEL>
108 : model_(std::move(model))
110 Log::trace() <<
"Model<MODEL>::Model created" << std::endl;
115 template<
typename MODEL>
117 Log::trace() <<
"Model<MODEL>::~Model starting" << std::endl;
118 util::Timer timer(classname(),
"~Model");
120 Log::trace() <<
"Model<MODEL>::~Model done" << std::endl;
125 template<
typename MODEL>
127 const util::Duration & len,
129 Log::trace() <<
"Model<MODEL>::forecast starting" << std::endl;
131 const util::DateTime end(xx.
validTime() + len);
132 Log::info() <<
"Model:forecast: forecast starting: " << xx << std::endl;
133 this->initialize(xx);
134 post.
initialize(xx, end, model_->timeResolution());
137 this->step(xx, maux);
142 Log::info() <<
"Model:forecast: forecast finished: " << xx << std::endl;
145 Log::trace() <<
"Model<MODEL>::forecast done" << std::endl;
150 template<
typename MODEL>
152 Log::trace() <<
"Model<MODEL>::initialize starting" << std::endl;
153 util::Timer timer(classname(),
"initialize");
154 model_->initialize(xx);
155 Log::trace() <<
"Model<MODEL>::initialize done" << std::endl;
160 template<
typename MODEL>
162 Log::trace() <<
"Model<MODEL>::step starting" << std::endl;
163 util::Timer timer(classname(),
"step");
164 model_->step(xx, maux);
165 Log::trace() <<
"Model<MODEL>::step done" << std::endl;
170 template<
typename MODEL>
172 Log::trace() <<
"Model<MODEL>::finalize starting" << std::endl;
173 util::Timer timer(classname(),
"finalize");
174 model_->finalize(xx);
175 Log::trace() <<
"Model<MODEL>::finalize done" << std::endl;
180 template<
typename MODEL>
182 Log::trace() <<
"Model<MODEL>::print starting" << std::endl;
183 util::Timer timer(classname(),
"print");
185 Log::trace() <<
"Model<MODEL>::print done" << std::endl;
Geometry class used in oops; subclass of interface class interface::Geometry.
Auxiliary state related to model (could be e.g. model bias), not used at the moment.
Base class for generic implementations of the forecasting models. Use this class as a base class for ...
Abstract nonlinear forecast model used by high level algorithms and applications.
void initialize(State_ &) const
Forecast initialization, called before every forecast run.
ModelAuxControl< MODEL > ModelAux_
void forecast(State_ &xx, const ModelAux_ &, const util::Duration &len, PostProcessor< State_ > &post) const
Run the forecast from state xx for len time, with post postprocessors Does not need to be implemented...
ModelBase< MODEL > ModelBase_
Geometry< MODEL > Geometry_
Model(const Geometry_ &, const ModelParametersBase &)
std::unique_ptr< ModelBase_ > model_
Pointer to the Model implementation.
const util::Duration & timeResolution() const
Time step for running Model's forecast in oops (frequency with which the State will be updated)
static const std::string classname()
void finalize(State_ &) const
Forecast finalization; called after each forecast run.
void print(std::ostream &) const
Print, used in logging.
const oops::Variables & variables() const
Model variables (only used in 4DVar)
void step(State_ &, const ModelAux_ &) const
Forecast "step", called during forecast run; updates state to the next time.
Base class for classes storing model-specific parameters.
Contains a polymorphic parameter holding an instance of a subclass of ModelParametersBase.
Control model post processing.
void process(const FLDS &xx)
void finalize(const FLDS &xx)
void initialize(const FLDS &xx, const util::DateTime &end, const util::Duration &step)
State class used in oops; subclass of interface class interface::State.
const util::DateTime validTime() const
Accessor to the time of this State.
The namespace for the main oops code.