OOPS
GetValuesPost.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  * (C) Copyright 2020-2020 UCAR.
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  * In applying this licence, ECMWF does not waive the privileges and immunities
8  * granted to it by virtue of its status as an intergovernmental organisation nor
9  * does it submit to any jurisdiction.
10  */
11 
12 #ifndef OOPS_BASE_GETVALUESPOST_H_
13 #define OOPS_BASE_GETVALUESPOST_H_
14 
15 #include <algorithm>
16 #include <memory>
17 #include <string>
18 #include <vector>
19 
20 #include "oops/base/ObsSpaces.h"
21 #include "oops/base/PostBase.h"
22 #include "oops/base/State.h"
23 #include "oops/base/State4D.h"
24 #include "oops/base/Variables.h"
26 #include "oops/interface/GeoVaLs.h"
29 #include "oops/util/DateTime.h"
30 #include "oops/util/Duration.h"
31 #include "oops/util/Logger.h"
32 
33 namespace eckit {
34  class Configuration;
35 }
36 
37 namespace oops {
38 
39 /// \brief Fills GeoVaLs with requested variables at requested locations:
40 /// - as a postprocessor during model run.
41 /// - as a method fill() on State4D
42 template <typename MODEL, typename OBS>
43 class GetValuesPost : public PostBase<State<MODEL>> {
51 
52  typedef std::vector<std::unique_ptr<GetValues_>> GetValuesVec_;
53  typedef std::vector<std::unique_ptr<GeoVaLs_>> GeoVaLsVec_;
54  typedef std::vector<std::unique_ptr<Locations_>> LocationsVec_;
55 
56  public:
57 /// \brief Saves Locations and Variables to be processed
58  GetValuesPost(const ObsSpaces_ &,
59  const LocationsVec_ &, const std::vector<Variables> &,
60  const std::vector<eckit::LocalConfiguration> &);
61 
62 /// \brief Returns geovals filled in during the model run
63  const GeoVaLsVec_ & geovals() const {return geovals_;}
64 
65 /// \brief fills in GeoVaLs looping through State4D
66  void fill(const State4D_ &);
67 
68  private:
69 /// \brief initialization before model run: sets up GetValues and allocate GeoVaLs
70  void doInitialize(const State_ &, const util::DateTime &, const util::Duration &) override;
71 /// \brief called at each model step: fill in GeoVaLs for the current time slot
72  void doProcessing(const State_ &) override;
73 
74 // Data
75  util::DateTime winbgn_; /// Begining of assimilation window
76  util::DateTime winend_; /// End of assimilation window
77  util::Duration hslot_; /// Half time slot
78 
79  const LocationsVec_ & locations_; /// locations of observations
80  const std::vector<Variables> geovars_; /// Variables needed from model
81  GetValuesVec_ getvals_; /// GetValues used to fill in GeoVaLs
82  GeoVaLsVec_ geovals_; /// GeoVaLs that are filled in
83  const std::vector<eckit::LocalConfiguration> getvalsconfs_; /// configuration object
84 };
85 
86 // -----------------------------------------------------------------------------
87 
88 template <typename MODEL, typename OBS>
90  const LocationsVec_ & locations,
91  const std::vector<Variables> & vars,
92  const std::vector<eckit::LocalConfiguration> & confs)
93  : PostBase<State_>(),
94  winbgn_(obsdb.windowStart()), winend_(obsdb.windowEnd()), hslot_(),
95  locations_(locations), geovars_(vars), getvalsconfs_(confs)
96 {
97  Log::trace() << "GetValuesPost::GetValuesPost" << std::endl;
98 }
99 
100 // -----------------------------------------------------------------------------
101 template <typename MODEL, typename OBS>
103  Log::trace() << "GetValuesPost::fill start" << std::endl;
104  const size_t nstates = xx.size();
105  util::Duration tstep = winend_ - winbgn_; // for a single state
106  // if using several states, compute the timestep and check that it's the same
107  // for all states
108  if (nstates > 1) {
109  tstep = xx[1].validTime() - xx[0].validTime();
110  for (size_t ii = 1; ii < nstates; ++ii) {
111  ASSERT(tstep == (xx[ii].validTime() - xx[ii-1].validTime()));
112  }
113  }
114  // run GetValues postprocessor looping through all the states
115  doInitialize(xx[0], xx[nstates-1].validTime(), tstep);
116  for (size_t ii = 0; ii < nstates; ++ii) {
117  doProcessing(xx[ii]);
118  }
119  Log::trace() << "GetValuesPost::fill done" << std::endl;
120 }
121 
122 // -----------------------------------------------------------------------------
123 
124 template <typename MODEL, typename OBS>
125 void GetValuesPost<MODEL, OBS>::doInitialize(const State_ & xx, const util::DateTime & end,
126  const util::Duration & tstep) {
127  Log::trace() << "GetValuesPost::doInitialize start" << std::endl;
128  hslot_ = tstep/2;
129 
130  for (size_t jj = 0; jj < locations_.size(); ++jj) {
131  getvals_.emplace_back(new GetValues_(xx.geometry(), *locations_[jj], getvalsconfs_[jj]));
132  geovals_.emplace_back(new GeoVaLs_(*locations_[jj], geovars_[jj],
133  xx.geometry().variableSizes(geovars_[jj])));
134  }
135 
136  Log::trace() << "GetValuesPost::doInitialize done" << std::endl;
137 }
138 
139 // -----------------------------------------------------------------------------
140 
141 template <typename MODEL, typename OBS>
143  Log::trace() << "GetValuesPost::doProcessing start" << std::endl;
144  util::DateTime t1 = std::max(xx.validTime()-hslot_, winbgn_);
145  util::DateTime t2 = std::min(xx.validTime()+hslot_, winend_);
146 
147  eckit::LocalConfiguration chvarconf; // empty for now
148  Variables gvars;
149  for (size_t jj = 0; jj < getvals_.size(); ++jj) gvars += geovars_[jj];
150  ChangeVariables_ chvar(chvarconf, xx.geometry(), xx.variables(), gvars);
151  State_ zz(xx.geometry(), gvars, xx.validTime());
152  chvar.changeVar(xx, zz);
153 
154 // Get state variables at obs locations
155  for (size_t jj = 0; jj < getvals_.size(); ++jj) {
156  getvals_[jj]->fillGeoVaLs(zz, t1, t2, *geovals_[jj]);
157  }
158  Log::trace() << "GetValuesPost::doProcessing done" << std::endl;
159 }
160 
161 // -----------------------------------------------------------------------------
162 
163 } // namespace oops
164 
165 #endif // OOPS_BASE_GETVALUESPOST_H_
Encapsulates the nonlinear variable change There should not be a factory for ChangeVariable,...
void changeVar(const State_ &xin, State_ &xout) const
change variable from state xin to xout
Gets values from model State to observation locations (fills GeoVaLs)
Fills GeoVaLs with requested variables at requested locations:
Definition: GetValuesPost.h:43
ObsSpaces< OBS > ObsSpaces_
Definition: GetValuesPost.h:47
GeoVaLs< OBS > GeoVaLs_
Definition: GetValuesPost.h:45
GetValuesVec_ getvals_
Variables needed from model.
Definition: GetValuesPost.h:81
const GeoVaLsVec_ & geovals() const
Returns geovals filled in during the model run.
Definition: GetValuesPost.h:63
std::vector< std::unique_ptr< GetValues_ > > GetValuesVec_
Definition: GetValuesPost.h:52
util::Duration hslot_
End of assimilation window.
Definition: GetValuesPost.h:77
std::vector< std::unique_ptr< Locations_ > > LocationsVec_
Definition: GetValuesPost.h:54
Locations< OBS > Locations_
Definition: GetValuesPost.h:46
void doProcessing(const State_ &) override
called at each model step: fill in GeoVaLs for the current time slot
State4D< MODEL > State4D_
Definition: GetValuesPost.h:49
GetValues< MODEL, OBS > GetValues_
Definition: GetValuesPost.h:50
GetValuesPost(const ObsSpaces_ &, const LocationsVec_ &, const std::vector< Variables > &, const std::vector< eckit::LocalConfiguration > &)
Saves Locations and Variables to be processed.
Definition: GetValuesPost.h:89
const LocationsVec_ & locations_
Half time slot.
Definition: GetValuesPost.h:79
const std::vector< Variables > geovars_
locations of observations
Definition: GetValuesPost.h:80
void doInitialize(const State_ &, const util::DateTime &, const util::Duration &) override
initialization before model run: sets up GetValues and allocate GeoVaLs
std::vector< std::unique_ptr< GeoVaLs_ > > GeoVaLsVec_
Definition: GetValuesPost.h:53
util::DateTime winbgn_
Definition: GetValuesPost.h:75
void fill(const State4D_ &)
fills in GeoVaLs looping through State4D
State< MODEL > State_
Definition: GetValuesPost.h:48
ChangeVariables< MODEL > ChangeVariables_
Definition: GetValuesPost.h:44
const std::vector< eckit::LocalConfiguration > getvalsconfs_
GeoVaLs that are filled in.
Definition: GetValuesPost.h:83
GeoVaLsVec_ geovals_
GetValues used to fill in GeoVaLs.
Definition: GetValuesPost.h:82
util::DateTime winend_
Begining of assimilation window.
Definition: GetValuesPost.h:76
Locations of observations for observation operator.
Handles post-processing of model fields.
Definition: PostBase.h:33
Four dimensional state (vector of 3D States)
Definition: State4D.h:29
size_t size() const
Get 3D model state.
Definition: State4D.h:43
State class used in oops; subclass of interface class interface::State.
std::vector< size_t > variableSizes(const Variables &) const
Geometry_ geometry() const
Accessor to geometry associated with this State.
const util::DateTime validTime() const
Accessor to the time of this State.
const Variables & variables() const
Accessor to variables associated with this State.
Definition: FieldL95.h:22
The namespace for the main oops code.