OOPS
StateEnsemble.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2019-2020 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_STATEENSEMBLE_H_
9 #define OOPS_BASE_STATEENSEMBLE_H_
10 
11 #include <utility>
12 #include <vector>
13 
14 #include "eckit/config/LocalConfiguration.h"
15 #include "oops/base/Accumulator.h"
16 #include "oops/base/Geometry.h"
17 #include "oops/base/State.h"
18 #include "oops/base/Variables.h"
19 #include "oops/util/Logger.h"
20 
21 namespace oops {
22 
23 // -----------------------------------------------------------------------------
24 
25 /// \brief Ensemble of states
26 template<typename MODEL> class StateEnsemble {
29 
30  public:
31  /// Create ensemble of states
32  StateEnsemble(const Geometry_ &, const eckit::Configuration &);
33 
34  /// calculate ensemble mean
35  State_ mean() const;
36 
37  /// Accessors
38  size_t size() const { return states_.size(); }
39  State_ & operator[](const int ii) { return states_[ii]; }
40  const State_ & operator[](const int ii) const { return states_[ii]; }
41 
42  /// Information
43  const Variables & variables() const {return states_[0].variables();}
44 
45  private:
46  std::vector<State_> states_;
47 };
48 
49 // ====================================================================================
50 
51 template<typename MODEL>
53  const eckit::Configuration & config)
54  : states_() {
55  std::vector<eckit::LocalConfiguration> memberConfig;
56  config.get("members", memberConfig);
57  states_.reserve(memberConfig.size());
58  // Loop over all ensemble members
59  for (size_t jj = 0; jj < memberConfig.size(); ++jj) {
60  states_.emplace_back(State_(resol, memberConfig[jj]));
61  }
62  Log::trace() << "StateEnsemble:contructor done" << std::endl;
63 }
64 
65 // -----------------------------------------------------------------------------
66 
67 template<typename MODEL>
69  // Compute ensemble mean
70  Accumulator<MODEL, State_, State_> ensmean(states_[0]);
71 
72  const double rr = 1.0/static_cast<double>(states_.size());
73  for (size_t iens = 0; iens < states_.size(); ++iens) {
74  ensmean.accumul(rr, states_[iens]);
75  }
76 
77  Log::trace() << "StateEnsemble::mean done" << std::endl;
78  return std::move(ensmean);
79 }
80 
81 // -----------------------------------------------------------------------------
82 
83 } // namespace oops
84 
85 #endif // OOPS_BASE_STATEENSEMBLE_H_
void accumul(const double &zz, const FLDS &xx)
Definition: Accumulator.h:32
Geometry class used in oops; subclass of interface class interface::Geometry.
Ensemble of states.
Definition: StateEnsemble.h:26
State< MODEL > State_
Definition: StateEnsemble.h:28
State_ & operator[](const int ii)
Definition: StateEnsemble.h:39
Geometry< MODEL > Geometry_
Definition: StateEnsemble.h:27
const Variables & variables() const
Information.
Definition: StateEnsemble.h:43
StateEnsemble(const Geometry_ &, const eckit::Configuration &)
Create ensemble of states.
Definition: StateEnsemble.h:52
const State_ & operator[](const int ii) const
Definition: StateEnsemble.h:40
std::vector< State_ > states_
Definition: StateEnsemble.h:46
size_t size() const
Accessors.
Definition: StateEnsemble.h:38
State_ mean() const
calculate ensemble mean
Definition: StateEnsemble.h:68
State class used in oops; subclass of interface class interface::State.
The namespace for the main oops code.