OOPS
EnsRecenter.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2019 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #ifndef OOPS_RUNS_ENSRECENTER_H_
9 #define OOPS_RUNS_ENSRECENTER_H_
10 
11 #include <memory>
12 #include <string>
13 #include <vector>
14 
15 
16 #include "eckit/config/LocalConfiguration.h"
17 #include "oops/base/Geometry.h"
18 #include "oops/base/Increment.h"
19 #include "oops/base/State.h"
20 #include "oops/base/Variables.h"
21 #include "oops/mpi/mpi.h"
22 #include "oops/runs/Application.h"
23 #include "oops/util/DateTime.h"
24 
25 namespace oops {
26 
27 template <typename MODEL> class EnsRecenter : public Application {
31 
32  public:
33  // -----------------------------------------------------------------------------
34  explicit EnsRecenter(const eckit::mpi::Comm & comm = oops::mpi::world()) : Application(comm) {}
35  // -----------------------------------------------------------------------------
36  virtual ~EnsRecenter() {}
37  // -----------------------------------------------------------------------------
38  int execute(const eckit::Configuration & fullConfig) const {
39  // Setup Geometry
40  const eckit::LocalConfiguration resolConfig(fullConfig, "geometry");
41  const Geometry_ resol(resolConfig, this->getComm());
42 
43  // Get central state
44  const eckit::LocalConfiguration bkgConfig(fullConfig, "center");
45  State_ x_center(resol, bkgConfig);
46 
47  // Optionally zero the center
48  bool zeroCenter = fullConfig.getBool("zero center", false);
49  if (zeroCenter) {
50  x_center.zero();
51  }
52 
53  // Get ensemble configuration
54  std::vector<eckit::LocalConfiguration> ensConfig;
55  fullConfig.get("ensemble", ensConfig);
56 
57  // Get ensemble size
58  unsigned nm = ensConfig.size();
59 
60  // Compute ensemble mean
61  State_ ensmean(x_center);
62  ensmean.zero();
63  const double rk = 1.0/(static_cast<double>(nm));
64  for (unsigned jj = 0; jj < nm; ++jj) {
65  State_ x(resol, ensConfig[jj]);
66  ensmean.accumul(rk, x);
67  Log::test() << "Original member " << jj << " : " << x << std::endl;
68  }
69  Log::test() << "Ensemble mean: " << std::endl << ensmean << std::endl;
70 
71  // Optionally write the mean out
72  if (fullConfig.has("ensemble mean output")) {
73  eckit::LocalConfiguration meanout(fullConfig, "ensemble mean output");
74  ensmean.write(meanout);
75  }
76 
77  // Setup variables
78  const Variables vars(fullConfig, "recenter variables");
79 
80  // Recenter ensemble around central and save
81  for (unsigned jj = 0; jj < nm; ++jj) {
82  State_ x(resol, ensConfig[jj]);
83  Increment_ pert(resol, vars, x.validTime());
84  pert.diff(x, ensmean);
85  x = x_center;
86  x += pert;
87 
88  // Save recentered member
89  eckit::LocalConfiguration recenterout(fullConfig, "recentered output");
90  recenterout.set("member", static_cast<int>(jj+1) );
91  x.write(recenterout);
92  Log::test() << "Recentered member " << jj << " : " << x << std::endl;
93  }
94 
95  return 0;
96  }
97  // -----------------------------------------------------------------------------
98  private:
99  std::string appname() const {
100  return "oops::EnsRecenter<" + MODEL::name() + ">";
101  }
102  // -----------------------------------------------------------------------------
103 };
104 
105 } // namespace oops
106 
107 #endif // OOPS_RUNS_ENSRECENTER_H_
const eckit::mpi::Comm & getComm() const
Definition: Application.h:36
int execute(const eckit::Configuration &fullConfig) const
Definition: EnsRecenter.h:38
Increment< MODEL > Increment_
Definition: EnsRecenter.h:29
virtual ~EnsRecenter()
Definition: EnsRecenter.h:36
State< MODEL > State_
Definition: EnsRecenter.h:30
Geometry< MODEL > Geometry_
Definition: EnsRecenter.h:28
EnsRecenter(const eckit::mpi::Comm &comm=oops::mpi::world())
Definition: EnsRecenter.h:34
std::string appname() const
Definition: EnsRecenter.h:99
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)
Definition: oops/mpi/mpi.cc:84
The namespace for the main oops code.