OOPS
ObsErrorDiag.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  * (C) Copyright 2021 UCAR.
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  * In applying this licence, ECMWF does not waive the privileges and immunities
8  * granted to it by virtue of its status as an intergovernmental organisation nor
9  * does it submit to any jurisdiction.
10  */
11 
12 #ifndef OOPS_GENERIC_OBSERRORDIAG_H_
13 #define OOPS_GENERIC_OBSERRORDIAG_H_
14 
15 #include <sstream>
16 #include <string>
17 
18 #include "eckit/config/Configuration.h"
19 #include "oops/base/ObsVector.h"
22 #include "oops/util/Logger.h"
23 #include "oops/util/parameters/Parameter.h"
24 #include "oops/util/parameters/Parameters.h"
25 
26 namespace oops {
27 
28 /// \brief Parameters for diagonal obs errors
30  OOPS_CONCRETE_PARAMETERS(ObsErrorDiagParameters, ObsErrorParametersBase)
31  public:
32  /// perturbation amplitude multiplier
33  Parameter<double> pert{"random amplitude", 1.0, this};
34 };
35 
36 // -----------------------------------------------------------------------------
37 /// \brief Diagonal observation error covariance matrix.
38 template<typename OBS>
39 class ObsErrorDiag : public ObsErrorBase<OBS> {
42 
43  public:
44  /// The type of parameters passed to the constructor.
45  /// This typedef is used by the ObsErrorFactory.
47 
48  ObsErrorDiag(const Parameters_ &, const ObsSpace_ &);
49 
50 /// Update after obs errors potentially changed
51  void update(const ObsVector_ &) override;
52 
53 /// Multiply a Departure by \f$R\f$
54  void multiply(ObsVector_ &) const override;
55 
56 /// Multiply a Departure by \f$R^{-1}\f$
57  void inverseMultiply(ObsVector_ &) const override;
58 
59 /// Generate random perturbation
60  void randomize(ObsVector_ &) const override;
61 
62 /// Save obs errors
63  void save(const std::string &) const override;
64 
65 /// Get mean std deviation of errors for Jo table
66  double getRMSE() const override {return stddev_.rms();}
67 
68 /// Get obs errors std deviation
69  ObsVector_ obserrors() const override {return stddev_;}
70 
71 /// Get inverseVariance
72  ObsVector_ inverseVariance() const override {return inverseVariance_;}
73 
74  private:
75  void print(std::ostream &) const override;
79 };
80 
81 // =============================================================================
82 
83 template<typename OBS>
85  : stddev_(obsgeom, "ObsError"), inverseVariance_(obsgeom), options_(options)
86 {
90  Log::trace() << "ObsErrorDiag:ObsErrorDiag constructed nobs = " << stddev_.nobs() << std::endl;
91 }
92 
93 // -----------------------------------------------------------------------------
94 
95 template<typename OBS>
96 void ObsErrorDiag<OBS>::update(const ObsVector_ & obserr) {
97  stddev_ = obserr;
98  inverseVariance_ = stddev_;
99  inverseVariance_ *= stddev_;
100  inverseVariance_.invert();
101  Log::info() << "ObsErrorDiag covariance updated " << stddev_.nobs() << std::endl;
102 }
103 
104 // -----------------------------------------------------------------------------
105 
106 template<typename OBS>
108  dy /= inverseVariance_;
109 }
110 
111 // -----------------------------------------------------------------------------
112 
113 template<typename OBS>
115  dy *= inverseVariance_;
116 }
117 
118 // -----------------------------------------------------------------------------
119 
120 template<typename OBS>
122  dy.random();
123  dy *= stddev_;
124  dy *= options_.pert;
125 }
126 
127 // -----------------------------------------------------------------------------
128 
129 template<typename OBS>
130 void ObsErrorDiag<OBS>::save(const std::string & name) const {
131  stddev_.save(name);
132 }
133 
134 // -----------------------------------------------------------------------------
135 
136 template<typename OBS>
137 void ObsErrorDiag<OBS>::print(std::ostream & os) const {
138  os << "Diagonal observation error covariance" << std::endl << stddev_;
139 }
140 
141 // -----------------------------------------------------------------------------
142 
143 
144 } // namespace oops
145 
146 #endif // OOPS_GENERIC_OBSERRORDIAG_H_
Base class for generic implementations of observation error covariance matrices.
Diagonal observation error covariance matrix.
Definition: ObsErrorDiag.h:39
double getRMSE() const override
Get mean std deviation of errors for Jo table.
Definition: ObsErrorDiag.h:66
void save(const std::string &) const override
Save obs errors.
Definition: ObsErrorDiag.h:130
void print(std::ostream &) const override
Definition: ObsErrorDiag.h:137
ObsVector_ inverseVariance() const override
Get inverseVariance.
Definition: ObsErrorDiag.h:72
void inverseMultiply(ObsVector_ &) const override
Multiply a Departure by .
Definition: ObsErrorDiag.h:114
void multiply(ObsVector_ &) const override
Multiply a Departure by .
Definition: ObsErrorDiag.h:107
Parameters_ options_
Definition: ObsErrorDiag.h:78
ObsVector_ stddev_
Definition: ObsErrorDiag.h:76
ObsVector_ inverseVariance_
Definition: ObsErrorDiag.h:77
ObsSpace< OBS > ObsSpace_
Definition: ObsErrorDiag.h:40
void randomize(ObsVector_ &) const override
Generate random perturbation.
Definition: ObsErrorDiag.h:121
ObsVector_ obserrors() const override
Get obs errors std deviation.
Definition: ObsErrorDiag.h:69
ObsErrorDiagParameters Parameters_
Definition: ObsErrorDiag.h:46
void update(const ObsVector_ &) override
Update after obs errors potentially changed.
Definition: ObsErrorDiag.h:96
ObsVector< OBS > ObsVector_
Definition: ObsErrorDiag.h:41
ObsErrorDiag(const Parameters_ &, const ObsSpace_ &)
Definition: ObsErrorDiag.h:84
Parameters for diagonal obs errors.
Definition: ObsErrorDiag.h:29
Parameter< double > pert
perturbation amplitude multiplier
Definition: ObsErrorDiag.h:33
Configuration parameters of an implementation of an observation error covariance matrix model.
ObsVector class used in oops; subclass of interface class interface::ObsVector.
unsigned int nobs() const
Number of non-masked out observations (across all MPI tasks)
double rms() const
Return this ObsVector rms.
void random()
Set each value in this ObsVector to a random value.
void invert()
Set each value in this ObsVector to its inverse.
The namespace for the main oops code.