OOPS
ObserverTLAD.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
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  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef OOPS_BASE_OBSERVERTLAD_H_
12 #define OOPS_BASE_OBSERVERTLAD_H_
13 
14 #include <memory>
15 #include <vector>
16 
17 #include "eckit/config/Configuration.h"
18 #include "oops/base/Geometry.h"
19 #include "oops/base/GetValueTLAD.h"
20 #include "oops/base/ObsVector.h"
21 #include "oops/interface/GeoVaLs.h"
28 #include "oops/util/DateTime.h"
29 
30 namespace oops {
31 
32 /// Computes observation equivalent TL and AD to/from increments.
33 
34 template <typename MODEL, typename OBS>
35 class ObserverTLAD {
46 
47  public:
48  ObserverTLAD(const ObsSpace_ &, const eckit::Configuration &);
50 
51  std::shared_ptr<GetValTLAD_> initializeTraj(const Geometry_ &, const ObsAuxCtrl_ &);
52  void finalizeTraj();
53 
54  std::shared_ptr<GetValTLAD_> initializeTL();
55  void finalizeTL(const ObsAuxIncr_ &, ObsVector_ &);
56 
57  std::shared_ptr<GetValTLAD_> initializeAD(const ObsVector_ &, ObsAuxIncr_ &);
58  void finalizeAD();
59 
60  private:
61  eckit::LocalConfiguration obsconfig_;
62  const ObsSpace_ & obspace_; // ObsSpace used in H(x)
63  LinearObsOperator_ hoptlad_; // Linear obs operator
64  std::shared_ptr<GetValTLAD_> getvals_; // Postproc passed to the model during integration
65  std::vector<size_t> linvars_sizes_; // Sizes of variables requested from model for
66  // TL/AD (e.g. number of vertical levels)
67  std::unique_ptr<Locations_> locations_; // locations
68  util::DateTime winbgn_; // Begining of assimilation window
69  util::DateTime winend_; // End of assimilation window
71  bool init_;
72 };
73 
74 // -----------------------------------------------------------------------------
75 template <typename MODEL, typename OBS>
76 ObserverTLAD<MODEL, OBS>::ObserverTLAD(const ObsSpace_ & obsdb, const eckit::Configuration & conf)
77  : obsconfig_(conf), obspace_(obsdb),
78  hoptlad_(obspace_,
79  validateAndDeserialize<typename LinearObsOperator_::Parameters_>(
80  conf.has("linear obs operator") ?
81  eckit::LocalConfiguration(conf, "linear obs operator") :
82  eckit::LocalConfiguration(conf, "obs operator"))),
83  getvals_(), locations_(), winbgn_(obsdb.windowStart()), winend_(obsdb.windowEnd()),
84  ybias_(nullptr), init_(false)
85 {
86  Log::trace() << "ObserverTLAD::ObserverTLAD" << std::endl;
87 }
88 // -----------------------------------------------------------------------------
89 template <typename MODEL, typename OBS>
90 std::shared_ptr<GetValueTLAD<MODEL, OBS>>
92  Log::trace() << "ObserverTLAD::initializeTraj start" << std::endl;
93  ybias_ = &ybias;
94 
95 // hop is only needed to get locations and requiredVars
96  ObsOperator_ hop(obspace_,
97  validateAndDeserialize<typename ObsOperator_::Parameters_>(
98  eckit::LocalConfiguration(obsconfig_, "obs operator")));
99  locations_.reset(new Locations_(hop.locations()));
100  linvars_sizes_ = geom.variableSizes(hoptlad_.requiredVars());
101  eckit::LocalConfiguration gvconf(obsconfig_.has("linear get values") ?
102  eckit::LocalConfiguration(obsconfig_, "linear get values") :
103  (obsconfig_.has("get values") ?
104  eckit::LocalConfiguration(obsconfig_, "get values") :
105  eckit::LocalConfiguration(obsconfig_, "")));
106 
107 // Set up variables that will be requested from the model
108  Variables geovars;
109  geovars += hop.requiredVars();
110  geovars += ybias_->requiredVars();
111 
112  getvals_.reset(new GetValTLAD_(gvconf, geom, winbgn_, winend_,
113  *locations_, geovars, hoptlad_.requiredVars()));
114 
115  init_ = true;
116  Log::trace() << "ObserverTLAD::initializeTraj done" << std::endl;
117  return getvals_;
118 }
119 // -----------------------------------------------------------------------------
120 template <typename MODEL, typename OBS>
122  Log::trace() << "ObserverTLAD::finalizeTraj start" << std::endl;
123  ASSERT(init_);
124 
125  // GetValues releases GeoVaLs, Observer takes ownership
126  std::unique_ptr<GeoVaLs_> geovals = getvals_->finalize();
127 
128  /// Set linearization trajectory for H(x)
129  hoptlad_.setTrajectory(*geovals, *ybias_);
130 
131  init_ = false;
132  Log::trace() << "ObserverTLAD::finalizeTraj done" << std::endl;
133 }
134 // -----------------------------------------------------------------------------
135 template <typename MODEL, typename OBS>
136 std::shared_ptr<GetValueTLAD<MODEL, OBS>> ObserverTLAD<MODEL, OBS>::initializeTL() {
137  Log::trace() << "ObserverTLAD::initializeTL" << std::endl;
138  return getvals_;
139 }
140 // -----------------------------------------------------------------------------
141 template <typename MODEL, typename OBS>
143  Log::trace() << "ObserverTLAD::finalizeTL start" << std::endl;
144 
145  // GetValues releases GeoVaLs, Observer takes ownership
146  std::unique_ptr<GeoVaLs_> geovals = getvals_->finalize();
147 
148  // Compute linear H(x)
149  hoptlad_.simulateObsTL(*geovals, ydeptl, ybiastl);
150 
151  Log::trace() << "ObserverTLAD::finalizeTL done" << std::endl;
152 }
153 // -----------------------------------------------------------------------------
154 template <typename MODEL, typename OBS>
155 std::shared_ptr<GetValueTLAD<MODEL, OBS>>
157  Log::trace() << "ObserverTLAD::initializeAD start" << std::endl;
158 
159  // Compute adjoint of H(x)
160  std::unique_ptr<GeoVaLs_> geovals(new GeoVaLs_(*locations_, hoptlad_.requiredVars(),
161  linvars_sizes_));
162  hoptlad_.simulateObsAD(*geovals, ydepad, ybiasad);
163 
164  // GetValues get GeoVaLs and takes ownership
165  getvals_->setAD(geovals);
166 
167  Log::trace() << "ObserverTLAD::initializeAD done" << std::endl;
168  return getvals_;
169 }
170 // -----------------------------------------------------------------------------
171 template <typename MODEL, typename OBS>
173  getvals_->finalizeAD();
174  Log::trace() << "ObserverTLAD::finalizeAD done" << std::endl;
175 }
176 // -----------------------------------------------------------------------------
177 
178 } // namespace oops
179 
180 #endif // OOPS_BASE_OBSERVERTLAD_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
MODEL-agnostic part of tangent-linear and adjoint of the nonlinear observation (forward) operator Obs...
Locations of observations for observation operator.
Auxiliary state related to observations, templated on <OBS>
Auxiliary increment related to observations, templated on <OBS>
MODEL-agnostic part of nonlinear observation (forward) operator. The full nonlinear observation opera...
const Variables & requiredVars() const
Locations_ locations() const
Locations used for computing GeoVaLs that will be passed to simulateObs.
ObsVector class used in oops; subclass of interface class interface::ObsVector.
Computes observation equivalent TL and AD to/from increments.
Definition: ObserverTLAD.h:35
GeoVaLs< OBS > GeoVaLs_
Definition: ObserverTLAD.h:37
std::shared_ptr< GetValTLAD_ > initializeTraj(const Geometry_ &, const ObsAuxCtrl_ &)
Definition: ObserverTLAD.h:91
util::DateTime winend_
Definition: ObserverTLAD.h:69
ObsSpace< OBS > ObsSpace_
Definition: ObserverTLAD.h:44
ObsAuxIncrement< OBS > ObsAuxIncr_
Definition: ObserverTLAD.h:42
void finalizeTL(const ObsAuxIncr_ &, ObsVector_ &)
Definition: ObserverTLAD.h:142
std::shared_ptr< GetValTLAD_ > initializeAD(const ObsVector_ &, ObsAuxIncr_ &)
Definition: ObserverTLAD.h:156
ObsOperator< OBS > ObsOperator_
Definition: ObserverTLAD.h:43
GetValueTLAD< MODEL, OBS > GetValTLAD_
Definition: ObserverTLAD.h:38
ObsVector< OBS > ObsVector_
Definition: ObserverTLAD.h:45
Locations< OBS > Locations_
Definition: ObserverTLAD.h:40
std::vector< size_t > linvars_sizes_
Definition: ObserverTLAD.h:65
std::unique_ptr< Locations_ > locations_
Definition: ObserverTLAD.h:67
ObsAuxControl< OBS > ObsAuxCtrl_
Definition: ObserverTLAD.h:41
std::shared_ptr< GetValTLAD_ > initializeTL()
Definition: ObserverTLAD.h:136
const ObsSpace_ & obspace_
Definition: ObserverTLAD.h:62
std::shared_ptr< GetValTLAD_ > getvals_
Definition: ObserverTLAD.h:64
const ObsAuxCtrl_ * ybias_
Definition: ObserverTLAD.h:70
Geometry< MODEL > Geometry_
Definition: ObserverTLAD.h:36
ObserverTLAD(const ObsSpace_ &, const eckit::Configuration &)
Definition: ObserverTLAD.h:76
eckit::LocalConfiguration obsconfig_
Definition: ObserverTLAD.h:61
util::DateTime winbgn_
Definition: ObserverTLAD.h:68
LinearObsOperator< OBS > LinearObsOperator_
Definition: ObserverTLAD.h:39
LinearObsOperator_ hoptlad_
Definition: ObserverTLAD.h:63
std::vector< size_t > variableSizes(const Variables &) const
Definition: FieldL95.h:22
logical function has(this, var)
The namespace for the main oops code.