OOPS
|
#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 &, 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 () |
Static Public Member Functions | |
static const std::string | classname () |
Protected Attributes | |
std::unique_ptr< Increment_ > | increment_ |
Private Types | |
typedef MODEL::Increment | Increment_ |
typedef oops::Geometry< MODEL > | Geometry_ |
typedef GeometryIterator< MODEL > | GeometryIterator_ |
typedef oops::State< MODEL > | State_ |
Private Member Functions | |
void | print (std::ostream &) const override |
pointer to the Increment implementation More... | |
Increment: Difference between two model states. Some fields that are present in a State may not be present in an Increment.
Definition at line 40 of file oops/interface/Increment.h.
|
private |
Definition at line 44 of file oops/interface/Increment.h.
|
private |
Definition at line 45 of file oops/interface/Increment.h.
|
private |
Definition at line 43 of file oops/interface/Increment.h.
|
private |
Definition at line 46 of file oops/interface/Increment.h.
oops::interface::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 148 of file oops/interface/Increment.h.
oops::interface::Increment< MODEL >::Increment | ( | const Geometry_ & | geometry, |
const Increment< MODEL > & | other | ||
) |
Copies other
increment, changing its resolution to geometry
.
Definition at line 162 of file oops/interface/Increment.h.
oops::interface::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 175 of file oops/interface/Increment.h.
|
virtual |
Destructor (defined explicitly for timing and tracing)
Definition at line 188 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::accumul | ( | const double & | w, |
const State_ & | x | ||
) |
Accumulate (add w
* x
to the increment), used in WeightedDiff with Accumulator.
Definition at line 333 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::axpy | ( | const double & | w, |
const Increment< MODEL > & | dx, | ||
const bool | check = true |
||
) |
Add w
* dx
to the Increment. If check
is set, check whether this and dx's
dates are the same
Definition at line 292 of file oops/interface/Increment.h.
|
inlinestatic |
Definition at line 49 of file oops/interface/Increment.h.
|
override |
Definition at line 455 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::diff | ( | const State_ & | state1, |
const State_ & | state2 | ||
) |
Set this Increment to be difference between state1
and state2
.
Definition at line 198 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::dirac | ( | const eckit::Configuration & | config | ) |
Set Increment according to the configuration (used in Dirac application)
Definition at line 238 of file oops/interface/Increment.h.
double oops::interface::Increment< MODEL >::dot_product_with | ( | const Increment< MODEL > & | other | ) | const |
Compute dot product of this Increment with other
.
Definition at line 302 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::fromAtlas | ( | atlas::FieldSet * | atlasFieldSet | ) |
Definition at line 426 of file oops/interface/Increment.h.
oops::Geometry< MODEL > oops::interface::Increment< MODEL >::geometry |
Accessor to geometry associated with this Increment.
Definition at line 395 of file oops/interface/Increment.h.
LocalIncrement oops::interface::Increment< MODEL >::getLocal | ( | const GeometryIterator_ & | iter | ) | const |
Get local (at iter
local volume) increment (used in LocalEnsembleSolver)
Definition at line 343 of file oops/interface/Increment.h.
|
inline |
Definition at line 136 of file oops/interface/Increment.h.
|
inline |
Accessor to MODEL::Increment, used in the other interface classes in oops. Does not need to be implemented.
Definition at line 135 of file oops/interface/Increment.h.
double oops::interface::Increment< MODEL >::norm |
Norm (used in tests)
Definition at line 384 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::ones |
Set this Increment to ones (used in tests)
Definition at line 228 of file oops/interface/Increment.h.
Increment< MODEL > & oops::interface::Increment< MODEL >::operator*= | ( | const double & | zz | ) |
Definition at line 281 of file oops/interface/Increment.h.
Increment< MODEL > & oops::interface::Increment< MODEL >::operator+= | ( | const Increment< MODEL > & | rhs | ) |
Linear algebra operators.
Definition at line 259 of file oops/interface/Increment.h.
Increment< MODEL > & oops::interface::Increment< MODEL >::operator-= | ( | const Increment< MODEL > & | rhs | ) |
Definition at line 270 of file oops/interface/Increment.h.
Increment< MODEL > & oops::interface::Increment< MODEL >::operator= | ( | const Increment< MODEL > & | rhs | ) |
Assignment operator.
Definition at line 248 of file oops/interface/Increment.h.
|
overrideprivatevirtual |
pointer to the Increment implementation
Implements oops::GeneralizedDepartures.
Definition at line 465 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::random |
Randomize the Increment (used in tests)
Definition at line 323 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::read | ( | const eckit::Configuration & | conf | ) |
Read this Increment from file.
Definition at line 364 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::schur_product_with | ( | const Increment< MODEL > & | other | ) |
Compute Schur product of this Increment with other
, assign to this Increment.
Definition at line 313 of file oops/interface/Increment.h.
|
override |
Definition at line 445 of file oops/interface/Increment.h.
|
override |
Serialize and deserialize (used in 4DEnVar, weak-constraint 4DVar and Block-Lanczos minimizer)
Definition at line 436 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::setAtlas | ( | atlas::FieldSet * | atlasFieldSet | ) | const |
ATLAS FieldSet interface (used to communicate data with SABER) For models that are not using ATLAS fields for their own Increment data:
Definition at line 406 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::setLocal | ( | const LocalIncrement< MODEL > & | gp, |
const GeometryIterator_ & | iter | ||
) |
Set local (at iter
local volume) increment to be gp
(used in LocalEnsembleSolver)
Definition at line 353 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::toAtlas | ( | atlas::FieldSet * | atlasFieldSet | ) | const |
Definition at line 416 of file oops/interface/Increment.h.
|
inline |
Updates this Increment's valid time by dt
(used in PseudoModel)
Definition at line 68 of file oops/interface/Increment.h.
|
inline |
Accessor to the time of this Increment.
Definition at line 66 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::write | ( | const eckit::Configuration & | conf | ) | const |
Write this Increment out to file.
Definition at line 374 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::zero |
Zero out this Increment.
Definition at line 208 of file oops/interface/Increment.h.
void oops::interface::Increment< MODEL >::zero | ( | const util::DateTime & | date | ) |
Zero out this Increment and set its date to date
.
Definition at line 218 of file oops/interface/Increment.h.
|
protected |
Definition at line 139 of file oops/interface/Increment.h.