9 #ifndef OOPS_BASE_LINEARMODEL_H_
10 #define OOPS_BASE_LINEARMODEL_H_
16 #include <boost/noncopyable.hpp>
24 #include "oops/util/Duration.h"
25 #include "oops/util/Logger.h"
26 #include "oops/util/Printable.h"
27 #include "oops/util/Timer.h"
44 template <
typename MODEL>
46 private boost::noncopyable,
47 private util::ObjectCounter<LinearModel<MODEL> > {
56 static const std::string
classname() {
return "oops::LinearModel";}
65 const util::Duration & len,
68 const bool idmodel =
false)
const;
74 const util::Duration & len,
77 const bool idmodel =
false)
const;
103 void print(std::ostream &)
const;
111 template<
typename MODEL>
115 Log::trace() <<
"LinearModel<MODEL>::LinearModel starting" << std::endl;
116 util::Timer timer(
classname(),
"LinearModel");
117 Log::info() <<
"LinearModel configuration is:" << params << std::endl;
119 Log::trace() <<
"LinearModel<MODEL>::LinearModel done" << std::endl;
124 template<
typename MODEL>
132 template<
typename MODEL>
134 Log::trace() <<
"LinearModel<MODEL>::~LinearModel starting" << std::endl;
135 util::Timer timer(classname(),
"~LinearModel");
136 linearmodel_.reset();
137 Log::trace() <<
"LinearModel<MODEL>::~LinearModel done" << std::endl;
142 template<
typename MODEL>
144 const util::Duration & len,
147 const bool idmodel)
const {
148 Log::trace() <<
"LinearModel<MODEL>::forecastTL starting" << std::endl;
150 const util::DateTime end(dx.
validTime() + len);
151 const util::Duration tstep(linearmodel_->timeResolution());
152 Log::info() <<
"LinearModel<MODEL>::forecastTL: Starting " << dx << std::endl;
153 this->initializeTL(dx);
166 this->stepTL(dx, maux);
173 this->finalizeTL(dx);
174 Log::info() <<
"LinearModel<MODEL>::forecastTL: Finished " << dx << std::endl;
177 Log::trace() <<
"LinearModel<MODEL>::forecastTL done" << std::endl;
182 template<
typename MODEL>
184 const util::Duration & len,
187 const bool idmodel)
const {
188 Log::trace() <<
"LinearModel<MODEL>::forecastAD starting" << std::endl;
190 const util::DateTime bgn(dx.
validTime() - len);
191 const util::Duration tstep(linearmodel_->timeResolution());
192 Log::info() <<
"LinearModel<MODEL>::forecastAD: Starting " << dx << std::endl;
193 this->initializeAD(dx);
205 this->stepAD(dx, maux);
213 this->finalizeAD(dx);
214 Log::info() <<
"LinearModel<MODEL>::forecastAD: Finished " << dx << std::endl;
217 Log::trace() <<
"LinearModel<MODEL>::forecastAD done" << std::endl;
222 template<
typename MODEL>
224 Log::trace() <<
"LinearModel<MODEL>::initializeTL starting" << std::endl;
225 util::Timer timer(classname(),
"initializeTL");
226 linearmodel_->initializeTL(dx);
227 Log::trace() <<
"LinearModel<MODEL>::initializeTL done" << std::endl;
232 template<
typename MODEL>
234 Log::trace() <<
"LinearModel<MODEL>::stepTL starting" << std::endl;
235 util::Timer timer(classname(),
"stepTL");
236 linearmodel_->stepTL(dx, maux);
237 Log::trace() <<
"LinearModel<MODEL>::stepTL done" << std::endl;
242 template<
typename MODEL>
244 Log::trace() <<
"LinearModel<MODEL>::finalizeTL starting" << std::endl;
245 util::Timer timer(classname(),
"finalizeTL");
246 linearmodel_->finalizeTL(dx);
247 Log::trace() <<
"LinearModel<MODEL>::finalizeTL done" << std::endl;
252 template<
typename MODEL>
254 Log::trace() <<
"LinearModel<MODEL>::initializeAD starting" << std::endl;
255 util::Timer timer(classname(),
"initializeAD");
256 linearmodel_->initializeAD(dx);
257 Log::trace() <<
"LinearModel<MODEL>::initializeAD done" << std::endl;
262 template<
typename MODEL>
264 Log::trace() <<
"LinearModel<MODEL>::stepAD starting" << std::endl;
265 util::Timer timer(classname(),
"stepAD");
266 linearmodel_->stepAD(dx, maux);
267 Log::trace() <<
"LinearModel<MODEL>::stepAD done" << std::endl;
272 template<
typename MODEL>
274 Log::trace() <<
"LinearModel<MODEL>::finalizeAD starting" << std::endl;
275 util::Timer timer(classname(),
"finalizeAD");
276 linearmodel_->finalizeAD(dx);
277 Log::trace() <<
"LinearModel<MODEL>::finalizeAD done" << std::endl;
282 template<
typename MODEL>
284 Log::trace() <<
"LinearModel<MODEL>::print starting" << std::endl;
285 util::Timer timer(classname(),
"print");
287 Log::trace() <<
"LinearModel<MODEL>::print done" << std::endl;
292 template<
typename MODEL>
295 Log::trace() <<
"LinearModel<MODEL>::setTrajectory starting" << std::endl;
296 util::Timer timer(classname(),
"setTrajectory");
297 linearmodel_->setTrajectory(xx, xtraj, maux);
298 Log::trace() <<
"LinearModel<MODEL>::setTrajectory done" << std::endl;
Geometry class used in oops; subclass of interface class interface::Geometry.
Increment class used in oops.
Base class for generic implementations of the linearized forecasting models. Use this class as a base...
Abstract linear forecast model used by high level algorithms and applications.
Geometry< MODEL > Geometry_
void initializeTL(Increment_ &) const
Tangent linear forecast initialization, called before every run.
static const std::string classname()
LinearModelBase< MODEL > LinearModelBase_
void stepTL(Increment_ &, const ModelAuxInc_ &) const
Tangent linear forecast "step", called during run; updates increment to the next time.
void finalizeAD(Increment_ &) const
Adjoint forecast finalization; called after each run.
const util::Duration & timeResolution() const
Time step for running LinearModel's forecast in oops (frequency with which the State will be updated)
void setTrajectory(const State_ &, State_ &, const ModelAuxCtl_ &)
Set the trajectory for the linear model.
ModelAuxControl< MODEL > ModelAuxCtl_
void finalizeTL(Increment_ &) const
Tangent linear forecast finalization; called after each run.
ModelAuxIncrement< MODEL > ModelAuxInc_
void stepAD(Increment_ &, ModelAuxInc_ &) const
Adjoint forecast "step", called during run; updates increment to the next time.
const oops::Variables & variables() const
LinearModel variables (only used in 4DVar)
std::unique_ptr< LinearModelBase_ > linearmodel_
Pointer to the LinearModel implementation.
void forecastTL(Increment_ &dx, const ModelAuxInc_ &, const util::Duration &len, PostProcessor< Increment_ > post=PostProcessor< Increment_ >(), PostProcessorTLAD< MODEL > cost=PostProcessorTLAD< MODEL >(), const bool idmodel=false) const
Run the linear forecast from increment dx for len time, with post postprocessors. Does not need to be...
void initializeAD(Increment_ &) const
Adjoint forecast initialization, called before every run.
LinearModel(const Geometry_ &, const LinearModelParametersBase &)
void forecastAD(Increment_ &dx, ModelAuxInc_ &, const util::Duration &len, PostProcessor< Increment_ > post=PostProcessor< Increment_ >(), PostProcessorTLAD< MODEL > cost=PostProcessorTLAD< MODEL >(), const bool idmodel=false) const
Run the adjoint linear forecast from increment dx for len -time, with post postprocessors....
Increment< MODEL > Increment_
void print(std::ostream &) const
Print, used in logging.
Base class for classes storing linear model-specific parameters.
Contains a polymorphic parameter holding an instance of a subclass of LinearModelParametersBase.
Auxiliary state related to model (could be e.g. model bias), not used at the moment.
Auxiliary Increment related to model, not used at the moment.
Control model post processing.
void process(const FLDS &xx)
void finalize(const FLDS &xx)
void initialize(const FLDS &xx, const util::DateTime &end, const util::Duration &step)
Control model post processing.
void finalizeAD(Increment_ &dx)
void processTL(const Increment_ &dx)
void processAD(Increment_ &dx)
void finalizeTL(const Increment_ &dx)
void initializeTL(const Increment_ &dx, const util::DateTime &end, const util::Duration &step)
Tangent linear methods.
void initializeAD(Increment_ &dx, const util::DateTime &bgn, const util::Duration &step)
Adjoint methods.
State class used in oops; subclass of interface class interface::State.
void updateTime(const util::Duration &dt)
Updates this Increment's valid time by dt (used in PseudoModel)
const util::DateTime validTime() const
Accessor to the time of this Increment.
The namespace for the main oops code.