11 #ifndef OOPS_BASE_HYBRIDCOVARIANCE_H_
12 #define OOPS_BASE_HYBRIDCOVARIANCE_H_
19 #include "eckit/config/LocalConfiguration.h"
20 #include "eckit/exception/Exceptions.h"
28 #include "oops/util/DateTime.h"
29 #include "oops/util/Logger.h"
36 template <
typename MODEL>
44 const eckit::Configuration &,
const State_ &,
const State_ &);
52 std::vector< std::unique_ptr< ModelSpaceCovarianceBase<MODEL> > >
Bcomponents_;
62 template<
typename MODEL>
64 const eckit::Configuration & config,
68 std::vector<eckit::LocalConfiguration> confs;
69 config.get(
"components", confs);
70 for (
const auto & conf : confs) {
72 const eckit::LocalConfiguration covarConf(conf,
"covariance");
73 std::unique_ptr< ModelSpaceCovarianceBase<MODEL> > B(
78 const eckit::LocalConfiguration weightConf(conf,
"weight");
79 if (weightConf.has(
"value")) {
87 weight.
read(weightConf);
91 Log::trace() <<
"HybridCovariance created." << std::endl;
94 template<
typename MODEL>
96 Log::trace() <<
"HybridCovariance destructed" << std::endl;
99 template<
typename MODEL>
104 int incrementIndex = 0;
105 for (
size_t jcomp = 0; jcomp < Bcomponents_.size(); ++jcomp) {
106 Bcomponents_[jcomp]->multiply(dxi, tmp);
107 if (weightTypes_[jcomp] ==
"value") {
108 tmp *= valueWeights_[valueIndex];
111 if (weightTypes_[jcomp] ==
"increment") {
119 template<
typename MODEL>
123 GMRESR(dxo, dxi, *
this, Id, 10, 1.0e-3);
126 template<
typename MODEL>
131 for (
size_t jcomp = 0; jcomp < Bcomponents_.size(); ++jcomp) {
132 Bcomponents_[jcomp]->randomize(tmp);
133 if (weightTypes_[jcomp] ==
"value") {
134 tmp *= std::sqrt(valueWeights_[valueIndex]);
137 if (weightTypes_[jcomp] ==
"increment") {
138 throw eckit::NotImplemented(
"HybridCovariance::doRandomize: no square-root", Here());
Geometry class used in oops; subclass of interface class interface::Geometry.
Generic hybrid static-ensemble model space error covariance.
std::vector< std::unique_ptr< ModelSpaceCovarianceBase< MODEL > > > Bcomponents_
std::vector< double > valueWeights_
HybridCovariance(const Geometry_ &, const Variables &, const eckit::Configuration &, const State_ &, const State_ &)
Constructor, destructor.
Increment< MODEL > Increment_
std::vector< Increment_ > incrementWeights_
Geometry< MODEL > Geometry_
std::vector< std::string > weightTypes_
void doMultiply(const Increment_ &, Increment_ &) const override
void doInverseMultiply(const Increment_ &, Increment_ &) const override
void doRandomize(Increment_ &) const override
Increment class used in oops.
State class used in oops; subclass of interface class interface::State.
void schur_product_with(const Increment &other)
Compute Schur product of this Increment with other, assign to this Increment.
void read(const eckit::Configuration &)
Read this Increment from file.
void zero()
Zero out this Increment.
const util::DateTime validTime() const
Accessor to the time of this State.
The namespace for the main oops code.
double GMRESR(VECTOR &xx, const VECTOR &bb, const AMATRIX &A, const PMATRIX &precond, const int maxiter, const double tolerance)