MPAS-JEDI
GetValues.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 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 
10 #include "mpasjedi/StateMPAS.h"
12 
13 namespace mpas {
14 
15 // -----------------------------------------------------------------------------
16 
17 GetValues::GetValues(const GeometryMPAS & geom, const ufo::Locations & locs,
18  const eckit::Configuration & config) : locs_(locs),
19  geom_(new GeometryMPAS(geom)) {
20  oops::Log::trace() << "GetValues::GetValues starting" << std::endl;
21 
22  // Create the variable change object
23  {
24  util::Timer timervc(classname(), "VarChaModel2GeoVars");
26  }
27 
28  // Call GetValues consructor
29  {
30  util::Timer timergv(classname(), "GetValues");
31 
33  }
34  oops::Log::trace() << "GetValues::GetValues done" << std::endl;
35 }
36 
37 // -----------------------------------------------------------------------------
38 
40  oops::Log::trace() << "GetValues::~GetValues starting" << std::endl;
42  oops::Log::trace() << "GetValues::~GetValues done" << std::endl;
43 }
44 
45 // -----------------------------------------------------------------------------
46 
47 // -----------------------------------------------------------------------------
48 /*! \brief fill a GeoVaLs object using a StateMPAS object
49 *
50 * \details **fillGeoVaLs()** Calls the fortran subroutine that will convert then
51 * interpolate the state variable fields to the requested GeoVaLs variables then
52 * locations, respectively.
53 *
54 * \param[in] state reference to the input StateMPAS object
55 * \param[in] t1 DateTime that is the beginning of the requested time window
56 * \param[in] t2 DateTime that is the end of the requested time window
57 * \param[out] geovals reference to the GeoVaLs object that will be populated
58 *
59 */
60 void GetValues::fillGeoVaLs(const StateMPAS & state, const util::DateTime & t1,
61  const util::DateTime & t2,
62  ufo::GeoVaLs & geovals) const {
63  oops::Log::trace() << "GetValues::fillGeoVaLs starting" << std::endl;
64 
65  if (geovals.getVars() <= state.variables()) {
66  util::Timer timergv(classname(), "fillGeoVaLs");
68  state.toFortran(), t1, t2, locs_,
69  geovals.toFortran());
70  } else {
71  // Create state with geovals variables
72  StateMPAS geovars(*geom_, geovals.getVars(), state.validTime());
73 
74  {
75  util::Timer timervc(classname(), "changeVar");
76  model2geovars_->changeVar(state, geovars);
77  }
78 
79  // Fill GeoVaLs
81  geovars.toFortran(), t1, t2, locs_,
82  geovals.toFortran());
83  }
84  oops::Log::trace() << "GetValues::fillGeoVaLs done" << std::endl;
85 }
86 
87 // -----------------------------------------------------------------------------
88 
89 void GetValues::print(std::ostream & os) const {
90  os << " GetValues for mpas-jedi" << std::endl;
91 }
92 
93 // -----------------------------------------------------------------------------
94 
95 } // namespace mpas
96 
GeometryMPAS handles geometry for MPAS model.
Definition: GeometryMPAS.h:37
virtual ~GetValues()
Definition: GetValues.cc:39
std::unique_ptr< VarChaModel2GeoVars > model2geovars_
Definition: GetValues.h:64
void fillGeoVaLs(const StateMPAS &, const util::DateTime &, const util::DateTime &, ufo::GeoVaLs &) const
fill a GeoVaLs object using a StateMPAS object
Definition: GetValues.cc:60
std::shared_ptr< const GeometryMPAS > geom_
Definition: GetValues.h:63
F90getvalues keyGetValues_
Definition: GetValues.h:61
static const std::string classname()
Definition: GetValues.h:50
ufo::Locations locs_
Definition: GetValues.h:62
GetValues(const GeometryMPAS &, const ufo::Locations &, const eckit::Configuration &)
Definition: GetValues.cc:17
void print(std::ostream &) const
Definition: GetValues.cc:89
MPAS model state.
Definition: StateMPAS.h:51
const oops::Variables & variables() const
Definition: StateMPAS.h:91
int & toFortran()
Definition: StateMPAS.h:94
const util::DateTime & validTime() const
Definition: StateMPAS.h:89
Definition: config.py:1
void mpas_getvalues_delete_f90(F90getvalues &)
void mpas_getvalues_fill_geovals_f90(const F90getvalues &, const F90geom &, const F90state &, const util::DateTime &, const util::DateTime &, const ufo::Locations &, const F90goms &)
void mpas_getvalues_create_f90(F90getvalues &, const F90geom &, const ufo::Locations &, const eckit::Configuration &)