OOPS
ObsBiasIncrement.cc
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 #include "model/ObsBiasIncrement.h"
12 
13 #include <cmath>
14 #include <iostream>
15 #include <sstream>
16 #include <string>
17 
18 #include "eckit/config/Configuration.h"
19 #include "model/ObsBias.h"
21 #include "oops/util/Logger.h"
22 
23 // -----------------------------------------------------------------------------
24 namespace qg {
25 // -----------------------------------------------------------------------------
27  : bias_(ObsBias::ntypes, 0.0), active_(ObsBias::ntypes, false)
28 {
29  if (params.covariance.value() != boost::none) {
30  const ObsBiasCovarianceParameters& covparams = *params.covariance.value();
31  active_[0] = (covparams.stream.value() != boost::none);
32  active_[1] = (covparams.uwind.value() != boost::none);
33  active_[2] = (covparams.vwind.value() != boost::none);
34  active_[3] = (covparams.wspeed.value() != boost::none);
35  }
36  bool on = false;
37  std::string strn = "";
38  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) {
39  if (jj > 0) strn += ", ";
40  if (active_[jj]) {
41  strn += "on";
42  on = true;
43  } else {
44  strn += "off";
45  }
46  }
47  if (on) {oops::Log::trace() << "ObsBiasIncrement created : " << strn << std::endl;}
48 }
49 // -----------------------------------------------------------------------------
51  const bool copy)
52  : bias_(ObsBias::ntypes, 0.0), active_(other.active_)
53 {
54  if (copy) {
55  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) bias_[jj] = other.bias_[jj];
56  }
57  this->makePassive();
58 }
59 // -----------------------------------------------------------------------------
61  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) {
62  if (!active_[jj]) bias_[jj] = 0.0;
63  }
64 }
65 // -----------------------------------------------------------------------------
66 void ObsBiasIncrement::diff(const ObsBias & b1, const ObsBias & b2) {
67  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) {
68  bias_[jj] = b1[jj] - b2[jj];
69  }
70  this->makePassive();
71 }
72 // -----------------------------------------------------------------------------
74  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) bias_[jj] = 0.0;
75 }
76 // -----------------------------------------------------------------------------
78  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) bias_[jj] = rhs.bias_[jj];
79  this->makePassive();
80  return *this;
81 }
82 // -----------------------------------------------------------------------------
84  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) bias_[jj] += rhs.bias_[jj];
85  this->makePassive();
86  return *this;
87 }
88 // -----------------------------------------------------------------------------
90  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) bias_[jj] -= rhs.bias_[jj];
91  this->makePassive();
92  return *this;
93 }
94 // -----------------------------------------------------------------------------
96  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) bias_[jj] *= fact;
97  this->makePassive();
98  return *this;
99 }
100 // -----------------------------------------------------------------------------
101 void ObsBiasIncrement::axpy(const double fact, const ObsBiasIncrement & rhs) {
102  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) bias_[jj] += fact * rhs.bias_[jj];
103  this->makePassive();
104 }
105 // -----------------------------------------------------------------------------
107  double zz = 0.0;
108  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) {
109  if (active_[jj]) zz += bias_[jj] * rhs.bias_[jj];
110  }
111  return zz;
112 }
113 // -----------------------------------------------------------------------------
114 double ObsBiasIncrement::norm() const {
115  double zz = 0.0;
116  int ii = 0;
117  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) {
118  if (active_[jj]) {
119  zz += bias_[jj] * bias_[jj];
120  ++ii;
121  }
122  }
123  if (ii > 0) zz = std::sqrt(zz/ii);
124  return zz;
125 }
126 // -----------------------------------------------------------------------------
128  size_t nn = bias_.size();
129  return nn;
130 }
131 // -----------------------------------------------------------------------------
132 void ObsBiasIncrement::serialize(std::vector<double> & vect) const {
133  vect.insert(vect.end(), bias_.begin(), bias_.end());
134  oops::Log::trace() << "ObsBiasIncrement::serialize done" << std::endl;
135 }
136 // -----------------------------------------------------------------------------
137 void ObsBiasIncrement::deserialize(const std::vector<double> & vect, size_t & index) {
138  for (unsigned int jj = 0; jj < bias_.size(); ++jj) {
139  bias_[jj] = vect[index];
140  ++index;
141  }
142  oops::Log::trace() << "ObsBiasIncrement::deserialize done" << std::endl;
143 }
144 // -----------------------------------------------------------------------------
145 void ObsBiasIncrement::print(std::ostream & os) const {
146  bool on = false;
147  std::string strn = "";
148  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) {
149  if (jj > 0) strn += ", ";
150  if (active_[jj]) {
151  on = true;
152  std::ostringstream strs;
153  strs << bias_[jj];
154  strn += strs.str();
155  } else {
156  strn += "0.0";
157  }
158  }
159  if (on) os << std::endl << "ObsBiasIncrement = " << strn;
160 }
161 // -----------------------------------------------------------------------------
162 } // namespace qg
Parameters taken by the ObsBias, ObsBiasCorrection and ObsBiasCovariance classes.
oops::OptionalParameter< double > wspeed
oops::OptionalParameter< double > uwind
oops::OptionalParameter< double > stream
oops::OptionalParameter< double > vwind
Class to handle observation bias parameters.
static const unsigned int ntypes
void print(std::ostream &) const override
std::vector< bool > active_
size_t serialSize() const override
Serialization.
void deserialize(const std::vector< double > &, size_t &) override
ObsBiasIncrement()
Constructor, destructor.
void axpy(const double, const ObsBiasIncrement &)
double dot_product_with(const ObsBiasIncrement &) const
ObsBiasIncrement & operator*=(const double)
ObsBiasIncrement & operator=(const ObsBiasIncrement &)
std::vector< double > bias_
void serialize(std::vector< double > &) const override
void diff(const ObsBias &, const ObsBias &)
Linear algebra operators.
ObsBiasIncrement & operator+=(const ObsBiasIncrement &)
ObsBiasIncrement & operator-=(const ObsBiasIncrement &)
oops::OptionalParameter< ObsBiasCovarianceParameters > covariance
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
The namespace for the qg model.