OOPS
GetValueTLAD.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_GETVALUETLAD_H_
9 #define OOPS_BASE_GETVALUETLAD_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/Increment.h"
19 #include "oops/base/State.h"
20 #include "oops/base/Variables.h"
21 #include "oops/interface/GeoVaLs.h"
25 #include "oops/util/DateTime.h"
26 #include "oops/util/Duration.h"
27 #include "oops/util/Logger.h"
28 
29 namespace eckit {
30  class Configuration;
31 }
32 
33 namespace oops {
34 
35 // GetValueTLAD is its own class for now. Once the change of variables is moved out it
36 // should be a subclass of GetValuePost that adds setGeoVaLs, processTL and processAD
37 // The other methods are the same.
38 
39 /// \brief TLAD of filling GeoVaLs with requested variables at requested locations during model run
40 template <typename MODEL, typename OBS>
41 class GetValueTLAD {
48 
49  public:
50 /// \brief Saves Locations and Variables to be processed
51  GetValueTLAD(const eckit::Configuration &, const Geometry_ &,
52  const util::DateTime &, const util::DateTime &,
53  const Locations_ &, const Variables &, const Variables &);
54 
55 /// Same finalize is used for traj and TL
56  std::unique_ptr<GeoVaLs_> finalize();
57 
58 /// Linearization trajectory
59  void initializeTraj(const util::Duration &);
60  void processTraj(const State_ &);
61 
62 /// TL
63  void initializeTL(const util::Duration &);
64  void processTL(const Increment_ &);
65 
66 /// AD
67  void setAD(std::unique_ptr<GeoVaLs_> &);
68  void initializeAD(const util::Duration &);
69  void processAD(Increment_ &);
70  void finalizeAD();
71 
72 /// Variables that will be required from the State
73  const Variables & requiredVariables() const {return geovars_;}
74 
75  private:
76  util::DateTime winbgn_; /// Begining of assimilation window
77  util::DateTime winend_; /// End of assimilation window
78  util::Duration hslot_; /// Half time slot
79 
80  const Locations_ & locations_; /// locations of observations
81  const Variables geovars_; /// Variables needed from model
82  const std::vector<size_t> geovars_sizes_; /// Sizes (e.g. number of vertical levels)
83  /// for all geovars_ variables
84  const Variables linvars_; /// Variables needed from linear model
85  const std::vector<size_t> linvars_sizes_; /// Sizes (e.g. number of vertical levels)
86  /// for all linvars_ variables
87  GetValues_ getvals_; /// GetValues used to fill in GeoVaLs
88  std::unique_ptr<GeoVaLs_> geovals_; /// GeoVaLs that are filled in
89  std::unique_ptr<const GeoVaLs_> gvalsad_; /// Input GeoVaLs for adjoint forcing
90 };
91 
92 // -----------------------------------------------------------------------------
93 
94 template <typename MODEL, typename OBS>
95 GetValueTLAD<MODEL, OBS>::GetValueTLAD(const eckit::Configuration & conf, const Geometry_ & geom,
96  const util::DateTime & bgn, const util::DateTime & end,
97  const Locations_ & locations,
98  const Variables & vars, const Variables & varl)
99  : winbgn_(bgn), winend_(end), hslot_(), locations_(locations),
100  geovars_(vars), geovars_sizes_(geom.variableSizes(geovars_)),
101  linvars_(varl), linvars_sizes_(geom.variableSizes(linvars_)),
102  getvals_(geom, locations_, conf), geovals_(), gvalsad_(nullptr)
103 {
104  Log::trace() << "GetValueTLAD::GetValueTLAD" << std::endl;
105 }
106 
107 // -----------------------------------------------------------------------------
108 
109 template <typename MODEL, typename OBS>
110 void GetValueTLAD<MODEL, OBS>::initializeTraj(const util::Duration & tstep) {
111  Log::trace() << "GetValueTLAD::initializeTraj start" << std::endl;
112  hslot_ = tstep/2;
113  geovals_.reset(new GeoVaLs_(locations_, geovars_, geovars_sizes_));
114  Log::trace() << "GetValueTLAD::initializeTraj done" << std::endl;
115 }
116 
117 // -----------------------------------------------------------------------------
118 
119 template <typename MODEL, typename OBS>
121  Log::trace() << "GetValueTLAD::processTraj start" << std::endl;
122  ASSERT(geovals_);
123  util::DateTime t1 = std::max(xx.validTime()-hslot_, winbgn_);
124  util::DateTime t2 = std::min(xx.validTime()+hslot_, winend_);
125 
126 // Get state variables at obs locations
127  getvals_.setTrajectory(xx, t1, t2, *geovals_);
128  Log::trace() << "GetValueTLAD::processTraj done" << std::endl;
129 }
130 
131 // -----------------------------------------------------------------------------
132 
133 template <typename MODEL, typename OBS>
134 void GetValueTLAD<MODEL, OBS>::initializeTL(const util::Duration & tstep) {
135  Log::trace() << "GetValueTLAD::initializeTL start" << std::endl;
136  hslot_ = tstep/2;
137  geovals_.reset(new GeoVaLs_(locations_, linvars_, linvars_sizes_));
138  Log::trace() << "GetValueTLAD::initializeTL done" << std::endl;
139 }
140 
141 // -----------------------------------------------------------------------------
142 
143 template <typename MODEL, typename OBS>
145  Log::trace() << "GetValueTLAD::processTL start" << std::endl;
146  ASSERT(geovals_);
147  util::DateTime t1 = std::max(dx.validTime()-hslot_, winbgn_);
148  util::DateTime t2 = std::min(dx.validTime()+hslot_, winend_);
149 
150 // Get state variables at obs locations
151  getvals_.fillGeoVaLsTL(dx, t1, t2, *geovals_);
152  Log::trace() << "GetValueTLAD::processTL done" << std::endl;
153 }
154 
155 // -----------------------------------------------------------------------------
156 
157 template <typename MODEL, typename OBS>
158 std::unique_ptr<GeoVaLs<OBS>> GetValueTLAD<MODEL, OBS>::finalize() {
159  Log::trace() << "GetValueTLAD::finalize" << std::endl;
160  // Release ownership of GeoVaLs
161  return std::move(geovals_);
162 }
163 
164 // -----------------------------------------------------------------------------
165 
166 template <typename MODEL, typename OBS>
167 void GetValueTLAD<MODEL, OBS>::setAD(std::unique_ptr<GeoVaLs_> & geovals) {
168  // Take ownership of GeoVaLs
169  gvalsad_ = std::move(geovals);
170  Log::trace() << "GetValueTLAD::setAD" << std::endl;
171 }
172 
173 // -----------------------------------------------------------------------------
174 
175 template <typename MODEL, typename OBS>
176 void GetValueTLAD<MODEL, OBS>::initializeAD(const util::Duration & tstep) {
177  hslot_ = tstep/2;
178  Log::trace() << "GetValueTLAD::initializeAD" << std::endl;
179 }
180 
181 // -----------------------------------------------------------------------------
182 
183 template <typename MODEL, typename OBS>
185  Log::trace() << "GetValueTLAD::processAD start" << std::endl;
186  ASSERT(gvalsad_);
187  util::DateTime t1 = std::max(dx.validTime()-hslot_, winbgn_);
188  util::DateTime t2 = std::min(dx.validTime()+hslot_, winend_);
189 
190 // Get state variables at obs locations
191  getvals_.fillGeoVaLsAD(dx, t1, t2, *gvalsad_);
192 
193  Log::trace() << "GetValueTLAD::processAD done" << std::endl;
194 }
195 
196 // -----------------------------------------------------------------------------
197 
198 template <typename MODEL, typename OBS>
200  ASSERT(gvalsad_);
201  gvalsad_.reset();
202 }
203 
204 // -----------------------------------------------------------------------------
205 
206 } // namespace oops
207 
208 #endif // OOPS_BASE_GETVALUETLAD_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
TLAD of filling GeoVaLs with requested variables at requested locations during model run.
Definition: GetValueTLAD.h:41
void initializeTraj(const util::Duration &)
Linearization trajectory.
Definition: GetValueTLAD.h:110
const std::vector< size_t > linvars_sizes_
Variables needed from linear model.
Definition: GetValueTLAD.h:85
const Locations_ & locations_
Half time slot.
Definition: GetValueTLAD.h:80
GetValues_ getvals_
Definition: GetValueTLAD.h:87
Locations< OBS > Locations_
Definition: GetValueTLAD.h:46
void initializeAD(const util::Duration &)
Definition: GetValueTLAD.h:176
void processAD(Increment_ &)
Definition: GetValueTLAD.h:184
const Variables & requiredVariables() const
Variables that will be required from the State.
Definition: GetValueTLAD.h:73
GeoVaLs< OBS > GeoVaLs_
Definition: GetValueTLAD.h:43
LinearGetValues< MODEL, OBS > GetValues_
Definition: GetValueTLAD.h:44
Geometry< MODEL > Geometry_
Definition: GetValueTLAD.h:42
util::Duration hslot_
End of assimilation window.
Definition: GetValueTLAD.h:78
util::DateTime winbgn_
Definition: GetValueTLAD.h:76
void setAD(std::unique_ptr< GeoVaLs_ > &)
AD.
Definition: GetValueTLAD.h:167
std::unique_ptr< GeoVaLs_ > geovals_
GetValues used to fill in GeoVaLs.
Definition: GetValueTLAD.h:88
State< MODEL > State_
Definition: GetValueTLAD.h:47
void initializeTL(const util::Duration &)
TL.
Definition: GetValueTLAD.h:134
std::unique_ptr< const GeoVaLs_ > gvalsad_
GeoVaLs that are filled in.
Definition: GetValueTLAD.h:89
const Variables geovars_
locations of observations
Definition: GetValueTLAD.h:81
const Variables linvars_
Definition: GetValueTLAD.h:84
std::unique_ptr< GeoVaLs_ > finalize()
Same finalize is used for traj and TL.
Definition: GetValueTLAD.h:158
void processTraj(const State_ &)
Definition: GetValueTLAD.h:120
void processTL(const Increment_ &)
Definition: GetValueTLAD.h:144
GetValueTLAD(const eckit::Configuration &, const Geometry_ &, const util::DateTime &, const util::DateTime &, const Locations_ &, const Variables &, const Variables &)
Saves Locations and Variables to be processed.
Definition: GetValueTLAD.h:95
const std::vector< size_t > geovars_sizes_
Variables needed from model.
Definition: GetValueTLAD.h:82
util::DateTime winend_
Begining of assimilation window.
Definition: GetValueTLAD.h:77
Increment< MODEL > Increment_
Definition: GetValueTLAD.h:45
Increment class used in oops.
sets trajectory and computes TL and AD for GetValues
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 Increment.
const util::DateTime validTime() const
Accessor to the time of this State.
Definition: FieldL95.h:22
The namespace for the main oops code.