OOPS
Observations.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_OBSERVATIONS_H_
12 #define OOPS_BASE_OBSERVATIONS_H_
13 
14 #include <cstddef>
15 #include <ostream>
16 #include <string>
17 #include <utility>
18 #include <vector>
19 
20 #include "oops/base/Departures.h"
21 #include "oops/base/ObsErrors.h"
22 #include "oops/base/ObsSpaces.h"
23 #include "oops/base/ObsVector.h"
24 #include "oops/util/Logger.h"
25 #include "oops/util/Printable.h"
26 
27 namespace oops {
28 
29 /// Observations Class.
30 /*!
31  * Contains observed values or their model equivalents
32  */
33 
34 // -----------------------------------------------------------------------------
35 template <typename OBS> class Observations : public util::Printable {
40 
41  public:
42 /// \brief create Observations for all obs (read from ObsSpace if name is specified)
43  explicit Observations(const ObsSpaces_ &, const std::string & name = "");
44 
45 /// destructor and copy/move constructor/assignments
46  ~Observations() = default;
47  Observations(const Observations &);
51 
52 /// Access
53  std::size_t size() const {return obs_.size();}
54  ObsVector_ & operator[](const std::size_t ii) {return obs_.at(ii);}
55  const ObsVector_ & operator[](const std::size_t ii) const {return obs_.at(ii);}
56 
57 /// Interactions with Departures
58  Departures_ operator-(const Observations & other) const;
60 
61 /// Save/read observations values
62  void save(const std::string &) const;
63  void read(const std::string &);
64 
65 /// Accumulator
66  void zero();
67  void accumul(const Observations &);
68  Observations & operator*=(const double);
69 
70 /// Perturbations
71  void perturb(const ObsErrors_ &); // to be removed
72 
73  private:
74  void print(std::ostream &) const;
75  size_t nobs() const;
76 
77 /// Data
78  const ObsSpaces_ & obsdb_;
79  std::vector<ObsVector_> obs_;
80 };
81 
82 // =============================================================================
83 
84 template <typename OBS>
86  const std::string & name): obsdb_(obsdb), obs_()
87 {
88  obs_.reserve(obsdb.size());
89  for (std::size_t jj = 0; jj < obsdb.size(); ++jj) {
90  obs_.emplace_back(obsdb[jj], name);
91  }
92  Log::trace() << "Observations created" << std::endl;
93 }
94 // -----------------------------------------------------------------------------
95 template <typename OBS>
97 : obsdb_(other.obsdb_), obs_(other.obs_) {
98 }
99 // -----------------------------------------------------------------------------
100 
101 template <typename OBS>
103 : obsdb_(other.obsdb_), obs_(std::move(other.obs_)) {
104 }
105 // -----------------------------------------------------------------------------
106 template <typename OBS>
108 // only allow assignment for Observations created from the same ObsSpaces
109  ASSERT(&obsdb_ == &other.obsdb_);
110  obs_ = other.obs_;
111  return *this;
112 }
113 // -----------------------------------------------------------------------------
114 template <typename OBS>
116 // only allow assignment for Observations created from the same ObsSpaces
117  ASSERT(&obsdb_ == &other.obsdb_);
118  obs_ = std::move(other.obs_);
119  return *this;
120 }
121 // -----------------------------------------------------------------------------
122 template <typename OBS>
124  Departures_ diff(obsdb_);
125  for (std::size_t jj = 0; jj < obs_.size(); ++jj) {
126  diff[jj] = obs_[jj];
127  diff[jj] -= other[jj];
128  }
129  return diff;
130 }
131 // -----------------------------------------------------------------------------
132 template <typename OBS>
134  for (std::size_t jj = 0; jj < obs_.size(); ++jj) {
135  obs_[jj] += dy[jj];
136  }
137  return *this;
138 }
139 // -----------------------------------------------------------------------------
140 template <typename OBS>
141 void Observations<OBS>::save(const std::string & name) const {
142  for (std::size_t jj = 0; jj < obs_.size(); ++jj) {
143  obs_[jj].save(name);
144  }
145 }
146 // -----------------------------------------------------------------------------
147 template <typename OBS>
148 void Observations<OBS>::read(const std::string & name) {
149  for (std::size_t jj = 0; jj < obs_.size(); ++jj) {
150  obs_[jj].read(name);
151  }
152 }
153 // -----------------------------------------------------------------------------
154 template <typename OBS>
156  for (std::size_t jj = 0; jj < obs_.size(); ++jj) {
157  obs_[jj].zero();
158  }
159 }
160 // -----------------------------------------------------------------------------
161 template <typename OBS>
163  for (std::size_t jj = 0; jj < obs_.size(); ++jj) {
164  obs_[jj] += y[jj];
165  }
166 }
167 // -----------------------------------------------------------------------------
168 template <typename OBS>
170  for (std::size_t jj = 0; jj < obs_.size(); ++jj) {
171  obs_[jj] *= factor;
172  }
173  return *this;
174 }
175 // -----------------------------------------------------------------------------
176 template<typename OBS>
177 size_t Observations<OBS>::nobs() const {
178  size_t nobs = 0;
179  for (size_t jj = 0; jj < obs_.size(); ++jj) {
180  nobs += obs_[jj].nobs();
181  }
182  return nobs;
183 }
184 // -----------------------------------------------------------------------------
185 template <typename OBS>
187  Departures_ ypert(obsdb_);
188  Rmat.randomize(ypert);
189  *this += ypert;
190  Log::trace() << "Observations perturbed" << std::endl;
191 }
192 // -----------------------------------------------------------------------------
193 template <typename OBS>
194 void Observations<OBS>::print(std::ostream & os) const {
195  for (std::size_t jj = 0; jj < obs_.size(); ++jj) os << obs_[jj] << std::endl;
196 }
197 // -----------------------------------------------------------------------------
198 } // namespace oops
199 
200 #endif // OOPS_BASE_OBSERVATIONS_H_
Difference between two observation vectors.
Definition: Departures.h:44
Container for ObsErrors for all observation types that are used in DA.
Definition: ObsErrors.h:34
void randomize(Departures_ &) const
Generate random perturbation.
Definition: ObsErrors.h:117
std::size_t size() const
Access.
Definition: ObsSpaces.h:61
ObsVector class used in oops; subclass of interface class interface::ObsVector.
Observations Class.
Definition: Observations.h:35
ObsErrors< OBS > ObsErrors_
Definition: Observations.h:37
Observations & operator=(const Observations &)
Definition: Observations.h:107
void zero()
Accumulator.
Definition: Observations.h:155
ObsVector_ & operator[](const std::size_t ii)
Definition: Observations.h:54
std::vector< ObsVector_ > obs_
Definition: Observations.h:79
ObsSpaces< OBS > ObsSpaces_
Definition: Observations.h:38
std::size_t size() const
Access.
Definition: Observations.h:53
~Observations()=default
destructor and copy/move constructor/assignments
const ObsVector_ & operator[](const std::size_t ii) const
Definition: Observations.h:55
Observations(const ObsSpaces_ &, const std::string &name="")
create Observations for all obs (read from ObsSpace if name is specified)
Definition: Observations.h:85
ObsVector< OBS > ObsVector_
Definition: Observations.h:39
void save(const std::string &) const
Save/read observations values.
Definition: Observations.h:141
Departures< OBS > Departures_
Definition: Observations.h:36
Observations & operator*=(const double)
Definition: Observations.h:169
void print(std::ostream &) const
Definition: Observations.h:194
void perturb(const ObsErrors_ &)
Perturbations.
Definition: Observations.h:186
const ObsSpaces_ & obsdb_
Data.
Definition: Observations.h:78
Departures_ operator-(const Observations &other) const
Interactions with Departures.
Definition: Observations.h:123
Observations & operator+=(const Departures_ &)
Definition: Observations.h:133
size_t nobs() const
Definition: Observations.h:177
void accumul(const Observations &)
Definition: Observations.h:162
void read(const std::string &)
Definition: Observations.h:148
The namespace for the main oops code.