OOPS
GetValuePost.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_BASE_GETVALUEPOST_H_
9 #define OOPS_BASE_GETVALUEPOST_H_
10 
11 #include <algorithm>
12 #include <memory>
13 #include <string>
14 #include <utility>
15 #include <vector>
16 
17 #include "oops/base/Geometry.h"
18 #include "oops/base/State.h"
19 #include "oops/base/Variables.h"
20 #include "oops/interface/GeoVaLs.h"
23 #include "oops/util/DateTime.h"
24 #include "oops/util/Duration.h"
25 #include "oops/util/Logger.h"
26 
27 namespace eckit {
28  class Configuration;
29 }
30 
31 namespace oops {
32 
33 /// \brief Fills GeoVaLs with requested variables at requested locations during model run
34 template <typename MODEL, typename OBS>
35 class GetValuePost {
41 
42  public:
43 /// \brief Saves Locations and Variables to be processed
44  GetValuePost(const eckit::Configuration &, const Geometry_ &,
45  const util::DateTime &, const util::DateTime &,
46  const Locations_ &, const Variables &);
47 
48 /// \brief Returns geovals filled in during the model run
49  std::unique_ptr<GeoVaLs_> releaseGeoVaLs();
50 
51 /// \brief initialization before model run: sets up GetValues and allocate GeoVaLs
52  void initialize(const util::Duration &);
53 /// \brief called at each model step: fill in GeoVaLs for the current time slot
54  void process(const State_ &);
55 
56 /// Variables that will be required from the State
57  const Variables & requiredVariables() const {return geovars_;}
58 
59  private:
60  util::DateTime winbgn_; /// Begining of assimilation window
61  util::DateTime winend_; /// End of assimilation window
62  util::Duration hslot_; /// Half time slot
63 
64  const Locations_ & locations_; /// locations of observations
65  const Variables geovars_; /// Variables needed from model
66  GetValues_ getvals_; /// GetValues used to fill in GeoVaLs
67  std::unique_ptr<GeoVaLs_> geovals_; /// GeoVaLs that are filled in
68  std::vector<size_t> sizes_; /// Sizes (e.g. number of vertical levels)
69  /// for all Variables in GeoVaLs
71 };
72 
73 // -----------------------------------------------------------------------------
74 
75 template <typename MODEL, typename OBS>
76 GetValuePost<MODEL, OBS>::GetValuePost(const eckit::Configuration & conf, const Geometry_ & geom,
77  const util::DateTime & bgn, const util::DateTime & end,
78  const Locations_ & locations, const Variables & vars)
79  : winbgn_(bgn), winend_(end), hslot_(), locations_(locations), geovars_(vars),
80  getvals_(geom, locations_, conf), geovals_(), sizes_(geom.variableSizes(geovars_)),
81  initialized_(false)
82 {
83  Log::trace() << "GetValuePost::GetValuePost" << std::endl;
84 }
85 
86 // -----------------------------------------------------------------------------
87 
88 template <typename MODEL, typename OBS>
89 void GetValuePost<MODEL, OBS>::initialize(const util::Duration & tstep) {
90  Log::trace() << "GetValuePost::doInitialize start" << std::endl;
91  hslot_ = tstep/2;
92  geovals_.reset(new GeoVaLs_(locations_, geovars_, sizes_));
93  initialized_ = true;
94  Log::trace() << "GetValuePost::doInitialize done" << std::endl;
95 }
96 
97 // -----------------------------------------------------------------------------
98 
99 template <typename MODEL, typename OBS>
101  Log::trace() << "GetValuePost::doProcessing start" << std::endl;
102  ASSERT(initialized_);
103  util::DateTime t1 = std::max(xx.validTime()-hslot_, winbgn_);
104  util::DateTime t2 = std::min(xx.validTime()+hslot_, winend_);
105 
106 // Get state variables at obs locations
107  getvals_.fillGeoVaLs(xx, t1, t2, *geovals_);
108  Log::trace() << "GetValuePost::doProcessing done" << std::endl;
109 }
110 
111 // -----------------------------------------------------------------------------
112 
113 template <typename MODEL, typename OBS>
114 std::unique_ptr<GeoVaLs<OBS>> GetValuePost<MODEL, OBS>::releaseGeoVaLs() {
115  Log::trace() << "GetValuePost::releaseGeoVaLs" << std::endl;
116  initialized_ = false;
117  // Release ownership of GeoVaLs
118  return std::move(geovals_);
119 }
120 
121 // -----------------------------------------------------------------------------
122 
123 } // namespace oops
124 
125 #endif // OOPS_BASE_GETVALUEPOST_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
Fills GeoVaLs with requested variables at requested locations during model run.
Definition: GetValuePost.h:35
const Locations_ & locations_
Half time slot.
Definition: GetValuePost.h:64
std::unique_ptr< GeoVaLs_ > geovals_
GetValues used to fill in GeoVaLs.
Definition: GetValuePost.h:67
std::vector< size_t > sizes_
GeoVaLs that are filled in.
Definition: GetValuePost.h:68
std::unique_ptr< GeoVaLs_ > releaseGeoVaLs()
Returns geovals filled in during the model run.
Definition: GetValuePost.h:114
GetValuePost(const eckit::Configuration &, const Geometry_ &, const util::DateTime &, const util::DateTime &, const Locations_ &, const Variables &)
Saves Locations and Variables to be processed.
Definition: GetValuePost.h:76
GetValues< MODEL, OBS > GetValues_
Definition: GetValuePost.h:38
State< MODEL > State_
Definition: GetValuePost.h:40
void initialize(const util::Duration &)
initialization before model run: sets up GetValues and allocate GeoVaLs
Definition: GetValuePost.h:89
bool initialized_
Definition: GetValuePost.h:70
util::Duration hslot_
End of assimilation window.
Definition: GetValuePost.h:62
GeoVaLs< OBS > GeoVaLs_
Definition: GetValuePost.h:37
GetValues_ getvals_
Variables needed from model.
Definition: GetValuePost.h:66
const Variables & requiredVariables() const
Variables that will be required from the State.
Definition: GetValuePost.h:57
Geometry< MODEL > Geometry_
Definition: GetValuePost.h:36
const Variables geovars_
locations of observations
Definition: GetValuePost.h:65
Locations< OBS > Locations_
Definition: GetValuePost.h:39
util::DateTime winbgn_
Definition: GetValuePost.h:60
void process(const State_ &)
called at each model step: fill in GeoVaLs for the current time slot
Definition: GetValuePost.h:100
util::DateTime winend_
Begining of assimilation window.
Definition: GetValuePost.h:61
Gets values from model State to observation locations (fills GeoVaLs)
Locations of observations for observation operator.
State class used in oops; subclass of interface class interface::State.
const util::DateTime validTime() const
Accessor to the time of this State.
Definition: FieldL95.h:22
The namespace for the main oops code.