OOPS
WeightedMean.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
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  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef OOPS_BASE_WEIGHTEDMEAN_H_
12 #define OOPS_BASE_WEIGHTEDMEAN_H_
13 
14 #include <cmath>
15 #include <map>
16 #include <memory>
17 
18 #include "eckit/exception/Exceptions.h"
19 
20 #include "oops/base/Accumulator.h"
22 #include "oops/base/Geometry.h"
23 #include "oops/base/PostBase.h"
24 #include "oops/base/Variables.h"
25 #include "oops/base/WeightingFct.h"
26 #include "oops/util/DateTime.h"
27 #include "oops/util/Duration.h"
28 
29 namespace oops {
30 
31 // -----------------------------------------------------------------------------
32 
33 /// Compute time average of states or increments during model run.
34 /*!
35  * Derived classes will compute different types of averages (plain
36  * mean, various types of digital filters) by overwriting the weights
37  * computation method.
38  */
39 
40 template <typename MODEL, typename FLDS>
41 class WeightedMean : public PostBase<FLDS> {
43 
44  public:
45  WeightedMean(const Variables &, const util::DateTime &, const util::Duration &,
46  const Geometry_ &, const eckit::Configuration &);
47  virtual ~WeightedMean() {}
48 
49  FLDS * releaseMean();
50 
51  private:
52  void doInitialize(const FLDS &, const util::DateTime &, const util::Duration &) override;
53 
54  void doProcessing(const FLDS &) override;
55 
56  std::unique_ptr<WeightingFct> wfct_;
57  std::map< util::DateTime, double > weights_;
58 // std::unique_ptr< Accumulator<MODEL, FLDS, FLDS> > avg_;
60  double sum_;
61  bool linit_;
62  const util::DateTime bgn_;
63  const util::DateTime end_;
64  util::DateTime endleg_;
65 };
66 
67 // =============================================================================
68 
69 template <typename MODEL, typename FLDS>
71  const util::DateTime & vt,
72  const util::Duration & span,
73  const Geometry_ & resol,
74  const eckit::Configuration & config)
75  : PostBase<FLDS>(vt-span/2, vt+span/2),
76  wfct_(), weights_(), avg_(0), sum_(0.0), linit_(false),
77  bgn_(vt-span/2), end_(vt+span/2), endleg_()
78 {
79  avg_ = new Accumulator<MODEL, FLDS, FLDS>(resol, vars, vt);
80  wfct_.reset(new DolphChebyshev(config));
81 }
82 
83 // -----------------------------------------------------------------------------
84 
85 template <typename MODEL, typename FLDS>
87  ASSERT(linit_);
88  ASSERT(std::abs(sum_ - 1.0) < 1.0e-8);
89  return avg_;
90 }
91 
92 // -----------------------------------------------------------------------------
93 
94 template <typename MODEL, typename FLDS>
96  const util::DateTime & end,
97  const util::Duration & tstep) {
98  const util::DateTime bgn(xx.validTime());
99  if (!linit_ && bgn <= end_ && end >= bgn_) {
100  weights_ = wfct_->setWeights(bgn_, end_, tstep);
101  linit_ = true;
102  }
103  endleg_ = end;
104 }
105 
106 // -----------------------------------------------------------------------------
107 
108 template <typename MODEL, typename FLDS>
110  const util::DateTime now(xx.validTime());
111  if (now != endleg_ || now == end_) {
112  ASSERT(weights_.find(now) != weights_.end());
113  const double zz = weights_[now];
114  avg_->accumul(zz, xx);
115  sum_ += zz;
116  Log::debug() << "WeightedMean: time = " << now
117  << ", weight = " << zz << ", sum = " << sum_ << std::endl;
118  }
119 }
120 
121 // -----------------------------------------------------------------------------
122 
123 } // namespace oops
124 
125 #endif // OOPS_BASE_WEIGHTEDMEAN_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
Handles post-processing of model fields.
Definition: PostBase.h:33
Compute time average of states or increments during model run.
Definition: WeightedMean.h:41
virtual ~WeightedMean()
Definition: WeightedMean.h:47
util::DateTime endleg_
Definition: WeightedMean.h:64
std::unique_ptr< WeightingFct > wfct_
Definition: WeightedMean.h:56
Geometry< MODEL > Geometry_
Definition: WeightedMean.h:42
std::map< util::DateTime, double > weights_
Definition: WeightedMean.h:57
const util::DateTime bgn_
Definition: WeightedMean.h:62
void doInitialize(const FLDS &, const util::DateTime &, const util::Duration &) override
Definition: WeightedMean.h:95
void doProcessing(const FLDS &) override
Actual processing.
Definition: WeightedMean.h:109
Accumulator< MODEL, FLDS, FLDS > * avg_
Definition: WeightedMean.h:59
FLDS * releaseMean()
Definition: WeightedMean.h:86
const util::DateTime end_
Definition: WeightedMean.h:63
WeightedMean(const Variables &, const util::DateTime &, const util::Duration &, const Geometry_ &, const eckit::Configuration &)
Definition: WeightedMean.h:70
The namespace for the main oops code.