OOPS
State4D.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  * (C) Copyright 2020 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  * In applying this licence, ECMWF does not waive the privileges and immunities
8  * granted to it by virtue of its status as an intergovernmental organisation nor
9  * does it submit to any jurisdiction.
10  */
11 
12 #ifndef OOPS_BASE_STATE4D_H_
13 #define OOPS_BASE_STATE4D_H_
14 
15 #include <ostream>
16 #include <string>
17 #include <vector>
18 
19 #include "eckit/config/LocalConfiguration.h"
20 
21 #include "oops/base/Geometry.h"
22 #include "oops/base/State.h"
23 #include "oops/util/Logger.h"
24 #include "oops/util/Printable.h"
25 
26 namespace oops {
27 
28 /// Four dimensional state (vector of 3D States)
29 template<typename MODEL> class State4D : public util::Printable {
32 
33  public:
34  static const std::string classname() {return "State4D";}
35 
36  /// The arguments define all states in 4D and their resolution
37  State4D(const Geometry_ &, const eckit::Configuration &);
38 
39  /// I/O
40  void write(const eckit::Configuration &) const;
41 
42  /// Get 3D model state
43  size_t size() const {return state4d_.size();}
44  State_ & operator[](const int ii) {return state4d_[ii];}
45  const State_ & operator[](const int ii) const {return state4d_[ii];}
46 
47  Geometry_ geometry() const { return state4d_[0].geometry(); }
48  const Variables & variables() const {return state4d_[0].variables();}
49  const std::vector<util::DateTime> validTimes() const;
50 
51  /// Accumulator
52  void zero();
53  void accumul(const double &, const State4D &);
54 
55  private:
56  void print(std::ostream &) const;
57 
58  std::vector<State_> state4d_;
59 };
60 
61 // =============================================================================
62 
63 template<typename MODEL>
64 State4D<MODEL>::State4D(const Geometry_ & resol, const eckit::Configuration & config) {
65  Log::trace() << "State4D config : " << config << std::endl;
66  // 4D state:
67  if (config.has("states")) {
68  std::vector<eckit::LocalConfiguration> confs;
69  config.get("states", confs);
70  state4d_.reserve(confs.size());
71  for (auto & conf : confs) {
72  state4d_.emplace_back(State_(resol, conf));
73  }
74  } else {
75  // 3D state:
76  state4d_.emplace_back(State_(resol, config));
77  }
78  for (size_t jj = 1; jj < state4d_.size(); ++jj) {
79  ASSERT(state4d_[jj].variables() == state4d_[0].variables());
80  }
81  Log::trace() << "State4D constructed." << std::endl;
82 }
83 
84 // -----------------------------------------------------------------------------
85 
86 template<typename MODEL>
87 void State4D<MODEL>::write(const eckit::Configuration & config) const {
88  // 4D state
89  if (config.has("states")) {
90  std::vector<eckit::LocalConfiguration> confs;
91  config.get("states", confs);
92  ASSERT(state4d_.size() == confs.size());
93  for (size_t jj = 0; jj < state4d_.size(); ++jj) {
94  if (config.has("member")) confs[jj].set("member", config.getInt("member"));
95  state4d_[jj].write(confs[jj]);
96  }
97  } else {
98  // 3D state
99  ASSERT(state4d_.size() == 1);
100  state4d_[0].write(config);
101  }
102 }
103 
104 // -----------------------------------------------------------------------------
105 
106 template<typename MODEL>
107 const std::vector<util::DateTime> State4D<MODEL>::validTimes() const {
108  std::vector<util::DateTime> times;
109  times.reserve(state4d_.size());
110  for (const State_ & state : state4d_) {
111  times.push_back(state.validTime());
112  }
113  return times;
114 }
115 
116 // -----------------------------------------------------------------------------
117 
118 template<typename MODEL>
120  Log::trace() << "State4D<MODEL>::zero starting" << std::endl;
121  for (State_ & state : state4d_) {
122  state.zero();
123  }
124  Log::trace() << "State4D<MODEL>::zero done" << std::endl;
125 }
126 
127 // -----------------------------------------------------------------------------
128 
129 template<typename MODEL>
130 void State4D<MODEL>::accumul(const double & zz, const State4D & xx) {
131  Log::trace() << "State4D<MODEL>::accumul starting" << std::endl;
132  ASSERT(xx.size() == state4d_.size());
133  for (size_t jj = 0; jj < state4d_.size(); ++jj) {
134  state4d_[jj].accumul(zz, xx[jj]);
135  }
136  Log::trace() << "State4D<MODEL>::accumul done" << std::endl;
137 }
138 
139 // -----------------------------------------------------------------------------
140 
141 template <typename MODEL>
142 void State4D<MODEL>::print(std::ostream & outs) const {
143  for (const State_ & state : state4d_) {
144  outs << state << std::endl;
145  }
146 }
147 
148 // -----------------------------------------------------------------------------
149 
150 } // namespace oops
151 
152 #endif // OOPS_BASE_STATE4D_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
Four dimensional state (vector of 3D States)
Definition: State4D.h:29
const Variables & variables() const
Definition: State4D.h:48
void accumul(const double &, const State4D &)
Definition: State4D.h:130
State4D(const Geometry_ &, const eckit::Configuration &)
The arguments define all states in 4D and their resolution.
Definition: State4D.h:64
std::vector< State_ > state4d_
Definition: State4D.h:58
Geometry< MODEL > Geometry_
Definition: State4D.h:30
State_ & operator[](const int ii)
Definition: State4D.h:44
void print(std::ostream &) const
Definition: State4D.h:142
size_t size() const
Get 3D model state.
Definition: State4D.h:43
void zero()
Accumulator.
Definition: State4D.h:119
State< MODEL > State_
Definition: State4D.h:31
static const std::string classname()
Definition: State4D.h:34
const std::vector< util::DateTime > validTimes() const
Definition: State4D.h:107
const State_ & operator[](const int ii) const
Definition: State4D.h:45
void write(const eckit::Configuration &) const
I/O.
Definition: State4D.h:87
Geometry_ geometry() const
Definition: State4D.h:47
State class used in oops; subclass of interface class interface::State.
The namespace for the main oops code.