OOPS
oops/base/State.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 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_BASE_STATE_H_
9 #define OOPS_BASE_STATE_H_
10 
11 #include <memory>
12 #include <string>
13 #include <vector>
14 
15 #include "oops/interface/State.h"
16 
17 
18 namespace oops {
19 
20 // -----------------------------------------------------------------------------
21 /// \brief State class used in oops; subclass of interface class interface::State.
22 ///
23 /// \details
24 /// Handles additional MPI communicator parameter \p commTime_ in the constructors
25 /// (for MPI distribution in time, used in oops for 4DEnVar and weak-constraint 4DVar).
26 /// Adds communication through time to the following Increment methods:
27 /// - norm
28 /// - print
29 
30 // -----------------------------------------------------------------------------
31 template <typename MODEL>
32 class State : public interface::State<MODEL> {
33  typedef typename MODEL::State State_;
35 
36  public:
37  /// Constructor for specified \p resol, with \p vars, valid at \p time
38  State(const Geometry_ & resol, const Variables & vars, const util::DateTime & time);
39  /// Constructor for specified \p resol and files read from \p conf
40  State(const Geometry_ & resol, const eckit::Configuration & conf);
41  /// Copies \p other State, changing its resolution to \p geometry
42  State(const Geometry_ & resol, const State & other);
43 
44  /// Norm (used in tests)
45  double norm() const;
46 
47  private:
48  const eckit::mpi::Comm * commTime_; /// pointer to the MPI communicator in time
49  void print(std::ostream &) const override;
50 };
51 
52 // =============================================================================
53 
54 template<typename MODEL>
55 State<MODEL>::State(const Geometry_ & resol, const Variables & vars,
56  const util::DateTime & time) :
57  interface::State<MODEL>(resol, vars, time), commTime_(&resol.timeComm())
58 {}
59 
60 // -----------------------------------------------------------------------------
61 
62 template<typename MODEL>
63 State<MODEL>::State(const Geometry_ & resol, const eckit::Configuration & conf) :
64  interface::State<MODEL>(resol, conf), commTime_(&resol.timeComm())
65 {}
66 
67 // -----------------------------------------------------------------------------
68 
69 template<typename MODEL>
70 State<MODEL>::State(const Geometry_ & resol, const State & other) :
71  interface::State<MODEL>(resol, other), commTime_(&resol.timeComm())
72 {}
73 
74 // -----------------------------------------------------------------------------
75 
76 template<typename MODEL>
77 double State<MODEL>::norm() const {
78  double zz = interface::State<MODEL>::norm();
79  zz *= zz;
80  commTime_->allReduceInPlace(zz, eckit::mpi::Operation::SUM);
81  zz = sqrt(zz);
82  return zz;
83 }
84 
85 // -----------------------------------------------------------------------------
86 
87 template<typename MODEL>
88 void State<MODEL>::print(std::ostream & os) const {
89  if (commTime_->size() > 1) {
90  gatherPrint(os, this->state(), *commTime_);
91  } else {
92  os << this->state();
93  }
94 }
95 
96 // -----------------------------------------------------------------------------
97 
98 } // namespace oops
99 
100 #endif // OOPS_BASE_STATE_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
State class used in oops; subclass of interface class interface::State.
double norm() const
Norm (used in tests)
State(const Geometry_ &resol, const Variables &vars, const util::DateTime &time)
Constructor for specified resol, with vars, valid at time.
const eckit::mpi::Comm * commTime_
MODEL::State State_
Geometry< MODEL > Geometry_
void print(std::ostream &) const override
pointer to the MPI communicator in time
Encapsulates the model state.
double norm() const
Norm (used in tests)
The namespace for the main oops code.