8 #ifndef OOPS_RUNS_HYBRIDGAIN_H_
9 #define OOPS_RUNS_HYBRIDGAIN_H_
16 #include "eckit/config/LocalConfiguration.h"
23 #include "oops/util/abor1_cpp.h"
24 #include "oops/util/DateTime.h"
39 int execute(
const eckit::Configuration & fullConfig)
const {
41 const eckit::LocalConfiguration resolConfig(fullConfig,
"geometry");
45 double alphaControl = fullConfig.getDouble(
"hybrid weights.control");
46 double alphaEnsemble = fullConfig.getDouble(
"hybrid weights.ensemble");
49 std::string hybridType = fullConfig.getString(
"hybrid type",
"average analysis");
52 const eckit::LocalConfiguration bkgConfig(fullConfig,
"control");
53 State_ xaControl(resol, bkgConfig);
54 Log::test() <<
"Control: " << std::endl << xaControl << std::endl;
58 const eckit::LocalConfiguration emeanConfig(fullConfig,
"ensemble mean posterior");
59 State_ xaEmeanPost(resol, emeanConfig);
60 Log::test() <<
"Ensemble mean posterior: " << std::endl << xaEmeanPost << std::endl;
64 if (hybridType ==
"average analysis") {
69 ASSERT(alphaControl + alphaEnsemble == 1.0);
71 xNewCenter.
accumul(alphaControl, xaControl);
72 xNewCenter.
accumul(alphaEnsemble, xaEmeanPost);
73 }
else if (hybridType ==
"average increment") {
79 const eckit::LocalConfiguration emeanConfigPrior(fullConfig,
"ensemble mean prior");
80 State_ xfEmeanPrior(resol, emeanConfig);
81 Log::test() <<
"Ensemble mean prior: " << std::endl << xfEmeanPrior << std::endl;
84 pertEns.
diff(xaEmeanPost, xfEmeanPrior);
85 pertEns *= alphaEnsemble;
88 pertControl.
diff(xaControl, xfEmeanPrior);
89 pertControl *= alphaControl;
91 xNewCenter = xfEmeanPrior;
92 xNewCenter += pertEns;
93 xNewCenter += pertControl;
95 ABORT(
"Unknown hybrid gain type: " + hybridType);
98 eckit::LocalConfiguration centerOut(fullConfig,
"recentered output");
99 centerOut.set(
"member",
static_cast<int>(0) );
100 xNewCenter.
write(centerOut);
101 Log::test() <<
"new center : " << xNewCenter << std::endl;
104 std::vector<eckit::LocalConfiguration> ensConfig;
105 fullConfig.get(
"ensemble", ensConfig);
106 unsigned nens = ensConfig.size();
109 for (
unsigned jj = 0; jj < nens; ++jj) {
110 State_ x(resol, ensConfig[jj]);
112 pert.
diff(x, xaEmeanPost);
117 eckit::LocalConfiguration recenterout(fullConfig,
"recentered output");
118 recenterout.set(
"member",
static_cast<int>(jj+1) );
119 x.
write(recenterout);
120 Log::test() <<
"Recentered member " << jj <<
" : " << x << std::endl;
128 return "oops::HybridGain<" + MODEL::name() +
">";
const eckit::mpi::Comm & getComm() const
Geometry class used in oops; subclass of interface class interface::Geometry.
Geometry< MODEL > Geometry_
HybridGain(const eckit::mpi::Comm &comm=oops::mpi::world())
int execute(const eckit::Configuration &fullConfig) const
std::string appname() const
Increment< MODEL > Increment_
Increment class used in oops.
State class used in oops; subclass of interface class interface::State.
void diff(const State_ &state1, const State_ &state2)
Set this Increment to be difference between state1 and state2.
void zero()
Zero out this State.
const util::DateTime validTime() const
Accessor to the time of this State.
const Variables & variables() const
Accessor to variables associated with this State.
void accumul(const double &w, const State &x)
Accumulate (add w * x to the state)
void write(const eckit::Configuration &) const
Write this State out to file.
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
The namespace for the main oops code.