8 #ifndef OOPS_RUNS_CONVERTSTATE_H_
9 #define OOPS_RUNS_CONVERTSTATE_H_
15 #include "eckit/config/LocalConfiguration.h"
22 #include "oops/util/DateTime.h"
23 #include "oops/util/Duration.h"
24 #include "oops/util/Logger.h"
36 instantiateVariableChangeFactory<MODEL>();
41 int execute(
const eckit::Configuration & fullConfig)
const {
43 const eckit::LocalConfiguration inputResolConfig(fullConfig,
"input geometry");
46 const eckit::LocalConfiguration outputResolConfig(fullConfig,
"output geometry");
50 std::vector<VariableChange_> chvars;
51 std::vector<bool> inverse;
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));
61 std::vector<eckit::LocalConfiguration> statesConf;
62 fullConfig.get(
"states", statesConf);
63 int nstates = statesConf.size();
66 for (
int jm = 0; jm < nstates; ++jm) {
68 Log::info() <<
"Converting state " << jm+1 <<
" of " << nstates << std::endl;
71 const eckit::LocalConfiguration inputConfig(statesConf[jm],
"input");
72 State_ xxi(resol1, inputConfig);
73 Log::test() <<
"Input state: " << xxi << std::endl;
76 std::unique_ptr<State_> xx(
new State_(resol2, xxi));
79 for (
size_t cv = 0; cv < chvars.size(); ++cv) {
81 State_ xchvarout = chvars[cv].changeVar(*xx);
82 xx.reset(
new State_(xchvarout));
84 State_ xchvarout = chvars[cv].changeVarInverse(*xx);
85 xx.reset(
new State_(xchvarout));
87 Log::test() <<
"Variable transform: " << chvars[cv] << std::endl;
88 Log::test() <<
"State after variable transform: " << *xx << std::endl;
92 const eckit::LocalConfiguration outputConfig(statesConf[jm],
"output");
93 xx->write(outputConfig);
95 Log::test() <<
"Output state: " << *xx << std::endl;
102 return "oops::ConvertState<" + MODEL::name() +
">";
const eckit::mpi::Comm & getComm() const
ConvertState(const eckit::mpi::Comm &comm=oops::mpi::world())
std::string appname() const
Geometry< MODEL > Geometry_
VariableChange< MODEL > VariableChange_
int execute(const eckit::Configuration &fullConfig) const
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)
The namespace for the main oops code.