OOPS
DiffStates.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_DIFFSTATES_H_
9 #define OOPS_RUNS_DIFFSTATES_H_
10 
11 #include <string>
12 #include <vector>
13 
14 #include "eckit/config/LocalConfiguration.h"
15 #include "eckit/exception/Exceptions.h"
16 #include "oops/base/Geometry.h"
17 #include "oops/base/Increment.h"
18 #include "oops/base/State.h"
19 #include "oops/mpi/mpi.h"
20 #include "oops/runs/Application.h"
21 #include "oops/util/DateTime.h"
22 #include "oops/util/Duration.h"
23 #include "oops/util/Logger.h"
24 
25 namespace oops {
26 
27 template <typename MODEL> class DiffStates : public Application {
31 
32  public:
33 // -----------------------------------------------------------------------------
34  explicit DiffStates(const eckit::mpi::Comm & comm = oops::mpi::world()) : Application(comm) {}
35 // -----------------------------------------------------------------------------
36  virtual ~DiffStates() {}
37 // -----------------------------------------------------------------------------
38  int execute(const eckit::Configuration & fullConfig) const {
39 // Setup resolution
40  const eckit::LocalConfiguration stateResolConf(fullConfig, "state geometry");
41  const Geometry_ stateResol(stateResolConf, this->getComm());
42 
43  const eckit::LocalConfiguration incResolConf(fullConfig, "increment geometry");
44  const Geometry_ incResol(incResolConf, this->getComm());
45 
46 // Read first state
47  const eckit::LocalConfiguration stateConf1(fullConfig, "state1");
48  State_ xx1(stateResol, stateConf1);
49  Log::test() << "Input state 1: " << xx1 << std::endl;
50 
51 // Read second state (to take away from the first)
52  const eckit::LocalConfiguration stateConf2(fullConfig, "state2");
53  State_ xx2(stateResol, stateConf2);
54  Log::test() << "Input state 2: " << xx2 << std::endl;
55 
56 // Assertions on two states
57  ASSERT(xx1.validTime() == xx2.validTime());
58 
59 // Create increment
60  Increment_ dx(incResol, xx1.variables(), xx1.validTime());
61  dx.diff(xx1, xx2);
62 
63 // Write increment
64  const eckit::LocalConfiguration outputConfig(fullConfig, "output");
65  dx.write(outputConfig);
66 
67  Log::test() << "Output increment: " << dx << std::endl;
68 
69  return 0;
70  }
71 // -----------------------------------------------------------------------------
72  private:
73  std::string appname() const {
74  return "oops::DiffStates<" + MODEL::name() + ">";
75  }
76 // -----------------------------------------------------------------------------
77 };
78 
79 } // namespace oops
80 #endif // OOPS_RUNS_DIFFSTATES_H_
const eckit::mpi::Comm & getComm() const
Definition: Application.h:36
Increment< MODEL > Increment_
Definition: DiffStates.h:30
Geometry< MODEL > Geometry_
Definition: DiffStates.h:28
int execute(const eckit::Configuration &fullConfig) const
Definition: DiffStates.h:38
std::string appname() const
Definition: DiffStates.h:73
State< MODEL > State_
Definition: DiffStates.h:29
virtual ~DiffStates()
Definition: DiffStates.h:36
DiffStates(const eckit::mpi::Comm &comm=oops::mpi::world())
Definition: DiffStates.h:34
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 write(const eckit::Configuration &) const
Write this Increment out to file.
const util::DateTime validTime() const
Accessor to the time of this State.
const Variables & variables() const
Accessor to variables associated with this State.
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.