OOPS
ObsErrors.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_OBSERRORS_H_
12 #define OOPS_BASE_OBSERRORS_H_
13 
14 #include <memory>
15 #include <string>
16 #include <vector>
17 
18 #include <boost/noncopyable.hpp>
19 
20 #include "oops/base/Departures.h"
21 #include "oops/base/ObsError.h"
22 #include "oops/base/ObsSpaces.h"
23 #include "oops/util/ConfigFunctions.h" // for vectoriseAndFilter
24 #include "oops/util/Logger.h"
25 #include "oops/util/parameters/Parameters.h"
26 #include "oops/util/Printable.h"
27 
28 namespace oops {
29 
30 // -----------------------------------------------------------------------------
31 /// \brief Container for ObsErrors for all observation types that are used in DA
32 template <typename OBS>
33 class ObsErrors : public util::Printable,
34  private boost::noncopyable {
39 
40  public:
41  static const std::string classname() {return "oops::ObsErrors";}
42 
43  ObsErrors(const std::vector<Parameters_> &, const ObsSpaces_ &);
44  ObsErrors(const eckit::Configuration &, const ObsSpaces_ &);
45 
46 /// Accessor and size
47  size_t size() const {return err_.size();}
48  ObsError_ & operator[](const size_t ii) {return err_.at(ii);}
49  const ObsError_ & operator[](const size_t ii) const {return err_.at(ii);}
50 
51 /// Multiply a Departure by \f$R\f$
52  void multiply(Departures_ &) const;
53 /// Multiply a Departure by \f$R^{-1}\f$
54  void inverseMultiply(Departures_ &) const;
55 
56 /// Generate random perturbation
57  void randomize(Departures_ &) const;
58 
59 /// Save obs errors
60  void save(const std::string &) const;
61 
62  /// returns inverse of observation error variance
64 
65  private:
66  void print(std::ostream &) const override;
67  std::vector<ObsError_> err_;
68  const ObsSpaces_ & os_;
69 };
70 
71 // -----------------------------------------------------------------------------
72 
73 template <typename OBS>
74 ObsErrors<OBS>::ObsErrors(const std::vector<Parameters_> & params,
75  const ObsSpaces_ & os) : err_(), os_(os) {
76  ASSERT(params.empty() || params.size() == os.size());
77  const Parameters_ defaultParam;
78 
79  err_.reserve(os.size());
80  for (size_t jj = 0; jj < os.size(); ++jj) {
81  const Parameters_ & param = params.empty() ? defaultParam : params[jj];
82  err_.emplace_back(param.obsErrorParameters, os_[jj]);
83  }
84 }
85 
86 // -----------------------------------------------------------------------------
87 
88 template <typename OBS>
89 ObsErrors<OBS>::ObsErrors(const eckit::Configuration & config,
90  const ObsSpaces_ & os) :
91  ObsErrors( // Split config into subconfigurations, extract the "obs error" section from each
92  // of them, then validate and deserialize that section into a Parameters_ object
93  validateAndDeserialize<Parameters_>(util::vectoriseAndFilter(config, "obs error")), os)
94 {}
95 
96 // -----------------------------------------------------------------------------
97 
98 template <typename OBS>
100  for (size_t jj = 0; jj < err_.size(); ++jj) {
101  err_[jj].multiply(dy[jj]);
102  }
103 }
104 
105 // -----------------------------------------------------------------------------
106 
107 template <typename OBS>
109  for (size_t jj = 0; jj < err_.size(); ++jj) {
110  err_[jj].inverseMultiply(dy[jj]);
111  }
112 }
113 
114 // -----------------------------------------------------------------------------
115 
116 template <typename OBS>
118  for (size_t jj = 0; jj < err_.size(); ++jj) {
119  err_[jj].randomize(dy[jj]);
120  }
121 }
122 
123 // -----------------------------------------------------------------------------
124 
125 template <typename OBS>
126 void ObsErrors<OBS>::save(const std::string & name) const {
127  for (const auto & err : err_) {
128  err.save(name);
129  }
130 }
131 
132 // -----------------------------------------------------------------------------
133 
134 template <typename OBS>
136  Departures_ invvar(os_);
137  for (size_t jj = 0; jj < err_.size(); ++jj) {
138  invvar[jj] = err_[jj].inverseVariance();
139  }
140  return invvar;
141 }
142 
143 // -----------------------------------------------------------------------------
144 
145 template<typename OBS>
146 void ObsErrors<OBS>::print(std::ostream & os) const {
147  for (size_t jj = 0; jj < err_.size(); ++jj) os << err_[jj] << std::endl;
148 }
149 
150 // -----------------------------------------------------------------------------
151 
152 } // namespace oops
153 
154 #endif // OOPS_BASE_OBSERRORS_H_
Difference between two observation vectors.
Definition: Departures.h:44
Observation error covariance matrix of observations from a single ObsSpace.
Definition: ObsError.h:29
Contains a polymorphic parameter holding an instance of a subclass of ObsErrorParametersBase.
PolymorphicParameter< ObsErrorParametersBase, ObsErrorFactory< OBS > > obsErrorParameters
Container for ObsErrors for all observation types that are used in DA.
Definition: ObsErrors.h:34
ObsError< OBS > ObsError_
Definition: ObsErrors.h:36
ObsErrorParametersWrapper< OBS > Parameters_
Definition: ObsErrors.h:37
void save(const std::string &) const
Save obs errors.
Definition: ObsErrors.h:126
void inverseMultiply(Departures_ &) const
Multiply a Departure by .
Definition: ObsErrors.h:108
void multiply(Departures_ &) const
Multiply a Departure by .
Definition: ObsErrors.h:99
ObsSpaces< OBS > ObsSpaces_
Definition: ObsErrors.h:38
size_t size() const
Accessor and size.
Definition: ObsErrors.h:47
const ObsError_ & operator[](const size_t ii) const
Definition: ObsErrors.h:49
Departures< OBS > Departures_
Definition: ObsErrors.h:35
Departures_ inverseVariance() const
returns inverse of observation error variance
Definition: ObsErrors.h:135
const ObsSpaces_ & os_
Definition: ObsErrors.h:68
void randomize(Departures_ &) const
Generate random perturbation.
Definition: ObsErrors.h:117
void print(std::ostream &) const override
Definition: ObsErrors.h:146
static const std::string classname()
Definition: ObsErrors.h:41
std::vector< ObsError_ > err_
Definition: ObsErrors.h:67
ObsErrors(const std::vector< Parameters_ > &, const ObsSpaces_ &)
Definition: ObsErrors.h:74
ObsError_ & operator[](const size_t ii)
Definition: ObsErrors.h:48
std::size_t size() const
Access.
Definition: ObsSpaces.h:61
The namespace for the main oops code.
Definition: TLML95.h:34