10 #include "eckit/config/Configuration.h"
11 #include "eckit/exception/Exceptions.h"
13 #include "oops/util/DateTime.h"
14 #include "oops/util/Logger.h"
24 static oops::interface::ModelMaker<MPASTraits, ModelMPAS>
makermodel_(
"MPAS");
27 const eckit::Configuration & model)
28 : keyModel_(0), tstep_(0), geom_(resol),
29 vars_(model,
"model variables")
31 oops::Log::trace() <<
"ModelMPAS::ModelMPAS" << std::endl;
32 tstep_ = util::Duration(model.getString(
"tstep"));
33 oops::Log::trace() <<
"ModelMPAS::tstep_" <<
tstep_ << std::endl;
35 oops::Log::trace() <<
"ModelMPAS created" << std::endl;
40 oops::Log::trace() <<
"ModelMPAS destructed" << std::endl;
45 oops::Log::debug() <<
"ModelMPAS::initialize" << xx << std::endl;
49 oops::Log::debug() <<
"ModelMPAS::step state in" << xx << std::endl;
52 oops::Log::debug() <<
"ModelMPAS::step state out" << xx << std::endl;
56 oops::Log::debug() <<
"ModelMPAS::finalize" << xx << std::endl;
61 oops::Log::debug() <<
"ModelMPAS::saveTrajectory state in" << xx << std::endl;
64 oops::Log::debug() <<
"ModelMPAS::saveTrajectory state out" << xx <<std::endl;
69 os <<
"ModelMPAS::print not implemented";
GeometryMPAS handles geometry for MPAS model.
Model error for the MPAS model.
int saveTrajectory(StateMPAS &, const ModelBiasMPAS &) const
void finalize(StateMPAS &) const
Finish model integration.
ModelMPAS(const GeometryMPAS &, const eckit::Configuration &)
void initialize(StateMPAS &) const
Prepare model integration.
void step(StateMPAS &, const ModelBiasMPAS &) const
Model integration.
void print(std::ostream &) const
const util::DateTime & validTime() const
void mpas_model_setup_f90(const eckit::Configuration &, const F90geom &, F90model &)
void mpas_model_delete_f90(F90model &)
void mpas_model_prepare_integration_f90(const F90model &, const F90state &)
void mpas_model_prop_traj_f90(const F90model &, const F90state &, F90traj &)
void mpas_model_propagate_f90(const F90model &, const F90state &)
static oops::interface::ModelMaker< MPASTraits, ModelMPAS > makermodel_("MPAS")