OOPS
oops/interface/ErrorCovariance.h
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 #ifndef OOPS_INTERFACE_ERRORCOVARIANCE_H_
12 #define OOPS_INTERFACE_ERRORCOVARIANCE_H_
13 
14 #include <memory>
15 #include <string>
16 
17 #include <boost/noncopyable.hpp>
18 
19 #include "eckit/system/ResourceUsage.h"
20 
21 #include "oops/base/Geometry.h"
22 #include "oops/base/Increment.h"
24 #include "oops/base/State.h"
25 #include "oops/base/Variables.h"
26 #include "oops/util/Logger.h"
27 #include "oops/util/ObjectCounter.h"
28 #include "oops/util/Printable.h"
29 #include "oops/util/Timer.h"
30 
31 namespace eckit {
32  class Configuration;
33 }
34 
35 namespace oops {
36 
37 // -----------------------------------------------------------------------------
38 
39 // Should factory be here and generic covariances wrtten at the MODEL::Increment level? YT
40 
41 /// Wrapper for model space error covariances.
42 /*!
43  * This class provides the operations associated with the model space error
44  * covariance matrices (B or Q). It wraps the actual error covariance matrix
45  * which can be a model specific one or a generic one.
46  */
47 
48 template <typename MODEL>
50  public util::Printable,
51  private util::ObjectCounter<ErrorCovariance<MODEL> >,
52  private boost::noncopyable {
53  typedef typename MODEL::Covariance Covariance_;
57 
58  public:
59  /// Defined as Covariance_::Parameters_ if Covariance_ defines a Parameters_ type; otherwise as
60  /// GenericModelSpaceCovarianceParameters<MODEL>.
61  typedef TParameters_IfAvailableElseFallbackType_t<
63 
64  static const std::string classname() {return "oops::ErrorCovariance";}
65 
66  ErrorCovariance(const Geometry_ &, const Variables &, const Parameters_ &,
67  const State_ &, const State_ &);
68  ErrorCovariance(const Geometry_ &, const Variables &, const eckit::Configuration &,
69  const State_ &, const State_ &);
70  virtual ~ErrorCovariance();
71 
72  private:
73  void doRandomize(Increment_ &) const override;
74  void doMultiply(const Increment_ &, Increment_ &) const override;
75  void doInverseMultiply(const Increment_ &, Increment_ &) const override;
76 
77  void print(std::ostream &) const override;
78 
79  std::unique_ptr<Covariance_> covariance_;
80 };
81 
82 // =============================================================================
83 
84 template<typename MODEL>
86  const Parameters_ & parameters,
87  const State_ & xb, const State_ & fg)
88  : ModelSpaceCovarianceBase<MODEL>(xb, fg, resol, parameters), covariance_()
89 {
90  Log::trace() << "ErrorCovariance<MODEL>::ErrorCovariance starting" << std::endl;
91  util::Timer timer(classname(), "ErrorCovariance");
92  size_t init = eckit::system::ResourceUsage().maxResidentSetSize();
93  covariance_.reset(new Covariance_(resol.geometry(), vars,
94  parametersOrConfiguration<HasParameters_<Covariance_>::value>(
95  parameters),
96  xb.state(), fg.state()));
97  size_t current = eckit::system::ResourceUsage().maxResidentSetSize();
98  this->setObjectSize(current - init);
99  Log::trace() << "ErrorCovariance<MODEL>::ErrorCovariance done" << std::endl;
100 }
101 
102 // -----------------------------------------------------------------------------
103 
104 template<typename MODEL>
106  const eckit::Configuration & conf,
107  const State_ & xb, const State_ & fg)
108  : ErrorCovariance<MODEL>(resol, vars,
109  validateAndDeserialize<Parameters_>(conf),
110  xb, fg)
111 {}
112 
113 // -----------------------------------------------------------------------------
114 
115 template<typename MODEL>
117  Log::trace() << "ErrorCovariance<MODEL>::~ErrorCovariance starting" << std::endl;
118  util::Timer timer(classname(), "~ErrorCovariance");
119  covariance_.reset();
120  Log::trace() << "ErrorCovariance<MODEL>::~ErrorCovariance done" << std::endl;
121 }
122 
123 // -----------------------------------------------------------------------------
124 
125 template<typename MODEL>
127  Log::trace() << "ErrorCovariance<MODEL>::doRandomize starting" << std::endl;
128  util::Timer timer(classname(), "doRandomize");
129  covariance_->randomize(dx.increment());
130  Log::trace() << "ErrorCovariance<MODEL>::doRandomize done" << std::endl;
131 }
132 
133 // -----------------------------------------------------------------------------
134 
135 template<typename MODEL>
137  Log::trace() << "ErrorCovariance<MODEL>::doMultiply starting" << std::endl;
138  util::Timer timer(classname(), "doMultiply");
139  covariance_->multiply(dx1.increment(), dx2.increment());
140  Log::trace() << "ErrorCovariance<MODEL>::doMultiply done" << std::endl;
141 }
142 
143 // -----------------------------------------------------------------------------
144 
145 template<typename MODEL>
147  Log::trace() << "ErrorCovariance<MODEL>::doInverseMultiply starting" << std::endl;
148  util::Timer timer(classname(), "doInverseMultiply");
149  covariance_->inverseMultiply(dx1.increment(), dx2.increment());
150  Log::trace() << "ErrorCovariance<MODEL>::doInverseMultiply done" << std::endl;
151 }
152 
153 // -----------------------------------------------------------------------------
154 
155 template<typename MODEL>
156 void ErrorCovariance<MODEL>::print(std::ostream & os) const {
157  Log::trace() << "ErrorCovariance<MODEL>::print starting" << std::endl;
158  util::Timer timer(classname(), "print");
159  os << *covariance_;
160  Log::trace() << "ErrorCovariance<MODEL>::print done" << std::endl;
161 }
162 
163 // -----------------------------------------------------------------------------
164 
165 } // namespace oops
166 
167 #endif // OOPS_INTERFACE_ERRORCOVARIANCE_H_
Wrapper for model space error covariances.
ErrorCovariance(const Geometry_ &, const Variables &, const Parameters_ &, const State_ &, const State_ &)
void print(std::ostream &) const override
void doRandomize(Increment_ &) const override
std::unique_ptr< Covariance_ > covariance_
TParameters_IfAvailableElseFallbackType_t< Covariance_, GenericModelSpaceCovarianceParameters< MODEL > > Parameters_
void doInverseMultiply(const Increment_ &, Increment_ &) const override
void doMultiply(const Increment_ &, Increment_ &) const override
static const std::string classname()
A subclass of ModelSpaceCovarianceParametersBase storing the values of all options in a single Config...
Geometry class used in oops; subclass of interface class interface::Geometry.
Increment class used in oops.
State class used in oops; subclass of interface class interface::State.
const Geometry_ & geometry() const
const Increment_ & increment() const
State_ & state()
Accessor.
Definition: FieldL95.h:22
The namespace for the main oops code.