OOPS
qg/model/ObsBiasCovariance.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 
12 
13 #include <array>
14 #include <cmath>
15 #include <iostream>
16 #include <random>
17 #include <sstream>
18 #include <string>
19 
20 #include "model/ObsBiasIncrement.h"
21 #include "oops/util/Logger.h"
22 #include "oops/util/Random.h"
23 
24 // -----------------------------------------------------------------------------
25 namespace qg {
26 // -----------------------------------------------------------------------------
28 {
29  std::array<double, ObsBias::ntypes> zz;
30  zz.fill(0.0);
31  if (params.covariance.value() != boost::none) {
32  const ObsBiasCovarianceParameters& covparams = *params.covariance.value();
33  if (covparams.stream.value() != boost::none) zz[0] = *covparams.stream.value();
34  if (covparams.uwind.value() != boost::none) zz[1] = *covparams.uwind.value();
35  if (covparams.vwind.value() != boost::none) zz[2] = *covparams.vwind.value();
36  if (covparams.wspeed.value() != boost::none) zz[3] = *covparams.wspeed.value();
37  }
38  std::string strn = "";
39  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) {
40  if (jj > 0) strn += ", ";
41  if (std::abs(zz[jj]) > 1.0e-8) {
42  variance_[jj] = zz[jj] * zz[jj];
43  std::ostringstream strs;
44  strs << variance_[jj];
45  strn += strs.str();
46  } else {
47  variance_[jj] = 0.0;
48  strn += "0.0";
49  }
50  }
51  oops::Log::info() << "ObsBiasCovariance created, variances = " << strn << std::endl;
52 }
53 // -----------------------------------------------------------------------------
55  ObsBiasIncrement & dxout) const {
56  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) {
57  if (variance_[jj] > 0.0) {
58  dxout[jj] = dxin[jj] * variance_[jj];
59  } else {
60  dxout[jj] = 0.0;
61  }
62  }
63 }
64 // -----------------------------------------------------------------------------
66  ObsBiasIncrement & dxout) const {
67  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) {
68  if (variance_[jj] > 0.0) {
69  dxout[jj] = dxin[jj] / variance_[jj];
70  } else {
71  dxout[jj] = 0.0;
72  }
73  }
74 }
75 // -----------------------------------------------------------------------------
77  static util::NormalDistribution<double> dist(ObsBias::ntypes, 0.0, 1.0, 4);
78  for (unsigned int jj = 0; jj < ObsBias::ntypes; ++jj) {
79  if (variance_[jj] > 0.0) {
80  dx[jj] = dist[jj] * std::sqrt(variance_[jj]);
81  } else {
82  dx[jj] = 0.0;
83  }
84  }
85 }
86 // -----------------------------------------------------------------------------
87 void ObsBiasCovariance::print(std::ostream & os) const {
88  os << "ObsBiasCovariance::print not implemented";
89 }
90 // -----------------------------------------------------------------------------
91 } // namespace qg
std::array< double, ObsBias::ntypes > variance_
ObsBiasCovariance(const ObsSpaceQG &, const Parameters_ &)
Constructor, destructor.
void multiply(const ObsBiasIncrement &, ObsBiasIncrement &) const
void print(std::ostream &) const
void randomize(ObsBiasIncrement &) const
void inverseMultiply(const ObsBiasIncrement &, ObsBiasIncrement &) const
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
static const unsigned int ntypes
oops::OptionalParameter< ObsBiasCovarianceParameters > covariance
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
The namespace for the qg model.