OOPS
oops/base/Model.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  * (C) Copyright 2018-2020 UCAR.
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 
9 #ifndef OOPS_BASE_MODEL_H_
10 #define OOPS_BASE_MODEL_H_
11 
12 #include <memory>
13 #include <string>
14 #include <utility>
15 
16 #include <boost/noncopyable.hpp>
17 
18 #include "oops/base/Geometry.h"
19 #include "oops/base/State.h"
20 #include "oops/generic/ModelBase.h"
22 #include "oops/util/Duration.h"
23 #include "oops/util/Logger.h"
24 #include "oops/util/Printable.h"
25 #include "oops/util/Timer.h"
26 
27 namespace eckit {
28  class Configuration;
29 }
30 
31 namespace oops {
32 
33 /// \brief Abstract nonlinear forecast model used by high level algorithms and applications.
34 ///
35 /// Note: to see methods that need to be implemented in a generic forecast model
36 /// implementation, see ModelBase class in generic/ModelBase.h. To see methods that need
37 /// to be implemented in a MODEL-specific forecast model implementation, see
38 /// interface::ModelBase class in interface/ModelBase.h.
39 ///
40 // -----------------------------------------------------------------------------
41 
42 template <typename MODEL>
43 class Model : public util::Printable,
44  private boost::noncopyable,
45  private util::ObjectCounter<Model<MODEL> > {
50 
51  public:
52  static const std::string classname() {return "oops::Model";}
53 
54  Model(const Geometry_ &, const ModelParametersBase &);
55  Model(const Geometry_ &, const eckit::Configuration &);
56  explicit Model(std::unique_ptr<ModelBase_>);
57  virtual ~Model();
58 
59  /// \brief Run the forecast from state \p xx for \p len time, with \p post postprocessors
60  /// Does not need to be implemented in the models
61  void forecast(State_ & xx, const ModelAux_ &,
62  const util::Duration & len, PostProcessor<State_> & post) const;
63 
64  /// \brief Time step for running Model's forecast in oops (frequency with which the
65  /// State will be updated)
66  const util::Duration & timeResolution() const {return model_->timeResolution();}
67  /// \brief Model variables (only used in 4DVar)
68  const oops::Variables & variables() const {return model_->variables();}
69 
70  private:
71  /// \brief Forecast initialization, called before every forecast run
72  void initialize(State_ &) const;
73  /// \brief Forecast "step", called during forecast run; updates state to the next time
74  void step(State_ &, const ModelAux_ &) const;
75  /// \brief Forecast finalization; called after each forecast run
76  void finalize(State_ &) const;
77  /// \brief Print, used in logging
78  void print(std::ostream &) const;
79 
80  /// \brief Pointer to the Model implementation
81  std::unique_ptr<ModelBase_> model_;
82 };
83 
84 // =============================================================================
85 
86 template<typename MODEL>
87 Model<MODEL>::Model(const Geometry_ & resol, const ModelParametersBase & params)
88  : model_()
89 {
90  Log::trace() << "Model<MODEL>::Model starting" << std::endl;
91  util::Timer timer(classname(), "Model");
92  Log::info() << "Model configuration is:" << params << std::endl;
93  model_.reset(ModelFactory<MODEL>::create(resol, params));
94  Log::trace() << "Model<MODEL>::Model done" << std::endl;
95 }
96 
97 // -----------------------------------------------------------------------------
98 
99 template<typename MODEL>
100 Model<MODEL>::Model(const Geometry_ & resol, const eckit::Configuration & conf)
101  : Model(resol, validateAndDeserialize<ModelParametersWrapper<MODEL>>(conf).modelParameters)
102 {}
103 
104 // -----------------------------------------------------------------------------
105 
106 template<typename MODEL>
107 Model<MODEL>::Model(std::unique_ptr<ModelBase_> model)
108  : model_(std::move(model))
109 {
110  Log::trace() << "Model<MODEL>::Model created" << std::endl;
111 }
112 
113 // -----------------------------------------------------------------------------
114 
115 template<typename MODEL>
117  Log::trace() << "Model<MODEL>::~Model starting" << std::endl;
118  util::Timer timer(classname(), "~Model");
119  model_.reset();
120  Log::trace() << "Model<MODEL>::~Model done" << std::endl;
121 }
122 
123 // -----------------------------------------------------------------------------
124 
125 template<typename MODEL>
126 void Model<MODEL>::forecast(State_ & xx, const ModelAux_ & maux,
127  const util::Duration & len,
128  PostProcessor<State_> & post) const {
129  Log::trace() << "Model<MODEL>::forecast starting" << std::endl;
130 
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());
135  post.process(xx);
136  while (xx.validTime() < end) {
137  this->step(xx, maux);
138  post.process(xx);
139  }
140  post.finalize(xx);
141  this->finalize(xx);
142  Log::info() << "Model:forecast: forecast finished: " << xx << std::endl;
143  ASSERT(xx.validTime() == end);
144 
145  Log::trace() << "Model<MODEL>::forecast done" << std::endl;
146 }
147 
148 // -----------------------------------------------------------------------------
149 
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;
156 }
157 
158 // -----------------------------------------------------------------------------
159 
160 template<typename MODEL>
161 void Model<MODEL>::step(State_ & xx, const ModelAux_ & maux) const {
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;
166 }
167 
168 // -----------------------------------------------------------------------------
169 
170 template<typename MODEL>
171 void Model<MODEL>::finalize(State_ & xx) const {
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;
176 }
177 
178 // -----------------------------------------------------------------------------
179 
180 template<typename MODEL>
181 void Model<MODEL>::print(std::ostream & os) const {
182  Log::trace() << "Model<MODEL>::print starting" << std::endl;
183  util::Timer timer(classname(), "print");
184  os << *model_;
185  Log::trace() << "Model<MODEL>::print done" << std::endl;
186 }
187 
188 // -----------------------------------------------------------------------------
189 
190 } // namespace oops
191 
192 #endif // OOPS_BASE_MODEL_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 ...
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 &)
State< MODEL > State_
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)
virtual ~Model()
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.
Definition: PostProcessor.h:30
void process(const FLDS &xx)
Definition: PostProcessor.h:56
void finalize(const FLDS &xx)
Definition: PostProcessor.h:62
void initialize(const FLDS &xx, const util::DateTime &end, const util::Duration &step)
Definition: PostProcessor.h:49
State class used in oops; subclass of interface class interface::State.
const util::DateTime validTime() const
Accessor to the time of this State.
Definition: FieldL95.h:22
The namespace for the main oops code.