OOPS
src/oops/interface/AnalyticInit.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020-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 #ifndef OOPS_INTERFACE_ANALYTICINIT_H_
9 #define OOPS_INTERFACE_ANALYTICINIT_H_
10 
11 #include <memory>
12 #include <string>
13 
14 #include "eckit/config/Configuration.h"
15 #include "oops/interface/GeoVaLs.h"
17 #include "oops/util/ObjectCounter.h"
18 #include "oops/util/Timer.h"
19 
20 namespace oops {
21 
22 /// \brief Initializes GeoVaLs with analytic formula
23 template <typename OBS>
24 class AnalyticInit : private util::ObjectCounter<AnalyticInit<OBS> > {
25  typedef typename OBS::AnalyticInit AnalyticInit_;
28 
29  public:
30  static const std::string classname() {return "oops::AnalyticInit";}
31 
32  /// constructor (parameters from config)
33  explicit AnalyticInit(const eckit::Configuration &);
34 
35  /// destructor and copy/move constructors/assignments
36  ~AnalyticInit();
37  AnalyticInit(const AnalyticInit &) = delete;
38  AnalyticInit(AnalyticInit &&) = delete;
39  AnalyticInit& operator=(const AnalyticInit &) = delete;
41 
42  /// Fill GeoVaLs with values computed by analytic function
43  void fillGeoVaLs(const Locations_ &, GeoVaLs_ &) const;
44 
45  private:
46  std::unique_ptr<AnalyticInit_> analytic_;
47 };
48 
49 // =============================================================================
50 
51 template<typename OBS>
52 AnalyticInit<OBS>::AnalyticInit(const eckit::Configuration & conf) {
53  Log::trace() << "AnalyticInit<OBS>::AnalyticInit starting" << std::endl;
54  util::Timer timer(classname(), "AnalyticInit");
55  analytic_.reset(new AnalyticInit_(conf));
56  Log::trace() << "AnalyticInit<OBS>::AnalyticInit done" << std::endl;
57 }
58 
59 // -----------------------------------------------------------------------------
60 
61 template<typename OBS>
63  Log::trace() << "AnalyticInit<OBS>::~AnalyticInit starting" << std::endl;
64  util::Timer timer(classname(), "~AnalyticInit");
65  analytic_.reset();
66  Log::trace() << "AnalyticInit<OBS>::~AnalyticInit done" << std::endl;
67 }
68 
69 // -----------------------------------------------------------------------------
70 /*! \brief GeoVaLs Analytic Initialization
71  *
72  * \details **AnalyticInit()** was introduced in May, 2018 (initially as a GeoVaLs
73  * constructor) for use with the interpolation test. The interpolation test
74  * requires an initialization of a GeoVaLs object based on the same analytic
75  * formulae used for the State initialization (see test::TestStateInterpolation()
76  * for further information). This in turn requires information about the
77  * vertical profile in addition to the latitude and longitude positional
78  * information in the Locations object. Currently, this information
79  * about the vertical profile is obtained from an existing GeoVaLs object
80  * (passed as *gvals*) that represents the output of the State::interpolate()
81  * method. The state.state generate section of the configuration file is
82  * also passed to this constructor to provide further information required
83  * for the analytic initialization.
84  *
85  * \date May, 2018: created as a constructor (M. Miesch, JCSDA)
86  * \date June, 2018: moved to a method (M. Miesch, JCSDA)
87  *
88  * \sa test::TestStateInterpolation()
89  */
90 template<typename OBS>
91 void AnalyticInit<OBS>::fillGeoVaLs(const Locations_ & locs, GeoVaLs_ & gvals) const {
92  Log::trace() << "AnalyticInit<OBS>::fillGeoVaLs starting" << std::endl;
93  util::Timer timer(classname(), "fillGeoVaLs");
94  analytic_->fillGeoVaLs(locs.locations(), gvals.geovals());
95  Log::trace() << "AnalyticInit<OBS>::fillGeoVaLs done" << std::endl;
96 }
97 
98 // -----------------------------------------------------------------------------
99 
100 } // namespace oops
101 
102 #endif // OOPS_INTERFACE_ANALYTICINIT_H_
Initializes GeoVaLs with analytic formula.
static const std::string classname()
AnalyticInit(const eckit::Configuration &)
constructor (parameters from config)
AnalyticInit & operator=(AnalyticInit &&)=delete
AnalyticInit & operator=(const AnalyticInit &)=delete
std::unique_ptr< AnalyticInit_ > analytic_
AnalyticInit(AnalyticInit &&)=delete
void fillGeoVaLs(const Locations_ &, GeoVaLs_ &) const
Fill GeoVaLs with values computed by analytic function.
~AnalyticInit()
destructor and copy/move constructors/assignments
AnalyticInit(const AnalyticInit &)=delete
const GeoVaLs_ & geovals() const
Interfacing.
Locations of observations for observation operator.
const Locations_ & locations() const
Interfacing.
The namespace for the main oops code.