OOPS
Increment4D.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_BASE_INCREMENT4D_H_
12 #define OOPS_BASE_INCREMENT4D_H_
13 
14 #include <ostream>
15 #include <string>
16 #include <vector>
17 
18 #include "eckit/config/LocalConfiguration.h"
19 
20 #include "oops/base/Geometry.h"
21 #include "oops/base/Increment.h"
22 #include "oops/base/State4D.h"
23 #include "oops/base/Variables.h"
24 #include "oops/util/DateTime.h"
25 #include "oops/util/dot_product.h"
26 #include "oops/util/Logger.h"
27 #include "oops/util/Printable.h"
28 
29 namespace oops {
30 
31 /// 4D model state Increment (vector of 3D Increments)
32 template<typename MODEL> class Increment4D : public util::Printable {
36 
37  public:
38  static const std::string classname() {return "Increment4D";}
39 
40  /// Constructor for specified times
41  Increment4D(const Geometry_ &, const Variables &, const std::vector<util::DateTime> &);
42 
43  /// Linear algebra operators
44  void diff(const State4D_ &, const State4D_ &);
45  void zero();
46  void random();
47  void ones();
48  double dot_product_with(const Increment4D &) const;
49  void schur_product_with(const Increment4D &);
50 
51  /// Get geometry
52  Geometry_ geometry() const {return incr4d_[0].geometry();}
53 
54  /// Get 3D increments
55  Increment_ & operator[](const int ii) {return incr4d_[ii];}
56  const Increment_ & operator[](const int ii) const {return incr4d_[ii];}
57  size_t size() const {return incr4d_.size();}
58 
59  private:
60  void print(std::ostream &) const override;
61 
62  std::vector<Increment_> incr4d_;
63 };
64 
65 // =============================================================================
66 /// "Increment" 4D State \p xx with 4D Increment \p dx
67 template <typename MODEL>
69  Log::trace() << "operator+=(State4D, Increment4D) starting" << std::endl;
70  for (size_t ii = 0; ii < xx.size(); ++ii) {
71  xx[ii] += dx[ii];
72  }
73  Log::trace() << "operator+=(State4D, Increment4D) done" << std::endl;
74  return xx;
75 }
76 
77 // -----------------------------------------------------------------------------
78 template<typename MODEL>
80  const Variables & vars,
81  const std::vector<util::DateTime> & timeslots)
82  : incr4d_()
83 {
84  for (size_t jtime = 0; jtime < timeslots.size(); ++jtime) {
85  incr4d_.emplace_back(resol, vars, timeslots[jtime]);
86  }
87  Log::trace() << "Increment4D:Increment4D created." << std::endl;
88 }
89 // -----------------------------------------------------------------------------
90 template<typename MODEL>
92  for (auto & incr : incr4d_) {
93  incr.zero();
94  }
95 }
96 // -----------------------------------------------------------------------------
97 template<typename MODEL>
99  for (auto & incr : incr4d_) {
100  incr.random();
101  }
102 }
103 // -----------------------------------------------------------------------------
104 template<typename MODEL>
106  for (auto & incr : incr4d_) {
107  incr.ones();
108  }
109 }
110 // -----------------------------------------------------------------------------
111 template<typename MODEL>
112 void Increment4D<MODEL>::diff(const State4D_ & cv1, const State4D_ & cv2) {
113  for (size_t jtime = 0; jtime < incr4d_.size(); ++jtime) {
114  incr4d_[jtime].diff(cv1[jtime], cv2[jtime]);
115  }
116 }
117 // -----------------------------------------------------------------------------
118 template <typename MODEL>
119 void Increment4D<MODEL>::print(std::ostream & outs) const {
120  for (const auto & incr : incr4d_) {
121  outs << incr << std::endl;
122  }
123 }
124 // -----------------------------------------------------------------------------
125 template<typename MODEL>
127  double zz = 0.0;
128  for (size_t jtime = 0; jtime < incr4d_.size(); ++jtime) {
129  zz += dot_product(incr4d_[jtime], x2[jtime]);
130  }
131  return zz;
132 }
133 // -----------------------------------------------------------------------------
134 template<typename MODEL>
136  for (size_t jtime = 0; jtime < incr4d_.size(); ++jtime) {
137  incr4d_[jtime].schur_product_with(x2[jtime]);
138  }
139 }
140 // -----------------------------------------------------------------------------
141 } // namespace oops
142 
143 #endif // OOPS_BASE_INCREMENT4D_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
4D model state Increment (vector of 3D Increments)
Definition: Increment4D.h:32
double dot_product_with(const Increment4D &) const
Definition: Increment4D.h:126
Increment< MODEL > Increment_
Definition: Increment4D.h:34
static const std::string classname()
Definition: Increment4D.h:38
Geometry_ geometry() const
Get geometry.
Definition: Increment4D.h:52
Increment_ & operator[](const int ii)
Get 3D increments.
Definition: Increment4D.h:55
Geometry< MODEL > Geometry_
Definition: Increment4D.h:33
size_t size() const
Definition: Increment4D.h:57
std::vector< Increment_ > incr4d_
Definition: Increment4D.h:62
void print(std::ostream &) const override
Definition: Increment4D.h:119
void diff(const State4D_ &, const State4D_ &)
Linear algebra operators.
Definition: Increment4D.h:112
const Increment_ & operator[](const int ii) const
Definition: Increment4D.h:56
Increment4D(const Geometry_ &, const Variables &, const std::vector< util::DateTime > &)
Constructor for specified times.
Definition: Increment4D.h:79
void schur_product_with(const Increment4D &)
Definition: Increment4D.h:135
State4D< MODEL > State4D_
Definition: Increment4D.h:35
Increment class used in oops.
Four dimensional state (vector of 3D States)
Definition: State4D.h:29
size_t size() const
Get 3D model state.
Definition: State4D.h:43
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.