OOPS
interface/ModelBase.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2018-2020 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #ifndef OOPS_INTERFACE_MODELBASE_H_
9 #define OOPS_INTERFACE_MODELBASE_H_
10 
11 #include <memory>
12 #include <string>
13 
14 #include <boost/make_unique.hpp>
15 
16 #include "oops/base/State.h"
17 #include "oops/generic/ModelBase.h"
20 #include "oops/util/Logger.h"
21 
22 namespace oops {
23 
24 namespace interface {
25 
26 // -----------------------------------------------------------------------------
27 
28 /// \brief Base class for MODEL-specific implementations of the Model interface.
29 /// interface::ModelBase overrides oops::ModelBase methods to pass MODEL-specific
30 /// implementations of State and ModelAuxControl to the MODEL-specific
31 /// implementation of Model.
32 ///
33 /// Note: implementations of this interface can opt to extract their settings either from
34 /// a Configuration object or from a subclass of ModelParametersBase.
35 ///
36 /// In the former case, they should provide a constructor with the following signature:
37 ///
38 /// ModelBase(const Geometry_ &, const eckit::Configuration &);
39 ///
40 /// In the latter case, the implementer should first define a subclass of ModelParametersBase
41 /// holding the settings of the model in question. The implementation of the ModelBase interface
42 /// should then typedef `Parameters_` to the name of that subclass and provide a constructor with
43 /// the following signature:
44 ///
45 /// ModelBase(const Geometry_ &, const Parameters_ &);
46 ///
47 template <typename MODEL>
48 class ModelBase : public oops::ModelBase<MODEL> {
49  typedef typename MODEL::ModelAuxControl ModelAux_;
50  typedef typename MODEL::State State_;
51 
52  public:
53  static const std::string classname() {return "oops::interface::ModelBase";}
54 
55  ModelBase() = default;
56  virtual ~ModelBase() = default;
57 
58  /// Overrides for oops::ModelBase classes, passing MODEL-specific classes to the
59  /// MODEL-specific implementations of Model
60  void initialize(oops::State<MODEL> & xx) const final
61  { this->initialize(xx.state()); }
62  void step(oops::State<MODEL> & xx, const ModelAuxControl<MODEL> & modelaux) const final
63  { this->step(xx.state(), modelaux.modelauxcontrol()); }
64  void finalize(oops::State<MODEL> & xx) const final
65  { this->finalize(xx.state()); }
66 
67  /// \brief Forecast initialization, called before every forecast run
68  virtual void initialize(State_ &) const = 0;
69  /// \brief Forecast "step", called during forecast run; updates state to the next time
70  virtual void step(State_ &, const ModelAux_ &) const = 0;
71  /// \brief Forecast finalization; called after each forecast run
72  virtual void finalize(State_ &) const = 0;
73 };
74 
75 // -----------------------------------------------------------------------------
76 
77 /// \brief A subclass of ModelFactory able to create instances of T (a concrete subclass of
78 /// interface::ModelBase<MODEL>). Passes MODEL::Geometry to the constructor of T.
79 template<class MODEL, class T>
80 class ModelMaker : public ModelFactory<MODEL> {
81  private:
82  /// Defined as T::Parameters_ if T defines a Parameters_ type; otherwise as
83  /// GenericModelParameters.
84  typedef TParameters_IfAvailableElseFallbackType_t<T, GenericModelParameters> Parameters_;
85 
86  public:
88 
89  explicit ModelMaker(const std::string & name) : ModelFactory<MODEL>(name) {}
90 
92  const ModelParametersBase & parameters) override {
93  Log::trace() << "interface::ModelBase<MODEL>::make starting" << std::endl;
94  const auto &stronglyTypedParameters = dynamic_cast<const Parameters_&>(parameters);
95  return new T(geom.geometry(),
96  parametersOrConfiguration<HasParameters_<T>::value>(stronglyTypedParameters));
97  }
98 
99  std::unique_ptr<ModelParametersBase> makeParameters() const override {
100  return boost::make_unique<Parameters_>();
101  }
102 };
103 
104 // -----------------------------------------------------------------------------
105 
106 } // namespace interface
107 
108 } // namespace oops
109 
110 #endif // OOPS_INTERFACE_MODELBASE_H_
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 ...
Base class for classes storing model-specific parameters.
State class used in oops; subclass of interface class interface::State.
const Geometry_ & geometry() const
Base class for MODEL-specific implementations of the Model interface. interface::ModelBase overrides ...
void initialize(oops::State< MODEL > &xx) const final
void finalize(oops::State< MODEL > &xx) const final
Forecast finalization; called after each forecast run.
virtual void finalize(State_ &) const =0
Forecast finalization; called after each forecast run.
static const std::string classname()
virtual void step(State_ &, const ModelAux_ &) const =0
Forecast "step", called during forecast run; updates state to the next time.
MODEL::ModelAuxControl ModelAux_
virtual void initialize(State_ &) const =0
Forecast initialization, called before every forecast run.
void step(oops::State< MODEL > &xx, const ModelAuxControl< MODEL > &modelaux) const final
Forecast "step", called during forecast run; updates state to the next time.
virtual ~ModelBase()=default
A subclass of ModelFactory able to create instances of T (a concrete subclass of interface::ModelBase...
TParameters_IfAvailableElseFallbackType_t< T, GenericModelParameters > Parameters_
oops::Geometry< MODEL > Geometry_
ModelMaker(const std::string &name)
std::unique_ptr< ModelParametersBase > makeParameters() const override
oops::ModelBase< MODEL > * make(const Geometry_ &geom, const ModelParametersBase &parameters) override
The namespace for the main oops code.