OOPS
ConvertState.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2018-2021 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_CONVERTSTATE_H_
9 #define OOPS_RUNS_CONVERTSTATE_H_
10 
11 #include <memory>
12 #include <string>
13 #include <vector>
14 
15 #include "eckit/config/LocalConfiguration.h"
16 #include "oops/base/Geometry.h"
17 #include "oops/base/State.h"
20 #include "oops/mpi/mpi.h"
21 #include "oops/runs/Application.h"
22 #include "oops/util/DateTime.h"
23 #include "oops/util/Duration.h"
24 #include "oops/util/Logger.h"
25 
26 namespace oops {
27 
28 template <typename MODEL> class ConvertState : public Application {
32 
33  public:
34 // -------------------------------------------------------------------------------------------------
35  explicit ConvertState(const eckit::mpi::Comm & comm = oops::mpi::world()) : Application(comm) {
36  instantiateVariableChangeFactory<MODEL>();
37  }
38 // -------------------------------------------------------------------------------------------------
39  virtual ~ConvertState() {}
40 // -------------------------------------------------------------------------------------------------
41  int execute(const eckit::Configuration & fullConfig) const {
42 // Setup resolution for intput and output
43  const eckit::LocalConfiguration inputResolConfig(fullConfig, "input geometry");
44  const Geometry_ resol1(inputResolConfig, this->getComm());
45 
46  const eckit::LocalConfiguration outputResolConfig(fullConfig, "output geometry");
47  const Geometry_ resol2(outputResolConfig, this->getComm());
48 
49 // Variable transform(s)
50  std::vector<VariableChange_> chvars;
51  std::vector<bool> inverse;
52 
53  std::vector<eckit::LocalConfiguration> chvarconfs;
54  fullConfig.get("variable changes", chvarconfs);
55  for (size_t cv = 0; cv < chvarconfs.size(); ++cv) {
56  chvars.emplace_back(resol2, chvarconfs[cv]);
57  inverse.push_back(chvarconfs[cv].getBool("do inverse", false));
58  }
59 
60 // List of input and output states
61  std::vector<eckit::LocalConfiguration> statesConf;
62  fullConfig.get("states", statesConf);
63  int nstates = statesConf.size();
64 
65 // Loop over states
66  for (int jm = 0; jm < nstates; ++jm) {
67 // Print output
68  Log::info() << "Converting state " << jm+1 << " of " << nstates << std::endl;
69 
70 // Read state
71  const eckit::LocalConfiguration inputConfig(statesConf[jm], "input");
72  State_ xxi(resol1, inputConfig);
73  Log::test() << "Input state: " << xxi << std::endl;
74 
75 // Copy and change resolution
76  std::unique_ptr<State_> xx(new State_(resol2, xxi)); // Pointer that can be reset after chvar
77 
78 // Variable transform(s)
79  for (size_t cv = 0; cv < chvars.size(); ++cv) {
80  if (!inverse[cv]) {
81  State_ xchvarout = chvars[cv].changeVar(*xx);
82  xx.reset(new State_(xchvarout));
83  } else {
84  State_ xchvarout = chvars[cv].changeVarInverse(*xx);
85  xx.reset(new State_(xchvarout));
86  }
87  Log::test() << "Variable transform: " << chvars[cv] << std::endl;
88  Log::test() << "State after variable transform: " << *xx << std::endl;
89  }
90 
91 // Write state
92  const eckit::LocalConfiguration outputConfig(statesConf[jm], "output");
93  xx->write(outputConfig);
94 
95  Log::test() << "Output state: " << *xx << std::endl;
96  }
97  return 0;
98  }
99 // -------------------------------------------------------------------------------------------------
100  private:
101  std::string appname() const {
102  return "oops::ConvertState<" + MODEL::name() + ">";
103  }
104 // -------------------------------------------------------------------------------------------------
105 };
106 
107 } // namespace oops
108 #endif // OOPS_RUNS_CONVERTSTATE_H_
const eckit::mpi::Comm & getComm() const
Definition: Application.h:36
ConvertState(const eckit::mpi::Comm &comm=oops::mpi::world())
Definition: ConvertState.h:35
State< MODEL > State_
Definition: ConvertState.h:30
std::string appname() const
Definition: ConvertState.h:101
Geometry< MODEL > Geometry_
Definition: ConvertState.h:29
virtual ~ConvertState()
Definition: ConvertState.h:39
VariableChange< MODEL > VariableChange_
Definition: ConvertState.h:31
int execute(const eckit::Configuration &fullConfig) const
Definition: ConvertState.h:41
Geometry class used in oops; subclass of interface class interface::Geometry.
State class used in oops; subclass of interface class interface::State.
Encapsulates the nonlinear variable change Note: to see methods that need to be implemented in the im...
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.