OOPS
oops/interface/ModelAuxCovariance.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_MODELAUXCOVARIANCE_H_
12 #define OOPS_INTERFACE_MODELAUXCOVARIANCE_H_
13 
14 #include <iostream>
15 #include <memory>
16 #include <string>
17 
18 #include <boost/noncopyable.hpp>
19 
20 #include "eckit/config/Configuration.h"
21 #include "oops/base/Geometry.h"
24 #include "oops/util/Logger.h"
25 #include "oops/util/ObjectCounter.h"
26 #include "oops/util/Printable.h"
27 #include "oops/util/Timer.h"
28 
29 namespace oops {
30 
31 // -----------------------------------------------------------------------------
32 /// \brief Auxiliary Error Covariance related to model, not used at the moment.
33 /// \details
34 /// This class calls the model's implementation of ModelAuxCovariance.
35 // -----------------------------------------------------------------------------
36 
37 template <typename MODEL>
38 class ModelAuxCovariance : public util::Printable,
39  private boost::noncopyable,
40  private util::ObjectCounter<ModelAuxCovariance<MODEL> > {
41  typedef typename MODEL::ModelAuxCovariance ModelAuxCovariance_;
45 
46  public:
47  static const std::string classname() {return "oops::ModelAuxCovariance";}
48 
49  /// Constructor for specified \p conf and \p resol
50  ModelAuxCovariance(const eckit::Configuration & conf, const Geometry_ & resol);
51  /// Destructor (defined explicitly for timing and tracing)
53 
54  /// linearize operator
55  void linearize(const ModelAuxControl_ &, const Geometry_ &);
56  /// Sets the second parameter to the first multiplied by the covariance matrix.
57  void multiply(const ModelAuxIncrement_ &, ModelAuxIncrement_ &) const;
58  /// Sets the second parameter to the first multiplied by the inverse covariance matrix.
60  /// randomize the values in the ModelAuxIncrement
61  void randomize(ModelAuxIncrement_ &) const;
62 
63  /// Accessor to the configuration associated with the ModelAuxIncrement
64  const eckit::Configuration & config() const {return cov_->config();}
65 
66  private:
67  void print(std::ostream &) const;
68  std::unique_ptr<ModelAuxCovariance_> cov_;
69 };
70 
71 // =============================================================================
72 
73 template<typename MODEL>
74 ModelAuxCovariance<MODEL>::ModelAuxCovariance(const eckit::Configuration & conf,
75  const Geometry_ & resol) : cov_()
76 {
77  Log::trace() << "ModelAuxCovariance<MODEL>::ModelAuxCovariance starting" << std::endl;
78  util::Timer timer(classname(), "ModelAuxCovariance");
79  cov_.reset(new ModelAuxCovariance_(conf, resol.geometry()));
80  Log::trace() << "ModelAuxCovariance<MODEL>::ModelAuxCovariance done" << std::endl;
81 }
82 
83 // -----------------------------------------------------------------------------
84 
85 template<typename MODEL>
87  Log::trace() << "ModelAuxCovariance<MODEL>::~ModelAuxCovariance starting" << std::endl;
88  util::Timer timer(classname(), "~ModelAuxCovariance");
89  cov_.reset();
90  Log::trace() << "ModelAuxCovariance<MODEL>::~ModelAuxCovariance done" << std::endl;
91 }
92 
93 // -----------------------------------------------------------------------------
94 
95 template<typename MODEL>
97  Log::trace() << "ModelAuxCovariance<MODEL>::linearize starting" << std::endl;
98  util::Timer timer(classname(), "linearize");
99  cov_->linearize(xx.modelauxcontrol(), resol.geometry());
100  Log::trace() << "ModelAuxCovariance<MODEL>::linearize done" << std::endl;
101 }
102 
103 // -----------------------------------------------------------------------------
104 
105 template<typename MODEL>
107  ModelAuxIncrement_ & dx2) const {
108  Log::trace() << "ModelAuxCovariance<MODEL>::multiply starting" << std::endl;
109  util::Timer timer(classname(), "multiply");
110  cov_->multiply(dx1.modelauxincrement(), dx2.modelauxincrement());
111  Log::trace() << "ModelAuxCovariance<MODEL>::multiply done" << std::endl;
112 }
113 
114 // -----------------------------------------------------------------------------
115 
116 template<typename MODEL>
118  ModelAuxIncrement_ & dx2) const {
119  Log::trace() << "ModelAuxCovariance<MODEL>::inverseMultiply starting" << std::endl;
120  util::Timer timer(classname(), "inverseMultiply");
121  cov_->inverseMultiply(dx1.modelauxincrement(), dx2.modelauxincrement());
122  Log::trace() << "ModelAuxCovariance<MODEL>::inverseMultiply done" << std::endl;
123 }
124 
125 // -----------------------------------------------------------------------------
126 
127 template<typename MODEL>
129  Log::trace() << "ModelAuxCovariance<MODEL>::randomize starting" << std::endl;
130  util::Timer timer(classname(), "randomize");
131  cov_->randomize(dx.modelauxincrement());
132  Log::trace() << "ModelAuxCovariance<MODEL>::randomize done" << std::endl;
133 }
134 
135 // -----------------------------------------------------------------------------
136 
137 template<typename MODEL>
138 void ModelAuxCovariance<MODEL>::print(std::ostream & os) const {
139  Log::trace() << "ModelAuxCovariance<MODEL>::print starting" << std::endl;
140  util::Timer timer(classname(), "print");
141  os << *cov_;
142  Log::trace() << "ModelAuxCovariance<MODEL>::print done" << std::endl;
143 }
144 
145 // -----------------------------------------------------------------------------
146 
147 } // namespace oops
148 
149 #endif // OOPS_INTERFACE_MODELAUXCOVARIANCE_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
Auxiliary state related to model (could be e.g. model bias), not used at the moment.
const ModelAuxControl_ & modelauxcontrol() const
const Accessor
Auxiliary Error Covariance related to model, not used at the moment.
ModelAuxCovariance(const eckit::Configuration &conf, const Geometry_ &resol)
Constructor for specified conf and resol.
void multiply(const ModelAuxIncrement_ &, ModelAuxIncrement_ &) const
Sets the second parameter to the first multiplied by the covariance matrix.
std::unique_ptr< ModelAuxCovariance_ > cov_
void linearize(const ModelAuxControl_ &, const Geometry_ &)
linearize operator
ModelAuxIncrement< MODEL > ModelAuxIncrement_
void randomize(ModelAuxIncrement_ &) const
randomize the values in the ModelAuxIncrement
MODEL::ModelAuxCovariance ModelAuxCovariance_
~ModelAuxCovariance()
Destructor (defined explicitly for timing and tracing)
void inverseMultiply(const ModelAuxIncrement_ &, ModelAuxIncrement_ &) const
Sets the second parameter to the first multiplied by the inverse covariance matrix.
const eckit::Configuration & config() const
Accessor to the configuration associated with the ModelAuxIncrement.
Auxiliary Increment related to model, not used at the moment.
const ModelAuxIncrement_ & modelauxincrement() const
const Accessor
const Geometry_ & geometry() const
The namespace for the main oops code.