OOPS
qg/model/ObsBias.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/ObsBias.h"
12 
13 #include <cmath>
14 #include <iostream>
15 #include <sstream>
16 #include <string>
17 
18 #include "eckit/config/Configuration.h"
19 #include "model/ObsBiasIncrement.h"
20 #include "oops/base/Variables.h"
21 #include "oops/util/Logger.h"
22 
23 // -----------------------------------------------------------------------------
24 namespace qg {
25 // -----------------------------------------------------------------------------
26 ObsBias::ObsBias(const ObsSpaceQG &, const Parameters_ & params)
27  : active_(false), geovars_(), hdiags_() {
28  oops::Log::info() << "ObsBias: conf = " << params << std::endl;
29  bias_.fill(0.0);
30  active_ = params.stream.value() != boost::none ||
31  params.uwind.value() != boost::none ||
32  params.vwind.value() != boost::none ||
33  params.wspeed.value() != boost::none;
34  if (active_) {
35  if (params.stream.value() != boost::none) bias_[0] = *params.stream.value();
36  if (params.uwind.value() != boost::none) bias_[1] = *params.uwind.value();
37  if (params.vwind.value() != boost::none) bias_[2] = *params.vwind.value();
38  if (params.wspeed.value() != boost::none) bias_[3] = *params.wspeed.value();
39  std::string strn = "";
40  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) {
41  if (jj > 0) strn += ", ";
42  std::ostringstream strs;
43  strs << bias_[jj];
44  strn += strs.str();
45  }
46  oops::Log::info() << "ObsBias::ObsBias created, bias = " << strn << std::endl;
47  }
48 }
49 // -----------------------------------------------------------------------------
50 ObsBias::ObsBias(const ObsBias & other, const bool copy)
51  : active_(other.active_),
52  geovars_(other.geovars_), hdiags_(other.hdiags_)
53 {
54  if (active_ && copy) {
55  for (unsigned int jj = 0; jj < ntypes; ++jj) bias_[jj] = other.bias_[jj];
56  } else {
57  bias_.fill(0.0);
58  }
59 }
60 // -----------------------------------------------------------------------------
62  if (active_) {
63  for (unsigned int jj = 0; jj < ntypes; ++jj) bias_[jj] += dx[jj];
64  }
65  return *this;
66 }
67 // -----------------------------------------------------------------------------
69  if (active_) {
70  for (unsigned int jj = 0; jj < ntypes; ++jj) bias_[jj] = rhs.bias_[jj];
71  }
72  return *this;
73 }
74 // -----------------------------------------------------------------------------
75 double ObsBias::norm() const {
76  double zz = 0.0;
77  if (active_) {
78  double ztmp = 0.0;
79  std::size_t ii = 0;
80  for (unsigned int jj = 0; jj < ntypes; ++jj) {
81  ztmp = bias_[jj]*bias_[jj];
82  zz += ztmp;
83  if (ztmp > 0.0) ++ii;
84  }
85  zz = std::sqrt(zz/ii);
86  }
87  return zz;
88 }
89 // -----------------------------------------------------------------------------
90 void ObsBias::print(std::ostream & os) const {
91  if (active_) {
92  std::string strn = "";
93  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) {
94  if (jj > 0) strn += ", ";
95  std::ostringstream strs;
96  strs << bias_[jj];
97  strn += strs.str();
98  }
99  os << "ObsBias = " << strn;
100  }
101 }
102 // -----------------------------------------------------------------------------
103 } // namespace qg
104 
Class to handle observation bias parameters.
void print(std::ostream &) const
double norm() const
ObsBias & operator+=(const ObsBiasIncrement &)
std::array< double, ntypes > bias_
ObsBias & operator=(const ObsBias &)
ObsBias(const ObsSpaceQG &, const Parameters_ &)
static const unsigned int ntypes
oops::OptionalParameter< double > wspeed
oops::OptionalParameter< double > uwind
oops::OptionalParameter< double > stream
oops::OptionalParameter< double > vwind
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
The namespace for the qg model.