IODA
src/ObsVector.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017 UCAR
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 OBSVECTOR_H_
9 #define OBSVECTOR_H_
10 
11 #include <Eigen/Dense>
12 #include <ostream>
13 #include <string>
14 #include <vector>
15 
16 #include "ioda/ObsSpace.h"
17 #include "oops/base/Variables.h"
18 #include "oops/util/ObjectCounter.h"
19 #include "oops/util/Printable.h"
20 
21 namespace ioda {
22  template <typename DATATYPE> class ObsDataVector;
23 
24 //-----------------------------------------------------------------------------
25 /*! \brief ObsVector class to handle vectors in observation space for IODA
26  *
27  * \details This class holds observation vector data. Examples of an obs vector
28  * are the y vector and the H(x) vector. The methods of this class
29  * that implement vector operations (e.g., bitwise add, bitwise subtract,
30  * dot product) are capable of handling missing values in the obs data.
31  */
32 
33 class ObsVector : public util::Printable,
34  private util::ObjectCounter<ObsVector> {
35  public:
36  static const std::string classname() {return "ioda::ObsVector";}
37 
38  explicit ObsVector(ObsSpace &, const std::string & name = "");
39  ObsVector(const ObsVector &);
40  ~ObsVector();
41 
42  ObsVector & operator = (const ObsVector &);
43  ObsVector & operator*= (const double &);
44  ObsVector & operator+= (const ObsVector &);
45  ObsVector & operator-= (const ObsVector &);
46  ObsVector & operator*= (const ObsVector &);
47  ObsVector & operator/= (const ObsVector &);
48 
50 
51  void zero();
52  /// set all elements to one (used in tests)
53  void ones();
54  /// adds \p beta * \p y to the current vector
55  void axpy(const double & beta, const ObsVector & y);
56  /// adds \p beta[ivar] * \p y[ivar] for each variable in the current
57  /// vector. \p beta has to be size of variables
58  void axpy(const std::vector<double> & beta, const ObsVector & y);
59 
60  void invert();
61  void random();
62 
63  /// global (across all MPI tasks) dot product of this with \p other
64  double dot_product_with(const ObsVector & other) const;
65  /// global (across all MPI tasks) dot product of this with \p other,
66  /// variable by variable. Returns vectors size of nvars_
67  std::vector<double> multivar_dot_product_with(const ObsVector & other) const;
68 
69  double rms() const;
70 
71  std::size_t size() const {return values_.size();} // Size of vector in local memory
72  const double & operator[](const std::size_t ii) const {return values_.at(ii);}
73  double & operator[](const std::size_t ii) {return values_.at(ii);}
74 
75  /// Number of active observations (missing values not included) across all MPI tasks
76  unsigned int nobs() const;
77 
78  /// Pack observations local to this MPI task into an Eigen vector
79  /// (excluding vector elements that are missing values, or where mask is equal to
80  /// missing values
81  Eigen::VectorXd packEigen(const ObsVector & mask) const;
82  /// Number of non-masked out observations local to this MPI task
83  /// (size of an Eigen vector returned by `packEigen`)
84  size_t packEigenSize(const ObsVector & mask) const;
85 
86  const double & toFortran() const;
87  double & toFortran();
88 
89  ObsSpace & space() {return obsdb_;}
90  const ObsSpace & space() const {return obsdb_;}
91  const std::string & obstype() const {return obsdb_.obsname();}
92  const oops::Variables & varnames() const {return obsvars_;}
93  std::size_t nvars() const {return nvars_;}
94  std::size_t nlocs() const {return nlocs_;}
95 
96  /// Set this ObsVector values to missing where \p mask is non-zero
97  void mask(const ObsDataVector<int> & mask);
98  /// Set this ObsVector values to missing where \p mask has missing values
99  void mask(const ObsVector & mask);
100 
101  bool has(const std::string & var) const {return obsvars_.has(var);}
102 
103  int64_t getSeed() const {return obsdb_.getSeed();}
104 
105 // I/O
106  void save(const std::string &) const;
107  void read(const std::string &);
108 
109  private:
110  void print(std::ostream &) const;
111 
112  /*! \brief Associate ObsSpace object */
114 
115  /*! \brief Variables */
116  oops::Variables obsvars_;
117 
118  /*! \brief Number of variables */
119  std::size_t nvars_;
120  std::size_t nlocs_;
121 
122  /*! \brief Vector data */
123  std::vector<double> values_;
124 
125  /*! \brief Missing data mark */
126  const double missing_;
127 };
128 // -----------------------------------------------------------------------------
129 
130 } // namespace ioda
131 
132 #endif // OBSVECTOR_H_
ObsDataVector<DATATYPE> handles vectors of data of type DATATYPE in observation space.
ObsVector class to handle vectors in observation space for IODA.
Definition: src/ObsVector.h:34
void read(const std::string &)
Definition: ObsVector.cc:194
std::size_t nlocs() const
Definition: src/ObsVector.h:94
void mask(const ObsDataVector< int > &mask)
Set this ObsVector values to missing where mask is non-zero.
Definition: ObsVector.cc:281
void save(const std::string &) const
Definition: ObsVector.cc:217
ObsSpace & obsdb_
Associate ObsSpace object.
double rms() const
Definition: ObsVector.cc:186
void axpy(const double &beta, const ObsVector &y)
adds beta * y to the current vector
Definition: ObsVector.cc:121
double & operator[](const std::size_t ii)
Definition: src/ObsVector.h:73
std::size_t nvars() const
Definition: src/ObsVector.h:93
ObsVector & operator*=(const double &)
Definition: ObsVector.cc:50
const double & operator[](const std::size_t ii) const
Definition: src/ObsVector.h:72
ObsVector & operator/=(const ObsVector &)
Definition: ObsVector.cc:98
ObsVector(ObsSpace &, const std::string &name="")
Definition: ObsVector.cc:25
const ObsSpace & space() const
Definition: src/ObsVector.h:90
ObsSpace & space()
Definition: src/ObsVector.h:89
void ones()
set all elements to one (used in tests)
Definition: ObsVector.cc:117
unsigned int nobs() const
Number of active observations (missing values not included) across all MPI tasks.
Definition: ObsVector.cc:301
std::size_t size() const
Definition: src/ObsVector.h:71
ObsVector & operator=(const ObsVector &)
Definition: ObsVector.cc:45
std::size_t nlocs_
bool has(const std::string &var) const
int64_t getSeed() const
const std::string & obstype() const
Definition: src/ObsVector.h:91
Eigen::VectorXd packEigen(const ObsVector &mask) const
Definition: ObsVector.cc:245
ObsVector & operator-=(const ObsVector &)
Definition: ObsVector.cc:72
oops::Variables obsvars_
Variables.
const double & toFortran() const
Definition: ObsVector.cc:307
double dot_product_with(const ObsVector &other) const
global (across all MPI tasks) dot product of this with other
Definition: ObsVector.cc:164
size_t packEigenSize(const ObsVector &mask) const
Definition: ObsVector.cc:235
const oops::Variables & varnames() const
Definition: src/ObsVector.h:92
const double missing_
Missing data mark.
void print(std::ostream &) const
Definition: ObsVector.cc:315
static const std::string classname()
Definition: src/ObsVector.h:36
std::vector< double > multivar_dot_product_with(const ObsVector &other) const
Definition: ObsVector.cc:169
std::vector< double > values_
Vector data.
ObsVector & operator+=(const ObsVector &)
Definition: ObsVector.cc:59
std::size_t nvars_
Number of variables.