Loading [MathJax]/extensions/tex2jax.js
OOPS
All Classes Namespaces Files Functions Variables Typedefs Macros Pages
oops/interface/LinearObsOperator.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_INTERFACE_LINEAROBSOPERATOR_H_
12 #define OOPS_INTERFACE_LINEAROBSOPERATOR_H_
13 
14 #include <memory>
15 #include <string>
16 
17 #include <boost/noncopyable.hpp>
18 
19 #include "oops/base/ObsVector.h"
20 #include "oops/base/Variables.h"
21 #include "oops/interface/GeoVaLs.h"
25 #include "oops/util/Logger.h"
26 #include "oops/util/ObjectCounter.h"
27 #include "oops/util/Printable.h"
28 #include "oops/util/Timer.h"
29 
30 namespace oops {
31 
32 // -----------------------------------------------------------------------------
33 /// \brief MODEL-agnostic part of tangent-linear and adjoint of the nonlinear
34 /// observation (forward) operator ObsOperator.
35 ///
36 /// Note: each implementation should typedef `Parameters_` to the name of a subclass of
37 /// oops::Parameters holding its configuration settings and provide a constructor with the
38 /// following signature:
39 ///
40 /// LinearObsOperator(const OBS::ObsSpace &, const Parameters_ &);
41 template <typename OBS>
42 class LinearObsOperator : public util::Printable,
43  private boost::noncopyable,
44  private util::ObjectCounter<LinearObsOperator<OBS> > {
45  typedef typename OBS::LinearObsOperator LinearObsOper_;
51 
52  public:
53  /// A subclass of oops::Parameters holding the configuration settings of the operator.
54  typedef typename LinearObsOper_::Parameters_ Parameters_;
55 
56  static const std::string classname() {return "oops::LinearObsOperator";}
57 
58  /// Set up TL and AD of observation operator for the \p obsspace observations, with
59  /// parameters defined in \p parameters.
60  LinearObsOperator(const ObsSpace_ & obsspace, const Parameters_ & parameters);
62 
63  /// Sets up the trajectory for future calls of simulateObsTL or simulateObsAD.
64  /// The implementations could e.g. save the trajectory \p x0, or compute and save the Jacobian
65  /// of observation operator around \p x0.
66  /// Always called before simulateObsTL or simulateObsAD.
67  /// \param[in] x0 trajectory for linearization of obs operator, State interpolated
68  /// to observations locations (defined by ObsOperator::locations())
69  /// \param[in] obsaux additional obs operator input, used in the minimization
70  /// in Variational DA, e.g. bias correction coefficients or obs operator
71  /// parameters.
72  void setTrajectory(const GeoVaLs_ & x0, const ObsAuxControl_ & obsaux);
73 
74  /// Apply tangent-linear of the observation operator linearized around the trajectory that was
75  /// passed to setTrajectory method (which is always called before simulateObsTL).
76  /// \param[in] dx input to the TL obs operator, Increment interpolated to observations
77  /// locations.
78  /// \param[out] dy output of the TL obs operator.
79  /// \param[in] dobsaux: additional input to the TL obs operator, e.g. perturbation to bias
80  /// coefficients or obs operator parameters.
81  void simulateObsTL(const GeoVaLs_ & dx, ObsVector_ & dy, const ObsAuxIncrement_ & dobsaux) const;
82  /// Apply adjoint of the observation operator linearized around the trajectory that was
83  /// passed to setTrajectory method (which is always called before simulateObsAD).
84  /// \param[out] dx output of the AD obs operator, Increment interpolated to observations
85  /// locations.
86  /// \param[in] dy input of the AD obs operator, perturbation to the ObsVector.
87  /// \param[out] dobsaux additional output of the AD obs operator, e.g. perturbation to bias
88  /// coefficients or obs operator parameters.
89  void simulateObsAD(GeoVaLs_ & dx, const ObsVector_ & dy, ObsAuxIncrement_ & dobsaux) const;
90 
91  /// Variables required from the model Increment to compute TL or AD of the obs operator.
92  /// These variables will be provided in GeoVaLs passed to simulateObsTL and simulateObsAD.
93  /// Note: these Variables may be different from variables returned by ObsOperator::requiredVars(),
94  /// which will be provided in GeoVaLs passed to setTrajectory.
95  const Variables & requiredVars() const;
96 
97  private:
98  /// Print, used for logging
99  void print(std::ostream &) const;
100 
101  /// Pointer to the implementation of LinearObsOperator
102  std::unique_ptr<LinearObsOper_> oper_;
103 };
104 
105 // -----------------------------------------------------------------------------
106 
107 template <typename OBS>
109  const Parameters_ & parameters): oper_() {
110  Log::trace() << "LinearObsOperator<OBS>::LinearObsOperator starting" << std::endl;
111  util::Timer timer(classname(), "LinearObsOperator");
112  oper_.reset(new LinearObsOper_(os.obsspace(), parameters));
113  Log::trace() << "LinearObsOperator<OBS>::LinearObsOperator done" << std::endl;
114 }
115 
116 // -----------------------------------------------------------------------------
117 
118 template <typename OBS>
120  Log::trace() << "LinearObsOperator<OBS>::~LinearObsOperator starting" << std::endl;
121  util::Timer timer(classname(), "~LinearObsOperator");
122  oper_.reset();
123  Log::trace() << "LinearObsOperator<OBS>::~LinearObsOperator done" << std::endl;
124 }
125 
126 // -----------------------------------------------------------------------------
127 
128 template <typename OBS>
130  Log::trace() << "LinearObsOperator<OBS>::setTrajectory starting" << std::endl;
131  util::Timer timer(classname(), "setTrajectory");
132  oper_->setTrajectory(gvals.geovals(), aux.obsauxcontrol());
133  Log::trace() << "LinearObsOperator<OBS>::setTrajectory done" << std::endl;
134 }
135 
136 // -----------------------------------------------------------------------------
137 
138 template <typename OBS>
140  const ObsAuxIncrement_ & aux) const {
141  Log::trace() << "LinearObsOperator<OBS>::simulateObsTL starting" << std::endl;
142  util::Timer timer(classname(), "simulateObsTL");
143  oper_->simulateObsTL(gvals.geovals(), yy.obsvector(), aux.obsauxincrement());
144  Log::trace() << "LinearObsOperator<OBS>::simulateObsTL done" << std::endl;
145 }
146 
147 // -----------------------------------------------------------------------------
148 
149 template <typename OBS>
151  ObsAuxIncrement_ & aux) const {
152  Log::trace() << "LinearObsOperator<OBS>::simulateObsAD starting" << std::endl;
153  util::Timer timer(classname(), "simulateObsAD");
154  oper_->simulateObsAD(gvals.geovals(), yy.obsvector(), aux.obsauxincrement());
155  Log::trace() << "LinearObsOperator<OBS>::simulateObsAD done" << std::endl;
156 }
157 
158 // -----------------------------------------------------------------------------
159 
160 template <typename OBS>
162  Log::trace() << "LinearObsOperator<OBS>::requiredVars starting" << std::endl;
163  util::Timer timer(classname(), "requiredVars");
164  return oper_->requiredVars();
165 }
166 
167 // -----------------------------------------------------------------------------
168 
169 template<typename OBS>
170 void LinearObsOperator<OBS>::print(std::ostream & os) const {
171  Log::trace() << "LinearObsOperator<OBS>::print starting" << std::endl;
172  util::Timer timer(classname(), "print");
173  os << *oper_;
174  Log::trace() << "LinearObsOperator<OBS>::print done" << std::endl;
175 }
176 
177 // -----------------------------------------------------------------------------
178 
179 } // namespace oops
180 
181 #endif // OOPS_INTERFACE_LINEAROBSOPERATOR_H_
const GeoVaLs_ & geovals() const
Interfacing.
MODEL-agnostic part of tangent-linear and adjoint of the nonlinear observation (forward) operator Obs...
LinearObsOper_::Parameters_ Parameters_
A subclass of oops::Parameters holding the configuration settings of the operator.
void simulateObsAD(GeoVaLs_ &dx, const ObsVector_ &dy, ObsAuxIncrement_ &dobsaux) const
void print(std::ostream &) const
Print, used for logging.
std::unique_ptr< LinearObsOper_ > oper_
Pointer to the implementation of LinearObsOperator.
const Variables & requiredVars() const
void setTrajectory(const GeoVaLs_ &x0, const ObsAuxControl_ &obsaux)
static const std::string classname()
LinearObsOperator(const ObsSpace_ &obsspace, const Parameters_ &parameters)
void simulateObsTL(const GeoVaLs_ &dx, ObsVector_ &dy, const ObsAuxIncrement_ &dobsaux) const
Auxiliary state related to observations, templated on <OBS>
const ObsAuxControl_ & obsauxcontrol() const
const Accessor
Auxiliary increment related to observations, templated on <OBS>
const ObsAuxIncrement_ & obsauxincrement() const
const Accessor
ObsSpace_ & obsspace() const
Interfacing.
ObsVector class used in oops; subclass of interface class interface::ObsVector.
ObsVector_ & obsvector()
Accessor.
The namespace for the main oops code.