8 #ifndef OOPS_GENERIC_PSEUDOMODELSTATE4D_H_
9 #define OOPS_GENERIC_PSEUDOMODELSTATE4D_H_
19 #include "oops/util/Duration.h"
20 #include "oops/util/Logger.h"
30 template <
typename MODEL>
38 static const std::string
classname() {
return "oops::PseudoModelState4D";}
43 const util::Duration & tstep = util::Duration(0));
59 void print(std::ostream &)
const override;
73 template<
typename MODEL>
75 const util::Duration & tstep)
76 : state4d_(state4d), tstep_(tstep), vars_(state4d.variables()) {
78 if (validTimes.size() > 1)
tstep_ = validTimes[1] - validTimes[0];
79 Log::trace() <<
"PseudoModelState4D<MODEL>::PseudoModelState4D done" << std::endl;
84 template<
typename MODEL>
87 xx = state4d_[currentstate_];
88 Log::trace() <<
"PseudoModelState4D<MODEL>::initialize done" << std::endl;
93 template<
typename MODEL>
95 Log::trace() <<
"PseudoModelState4D<MODEL>:step Starting " << std::endl;
96 xx = state4d_[currentstate_++];
97 Log::trace() <<
"PseudoModelState4D<MODEL>::step done" << std::endl;
102 template<
typename MODEL>
104 Log::trace() <<
"PseudoModelState4D<MODEL>::finalize done" << std::endl;
109 template<
typename MODEL>
111 os <<
"Pseudo model stepping through 4D state with " << tstep_ <<
" time resolution";
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
ModelAuxControl< MODEL > ModelAux_
State4D< MODEL > State4D_
Geometry< MODEL > Geometry_
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)
const std::vector< util::DateTime > validTimes() const
State class used in oops; subclass of interface class interface::State.
The namespace for the main oops code.