OOPS
RTPP.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2019-2020 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_RTPP_H_
9 #define OOPS_RUNS_RTPP_H_
10 
11 #include <memory>
12 #include <string>
13 
14 #include "eckit/config/LocalConfiguration.h"
15 #include "oops/base/Geometry.h"
16 #include "oops/base/Increment.h"
17 #include "oops/base/State.h"
19 #include "oops/mpi/mpi.h"
20 #include "oops/runs/Application.h"
21 #include "oops/util/Logger.h"
22 
23 namespace oops {
24 
25 /// \brief Application for relaxation to prior perturbation (RTPP) inflation
26 template <typename MODEL> class RTPP : public Application {
31 
32  public:
33 // -----------------------------------------------------------------------------
34 
35  explicit RTPP(const eckit::mpi::Comm & comm = oops::mpi::world()) : Application(comm) {}
36 
37 // -----------------------------------------------------------------------------
38 
39  virtual ~RTPP() = default;
40 
41 // -----------------------------------------------------------------------------
42 
43  int execute(const eckit::Configuration & fullConfig) const {
44  // Setup geometry
45  const eckit::LocalConfiguration geometryConfig(fullConfig, "geometry");
46  const Geometry_ geometry(geometryConfig, this->getComm());
47 
48  // Get configurations
49  const eckit::LocalConfiguration bgConfig(fullConfig, "background");
50  const eckit::LocalConfiguration anConfig(fullConfig, "analysis");
51  const float factor = fullConfig.getFloat("factor");
52 
53  // Read all ensemble members
54  StateEnsemble_ bgens(geometry, bgConfig);
55  StateEnsemble_ anens(geometry, anConfig);
56  const size_t nens = bgens.size();
57  ASSERT(nens == anens.size());
58 
59  Variables anvars = anens.variables();
60  if (fullConfig.has("analysis variables"))
61  anvars = Variables(fullConfig, "analysis variables");
62 
63  // calculate ensemble means
64  State_ bg_mean = bgens.mean();
65  State_ an_mean = anens.mean();
66 
67  Log::test() << "Background member 1:" << bgens[0] << std::endl;
68  Log::test() << "Analysis member 1:" << anens[0] << std::endl;
69 
70  // update analysis with RTPP
71  for (size_t jj = 0; jj < nens; ++jj) {
72  // calculate RTPP perturbation
73  Increment_ pertTot(geometry, anvars, anens[jj].validTime());
74  pertTot.zero();
75 
76  Increment_ pert(pertTot);
77 
78  pert.diff(bgens[jj], bg_mean);
79  pertTot.axpy(factor, pert);
80 
81  pert.diff(anens[jj], an_mean);
82  pertTot.axpy((1.0 - factor), pert);
83 
84  // an_mean contains copies of anens[0] for non-state variables
85  // using zero+accumul instead of "=" ensures that only
86  // state variables are modified in anens[jj]
87  anens[jj].zero();
88  anens[jj].accumul(1.0, an_mean);
89 
90  // add analysis variable perturbations
91  anens[jj] += pertTot;
92  }
93  Log::test() << "Updated Analysis member 1:" << anens[0] << std::endl;
94 
95  // save the analysis mean
96  an_mean = anens.mean(); // calculate analysis mean
97  Log::test() << "Analysis mean:" << an_mean << std::endl;
98  eckit::LocalConfiguration outConfig(fullConfig, "output");
99  outConfig.set("member", 0);
100  an_mean.write(outConfig);
101 
102  // save the analysis ensemble
103  size_t mymember;
104  for (size_t jj=0; jj < nens; ++jj) {
105  mymember = jj+1;
106  outConfig.set("member", mymember);
107  anens[jj].write(outConfig);
108  }
109 
110  return 0;
111  }
112 
113 // -----------------------------------------------------------------------------
114 
115  private:
116  std::string appname() const {
117  return "oops::RTPP<" + MODEL::name() + ">";
118  }
119 
120 // -----------------------------------------------------------------------------
121 };
122 
123 } // namespace oops
124 #endif // OOPS_RUNS_RTPP_H_
const eckit::mpi::Comm & getComm() const
Definition: Application.h:36
Geometry class used in oops; subclass of interface class interface::Geometry.
Increment class used in oops.
Application for relaxation to prior perturbation (RTPP) inflation.
Definition: RTPP.h:26
virtual ~RTPP()=default
int execute(const eckit::Configuration &fullConfig) const
Definition: RTPP.h:43
std::string appname() const
Definition: RTPP.h:116
Geometry< MODEL > Geometry_
Definition: RTPP.h:27
State< MODEL > State_
Definition: RTPP.h:29
StateEnsemble< MODEL > StateEnsemble_
Definition: RTPP.h:30
RTPP(const eckit::mpi::Comm &comm=oops::mpi::world())
Definition: RTPP.h:35
Increment< MODEL > Increment_
Definition: RTPP.h:28
Ensemble of states.
Definition: StateEnsemble.h:26
const Variables & variables() const
Information.
Definition: StateEnsemble.h:43
size_t size() const
Accessors.
Definition: StateEnsemble.h:38
State_ mean() const
calculate ensemble mean
Definition: StateEnsemble.h:68
State class used in oops; subclass of interface class interface::State.
void axpy(const double &w, const Increment &dx, const bool check=true)
void diff(const State_ &state1, const State_ &state2)
Set this Increment to be difference between state1 and state2.
void zero()
Zero out this Increment.
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.