MPAS-JEDI
ModelMPAS.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017 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 #include <vector>
9 
10 #include "eckit/config/Configuration.h"
11 #include "eckit/exception/Exceptions.h"
12 
13 #include "oops/util/DateTime.h"
14 #include "oops/util/Logger.h"
15 
16 #include "mpasjedi/Fortran.h"
17 #include "mpasjedi/GeometryMPAS.h"
18 #include "mpasjedi/ModelBiasMPAS.h"
19 #include "mpasjedi/ModelMPAS.h"
20 #include "mpasjedi/StateMPAS.h"
21 
22 namespace mpas {
23 // -----------------------------------------------------------------------------
24 static oops::interface::ModelMaker<MPASTraits, ModelMPAS> makermodel_("MPAS");
25 // -----------------------------------------------------------------------------
27  const eckit::Configuration & model)
28  : keyModel_(0), tstep_(0), geom_(resol),
29  vars_(model, "model variables")
30 {
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;
36 }
37 // -----------------------------------------------------------------------------
40  oops::Log::trace() << "ModelMPAS destructed" << std::endl;
41 }
42 // -----------------------------------------------------------------------------
43 void ModelMPAS::initialize(StateMPAS & xx) const {
45  oops::Log::debug() << "ModelMPAS::initialize" << xx << std::endl;
46 }
47 // -----------------------------------------------------------------------------
48 void ModelMPAS::step(StateMPAS & xx, const ModelBiasMPAS &) const {
49  oops::Log::debug() << "ModelMPAS::step state in" << xx << std::endl;
51  xx.validTime() += tstep_;
52  oops::Log::debug() << "ModelMPAS::step state out" << xx << std::endl;
53 }
54 // -----------------------------------------------------------------------------
55 void ModelMPAS::finalize(StateMPAS & xx) const {
56  oops::Log::debug() << "ModelMPAS::finalize" << xx << std::endl;
57 }
58 // -----------------------------------------------------------------------------
60  int ftraj = 0;
61  oops::Log::debug() << "ModelMPAS::saveTrajectory state in" << xx << std::endl;
63  ASSERT(ftraj != 0);
64  oops::Log::debug() << "ModelMPAS::saveTrajectory state out" << xx <<std::endl;
65  return ftraj;
66 }
67 // -----------------------------------------------------------------------------
68 void ModelMPAS::print(std::ostream & os) const {
69  os << "ModelMPAS::print not implemented";
70 }
71 // -----------------------------------------------------------------------------
72 } // namespace mpas
GeometryMPAS handles geometry for MPAS model.
Definition: GeometryMPAS.h:37
F90geom & toFortran()
Definition: GeometryMPAS.h:45
Model error for the MPAS model.
Definition: ModelBiasMPAS.h:38
int saveTrajectory(StateMPAS &, const ModelBiasMPAS &) const
Definition: ModelMPAS.cc:59
F90model keyModel_
Definition: ModelMPAS.h:64
void finalize(StateMPAS &) const
Finish model integration.
Definition: ModelMPAS.cc:55
ModelMPAS(const GeometryMPAS &, const eckit::Configuration &)
Definition: ModelMPAS.cc:26
const GeometryMPAS geom_
Definition: ModelMPAS.h:66
void initialize(StateMPAS &) const
Prepare model integration.
Definition: ModelMPAS.cc:43
util::Duration tstep_
Definition: ModelMPAS.h:65
void step(StateMPAS &, const ModelBiasMPAS &) const
Model integration.
Definition: ModelMPAS.cc:48
void print(std::ostream &) const
Definition: ModelMPAS.cc:68
MPAS model state.
Definition: StateMPAS.h:51
int & toFortran()
Definition: StateMPAS.h:94
const util::DateTime & validTime() const
Definition: StateMPAS.h:89
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")