OOPS
GetValuePosts.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2021-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_GETVALUEPOSTS_H_
9 #define OOPS_BASE_GETVALUEPOSTS_H_
10 
11 #include <algorithm>
12 #include <memory>
13 #include <string>
14 #include <utility>
15 #include <vector>
16 
17 #include "oops/base/GetValuePost.h"
18 #include "oops/base/PostBase.h"
19 #include "oops/base/State.h"
21 #include "oops/util/DateTime.h"
22 #include "oops/util/Duration.h"
23 #include "oops/util/Logger.h"
24 
25 namespace oops {
26 
27 /// \brief Fills GeoVaLs with requested variables at requested locations during model run
28 template <typename MODEL, typename OBS>
29 class GetValuePosts : public PostBase<State<MODEL>> {
32  typedef std::shared_ptr<GetValuePost<MODEL, OBS>> GetValuePtr_;
33 
34  public:
35 /// \brief Saves Locations and Variables to be processed
36  GetValuePosts();
37 
38  void append(GetValuePtr_);
39 
40  private:
41 /// \brief initialization before model run: sets up GetValues and allocate GeoVaLs
42  void doInitialize(const State_ &, const util::DateTime &, const util::Duration &) override;
43 /// \brief called at each model step: fill in GeoVaLs for the current time slot
44  void doProcessing(const State_ &) override;
45 
46 // Data
47  std::vector<GetValuePtr_> getvals_;
49 };
50 
51 // -----------------------------------------------------------------------------
52 
53 template <typename MODEL, typename OBS>
55  Log::trace() << "GetValuePosts::GetValuePosts" << std::endl;
56 }
57 
58 // -----------------------------------------------------------------------------
59 
60 template <typename MODEL, typename OBS>
62  Log::trace() << "GetValuePosts::append start" << std::endl;
63  getvals_.push_back(getval);
64  geovars_ += getval->requiredVariables();
65  Log::trace() << "GetValuePosts::append done" << std::endl;
66 }
67 
68 // -----------------------------------------------------------------------------
69 
70 template <typename MODEL, typename OBS>
71 void GetValuePosts<MODEL, OBS>::doInitialize(const State_ &, const util::DateTime &,
72  const util::Duration & tstep) {
73  Log::trace() << "GetValuePosts::doInitialize start" << std::endl;
74  for (GetValuePtr_ getval : getvals_) getval->initialize(tstep);
75  Log::trace() << "GetValuePosts::doInitialize done" << std::endl;
76 }
77 
78 // -----------------------------------------------------------------------------
79 
80 template <typename MODEL, typename OBS>
82  Log::trace() << "GetValuePosts::doProcessing start" << std::endl;
83 
84  eckit::LocalConfiguration chvarconf; // empty for now
85  ChangeVariables_ chvar(chvarconf, xx.geometry(), xx.variables(), geovars_);
86  State_ zz(xx.geometry(), geovars_, xx.validTime());
87  chvar.changeVar(xx, zz);
88 
89  for (GetValuePtr_ getval : getvals_) getval->process(zz);
90  Log::trace() << "GetValuePosts::doProcessing done" << std::endl;
91 }
92 
93 // -----------------------------------------------------------------------------
94 
95 } // namespace oops
96 
97 #endif // OOPS_BASE_GETVALUEPOSTS_H_
Encapsulates the nonlinear variable change There should not be a factory for ChangeVariable,...
void changeVar(const State_ &xin, State_ &xout) const
change variable from state xin to xout
Fills GeoVaLs with requested variables at requested locations during model run.
Definition: GetValuePosts.h:29
ChangeVariables< MODEL > ChangeVariables_
Definition: GetValuePosts.h:30
std::vector< GetValuePtr_ > getvals_
Definition: GetValuePosts.h:47
void doInitialize(const State_ &, const util::DateTime &, const util::Duration &) override
initialization before model run: sets up GetValues and allocate GeoVaLs
Definition: GetValuePosts.h:71
State< MODEL > State_
Definition: GetValuePosts.h:31
void append(GetValuePtr_)
Definition: GetValuePosts.h:61
std::shared_ptr< GetValuePost< MODEL, OBS > > GetValuePtr_
Definition: GetValuePosts.h:32
GetValuePosts()
Saves Locations and Variables to be processed.
Definition: GetValuePosts.h:54
void doProcessing(const State_ &) override
called at each model step: fill in GeoVaLs for the current time slot
Definition: GetValuePosts.h:81
Handles post-processing of model fields.
Definition: PostBase.h:33
State class used in oops; subclass of interface class interface::State.
Geometry_ geometry() const
Accessor to geometry associated with this State.
const util::DateTime validTime() const
Accessor to the time of this State.
const Variables & variables() const
Accessor to variables associated with this State.
The namespace for the main oops code.