OOPS
ObsBiasCorrection.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 <iostream>
14 #include <string>
15 
16 #include "eckit/config/Configuration.h"
17 #include "eckit/config/LocalConfiguration.h"
18 #include "lorenz95/ObsBias.h"
19 #include "oops/util/Logger.h"
20 
21 // -----------------------------------------------------------------------------
22 namespace lorenz95 {
23 // -----------------------------------------------------------------------------
25  : bias_(0.0), active_(false)
26 {
27  if (params.covariance.value() != boost::none &&
28  params.covariance.value()->standardDeviation.value() != boost::none) {
29  active_ = true;
30  }
31  if (active_) {oops::Log::trace() << "ObsBiasCorrection::ObsBiasCorrection created." << std::endl;}
32 }
33 // -----------------------------------------------------------------------------
35  const bool copy)
36  : bias_(0.0), active_(other.active_)
37 {
38  if (active_ && copy) bias_ = other.bias_;
39 }
40 // -----------------------------------------------------------------------------
41 void ObsBiasCorrection::diff(const ObsBias & b1, const ObsBias & b2) {
42  if (active_) bias_ = b1.value() - b2.value();
43 }
44 // -----------------------------------------------------------------------------
46  bias_ = 0.0;
47 }
48 // -----------------------------------------------------------------------------
50  if (active_) {
51  bias_ = rhs.bias_;
52  } else {
53  bias_ = 0.0;
54  }
55  return *this;
56 }
57 // -----------------------------------------------------------------------------
59  if (active_) bias_ += rhs.bias_;
60  return *this;
61 }
62 // -----------------------------------------------------------------------------
64  if (active_) bias_ -= rhs.bias_;
65  return *this;
66 }
67 // -----------------------------------------------------------------------------
69  if (active_) bias_ *= fact;
70  return *this;
71 }
72 // -----------------------------------------------------------------------------
73 void ObsBiasCorrection::axpy(const double fact, const ObsBiasCorrection & rhs) {
74  if (active_) bias_ += fact * rhs.bias_;
75 }
76 // -----------------------------------------------------------------------------
78  double zz = 0.0;
79  if (active_) zz = bias_ * rhs.bias_;
80  return zz;
81 }
82 // -----------------------------------------------------------------------------
84  return 1;
85 }
86 // -----------------------------------------------------------------------------
87 void ObsBiasCorrection::serialize(std::vector<double> & vect) const {
88  vect.push_back(bias_);
89 }
90 // -----------------------------------------------------------------------------
91 void ObsBiasCorrection::deserialize(const std::vector<double> & vect, size_t & index) {
92  if (!vect.empty()) bias_ = vect.at(index);
93  ++index;
94 }
95 // -----------------------------------------------------------------------------
96 void ObsBiasCorrection::print(std::ostream & os) const {
97  if (active_) {os << std::endl << "ObsBiasCorrection = " << bias_;}
98 }
99 // -----------------------------------------------------------------------------
100 } // namespace lorenz95
void axpy(const double, const ObsBiasCorrection &)
void print(std::ostream &) const override
void serialize(std::vector< double > &) const override
ObsBiasCorrection()
Constructor, destructor.
ObsBiasCorrection & operator*=(const double)
void deserialize(const std::vector< double > &, size_t &) override
ObsBiasCorrection & operator=(const ObsBiasCorrection &)
void diff(const ObsBias &, const ObsBias &)
Linear algebra operators.
double dot_product_with(const ObsBiasCorrection &) const
ObsBiasCorrection & operator-=(const ObsBiasCorrection &)
ObsBiasCorrection & operator+=(const ObsBiasCorrection &)
size_t serialSize() const override
Serialize and deserialize.
Class to handle observation bias parameters.
const double & value() const
oops::OptionalParameter< ObsBiasCovarianceParameters > covariance
A Simple Observation Data Handler.
Definition: ObsTable.h:67
The namespace for the L95 model.