OOPS
|
Auxiliary Increment related to model, not used at the moment. More...
#include <ModelAuxIncrement.h>
Public Member Functions | |
ModelAuxIncrement (const Geometry_ &resol, const eckit::Configuration &conf) | |
Constructor for specified resol and conf . More... | |
ModelAuxIncrement (const ModelAuxIncrement &other, const bool copy=true) | |
ModelAuxIncrement (const ModelAuxIncrement &other, const eckit::Configuration &conf) | |
Copies other ModelAuxIncrement, reading extra information from conf . More... | |
~ModelAuxIncrement () | |
Destructor (defined explicitly for timing and tracing) More... | |
const ModelAuxIncrement_ & | modelauxincrement () const |
const Accessor More... | |
ModelAuxIncrement_ & | modelauxincrement () |
Accessor. More... | |
void | diff (const ModelAuxControl_ &, const ModelAuxControl_ &) |
Sets this ModelAuxIncrement to the difference between two ModelAuxControl objects. More... | |
void | zero () |
Zero out this ModelAuxIncrement. More... | |
ModelAuxIncrement & | operator= (const ModelAuxIncrement &) |
Linear algebra operators. More... | |
ModelAuxIncrement & | operator+= (const ModelAuxIncrement &) |
ModelAuxIncrement & | operator-= (const ModelAuxIncrement &) |
ModelAuxIncrement & | operator*= (const double &) |
void | axpy (const double &, const ModelAuxIncrement &) |
double | dot_product_with (const ModelAuxIncrement &other) const |
dot product with the other ModelAuxIncrement More... | |
void | read (const eckit::Configuration &) |
Read this ModelAuxIncrement from file. More... | |
void | write (const eckit::Configuration &) const |
Write this ModelAuxIncrement out to file. More... | |
double | norm () const |
Norm (used in tests) More... | |
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 |
Static Public Member Functions | |
static const std::string | classname () |
Private Types | |
typedef MODEL::ModelAuxIncrement | ModelAuxIncrement_ |
typedef Geometry< MODEL > | Geometry_ |
typedef ModelAuxControl< MODEL > | ModelAuxControl_ |
Private Member Functions | |
void | print (std::ostream &) const override |
Private Attributes | |
std::unique_ptr< ModelAuxIncrement_ > | aux_ |
Auxiliary Increment related to model, not used at the moment.
This class calls the model's implementation of ModelAuxIncrement.
Definition at line 40 of file oops/interface/ModelAuxIncrement.h.
|
private |
Definition at line 44 of file oops/interface/ModelAuxIncrement.h.
|
private |
Definition at line 45 of file oops/interface/ModelAuxIncrement.h.
|
private |
Definition at line 43 of file oops/interface/ModelAuxIncrement.h.
oops::ModelAuxIncrement< MODEL >::ModelAuxIncrement | ( | const Geometry_ & | resol, |
const eckit::Configuration & | conf | ||
) |
Constructor for specified resol
and conf
.
Definition at line 110 of file oops/interface/ModelAuxIncrement.h.
|
explicit |
Copies other
ModelAuxIncrement if copy
is true, otherwise creates zero ModelAuxIncrement with same variables and geometry
Definition at line 121 of file oops/interface/ModelAuxIncrement.h.
oops::ModelAuxIncrement< MODEL >::ModelAuxIncrement | ( | const ModelAuxIncrement< MODEL > & | other, |
const eckit::Configuration & | conf | ||
) |
Copies other
ModelAuxIncrement, reading extra information from conf
.
Definition at line 132 of file oops/interface/ModelAuxIncrement.h.
oops::ModelAuxIncrement< MODEL >::~ModelAuxIncrement |
Destructor (defined explicitly for timing and tracing)
Definition at line 143 of file oops/interface/ModelAuxIncrement.h.
void oops::ModelAuxIncrement< MODEL >::axpy | ( | const double & | zz, |
const ModelAuxIncrement< MODEL > & | dx | ||
) |
Definition at line 203 of file oops/interface/ModelAuxIncrement.h.
|
inlinestatic |
Definition at line 48 of file oops/interface/ModelAuxIncrement.h.
|
override |
Definition at line 260 of file oops/interface/ModelAuxIncrement.h.
void oops::ModelAuxIncrement< MODEL >::diff | ( | const ModelAuxControl_ & | x1, |
const ModelAuxControl_ & | x2 | ||
) |
Sets this ModelAuxIncrement to the difference between two ModelAuxControl objects.
Definition at line 151 of file oops/interface/ModelAuxIncrement.h.
double oops::ModelAuxIncrement< MODEL >::dot_product_with | ( | const ModelAuxIncrement< MODEL > & | other | ) | const |
dot product with the other
ModelAuxIncrement
Definition at line 211 of file oops/interface/ModelAuxIncrement.h.
|
inline |
Accessor.
Definition at line 63 of file oops/interface/ModelAuxIncrement.h.
|
inline |
const Accessor
Definition at line 61 of file oops/interface/ModelAuxIncrement.h.
double oops::ModelAuxIncrement< MODEL >::norm |
Norm (used in tests)
Definition at line 236 of file oops/interface/ModelAuxIncrement.h.
ModelAuxIncrement< MODEL > & oops::ModelAuxIncrement< MODEL >::operator*= | ( | const double & | zz | ) |
Definition at line 194 of file oops/interface/ModelAuxIncrement.h.
ModelAuxIncrement< MODEL > & oops::ModelAuxIncrement< MODEL >::operator+= | ( | const ModelAuxIncrement< MODEL > & | rhs | ) |
Definition at line 176 of file oops/interface/ModelAuxIncrement.h.
ModelAuxIncrement< MODEL > & oops::ModelAuxIncrement< MODEL >::operator-= | ( | const ModelAuxIncrement< MODEL > & | rhs | ) |
Definition at line 185 of file oops/interface/ModelAuxIncrement.h.
ModelAuxIncrement< MODEL > & oops::ModelAuxIncrement< MODEL >::operator= | ( | const ModelAuxIncrement< MODEL > & | rhs | ) |
Linear algebra operators.
Definition at line 167 of file oops/interface/ModelAuxIncrement.h.
|
overrideprivate |
Definition at line 268 of file oops/interface/ModelAuxIncrement.h.
void oops::ModelAuxIncrement< MODEL >::read | ( | const eckit::Configuration & | conf | ) |
Read this ModelAuxIncrement from file.
Definition at line 220 of file oops/interface/ModelAuxIncrement.h.
|
override |
Definition at line 252 of file oops/interface/ModelAuxIncrement.h.
|
override |
Serialize and deserialize (used in 4DEnVar, weak-constraint 4DVar and Block-Lanczos minimizer)
Definition at line 245 of file oops/interface/ModelAuxIncrement.h.
void oops::ModelAuxIncrement< MODEL >::write | ( | const eckit::Configuration & | conf | ) | const |
Write this ModelAuxIncrement out to file.
Definition at line 228 of file oops/interface/ModelAuxIncrement.h.
void oops::ModelAuxIncrement< MODEL >::zero |
Zero out this ModelAuxIncrement.
Definition at line 159 of file oops/interface/ModelAuxIncrement.h.
|
private |
Definition at line 92 of file oops/interface/ModelAuxIncrement.h.