OOPS
oops/interface/ObsOperator.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_OBSOPERATOR_H_
12 #define OOPS_INTERFACE_OBSOPERATOR_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 nonlinear observation (forward) operator.
34 /// The full nonlinear observation operator from State x to ObsVector is:
35 /// ObsOperator ( GetValues (State) )
36 /// ObsOperator uses GeoVaLs (result of GetValues(State) - model State at
37 /// observations locations) as input data to compute forward operator.
38 ///
39 /// Note: each implementation should typedef `Parameters_` to the name of a subclass of
40 /// oops::Parameters holding its configuration settings and provide a constructor with the
41 /// following signature:
42 ///
43 /// ObsOperator(const OBS::ObsSpace &, const Parameters_ &);
44 template <typename OBS>
45 class ObsOperator : public util::Printable,
46  private boost::noncopyable,
47  private util::ObjectCounter<ObsOperator<OBS> > {
48  typedef typename OBS::ObsOperator ObsOperator_;
55 
56  public:
57  /// A subclass of oops::Parameters holding the configuration settings of the operator.
58  typedef typename ObsOperator_::Parameters_ Parameters_;
59 
60  static const std::string classname() {return "oops::ObsOperator";}
61 
62  /// Set up observation operator for the \p obsspace observations, with
63  /// parameters defined in \p parameters
64  ObsOperator(const ObsSpace_ & obsspace, const Parameters_ & parameters);
65  ~ObsOperator();
66 
67  /// Compute forward operator \p y = ObsOperator (\p x).
68  /// \param[in] x obs operator input, State interpolated to observations locations.
69  /// \param[out] y result of computing obs operator on \p x.
70  /// \param[in] obsaux additional input for computing H(x), used in the minimization
71  /// in Variational DA, e.g. bias correction coefficients or obs operator
72  /// parameters.
73  /// \param[out] obsbias bias correction of the departure between \p y and the observed values;
74  /// when \p obsbias is non-zero, it is added to \p y within the obs
75  /// operator
76  /// \param[out] obsdiags additional diagnostics output from computing obs operator that is not
77  /// used in the assimilation, and can be used by ObsFilters.
78  void simulateObs(const GeoVaLs_ & x_int, ObsVector_ & y, const ObsAuxControl_ & obsaux,
79  ObsVector_ & obsbias, ObsDiags_ & obsdiags) const;
80 
81  /// Variables required from the model State to compute obs operator. These variables
82  /// will be provided in GeoVaLs passed to simulateObs.
83  const Variables & requiredVars() const;
84  /// Locations used for computing GeoVaLs that will be passed to simulateObs.
85  Locations_ locations() const;
86 
87  private:
88  /// Print, used for logging
89  void print(std::ostream &) const;
90 
91  /// Pointer to the implementation of ObsOperator
92  std::unique_ptr<ObsOperator_> oper_;
93 };
94 
95 // -----------------------------------------------------------------------------
96 
97 template <typename OBS>
99  const Parameters_ & parameters) : oper_() {
100  Log::trace() << "ObsOperator<OBS>::ObsOperator starting" << std::endl;
101  util::Timer timer(classname(), "ObsOperator");
102  oper_.reset(new ObsOperator_(os.obsspace(), parameters));
103  Log::trace() << "ObsOperator<OBS>::ObsOperator done" << std::endl;
104 }
105 
106 // -----------------------------------------------------------------------------
107 
108 template <typename OBS>
110  Log::trace() << "ObsOperator<OBS>::~ObsOperator starting" << std::endl;
111  util::Timer timer(classname(), "~ObsOperator");
112  oper_.reset();
113  Log::trace() << "ObsOperator<OBS>::~ObsOperator done" << std::endl;
114 }
115 
116 // -----------------------------------------------------------------------------
117 
118 template <typename OBS>
120  const ObsAuxControl_ & aux, ObsVector_ & ybias,
121  ObsDiags_ & ydiag) const {
122  Log::trace() << "ObsOperator<OBS>::simulateObs starting" << std::endl;
123  util::Timer timer(classname(), "simulateObs");
124  oper_->simulateObs(gvals.geovals(), yy.obsvector(), aux.obsauxcontrol(), ybias.obsvector(),
125  ydiag.obsdiagnostics());
126  Log::trace() << "ObsOperator<OBS>::simulateObs done" << std::endl;
127 }
128 
129 // -----------------------------------------------------------------------------
130 
131 template <typename OBS>
133  Log::trace() << "ObsOperator<OBS>::requiredVars starting" << std::endl;
134  util::Timer timer(classname(), "requiredVars");
135  return oper_->requiredVars();
136 }
137 
138 // -----------------------------------------------------------------------------
139 
140 template <typename OBS>
142  Log::trace() << "ObsOperator<OBS>::locations starting" << std::endl;
143  util::Timer timer(classname(), "locations");
144  return Locations_(oper_->locations());
145 }
146 
147 // -----------------------------------------------------------------------------
148 
149 template<typename OBS>
150 void ObsOperator<OBS>::print(std::ostream & os) const {
151  Log::trace() << "ObsOperator<OBS>::print starting" << std::endl;
152  util::Timer timer(classname(), "print");
153  os << *oper_;
154  Log::trace() << "ObsOperator<OBS>::print done" << std::endl;
155 }
156 
157 // -----------------------------------------------------------------------------
158 
159 } // namespace oops
160 
161 #endif // OOPS_INTERFACE_OBSOPERATOR_H_
const GeoVaLs_ & geovals() const
Interfacing.
Locations of observations for observation operator.
Auxiliary state related to observations, templated on <OBS>
const ObsAuxControl_ & obsauxcontrol() const
const Accessor
ObsDiags_ & obsdiagnostics()
Interfacing.
MODEL-agnostic part of nonlinear observation (forward) operator. The full nonlinear observation opera...
void print(std::ostream &) const
Print, used for logging.
ObsDiagnostics< OBS > ObsDiags_
const Variables & requiredVars() const
std::unique_ptr< ObsOperator_ > oper_
Pointer to the implementation of ObsOperator.
Locations_ locations() const
Locations used for computing GeoVaLs that will be passed to simulateObs.
void simulateObs(const GeoVaLs_ &x_int, ObsVector_ &y, const ObsAuxControl_ &obsaux, ObsVector_ &obsbias, ObsDiags_ &obsdiags) const
ObsOperator(const ObsSpace_ &obsspace, const Parameters_ &parameters)
ObsOperator_::Parameters_ Parameters_
A subclass of oops::Parameters holding the configuration settings of the operator.
static const std::string classname()
ObsAuxControl< OBS > ObsAuxControl_
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.