8 #include "eckit/config/LocalConfiguration.h"
10 #include "oops/util/abor1_cpp.h"
11 #include "oops/util/DateTime.h"
12 #include "oops/util/Logger.h"
22 static oops::interface::LinearModelMaker<MPASTraits, TlmMPAS>
makerMPASTLM_(
"MPASTLM");
25 const eckit::Configuration & tlConf)
26 : keyConfig_(0), tstep_(), resol_(resol), traj_(),
27 lrmodel_(resol_,
eckit::LocalConfiguration(tlConf,
"trajectory")),
28 linvars_(tlConf,
"tlm variables")
31 tstep_ = util::Duration(tlConf.getString(
"tstep"));
35 oops::Log::trace() <<
"TlmMPAS created" << std::endl;
43 oops::Log::trace() <<
"TlmMPAS destructed" << std::endl;
54 std::vector<double> zstat(15);
56 oops::Log::debug() <<
"TlmMPAS trajectory at time " << xx.
validTime()
58 for (
unsigned int jj = 0; jj < 5; ++jj) {
59 oops::Log::debug() <<
" Min=" << zstat[3*jj] <<
", Max=" << zstat[3*jj+1]
60 <<
", RMS=" << zstat[3*jj+2] << std::endl;
67 oops::Log::debug() <<
"TlmMPAS::initializeTL" << dx << std::endl;
72 if (itra ==
traj_.end()) {
73 oops::Log::error() <<
"TlmMPAS: trajectory not available at time "
75 ABORT(
"TlmMPAS: trajectory not available");
77 oops::Log::debug() <<
"TlmMPAS::stepTL increment in" << dx << std::endl;
80 oops::Log::debug() <<
"TlmMPAS::stepTL increment out"<< dx << std::endl;
85 oops::Log::debug() <<
"TlmMPAS::finalizeTL" << dx << std::endl;
89 oops::Log::debug() <<
"TlmMPAS::initializeAD" << dx << std::endl;
95 if (itra ==
traj_.end()) {
96 oops::Log::error() <<
"TlmMPAS: trajectory not available at time "
98 ABORT(
"TlmMPAS: trajectory not available");
100 oops::Log::debug() <<
"TlmMPAS::stepAD increment in" << dx << std::endl;
103 oops::Log::debug() <<
"TlmMPAS::stepAD increment out" << dx << std::endl;
108 oops::Log::debug() <<
"TlmMPAS::finalizeAD" << dx << std::endl;
112 os <<
"MPAS TLM Trajectory, nstep=" <<
traj_.size() << std::endl;
113 typedef std::map< util::DateTime, int >::const_iterator
trajICst;
114 if (
traj_.size() > 0) {
115 os <<
"MPAS TLM Trajectory: times are:";
117 os <<
" " << jtra->first;
GeometryMPAS handles geometry for MPAS model.
Increment Class: Difference between two states.
const util::DateTime & validTime() const
Model error for the MPAS model.
int saveTrajectory(StateMPAS &, const ModelBiasMPAS &) const
void changeResolution(const StateMPAS &xx)
Interpolate full fields.
const util::DateTime & validTime() const
void finalizeTL(IncrementMPAS &) const override
void stepAD(IncrementMPAS &, ModelBiasIncrementMPAS &) const override
TlmMPAS(const GeometryMPAS &, const eckit::Configuration &)
void stepTL(IncrementMPAS &, const ModelBiasIncrementMPAS &) const override
void initializeTL(IncrementMPAS &) const override
Run TLM and its adjoint.
std::map< util::DateTime, F90traj > traj_
void print(std::ostream &) const override
void initializeAD(IncrementMPAS &) const override
std::map< util::DateTime, int >::iterator trajIter
const GeometryMPAS resol_
void setTrajectory(const StateMPAS &, StateMPAS &, const ModelBiasMPAS &) override
Model trajectory computation.
std::map< util::DateTime, int >::const_iterator trajICst
void finalizeAD(IncrementMPAS &) const override
static oops::interface::LinearModelMaker< MPASTraits, TlmMPAS > makerMPASTLM_("MPASTLM")
void mpas_model_setup_f90(const eckit::Configuration &, const F90geom &, F90model &)
void mpas_model_delete_f90(F90model &)
void mpas_model_prepare_integration_tl_f90(const F90model &, const F90inc &)
void mpas_model_propagate_tl_f90(const F90model &, const F90inc &, const F90traj &)
void mpas_model_propagate_ad_f90(const F90model &, const F90inc &, const F90traj &)
void mpas_model_wipe_traj_f90(F90traj &)
void mpas_model_prepare_integration_ad_f90(const F90model &, const F90inc &)