11 #ifndef OOPS_BASE_INCREMENT4D_H_
12 #define OOPS_BASE_INCREMENT4D_H_
18 #include "eckit/config/LocalConfiguration.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"
32 template<
typename MODEL>
class Increment4D :
public util::Printable {
38 static const std::string
classname() {
return "Increment4D";}
60 void print(std::ostream &)
const override;
67 template <
typename MODEL>
69 Log::trace() <<
"operator+=(State4D, Increment4D) starting" << std::endl;
70 for (
size_t ii = 0; ii < xx.
size(); ++ii) {
73 Log::trace() <<
"operator+=(State4D, Increment4D) done" << std::endl;
78 template<
typename MODEL>
81 const std::vector<util::DateTime> & timeslots)
84 for (
size_t jtime = 0; jtime < timeslots.size(); ++jtime) {
85 incr4d_.emplace_back(resol, vars, timeslots[jtime]);
87 Log::trace() <<
"Increment4D:Increment4D created." << std::endl;
90 template<
typename MODEL>
92 for (
auto & incr : incr4d_) {
97 template<
typename MODEL>
99 for (
auto & incr : incr4d_) {
104 template<
typename MODEL>
106 for (
auto & incr : incr4d_) {
111 template<
typename MODEL>
113 for (
size_t jtime = 0; jtime < incr4d_.size(); ++jtime) {
114 incr4d_[jtime].diff(cv1[jtime], cv2[jtime]);
118 template <
typename MODEL>
120 for (
const auto & incr : incr4d_) {
121 outs << incr << std::endl;
125 template<
typename MODEL>
128 for (
size_t jtime = 0; jtime < incr4d_.size(); ++jtime) {
129 zz += dot_product(incr4d_[jtime], x2[jtime]);
134 template<
typename MODEL>
136 for (
size_t jtime = 0; jtime < incr4d_.size(); ++jtime) {
137 incr4d_[jtime].schur_product_with(x2[jtime]);
Geometry class used in oops; subclass of interface class interface::Geometry.
4D model state Increment (vector of 3D Increments)
double dot_product_with(const Increment4D &) const
Increment< MODEL > Increment_
static const std::string classname()
Geometry_ geometry() const
Get geometry.
Increment_ & operator[](const int ii)
Get 3D increments.
Geometry< MODEL > Geometry_
std::vector< Increment_ > incr4d_
void print(std::ostream &) const override
void diff(const State4D_ &, const State4D_ &)
Linear algebra operators.
const Increment_ & operator[](const int ii) const
Increment4D(const Geometry_ &, const Variables &, const std::vector< util::DateTime > &)
Constructor for specified times.
void schur_product_with(const Increment4D &)
State4D< MODEL > State4D_
Increment class used in oops.
Four dimensional state (vector of 3D States)
size_t size() const
Get 3D model state.
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.