8 #ifndef OOPS_RUNS_ENSRECENTER_H_
9 #define OOPS_RUNS_ENSRECENTER_H_
16 #include "eckit/config/LocalConfiguration.h"
23 #include "oops/util/DateTime.h"
38 int execute(
const eckit::Configuration & fullConfig)
const {
40 const eckit::LocalConfiguration resolConfig(fullConfig,
"geometry");
44 const eckit::LocalConfiguration bkgConfig(fullConfig,
"center");
45 State_ x_center(resol, bkgConfig);
48 bool zeroCenter = fullConfig.getBool(
"zero center",
false);
54 std::vector<eckit::LocalConfiguration> ensConfig;
55 fullConfig.get(
"ensemble", ensConfig);
58 unsigned nm = ensConfig.size();
63 const double rk = 1.0/(
static_cast<double>(nm));
64 for (
unsigned jj = 0; jj < nm; ++jj) {
65 State_ x(resol, ensConfig[jj]);
67 Log::test() <<
"Original member " << jj <<
" : " << x << std::endl;
69 Log::test() <<
"Ensemble mean: " << std::endl << ensmean << std::endl;
72 if (fullConfig.has(
"ensemble mean output")) {
73 eckit::LocalConfiguration meanout(fullConfig,
"ensemble mean output");
74 ensmean.
write(meanout);
78 const Variables vars(fullConfig,
"recenter variables");
81 for (
unsigned jj = 0; jj < nm; ++jj) {
82 State_ x(resol, ensConfig[jj]);
84 pert.
diff(x, ensmean);
89 eckit::LocalConfiguration recenterout(fullConfig,
"recentered output");
90 recenterout.set(
"member",
static_cast<int>(jj+1) );
92 Log::test() <<
"Recentered member " << jj <<
" : " << x << std::endl;
100 return "oops::EnsRecenter<" + MODEL::name() +
">";
const eckit::mpi::Comm & getComm() const
int execute(const eckit::Configuration &fullConfig) const
Increment< MODEL > Increment_
Geometry< MODEL > Geometry_
EnsRecenter(const eckit::mpi::Comm &comm=oops::mpi::world())
std::string appname() const
Geometry class used in oops; subclass of interface class interface::Geometry.
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.
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.