OOPS
oops/generic/PseudoModelState4D.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2021- 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_GENERIC_PSEUDOMODELSTATE4D_H_
9 #define OOPS_GENERIC_PSEUDOMODELSTATE4D_H_
10 
11 #include <string>
12 #include <vector>
13 
14 #include "oops/base/Geometry.h"
15 #include "oops/base/State.h"
16 #include "oops/base/State4D.h"
17 #include "oops/generic/ModelBase.h"
19 #include "oops/util/Duration.h"
20 #include "oops/util/Logger.h"
21 
22 namespace eckit {
23  class Configuration;
24 }
25 
26 namespace oops {
27 
28 /// Generic implementation of the pseudo model initialized with 4D State
29 /// (steps through time by stepping through states in 4D state)
30 template <typename MODEL>
31 class PseudoModelState4D : public ModelBase<MODEL> {
36 
37  public:
38  static const std::string classname() {return "oops::PseudoModelState4D";}
39 
40  /// Initialize pseudo model with \p state4d - 4D state to loop through
41  /// in the model run and \p tstep - time resolution of the model
42  PseudoModelState4D(const State4D_ & state4d,
43  const util::Duration & tstep = util::Duration(0));
44 
45  /// initialize forecast
46  void initialize(State_ &) const override;
47  /// one forecast step
48  void step(State_ &, const ModelAux_ &) const override;
49  /// finalize forecast
50  void finalize(State_ &) const override;
51 
52  /// model time step
53  const util::Duration & timeResolution() const override {return tstep_;}
54 
55  /// model variables
56  const oops::Variables & variables() const override {return vars_;}
57 
58  private:
59  void print(std::ostream &) const override;
60 
61  /// Reference to 4D state that is used in the model
62  const State4D_ & state4d_;
63  /// Model's time resolution
64  util::Duration tstep_;
65  /// Variables from 4D state
67  /// Index of the current state
68  mutable size_t currentstate_;
69 };
70 
71 // -----------------------------------------------------------------------------
72 
73 template<typename MODEL>
75  const util::Duration & tstep)
76  : state4d_(state4d), tstep_(tstep), vars_(state4d.variables()) {
77  const std::vector<util::DateTime> validTimes = state4d_.validTimes();
78  if (validTimes.size() > 1) tstep_ = validTimes[1] - validTimes[0];
79  Log::trace() << "PseudoModelState4D<MODEL>::PseudoModelState4D done" << std::endl;
80 }
81 
82 // -----------------------------------------------------------------------------
83 
84 template<typename MODEL>
86  currentstate_ = 0;
87  xx = state4d_[currentstate_];
88  Log::trace() << "PseudoModelState4D<MODEL>::initialize done" << std::endl;
89 }
90 
91 // -----------------------------------------------------------------------------
92 
93 template<typename MODEL>
94 void PseudoModelState4D<MODEL>::step(State_ & xx, const ModelAux_ & merr) const {
95  Log::trace() << "PseudoModelState4D<MODEL>:step Starting " << std::endl;
96  xx = state4d_[currentstate_++];
97  Log::trace() << "PseudoModelState4D<MODEL>::step done" << std::endl;
98 }
99 
100 // -----------------------------------------------------------------------------
101 
102 template<typename MODEL>
104  Log::trace() << "PseudoModelState4D<MODEL>::finalize done" << std::endl;
105 }
106 
107 // -----------------------------------------------------------------------------
108 
109 template<typename MODEL>
110 void PseudoModelState4D<MODEL>::print(std::ostream & os) const {
111  os << "Pseudo model stepping through 4D state with " << tstep_ << " time resolution";
112 }
113 
114 } // namespace oops
115 
116 #endif // OOPS_GENERIC_PSEUDOMODELSTATE4D_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 ...
PseudoModelState4D(const State4D_ &state4d, const util::Duration &tstep=util::Duration(0))
size_t currentstate_
Index of the current state.
void print(std::ostream &) const override
Print; used for logging.
const State4D_ & state4d_
Reference to 4D state that is used in the model.
void finalize(State_ &) const override
finalize forecast
void step(State_ &, const ModelAux_ &) const override
one forecast step
const oops::Variables & variables() const override
model variables
util::Duration tstep_
Model's time resolution.
void initialize(State_ &) const override
initialize forecast
static const std::string classname()
const util::Duration & timeResolution() const override
model time step
const oops::Variables vars_
Variables from 4D state.
Four dimensional state (vector of 3D States)
Definition: State4D.h:29
const std::vector< util::DateTime > validTimes() const
Definition: State4D.h:107
State class used in oops; subclass of interface class interface::State.
Definition: FieldL95.h:22
The namespace for the main oops code.