12 #ifndef OOPS_BASE_INCREMENT_H_
13 #define OOPS_BASE_INCREMENT_H_
15 #include "atlas/field.h"
22 #include "oops/util/DateTime.h"
23 #include "oops/util/gatherPrint.h"
24 #include "oops/util/Timer.h"
46 template <
typename MODEL>
83 void print(std::ostream &)
const override;
92 template <
typename MODEL>
94 const util::DateTime & date):
95 interface::
Increment<MODEL>(geometry, variables, date), variables_(variables),
96 timeComm_(&geometry.timeComm())
101 template <
typename MODEL>
103 interface::
Increment<MODEL>(geometry, other), variables_(other.variables_),
104 timeComm_(other.timeComm_)
109 template <
typename MODEL>
111 interface::
Increment<MODEL>(other, copy), variables_(other.variables_),
112 timeComm_(other.timeComm_)
117 template<
typename MODEL>
120 timeComm_->allReduceInPlace(zz, eckit::mpi::Operation::SUM);
126 template<
typename MODEL>
130 timeComm_->allReduceInPlace(zz, eckit::mpi::Operation::SUM);
137 template<
typename MODEL>
139 Log::trace() <<
"Increment<MODEL>::Increment shift_forward starting" << std::endl;
140 static int tag = 159357;
141 size_t mytime = timeComm_->rank();
144 if (mytime + 1 < timeComm_->size()) {
156 Log::trace() <<
"Increment<MODEL>::Increment shift_forward done" << std::endl;
161 template<
typename MODEL>
163 Log::trace() <<
"Increment<MODEL>::Increment shift_backward starting" << std::endl;
164 static int tag = 30951;
165 size_t mytime = timeComm_->rank();
173 if (mytime + 1 < timeComm_->size()) {
180 Log::trace() <<
"Increment<MODEL>::Increment shift_backward done" << std::endl;
185 template<
typename MODEL>
189 this->increment_.reset();
194 template<
typename MODEL>
196 if (timeComm_->size() > 1) {
197 gatherPrint(os, this->increment(), *timeComm_);
199 os << this->increment();
205 template <
typename MODEL>
207 Log::trace() <<
"operator+=(State, Increment) starting" << std::endl;
208 util::Timer timer(
"oops::Increment",
"operator+=(State, Increment)");
210 Log::trace() <<
"operator+=(State, Increment) done" << std::endl;
Geometry class used in oops; subclass of interface class interface::Geometry.
Increment class used in oops.
void toAtlas()
Set ATLAS fieldset associated with this Increment internally.
void print(std::ostream &) const override
double dot_product_with(const Increment &other) const
dot product with the other increment
atlas::FieldSet & atlas()
Accessors to the ATLAS fieldset.
const Variables & variables() const
Accessor to Variables stored in this increment.
Geometry< MODEL > Geometry_
const eckit::mpi::Comm * timeComm_
Variables stored in this Increment.
atlas::FieldSet atlasFieldSet_
pointer to the MPI communicator in time
const eckit::mpi::Comm & timeComm() const
Accessor to the time communicator.
double norm() const
Norm for diagnostics.
Increment(const Geometry_ &geometry, const Variables &variables, const util::DateTime &date)
Constructor for specified geometry, with variables, valid on date.
const atlas::FieldSet & atlas() const
void shift_forward(const util::DateTime &dt)
Shift forward in time by dt.
void shift_backward(const util::DateTime &dt)
Shift backward in time by dt.
State class used in oops; subclass of interface class interface::State.
const Increment_ & increment() const
void setAtlas(atlas::FieldSet *) const
Geometry_ geometry() const
Accessor to geometry associated with this Increment.
void toAtlas(atlas::FieldSet *) const
double dot_product_with(const Increment &other) const
Compute dot product of this Increment with other.
double norm() const
Norm (used in tests)
State_ & state()
Accessor.
void send(const eckit::mpi::Comm &comm, const SERIALIZABLE &sendobj, const int dest, const int tag)
Extend eckit Comm for Serializable oops objects.
void receive(const eckit::mpi::Comm &comm, SERIALIZABLE &recvobj, const int source, const int tag)
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.