OOPS
GetValuesQG.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2019-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 
8 #include <memory>
9 
10 #include "eckit/config/LocalConfiguration.h"
11 #include "eckit/exception/Exceptions.h"
12 
13 #include "model/GetValuesQG.h"
14 
15 #include "oops/util/Logger.h"
16 
17 #include "model/GeometryQG.h"
18 #include "model/GomQG.h"
19 #include "model/LocationsQG.h"
20 #include "model/StateQG.h"
21 
22 namespace qg {
23 
24 // -----------------------------------------------------------------------------
25 /// Constructor, destructor
26 // -----------------------------------------------------------------------------
28  const eckit::Configuration & conf)
29  : locs_(locs), conf_(conf)
30 {
31  oops::Log::trace() << "GetValuesQG constructor with config " << conf_ << std::endl;
32 }
33 
34 // -----------------------------------------------------------------------------
35 /// Get state values at observation locations
36 // -----------------------------------------------------------------------------
37 void GetValuesQG::fillGeoVaLs(const StateQG & state, const util::DateTime & t1,
38  const util::DateTime & t2, GomQG & gom) const
39 {
40  oops::Log::trace() << "GetValuesQG::fillGeoVaLs start" << std::endl;
41  // the below call is an example if one wanted a different interpolation type
42  const std::string interpType = conf_.getString("interpolation type", "default");
43 
44  if (interpType == "default" || (interpType.compare(0, 8, "default_") == 0)) {
45  qg_getvalues_interp_f90(locs_, state.fields().toFortran(), t1, t2, gom.toFortran());
46  } else {
47  std::string err_message("interpolation type option " + interpType + " not supported");
48  throw eckit::BadValue(err_message, Here());
49  }
50  oops::Log::trace() << "GetValuesQG::fillGeoVaLs done" << std::endl;
51 }
52 
53 // -----------------------------------------------------------------------------
54 void GetValuesQG::print(std::ostream & os) const {
55  os << "QG GetValues";
56 }
57 // -----------------------------------------------------------------------------
58 
59 } // namespace qg
const int & toFortran() const
Definition: FieldsQG.h:99
GeometryQG handles geometry for QG model.
Definition: GeometryQG.h:58
eckit::LocalConfiguration conf_
Definition: GetValuesQG.h:52
GetValuesQG(const GeometryQG &, const LocationsQG &locs, const eckit::Configuration &)
saves all locations locs to use during filling GeoVaLs
Definition: GetValuesQG.cc:27
void fillGeoVaLs(const StateQG &, const util::DateTime &t1, const util::DateTime &t2, GomQG &) const
fills in geovals for all observations in the timeframe (t1, t2], geovals are interpolated trilinearly...
Definition: GetValuesQG.cc:37
LocationsQG locs_
Definition: GetValuesQG.h:51
void print(std::ostream &) const
Definition: GetValuesQG.cc:54
GomQG class to handle local model values for QG model.
Definition: GomQG.h:35
const int & toFortran() const
Definition: GomQG.h:62
LocationsQG class to handle locations for QG model.
Definition: LocationsQG.h:36
QG model state.
Definition: StateQG.h:42
FieldsQG & fields()
Access to fields.
Definition: StateQG.h:69
The namespace for the qg model.
void qg_getvalues_interp_f90(const LocationsQG &, const F90flds &, const util::DateTime &, const util::DateTime &, const F90gom &)