OOPS
WeightedDiff.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_WEIGHTEDDIFF_H_
12 #define OOPS_BASE_WEIGHTEDDIFF_H_
13 
14 #include <cmath>
15 #include <map>
16 
17 #include "oops/base/Accumulator.h"
19 #include "oops/base/Geometry.h"
20 #include "oops/base/PostBase.h"
21 #include "oops/base/Variables.h"
22 #include "oops/base/WeightingFct.h"
23 #include "oops/util/DateTime.h"
24 #include "oops/util/Duration.h"
25 #include "oops/util/Logger.h"
26 
27 namespace oops {
28 
29 // -----------------------------------------------------------------------------
30 
31 /// Compute time average of states or increments during model run.
32 /*!
33  * Derived classes will compute different types of averages (plain
34  * mean, various types of digital filters) by overwriting the weights
35  * computation method.
36  */
37 
38 template <typename MODEL, typename INCR, typename FLDS>
39 class WeightedDiff : public PostBase<FLDS> {
41 
42  public:
43  WeightedDiff(const Variables &, const util::DateTime &, const util::Duration &,
44  const util::Duration &, const Geometry_ &, WeightingFct &);
45  virtual ~WeightedDiff() {}
46 
47  INCR * releaseDiff();
48 
49  private:
50  void doInitialize(const FLDS &, const util::DateTime &, const util::Duration &) override;
51  void doProcessing(const FLDS &) override;
52 
54  std::map< util::DateTime, double > weights_;
56  double sum_;
57  bool linit_;
58  const util::DateTime vtime_;
59  const util::DateTime bgn_;
60  const util::DateTime end_;
61  util::Duration tstep_;
62  util::DateTime bgnleg_;
63  util::DateTime endleg_;
64  util::DateTime current_;
65 };
66 
67 // -----------------------------------------------------------------------------
68 
69 template <typename MODEL, typename INCR, typename FLDS>
71  const util::DateTime & vt,
72  const util::Duration & span,
73  const util::Duration & tstep,
74  const Geometry_ & resol,
75  WeightingFct & wfct)
76  : PostBase<FLDS>(vt-span/2, vt+span/2),
77  wfct_(wfct), weights_(), avg_(0), sum_(0.0), linit_(false),
78  vtime_(vt), bgn_(vt-span/2), end_(vt+span/2), tstep_(tstep),
79  bgnleg_(), endleg_(), current_()
80 {
81  avg_ = new Accumulator<MODEL, INCR, FLDS>(resol, vars, vtime_);
82 }
83 
84 // -----------------------------------------------------------------------------
85 
86 template <typename MODEL, typename INCR, typename FLDS>
88  ASSERT(linit_);
89  ASSERT(std::abs(sum_) < 1.0e-8);
90  return avg_;
91 }
92 
93 // -----------------------------------------------------------------------------
94 
95 template <typename MODEL, typename INCR, typename FLDS>
97  const util::DateTime & end,
98  const util::Duration & tstep) {
99  const util::DateTime bgn(xx.validTime());
100  if (!linit_ && bgn <= end_ && end >= bgn_) {
101  if (tstep_ == util::Duration(0)) tstep_ = tstep;
102  ASSERT(tstep_ > util::Duration(0));
103  weights_ = wfct_.setWeights(bgn_, end_, tstep_);
104  linit_ = true;
105  ASSERT(weights_.find(vtime_) != weights_.end());
106  weights_[vtime_] -= 1.0;
107  }
108  bgnleg_ = bgn;
109  endleg_ = end;
110  current_ = bgn-tstep;
111 }
112 
113 // -----------------------------------------------------------------------------
114 
115 template <typename MODEL, typename INCR, typename FLDS>
117  const util::DateTime now(xx.validTime());
118  ASSERT(now > current_);
119  if (((bgnleg_ < end_ && endleg_ > bgn_) || bgnleg_ == endleg_) &&
120  (now != endleg_ || now == end_ || now == bgnleg_)) {
121  ASSERT(weights_.find(now) != weights_.end());
122  const double zz = weights_[now];
123  avg_->accumul(zz, xx);
124  sum_ += zz;
125  }
126  current_ = now;
127 }
128 
129 // -----------------------------------------------------------------------------
130 
131 } // namespace oops
132 
133 #endif // OOPS_BASE_WEIGHTEDDIFF_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: WeightedDiff.h:39
Geometry< MODEL > Geometry_
Definition: WeightedDiff.h:40
virtual ~WeightedDiff()
Definition: WeightedDiff.h:45
void doInitialize(const FLDS &, const util::DateTime &, const util::Duration &) override
Definition: WeightedDiff.h:96
util::DateTime bgnleg_
Definition: WeightedDiff.h:62
util::Duration tstep_
Definition: WeightedDiff.h:61
std::map< util::DateTime, double > weights_
Definition: WeightedDiff.h:54
void doProcessing(const FLDS &) override
Actual processing.
Definition: WeightedDiff.h:116
const util::DateTime vtime_
Definition: WeightedDiff.h:58
WeightingFct & wfct_
Definition: WeightedDiff.h:53
const util::DateTime bgn_
Definition: WeightedDiff.h:59
util::DateTime current_
Definition: WeightedDiff.h:64
WeightedDiff(const Variables &, const util::DateTime &, const util::Duration &, const util::Duration &, const Geometry_ &, WeightingFct &)
Definition: WeightedDiff.h:70
INCR * releaseDiff()
Definition: WeightedDiff.h:87
util::DateTime endleg_
Definition: WeightedDiff.h:63
Accumulator< MODEL, INCR, FLDS > * avg_
Definition: WeightedDiff.h:55
const util::DateTime end_
Definition: WeightedDiff.h:60
Weighting Function.
Definition: WeightingFct.h:31
The namespace for the main oops code.