OOPS
l95/src/lorenz95/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 <cmath>
14 #include <iostream>
15 #include <string>
16 
17 #include "eckit/config/Configuration.h"
18 #include "eckit/exception/Exceptions.h"
19 
21 #include "oops/util/Logger.h"
22 #include "oops/util/Random.h"
23 
24 // -----------------------------------------------------------------------------
25 namespace lorenz95 {
26 // -----------------------------------------------------------------------------
28  : variance_(0.0), active_(false)
29 {
30  if (params.covariance.value() != boost::none &&
31  params.covariance.value()->standardDeviation.value() != boost::none) {
32  active_ = true;
33  const double zz = *params.covariance.value()->standardDeviation.value();
34  variance_ = zz * zz;
35  ASSERT(variance_ > 0.0);
36  oops::Log::info() << "ObsBiasCovariance variance = " << variance_ << std::endl;
37  }
38 }
39 // -----------------------------------------------------------------------------
41  ObsBiasCorrection & dxout) const {
42  if (active_) {
43  dxout = dxin;
44  dxout *= variance_;
45  } else {
46  dxout.zero();
47  }
48 }
49 // -----------------------------------------------------------------------------
51  ObsBiasCorrection & dxout) const {
52  if (active_) {
53  dxout = dxin;
54  dxout *= 1.0 / variance_;
55  } else {
56  dxout.zero();
57  }
58 }
59 // -----------------------------------------------------------------------------
61  if (active_) {
62  util::NormalDistribution<double> x(1, 0.0, 1.0, 4);
63  dx.value() = x[0] * std::sqrt(variance_);
64  } else {
65  dx.zero();
66  }
67 }
68 // -----------------------------------------------------------------------------
69 void ObsBiasCovariance::print(std::ostream & os) const {
70  if (active_) {
71  os << "ObsBiasCovariance: variance = " << variance_;
72  } else {
73  os << "ObsBiasCovariance not active";
74  }
75 }
76 // -----------------------------------------------------------------------------
77 } // namespace lorenz95
void multiply(const ObsBiasCorrection &, ObsBiasCorrection &) const
void randomize(ObsBiasCorrection &) const
void inverseMultiply(const ObsBiasCorrection &, ObsBiasCorrection &) const
ObsBiasCovariance(const ObsTable &, const Parameters_ &)
Constructor, destructor.
oops::OptionalParameter< ObsBiasCovarianceParameters > covariance
A Simple Observation Data Handler.
Definition: ObsTable.h:67
The namespace for the L95 model.