8 #ifndef OOPS_GENERIC_MODELBASE_H_
9 #define OOPS_GENERIC_MODELBASE_H_
16 #include <boost/make_unique.hpp>
17 #include <boost/noncopyable.hpp>
22 #include "oops/util/AssociativeContainers.h"
23 #include "oops/util/Duration.h"
24 #include "oops/util/Logger.h"
25 #include "oops/util/parameters/ConfigurationParameter.h"
26 #include "oops/util/parameters/HasParameters_.h"
27 #include "oops/util/parameters/OptionalParameter.h"
28 #include "oops/util/parameters/Parameters.h"
29 #include "oops/util/parameters/ParametersOrConfiguration.h"
30 #include "oops/util/parameters/RequiredPolymorphicParameter.h"
31 #include "oops/util/Printable.h"
59 template <
typename MODEL>
61 private boost::noncopyable {
66 static const std::string
classname() {
return "oops::ModelBase";}
86 virtual void print(std::ostream &)
const = 0;
91 template <
typename MODEL>
107 OptionalParameter<std::string>
name{
"name",
this};
131 template <
typename MODEL>
138 RequiredPolymorphicParameter<ModelParametersBase, ModelFactory<MODEL>>
145 template <
typename MODEL>
160 static std::unique_ptr<ModelParametersBase>
createParameters(
const std::string &name);
178 static std::map < std::string, ModelFactory<MODEL> * > &
getMakers() {
179 static std::map < std::string, ModelFactory<MODEL> * > makers_;
188 template<
class MODEL,
class T>
193 typedef TParameters_IfAvailableElseFallbackType_t<T, GenericModelParameters>
Parameters_;
202 Log::trace() <<
"ModelBase<MODEL>::make starting" << std::endl;
203 const auto &stronglyTypedParameters =
dynamic_cast<const Parameters_&
>(parameters);
205 parametersOrConfiguration<HasParameters_<T>::value>(stronglyTypedParameters));
209 return boost::make_unique<Parameters_>();
215 template <
typename MODEL>
217 if (getMakers().find(name) != getMakers().end()) {
218 throw std::runtime_error(name +
" already registered in the model factory.");
220 getMakers()[name] =
this;
225 template <
typename MODEL>
228 Log::trace() <<
"ModelFactory<MODEL>::create starting" << std::endl;
229 const std::string &
id = parameters.
name.value().value();
230 typename std::map<std::string, ModelFactory<MODEL>*>::iterator
231 jerr = getMakers().find(
id);
232 if (jerr == getMakers().end()) {
233 throw std::runtime_error(
id +
" does not exist in the model factory");
236 Log::trace() <<
"ModelFactory<MODEL>::create done" << std::endl;
242 template <
typename MODEL>
244 const std::string &name) {
245 Log::trace() <<
"ModelFactory<MODEL>::createParameters starting" << std::endl;
246 typename std::map<std::string, ModelFactory<MODEL>*>::iterator it = getMakers().find(name);
247 if (it == getMakers().end()) {
248 throw std::runtime_error(name +
" does not exist in the model factory");
250 return it->second->makeParameters();
A subclass of ModelParametersBase storing the values of all options in a single Configuration object.
ConfigurationParameter config
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 ...
virtual void initialize(State_ &) const =0
Forecast initialization, called before every forecast run.
virtual const util::Duration & timeResolution() const =0
Time step for running Model's forecast in oops (frequency with which the State will be updated)
virtual const oops::Variables & variables() const =0
Model variables (only used in 4DVar)
virtual void step(State_ &, const ModelAux_ &) const =0
Forecast "step", called during forecast run; updates state to the next time.
ModelAuxControl< MODEL > ModelAux_
static const std::string classname()
virtual void finalize(State_ &) const =0
Forecast finalization; called after each forecast run.
virtual void print(std::ostream &) const =0
Print; used for logging.
virtual ~ModelBase()=default
virtual ModelBase< MODEL > * make(const Geometry_ &, const ModelParametersBase &)=0
ModelFactory(const std::string &name)
Register a maker able to create models of type name.
virtual ~ModelFactory()=default
virtual std::unique_ptr< ModelParametersBase > makeParameters() const =0
static std::vector< std::string > getMakerNames()
Return the names of all models that can be created by one of the registered makers.
static std::unique_ptr< ModelParametersBase > createParameters(const std::string &name)
Create and return an instance of the subclass of ModelParametersBase storing parameters of models of ...
static std::map< std::string, ModelFactory< MODEL > * > & getMakers()
static ModelBase< MODEL > * create(const Geometry_ &, const ModelParametersBase ¶meters)
Create and return a new model.
Geometry< MODEL > Geometry_
A subclass of ModelFactory able to create instances of T (a concrete subclass of ModelBase<MODEL>)....
ModelBase< MODEL > * make(const Geometry_ &geom, const ModelParametersBase ¶meters) override
Geometry< MODEL > Geometry_
std::unique_ptr< ModelParametersBase > makeParameters() const override
TParameters_IfAvailableElseFallbackType_t< T, GenericModelParameters > Parameters_
ModelMaker(const std::string &name)
Base class for classes storing model-specific parameters.
OptionalParameter< std::string > name
Model name.
Contains a polymorphic parameter holding an instance of a subclass of ModelParametersBase.
RequiredPolymorphicParameter< ModelParametersBase, ModelFactory< MODEL > > modelParameters
State class used in oops; subclass of interface class interface::State.
The namespace for the main oops code.