OOPS
ObsError.h
Go to the documentation of this file.
1 /*
2  * (C) Crown copyright 2021, Met Office.
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_OBSERROR_H_
9 #define OOPS_BASE_OBSERROR_H_
10 
11 #include <memory>
12 #include <string>
13 
14 #include <boost/noncopyable.hpp>
15 #include "eckit/config/Configuration.h"
16 
17 #include "oops/base/ObsVector.h"
20 #include "oops/util/Logger.h"
21 #include "oops/util/Printable.h"
22 
23 namespace oops {
24 
25 // -----------------------------------------------------------------------------
26 /// \brief Observation error covariance matrix of observations from a single ObsSpace.
27 template<typename OBS>
28 class ObsError : public util::Printable,
29  private util::ObjectCounter<ObsError<OBS> > {
33 
34  public:
35  static const std::string classname() {return "oops::ObsError";}
36 
37  ObsError(const ObsErrorParametersBase & params, const ObsSpace_ & os);
38  ~ObsError() override;
39  ObsError(const ObsError &) = delete;
40  ObsError(ObsError &&) = default;
41  ObsError& operator=(const ObsError &) = delete;
42  ObsError& operator=(ObsError &&) = default;
43 
44  /// Multiply a Departure \p dy by \f$R\f$.
45  void multiply(ObsVector_ & dy) const;
46  /// Multiply a Departure \p dy by \f$R^{-1}\f$.
47  void inverseMultiply(ObsVector_ & dy) const;
48 
49  /// Generate a random perturbation in \p dy.
50  void randomize(ObsVector_ & dy) const;
51 
52  /// Save obs errors.
53  void save(const std::string &) const;
54 
55  /// Return a copy of obs error std. dev. If this ObsVector_ is modified (e.g. by obs filters),
56  /// it should be passed back to update() to ensure the covariance matrix stays consistent.
57  ObsVector_ obserrors() const;
58 
59  /// Set the diagonal of the covariance matrix to \p stddev squared.
60  void update(const ObsVector_ &stddev);
61 
62  /// Return the vector of inverse obs error variances.
64 
65  /// Get mean error for Jo table.
66  double getRMSE() const;
67 
68  private:
69  void print(std::ostream &) const override;
70 
71  private:
72  std::unique_ptr<ObsErrorBase_> err_;
73 };
74 
75 // -----------------------------------------------------------------------------
76 
77 template <typename OBS>
79  Log::trace() << "ObsError<OBS>::ObsError starting" << std::endl;
80 
81  util::Timer timer(classname(), "ObsErrors");
82  size_t init = eckit::system::ResourceUsage().maxResidentSetSize();
83 
84  err_ = ObsErrorFactory<OBS>::create(params, os);
85 
86  size_t current = eckit::system::ResourceUsage().maxResidentSetSize();
87  this->setObjectSize(current - init);
88  Log::trace() << "ObsError<OBS>::ObsError done" << std::endl;
89 }
90 
91 // -----------------------------------------------------------------------------
92 
93 template <typename OBS>
95  Log::trace() << "ObsError<OBS>::~ObsError starting" << std::endl;
96  util::Timer timer(classname(), "~ObsError");
97  err_.reset();
98  Log::trace() << "ObsError<OBS>::~ObsError done" << std::endl;
99 }
100 
101 // -----------------------------------------------------------------------------
102 
103 template <typename OBS>
105  Log::trace() << "ObsError<OBS>::multiply starting" << std::endl;
106  util::Timer timer(classname(), "multiply");
107  err_->multiply(dy);
108  Log::trace() << "ObsError<OBS>::multiply done" << std::endl;
109 }
110 
111 // -----------------------------------------------------------------------------
112 
113 template <typename OBS>
115  Log::trace() << "ObsError<OBS>::inverseMultiply starting" << std::endl;
116  util::Timer timer(classname(), "inverseMultiply");
117  err_->inverseMultiply(dy);
118  Log::trace() << "ObsError<OBS>::inverseMultiply done" << std::endl;
119 }
120 
121 // -----------------------------------------------------------------------------
122 
123 template <typename OBS>
125  Log::trace() << "ObsError<OBS>::randomize starting" << std::endl;
126  util::Timer timer(classname(), "randomize");
127  err_->randomize(dy);
128  Log::trace() << "ObsError<OBS>::randomize done" << std::endl;
129 }
130 
131 // -----------------------------------------------------------------------------
132 template <typename OBS>
133 void ObsError<OBS>::save(const std::string & name) const {
134  Log::trace() << "ObsError<OBS>::save starting" << std::endl;
135  util::Timer timer(classname(), "save");
136  err_->save(name);
137  Log::trace() << "ObsError<OBS>::save done" << std::endl;
138 }
139 
140 // -----------------------------------------------------------------------------
141 
142 template <typename OBS>
144  Log::trace() << "ObsError<OBS>::obserrors starting" << std::endl;
145  util::Timer timer(classname(), "obserrors");
146  ObsVector_ obserr = err_->obserrors();
147  Log::trace() << "ObsError<OBS>::obserrors done" << std::endl;
148  return obserr;
149 }
150 
151 // -----------------------------------------------------------------------------
152 
153 template <typename OBS>
154 void ObsError<OBS>::update(const ObsVector_ & obserr) {
155  Log::trace() << "ObsError<OBS>::update starting" << std::endl;
156  util::Timer timer(classname(), "update");
157  err_->update(obserr);
158  Log::trace() << "ObsError<OBS>::update done" << std::endl;
159 }
160 
161 // -----------------------------------------------------------------------------
162 
163 template <typename OBS>
165  Log::trace() << "ObsError<OBS>::inverseVariance starting" << std::endl;
166  util::Timer timer(classname(), "inverseVariance");
167  ObsVector_ invar = err_->inverseVariance();
168  Log::trace() << "ObsError<OBS>::inverseVariance done" << std::endl;
169  return invar;
170 }
171 
172 // -----------------------------------------------------------------------------
173 
174 template <typename OBS>
175 double ObsError<OBS>::getRMSE() const {
176  Log::trace() << "ObsError<OBS>::getRMSE starting" << std::endl;
177  util::Timer timer(classname(), "getRMSE");
178  double zz = err_->getRMSE();
179  Log::trace() << "ObsError<OBS>::getRMSE done" << std::endl;
180  return zz;
181 }
182 
183 // -----------------------------------------------------------------------------
184 
185 template<typename OBS>
186 void ObsError<OBS>::print(std::ostream & os) const {
187  Log::trace() << "ObsError<OBS>::print starting" << std::endl;
188  util::Timer timer(classname(), "print");
189  os << (*err_);
190  Log::trace() << "ObsError<OBS>::print done" << std::endl;
191 }
192 
193 // -----------------------------------------------------------------------------
194 
195 } // namespace oops
196 
197 #endif // OOPS_BASE_OBSERROR_H_
Base class for generic implementations of observation error covariance matrices.
static std::unique_ptr< ObsErrorBase_ > create(const ObsErrorParametersBase &params, const ObsSpace_ &)
Create and return a new observation error covariance matrix model.
Observation error covariance matrix of observations from a single ObsSpace.
Definition: ObsError.h:29
ObsError(const ObsErrorParametersBase &params, const ObsSpace_ &os)
Definition: ObsError.h:78
ObsErrorBase< OBS > ObsErrorBase_
Definition: ObsError.h:30
double getRMSE() const
Get mean error for Jo table.
Definition: ObsError.h:175
ObsVector_ obserrors() const
Definition: ObsError.h:143
void multiply(ObsVector_ &dy) const
Multiply a Departure dy by .
Definition: ObsError.h:104
ObsVector_ inverseVariance() const
Return the vector of inverse obs error variances.
Definition: ObsError.h:164
~ObsError() override
Definition: ObsError.h:94
void update(const ObsVector_ &stddev)
Set the diagonal of the covariance matrix to stddev squared.
Definition: ObsError.h:154
void save(const std::string &) const
Save obs errors.
Definition: ObsError.h:133
std::unique_ptr< ObsErrorBase_ > err_
Definition: ObsError.h:72
ObsError(const ObsError &)=delete
static const std::string classname()
Definition: ObsError.h:35
void inverseMultiply(ObsVector_ &dy) const
Multiply a Departure dy by .
Definition: ObsError.h:114
ObsError & operator=(const ObsError &)=delete
ObsVector< OBS > ObsVector_
Definition: ObsError.h:31
void randomize(ObsVector_ &dy) const
Generate a random perturbation in dy.
Definition: ObsError.h:124
void print(std::ostream &) const override
Definition: ObsError.h:186
ObsError & operator=(ObsError &&)=default
ObsError(ObsError &&)=default
ObsSpace< OBS > ObsSpace_
Definition: ObsError.h:32
Configuration parameters of an implementation of an observation error covariance matrix model.
ObsVector class used in oops; subclass of interface class interface::ObsVector.
The namespace for the main oops code.