OOPS
ObsVecQG.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  * (C) Copyright 2017-2021 UCAR.
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  * In applying this licence, ECMWF does not waive the privileges and immunities
8  * granted to it by virtue of its status as an intergovernmental organisation nor
9  * does it submit to any jurisdiction.
10  */
11 
12 #include <math.h>
13 
14 #include "oops/util/Logger.h"
15 
16 #include "model/ObsDataQG.h"
17 #include "model/ObsSpaceQG.h"
18 #include "model/ObsVecQG.h"
19 #include "model/QgFortran.h"
20 
21 #include "eckit/exception/Exceptions.h"
22 
23 namespace qg {
24 // -----------------------------------------------------------------------------
25 ObsVecQG::ObsVecQG(const ObsSpaceQG & obsdb, const std::string & name)
26  : obsdb_(obsdb), keyOvec_(0)
27 {
28  qg_obsvec_setup_f90(keyOvec_, obsdb.obsvariables().size(), obsdb.nobs());
29  if (!name.empty()) obsdb_.getdb(name, keyOvec_);
30 }
31 // -----------------------------------------------------------------------------
33  : obsdb_(other.obsdb_), keyOvec_(0) {
36 }
37 // -----------------------------------------------------------------------------
40 }
41 // -----------------------------------------------------------------------------
43  const int keyOvecRhs = rhs.keyOvec_;
44  qg_obsvec_copy_f90(keyOvec_, keyOvecRhs);
45  return *this;
46 }
47 // -----------------------------------------------------------------------------
48 ObsVecQG & ObsVecQG::operator*= (const double & zz) {
50  return *this;
51 }
52 // -----------------------------------------------------------------------------
54  const int keyOvecRhs = rhs.keyOvec_;
55  qg_obsvec_add_f90(keyOvec_, keyOvecRhs);
56  return *this;
57 }
58 // -----------------------------------------------------------------------------
60  const int keyOvecRhs = rhs.keyOvec_;
61  qg_obsvec_sub_f90(keyOvec_, keyOvecRhs);
62  return *this;
63 }
64 // -----------------------------------------------------------------------------
66  const int keyOvecRhs = rhs.keyOvec_;
67  qg_obsvec_mul_f90(keyOvec_, keyOvecRhs);
68  return *this;
69 }
70 // -----------------------------------------------------------------------------
72  const int keyOvecRhs = rhs.keyOvec_;
73  qg_obsvec_div_f90(keyOvec_, keyOvecRhs);
74  return *this;
75 }
76 // -----------------------------------------------------------------------------
78  *this = rhs.vect();
79  return *this;
80 }
81 // -----------------------------------------------------------------------------
84 }
85 // -----------------------------------------------------------------------------
86 void ObsVecQG::setToMissing(int ii) {
88 }
89 // -----------------------------------------------------------------------------
92 }
93 // -----------------------------------------------------------------------------
94 void ObsVecQG::axpy(const double & zz, const ObsVecQG & rhs) {
95  const int keyOvecRhs = rhs.keyOvec_;
96  qg_obsvec_axpy_f90(keyOvec_, zz, keyOvecRhs);
97 }
98 // -----------------------------------------------------------------------------
101 }
102 // -----------------------------------------------------------------------------
105 }
106 // -----------------------------------------------------------------------------
107 double ObsVecQG::dot_product_with(const ObsVecQG & other) const {
108  const int keyOvecOther = other.keyOvec_;
109  double zz;
110  qg_obsvec_dotprod_f90(keyOvec_, keyOvecOther, zz);
111  return zz;
112 }
113 // -----------------------------------------------------------------------------
114 double ObsVecQG::rms() const {
115  int iobs;
117  double zz = 0.0;
118  if (iobs > 0) {
120  zz = sqrt(zz/iobs);
121  }
122  return zz;
123 }
124 // -----------------------------------------------------------------------------
125 void ObsVecQG::mask(const ObsDataQG<int> & mask) {
126  qg_obsvec_mask_f90(keyOvec_, mask.toFortran());
127 }
128 // -----------------------------------------------------------------------------
129 void ObsVecQG::mask(const ObsVecQG & mask) {
131 }
132 // -----------------------------------------------------------------------------
133 void ObsVecQG::save(const std::string & name) const {
134  obsdb_.putdb(name, keyOvec_);
135 }
136 // -----------------------------------------------------------------------------
137 Eigen::VectorXd ObsVecQG::packEigen(const ObsVecQG & mask) const {
138  Eigen::VectorXd vec(packEigenSize(mask));
139  qg_obsvec_get_withmask_f90(keyOvec_, mask.toFortran(), vec.data(), vec.size());
140  return vec;
141 }
142 // -----------------------------------------------------------------------------
143 size_t ObsVecQG::packEigenSize(const ObsVecQG & mask) const {
144  int nobs;
146  return nobs;
147 }
148 // -----------------------------------------------------------------------------
149 void ObsVecQG::read(const std::string & name) {
150  obsdb_.getdb(name, keyOvec_);
151 }
152 // -----------------------------------------------------------------------------
153 void ObsVecQG::print(std::ostream & os) const {
154  if (nobs() == 0) {
155  os << obsdb_.obsname() << " no observations.";
156  } else {
157  double zmin, zmax, zavg;
158  qg_obsvec_stats_f90(keyOvec_, zmin, zmax, zavg);
159  std::ios_base::fmtflags f(os.flags());
160  os << obsdb_.obsname() << " nobs= " << nobs()
161  << std::scientific << std::setprecision(4)
162  << " Min=" << std::setw(12) << zmin
163  << ", Max=" << std::setw(12) << zmax
164  << ", Average=" << std::setw(12) << zavg;
165  os.flags(f);
166  }
167 }
168 // -----------------------------------------------------------------------------
169 unsigned int ObsVecQG::nobs() const {
170  int iobs;
172  unsigned int nobs(iobs);
173  return nobs;
174 }
175 // -----------------------------------------------------------------------------
176 size_t ObsVecQG::size() const {
177  int iobs;
179  size_t nobs(iobs);
180  return nobs;
181 }
182 // -----------------------------------------------------------------------------
183 } // namespace qg
size_t size() const
Data in observation space.
Definition: ObsDataQG.h:32
const ObsVecQG & vect() const
Definition: ObsDataQG.h:54
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
const std::string & obsname() const
observation type
Definition: ObsSpaceQG.h:108
void getdb(const std::string &, int &) const
read data or metadata
Definition: ObsSpaceQG.cc:127
const oops::Variables & obsvariables() const
return variables simulated by ObsOperators
Definition: ObsSpaceQG.h:105
void putdb(const std::string &, const int &) const
save data or metadata
Definition: ObsSpaceQG.cc:133
int nobs() const
return number of observations (unique locations)
Definition: ObsSpaceQG.cc:148
ObsVecQG class to handle vectors in observation space for QG model.
Definition: ObsVecQG.h:32
ObsVecQG & operator/=(const ObsVecQG &)
Definition: ObsVecQG.cc:71
const ObsSpaceQG & obsdb_
Definition: ObsVecQG.h:78
void print(std::ostream &) const
Definition: ObsVecQG.cc:153
void zero()
set all values to zero
Definition: ObsVecQG.cc:82
double rms() const
Definition: ObsVecQG.cc:114
void read(const std::string &)
Definition: ObsVecQG.cc:149
ObsVecQG & operator-=(const ObsVecQG &)
Definition: ObsVecQG.cc:59
unsigned int nobs() const
Definition: ObsVecQG.cc:169
double dot_product_with(const ObsVecQG &) const
Definition: ObsVecQG.cc:107
void axpy(const double &, const ObsVecQG &)
Definition: ObsVecQG.cc:94
ObsVecQG & operator+=(const ObsVecQG &)
Definition: ObsVecQG.cc:53
F90ovec keyOvec_
Definition: ObsVecQG.h:79
void ones()
set all values to one
Definition: ObsVecQG.cc:90
ObsVecQG & operator=(const ObsVecQG &)
Definition: ObsVecQG.cc:42
void invert()
Definition: ObsVecQG.cc:99
size_t packEigenSize(const ObsVecQG &) const
Definition: ObsVecQG.cc:143
void random()
Definition: ObsVecQG.cc:103
void mask(const ObsDataQG< int > &)
Definition: ObsVecQG.cc:125
void setToMissing(int i)
set i-th value to missing value
Definition: ObsVecQG.cc:86
Eigen::VectorXd packEigen(const ObsVecQG &) const
Definition: ObsVecQG.cc:137
size_t size() const
Definition: ObsVecQG.cc:176
ObsVecQG(const ObsSpaceQG &, const std::string &name="")
Definition: ObsVecQG.cc:25
ObsVecQG & operator*=(const double &)
Definition: ObsVecQG.cc:48
void save(const std::string &) const
Definition: ObsVecQG.cc:133
The namespace for the qg model.
void qg_obsvec_settomissing_ith_f90(const F90ovec &, const int &)
void qg_obsvec_dotprod_f90(const F90ovec &, const F90ovec &, double &)
void qg_obsvec_get_withmask_f90(const F90ovec &, const F90ovec &mask_key, double *data, const int &nobs)
fill data (size nobs) with all non-masked out (non-missing) values
void qg_obsvec_mask_with_missing_f90(const F90ovec &obsvector_key, const F90ovec &mask_key)
void qg_obsvec_ones_f90(const F90ovec &)
void qg_obsvec_nobs_withmask_f90(const F90ovec &, const F90ovec &mask_key, int &)
void qg_obsvec_mul_f90(const F90ovec &, const F90ovec &)
void qg_obsvec_zero_f90(const F90ovec &)
void qg_obsvec_setup_f90(F90ovec &, const int &, const int &)
void qg_obsvec_stats_f90(const F90ovec &, double &, double &, double &)
void qg_obsvec_mul_scal_f90(const F90ovec &, const double &)
void qg_obsvec_invert_f90(const F90ovec &)
void qg_obsvec_size_f90(const F90ovec &, int &)
void qg_obsvec_mask_f90(const F90ovec &obsvector_key, const F90ovec &mask_key)
void qg_obsvec_sub_f90(const F90ovec &, const F90ovec &)
void qg_obsvec_div_f90(const F90ovec &, const F90ovec &)
void qg_obsvec_add_f90(const F90ovec &, const F90ovec &)
void qg_obsvec_delete_f90(F90ovec &)
void qg_obsvec_copy_f90(const F90ovec &, const F90ovec &)
void qg_obsvec_axpy_f90(const F90ovec &, const double &, const F90ovec &)
void qg_obsvec_clone_f90(F90ovec &, const F90ovec &)
void qg_obsvec_nobs_f90(const F90ovec &, int &)
void qg_obsvec_random_f90(const ObsSpaceQG &, const F90ovec &)