OOPS
|
Increment class used in oops. More...
#include <Increment.h>
Public Member Functions | |
Increment (const Geometry_ &geometry, const Variables &variables, const util::DateTime &date) | |
Constructor for specified geometry , with variables , valid on date . More... | |
Increment (const Geometry_ &geometry, const Increment &other) | |
Copies other increment, changing its resolution to geometry . More... | |
Increment (const Increment &other, const bool copy=true) | |
const eckit::mpi::Comm & | timeComm () const |
Accessor to the time communicator. More... | |
const Variables & | variables () const |
Accessor to Variables stored in this increment. More... | |
void | shift_forward (const util::DateTime &dt) |
Shift forward in time by dt . More... | |
void | shift_backward (const util::DateTime &dt) |
Shift backward in time by dt . More... | |
void | toAtlas () |
Set ATLAS fieldset associated with this Increment internally. More... | |
atlas::FieldSet & | atlas () |
Accessors to the ATLAS fieldset. More... | |
const atlas::FieldSet & | atlas () const |
double | dot_product_with (const Increment &other) const |
dot product with the other increment More... | |
double | norm () const |
Norm for diagnostics. More... | |
![]() | |
Increment (const Geometry_ &geometry, const Variables &variables, const util::DateTime &date) | |
Constructor for specified geometry , with variables , valid on date . More... | |
Increment (const Geometry_ &geometry, const Increment &other) | |
Copies other increment, changing its resolution to geometry . More... | |
Increment (const Increment &, const bool copy=true) | |
virtual | ~Increment () |
Destructor (defined explicitly for timing and tracing) More... | |
void | diff (const State_ &state1, const State_ &state2) |
Set this Increment to be difference between state1 and state2 . More... | |
const util::DateTime | validTime () const |
Accessor to the time of this Increment. More... | |
void | updateTime (const util::Duration &dt) |
Updates this Increment's valid time by dt (used in PseudoModel) More... | |
void | zero () |
Zero out this Increment. More... | |
void | zero (const util::DateTime &date) |
Zero out this Increment and set its date to date . More... | |
void | ones () |
Set this Increment to ones (used in tests) More... | |
void | dirac (const eckit::Configuration &) |
Set Increment according to the configuration (used in Dirac application) More... | |
Increment & | operator= (const Increment &) |
Assignment operator. More... | |
Increment & | operator+= (const Increment &) |
Linear algebra operators. More... | |
Increment & | operator-= (const Increment &) |
Increment & | operator*= (const double &) |
void | axpy (const double &w, const Increment &dx, const bool check=true) |
double | dot_product_with (const Increment &other) const |
Compute dot product of this Increment with other . More... | |
void | schur_product_with (const Increment &other) |
Compute Schur product of this Increment with other , assign to this Increment. More... | |
void | random () |
Randomize the Increment (used in tests) More... | |
void | accumul (const double &w, const State_ &x) |
Accumulate (add w * x to the increment), used in WeightedDiff with Accumulator. More... | |
void | read (const eckit::Configuration &) |
Read this Increment from file. More... | |
void | write (const eckit::Configuration &) const |
Write this Increment out to file. More... | |
double | norm () const |
Norm (used in tests) More... | |
LocalIncrement | getLocal (const GeometryIterator_ &iter) const |
Get local (at iter local volume) increment (used in LocalEnsembleSolver) More... | |
void | setLocal (const LocalIncrement &gp, const GeometryIterator_ &iter) |
Set local (at iter local volume) increment to be gp (used in LocalEnsembleSolver) More... | |
Geometry_ | geometry () const |
Accessor to geometry associated with this Increment. More... | |
void | setAtlas (atlas::FieldSet *) const |
void | toAtlas (atlas::FieldSet *) const |
void | fromAtlas (atlas::FieldSet *) |
size_t | serialSize () const override |
Serialize and deserialize (used in 4DEnVar, weak-constraint 4DVar and Block-Lanczos minimizer) More... | |
void | serialize (std::vector< double > &) const override |
void | deserialize (const std::vector< double > &, size_t &) override |
const Increment_ & | increment () const |
Increment_ & | increment () |
![]() | |
GeneralizedDepartures () | |
virtual | ~GeneralizedDepartures () |
Private Types | |
typedef Geometry< MODEL > | Geometry_ |
Private Member Functions | |
void | print (std::ostream &) const override |
Private Attributes | |
Variables | variables_ |
const eckit::mpi::Comm * | timeComm_ |
Variables stored in this Increment. More... | |
atlas::FieldSet | atlasFieldSet_ |
pointer to the MPI communicator in time More... | |
Additional Inherited Members | |
![]() | |
static const std::string | classname () |
![]() | |
std::unique_ptr< Increment_ > | increment_ |
Increment class used in oops.
Adds extra methods that do not need to be implemented in the model implementations:
Adds communication through time to the following Increment methods:
Definition at line 47 of file oops/base/Increment.h.
|
private |
Definition at line 48 of file oops/base/Increment.h.
oops::Increment< MODEL >::Increment | ( | const Geometry_ & | geometry, |
const Variables & | variables, | ||
const util::DateTime & | date | ||
) |
Constructor for specified geometry
, with variables
, valid on date
.
Definition at line 93 of file oops/base/Increment.h.
oops::Increment< MODEL >::Increment | ( | const Geometry_ & | geometry, |
const Increment< MODEL > & | other | ||
) |
Copies other
increment, changing its resolution to geometry
.
Definition at line 102 of file oops/base/Increment.h.
oops::Increment< MODEL >::Increment | ( | const Increment< MODEL > & | other, |
const bool | copy = true |
||
) |
Creates Increment with the same geometry and variables as other
. Copies other
if copy
is true, otherwise creates zero increment
Definition at line 110 of file oops/base/Increment.h.
|
inline |
Accessors to the ATLAS fieldset.
Definition at line 74 of file oops/base/Increment.h.
|
inline |
Definition at line 75 of file oops/base/Increment.h.
double oops::Increment< MODEL >::dot_product_with | ( | const Increment< MODEL > & | other | ) | const |
dot product with the other
increment
Definition at line 118 of file oops/base/Increment.h.
double oops::Increment< MODEL >::norm |
Norm for diagnostics.
Definition at line 127 of file oops/base/Increment.h.
|
overrideprivatevirtual |
Implements oops::GeneralizedDepartures.
Definition at line 195 of file oops/base/Increment.h.
void oops::Increment< MODEL >::shift_backward | ( | const util::DateTime & | dt | ) |
Shift backward in time by dt
.
Definition at line 162 of file oops/base/Increment.h.
void oops::Increment< MODEL >::shift_forward | ( | const util::DateTime & | dt | ) |
Shift forward in time by dt
.
Definition at line 138 of file oops/base/Increment.h.
|
inline |
Accessor to the time communicator.
Definition at line 60 of file oops/base/Increment.h.
void oops::Increment< MODEL >::toAtlas |
Set ATLAS fieldset associated with this Increment internally.
Definition at line 186 of file oops/base/Increment.h.
|
inline |
Accessor to Variables stored in this increment.
Definition at line 62 of file oops/base/Increment.h.
|
private |
pointer to the MPI communicator in time
Definition at line 87 of file oops/base/Increment.h.
|
private |
Variables stored in this Increment.
Definition at line 86 of file oops/base/Increment.h.
|
private |
Definition at line 85 of file oops/base/Increment.h.