Loading [MathJax]/extensions/tex2jax.js
OOPS
All Classes Namespaces Files Functions Variables Typedefs Macros Pages
oops/interface/ModelAuxIncrement.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_MODELAUXINCREMENT_H_
12 #define OOPS_INTERFACE_MODELAUXINCREMENT_H_
13 
14 #include <iostream>
15 #include <memory>
16 #include <string>
17 #include <vector>
18 
19 #include "oops/base/Geometry.h"
21 #include "oops/util/Logger.h"
22 #include "oops/util/ObjectCounter.h"
23 #include "oops/util/Printable.h"
24 #include "oops/util/Serializable.h"
25 #include "oops/util/Timer.h"
26 
27 namespace eckit {
28  class Configuration;
29 }
30 
31 namespace oops {
32 
33 // -----------------------------------------------------------------------------
34 /// \brief Auxiliary Increment related to model, not used at the moment.
35 /// \details
36 /// This class calls the model's implementation of ModelAuxIncrement.
37 // -----------------------------------------------------------------------------
38 
39 template <typename MODEL>
40 class ModelAuxIncrement : public util::Printable,
41  public util::Serializable,
42  private util::ObjectCounter<ModelAuxIncrement<MODEL> > {
43  typedef typename MODEL::ModelAuxIncrement ModelAuxIncrement_;
46 
47  public:
48  static const std::string classname() {return "oops::ModelAuxIncrement";}
49 
50  /// Constructor for specified \p resol and \p conf
51  ModelAuxIncrement(const Geometry_ & resol, const eckit::Configuration & conf);
52  /// Copies \p other ModelAuxIncrement if \p copy is true,
53  /// otherwise creates zero ModelAuxIncrement with same variables and geometry
54  explicit ModelAuxIncrement(const ModelAuxIncrement & other, const bool copy = true);
55  /// Copies \p other ModelAuxIncrement, reading extra information from \p conf
56  ModelAuxIncrement(const ModelAuxIncrement & other, const eckit::Configuration & conf);
57  /// Destructor (defined explicitly for timing and tracing)
59 
60  /// const Accessor
61  const ModelAuxIncrement_ & modelauxincrement() const {return *aux_;}
62  /// Accessor
64 
65  /// Sets this ModelAuxIncrement to the difference between two ModelAuxControl objects
66  void diff(const ModelAuxControl_ &, const ModelAuxControl_ &);
67  /// Zero out this ModelAuxIncrement
68  void zero();
69  /// Linear algebra operators
73  ModelAuxIncrement & operator*=(const double &);
74  void axpy(const double &, const ModelAuxIncrement &);
75  /// dot product with the \p other ModelAuxIncrement
76  double dot_product_with(const ModelAuxIncrement & other) const;
77 
78  /// Read this ModelAuxIncrement from file
79  void read(const eckit::Configuration &);
80  /// Write this ModelAuxIncrement out to file
81  void write(const eckit::Configuration &) const;
82  /// Norm (used in tests)
83  double norm() const;
84 
85  /// Serialize and deserialize (used in 4DEnVar, weak-constraint 4DVar and Block-Lanczos minimizer)
86  size_t serialSize() const override;
87  void serialize(std::vector<double> &) const override;
88  void deserialize(const std::vector<double> &, size_t &) override;
89 
90  private:
91  void print(std::ostream &) const override;
92  std::unique_ptr<ModelAuxIncrement_> aux_;
93 };
94 
95 // -----------------------------------------------------------------------------
96 
97 template <typename MODEL>
99  const ModelAuxIncrement<MODEL> & dx) {
100  Log::trace() << "operator+=(ModelAuxControl, ModelAuxIncrement) starting" << std::endl;
101  util::Timer timer("oops::ModelAuxIncrement", "operator+=ModelAuxControl");
102  xx.modelauxcontrol() += dx.modelauxincrement();
103  Log::trace() << "operator+=(ModelAuxControl, ModelAuxIncrement) done" << std::endl;
104  return xx;
105 }
106 
107 // =============================================================================
108 
109 template<typename MODEL>
111  const eckit::Configuration & conf) : aux_()
112 {
113  Log::trace() << "ModelAuxIncrement<MODEL>::ModelAuxIncrement starting" << std::endl;
114  util::Timer timer(classname(), "ModelAuxIncrement");
115  aux_.reset(new ModelAuxIncrement_(resol.geometry(), conf));
116  this->setObjectSize(aux_->serialSize()*sizeof(double));
117  Log::trace() << "ModelAuxIncrement<MODEL>::ModelAuxIncrement done" << std::endl;
118 }
119 // -----------------------------------------------------------------------------
120 template<typename MODEL>
122  const bool copy) : aux_()
123 {
124  Log::trace() << "ModelAuxIncrement<MODEL>::ModelAuxIncrement copy starting" << std::endl;
125  util::Timer timer(classname(), "ModelAuxIncrement");
126  aux_.reset(new ModelAuxIncrement_(*other.aux_, copy));
127  this->setObjectSize(aux_->serialSize()*sizeof(double));
128  Log::trace() << "ModelAuxIncrement<MODEL>::ModelAuxIncrement copy done" << std::endl;
129 }
130 // -----------------------------------------------------------------------------
131 template<typename MODEL>
133  const eckit::Configuration & conf) : aux_()
134 {
135  Log::trace() << "ModelAuxIncrement<MODEL>::ModelAuxIncrement interpolated starting" << std::endl;
136  util::Timer timer(classname(), "ModelAuxIncrement");
137  aux_.reset(new ModelAuxIncrement_(*other.aux_, conf));
138  this->setObjectSize(aux_->serialSize()*sizeof(double));
139  Log::trace() << "ModelAuxIncrement<MODEL>::ModelAuxIncrement interpolated done" << std::endl;
140 }
141 // -----------------------------------------------------------------------------
142 template<typename MODEL>
144  Log::trace() << "ModelAuxIncrement<MODEL>::~ModelAuxIncrement starting" << std::endl;
145  util::Timer timer(classname(), "~ModelAuxIncrement");
146  aux_.reset();
147  Log::trace() << "ModelAuxIncrement<MODEL>::~ModelAuxIncrement done" << std::endl;
148 }
149 // -----------------------------------------------------------------------------
150 template<typename MODEL>
152  Log::trace() << "ModelAuxIncrement<MODEL>::diff starting" << std::endl;
153  util::Timer timer(classname(), "diff");
154  aux_->diff(x1.modelauxcontrol(), x2.modelauxcontrol());
155  Log::trace() << "ModelAuxIncrement<MODEL>::diff done" << std::endl;
156 }
157 // -----------------------------------------------------------------------------
158 template<typename MODEL>
160  Log::trace() << "ModelAuxIncrement<MODEL>::zero starting" << std::endl;
161  util::Timer timer(classname(), "zero");
162  aux_->zero();
163  Log::trace() << "ModelAuxIncrement<MODEL>::zero done" << std::endl;
164 }
165 // -----------------------------------------------------------------------------
166 template<typename MODEL>
168  Log::trace() << "ModelAuxIncrement<MODEL>::operator= starting" << std::endl;
169  util::Timer timer(classname(), "operator=");
170  *aux_ = *rhs.aux_;
171  Log::trace() << "ModelAuxIncrement<MODEL>::operator= done" << std::endl;
172  return *this;
173 }
174 // -----------------------------------------------------------------------------
175 template<typename MODEL>
177  Log::trace() << "ModelAuxIncrement<MODEL>::operator+= starting" << std::endl;
178  util::Timer timer(classname(), "operator+=");
179  *aux_ += *rhs.aux_;
180  Log::trace() << "ModelAuxIncrement<MODEL>::operator+= done" << std::endl;
181  return *this;
182 }
183 // -----------------------------------------------------------------------------
184 template<typename MODEL>
186  Log::trace() << "ModelAuxIncrement<MODEL>::operator-= starting" << std::endl;
187  util::Timer timer(classname(), "operator-=");
188  *aux_ -= *rhs.aux_;
189  Log::trace() << "ModelAuxIncrement<MODEL>::operator-= done" << std::endl;
190  return *this;
191 }
192 // -----------------------------------------------------------------------------
193 template<typename MODEL>
195  Log::trace() << "ModelAuxIncrement<MODEL>::operator*= starting" << std::endl;
196  util::Timer timer(classname(), "operator*=");
197  *aux_ *= zz;
198  Log::trace() << "ModelAuxIncrement<MODEL>::operator*= done" << std::endl;
199  return *this;
200 }
201 // -----------------------------------------------------------------------------
202 template<typename MODEL>
203 void ModelAuxIncrement<MODEL>::axpy(const double & zz, const ModelAuxIncrement & dx) {
204  Log::trace() << "ModelAuxIncrement<MODEL>::axpy starting" << std::endl;
205  util::Timer timer(classname(), "axpy");
206  aux_->axpy(zz, *dx.aux_);
207  Log::trace() << "ModelAuxIncrement<MODEL>::axpy done" << std::endl;
208 }
209 // -----------------------------------------------------------------------------
210 template<typename MODEL>
212  Log::trace() << "ModelAuxIncrement<MODEL>::dot_product_with starting" << std::endl;
213  util::Timer timer(classname(), "dot_product_with");
214  double zz = aux_->dot_product_with(*dx.aux_);
215  Log::trace() << "ModelAuxIncrement<MODEL>::dot_product_with done" << std::endl;
216  return zz;
217 }
218 // -----------------------------------------------------------------------------
219 template<typename MODEL>
220 void ModelAuxIncrement<MODEL>::read(const eckit::Configuration & conf) {
221  Log::trace() << "ModelAuxIncrement<MODEL>::read starting" << std::endl;
222  util::Timer timer(classname(), "read");
223  aux_->read(conf);
224  Log::trace() << "ModelAuxIncrement<MODEL>::read done" << std::endl;
225 }
226 // -----------------------------------------------------------------------------
227 template<typename MODEL>
228 void ModelAuxIncrement<MODEL>::write(const eckit::Configuration & conf) const {
229  Log::trace() << "ModelAuxIncrement<MODEL>::write starting" << std::endl;
230  util::Timer timer(classname(), "write");
231  aux_->write(conf);
232  Log::trace() << "ModelAuxIncrement<MODEL>::write done" << std::endl;
233 }
234 // -----------------------------------------------------------------------------
235 template<typename MODEL>
237  Log::trace() << "ModelAuxIncrement<MODEL>::norm starting" << std::endl;
238  util::Timer timer(classname(), "norm");
239  double zz = aux_->norm();
240  Log::trace() << "ModelAuxIncrement<MODEL>::norm done" << std::endl;
241  return zz;
242 }
243 // -----------------------------------------------------------------------------
244 template<typename MODEL>
246  Log::trace() << "ModelAuxIncrement<MODEL>::serialSize" << std::endl;
247  util::Timer timer(classname(), "serialSize");
248  return aux_->serialSize();
249 }
250 // -----------------------------------------------------------------------------
251 template<typename MODEL>
252 void ModelAuxIncrement<MODEL>::serialize(std::vector<double> & vect) const {
253  Log::trace() << "ModelAuxIncrement<MODEL>::serialize starting" << std::endl;
254  util::Timer timer(classname(), "serialize");
255  aux_->serialize(vect);
256  Log::trace() << "ModelAuxIncrement<MODEL>::serialize done" << std::endl;
257 }
258 // -----------------------------------------------------------------------------
259 template<typename MODEL>
260 void ModelAuxIncrement<MODEL>::deserialize(const std::vector<double> & vect, size_t & current) {
261  Log::trace() << "ModelAuxIncrement<MODEL>::deserialize starting" << std::endl;
262  util::Timer timer(classname(), "deserialize");
263  aux_->deserialize(vect, current);
264  Log::trace() << "ModelAuxIncrement<MODEL>::deserialize done" << std::endl;
265 }
266 // -----------------------------------------------------------------------------
267 template<typename MODEL>
268 void ModelAuxIncrement<MODEL>::print(std::ostream & os) const {
269  Log::trace() << "ModelAuxIncrement<MODEL>::print starting" << std::endl;
270  util::Timer timer(classname(), "print");
271  os << *aux_;
272  Log::trace() << "ModelAuxIncrement<MODEL>::print done" << std::endl;
273 }
274 // -----------------------------------------------------------------------------
275 
276 } // namespace oops
277 
278 #endif // OOPS_INTERFACE_MODELAUXINCREMENT_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 Increment related to model, not used at the moment.
double norm() const
Norm (used in tests)
void deserialize(const std::vector< double > &, size_t &) override
ModelAuxIncrement & operator+=(const ModelAuxIncrement &)
ModelAuxIncrement & operator=(const ModelAuxIncrement &)
Linear algebra operators.
MODEL::ModelAuxIncrement ModelAuxIncrement_
void serialize(std::vector< double > &) const override
const ModelAuxIncrement_ & modelauxincrement() const
const Accessor
ModelAuxIncrement(const Geometry_ &resol, const eckit::Configuration &conf)
Constructor for specified resol and conf.
size_t serialSize() const override
Serialize and deserialize (used in 4DEnVar, weak-constraint 4DVar and Block-Lanczos minimizer)
void read(const eckit::Configuration &)
Read this ModelAuxIncrement from file.
void write(const eckit::Configuration &) const
Write this ModelAuxIncrement out to file.
void zero()
Zero out this ModelAuxIncrement.
ModelAuxIncrement_ & modelauxincrement()
Accessor.
std::unique_ptr< ModelAuxIncrement_ > aux_
void diff(const ModelAuxControl_ &, const ModelAuxControl_ &)
Sets this ModelAuxIncrement to the difference between two ModelAuxControl objects.
~ModelAuxIncrement()
Destructor (defined explicitly for timing and tracing)
static const std::string classname()
ModelAuxControl< MODEL > ModelAuxControl_
double dot_product_with(const ModelAuxIncrement &other) const
dot product with the other ModelAuxIncrement
void print(std::ostream &) const override
ModelAuxIncrement & operator-=(const ModelAuxIncrement &)
void axpy(const double &, const ModelAuxIncrement &)
ModelAuxIncrement & operator*=(const double &)
const Geometry_ & geometry() const
Definition: FieldL95.h:22
The namespace for the main oops code.
State< MODEL > & operator+=(State< MODEL > &xx, const Increment< MODEL > &dx)
Add on dx incrment to model state xx.