OOPS
GetValueTLADs.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_GETVALUETLADS_H_
9 #define OOPS_BASE_GETVALUETLADS_H_
10 
11 #include <memory>
12 #include <vector>
13 
14 #include "oops/base/GetValueTLAD.h"
15 #include "oops/base/Increment.h"
16 #include "oops/base/PostBaseTLAD.h"
17 #include "oops/base/State.h"
18 #include "oops/util/DateTime.h"
19 #include "oops/util/Duration.h"
20 
21 namespace oops {
22 
23 /// Computes observation equivalent TL and AD to/from increments.
24 
25 template <typename MODEL, typename OBS>
26 class GetValueTLADs : public PostBaseTLAD<MODEL> {
29  typedef std::shared_ptr<GetValueTLAD<MODEL, OBS>> GetValPtr_;
30 
31  public:
32  GetValueTLADs(const util::DateTime &, const util::DateTime &);
33 
34  void append(GetValPtr_);
35 
36  private:
37 // Methods
38  void doInitializeTraj(const State_ &, const util::DateTime &, const util::Duration &) override;
39  void doProcessingTraj(const State_ &) override;
40  void doFinalizeTraj(const State_ &) override {}
41 
42  void doInitializeTL(const Increment_ &, const util::DateTime &, const util::Duration &) override;
43  void doProcessingTL(const Increment_ &) override;
44  void doFinalizeTL(const Increment_ &) override {}
45 
46  void doFirstAD(Increment_ &, const util::DateTime &, const util::Duration &) override;
47  void doProcessingAD(Increment_ &) override;
48  void doLastAD(Increment_ &) override {}
49 
50 // Data
51  std::vector<GetValPtr_> getvals_;
52 };
53 
54 // -----------------------------------------------------------------------------
55 template <typename MODEL, typename OBS>
56 GetValueTLADs<MODEL, OBS>::GetValueTLADs(const util::DateTime & bgn, const util::DateTime & end)
57  : PostBaseTLAD<MODEL>(bgn, end), getvals_()
58 {
59  Log::trace() << "GetValueTLADs::GetValueTLADs" << std::endl;
60 }
61 // -----------------------------------------------------------------------------
62 template <typename MODEL, typename OBS>
64  Log::trace() << "GetValuePosts::append start" << std::endl;
65  getvals_.push_back(getval);
66  Log::trace() << "GetValuePosts::append done" << std::endl;
67 }
68 // -----------------------------------------------------------------------------
69 template <typename MODEL, typename OBS>
70 void GetValueTLADs<MODEL, OBS>::doInitializeTraj(const State_ &, const util::DateTime &,
71  const util::Duration & tstep) {
72  Log::trace() << "GetValueTLADs::doInitializeTraj start" << std::endl;
73  for (GetValPtr_ getval : getvals_) getval->initializeTraj(tstep);
74  Log::trace() << "GetValueTLADs::doInitializeTraj done" << std::endl;
75 }
76 // -----------------------------------------------------------------------------
77 template <typename MODEL, typename OBS>
79  Log::trace() << "GetValueTLADs::doProcessingTraj start" << std::endl;
80 // Change of variables traj will go here
81  for (GetValPtr_ getval : getvals_) getval->processTraj(xx);
82  Log::trace() << "GetValueTLADs::doProcessingTraj done" << std::endl;
83 }
84 // -----------------------------------------------------------------------------
85 template <typename MODEL, typename OBS>
86 void GetValueTLADs<MODEL, OBS>::doInitializeTL(const Increment_ &, const util::DateTime &,
87  const util::Duration & tstep) {
88  Log::trace() << "GetValueTLADs::doInitializeTL start" << std::endl;
89  for (GetValPtr_ getval : getvals_) getval->initializeTL(tstep);
90  Log::trace() << "GetValueTLADs::doInitializeTL done" << std::endl;
91 }
92 // -----------------------------------------------------------------------------
93 template <typename MODEL, typename OBS>
95  Log::trace() << "GetValueTLADs::doProcessingTL start" << std::endl;
96 // TL change of variables will go here
97  for (GetValPtr_ getval : getvals_) getval->processTL(dx);
98  Log::trace() << "GetValueTLADs::doProcessingTL done" << std::endl;
99 }
100 // -----------------------------------------------------------------------------
101 template <typename MODEL, typename OBS>
102 void GetValueTLADs<MODEL, OBS>::doFirstAD(Increment_ &, const util::DateTime &,
103  const util::Duration & tstep) {
104  Log::trace() << "GetValueTLADs::doFirstAD start" << std::endl;
105  for (GetValPtr_ getval : getvals_) getval->initializeAD(tstep);
106  Log::trace() << "GetValueTLADs::doFirstAD done" << std::endl;
107 }
108 // -----------------------------------------------------------------------------
109 template <typename MODEL, typename OBS>
111  Log::trace() << "GetValueTLADs::doProcessingAD start" << std::endl;
112 // AD change of variables will go here
113  for (GetValPtr_ getval : getvals_) getval->processAD(dx);
114  Log::trace() << "GetValueTLADs::doProcessingAD done" << std::endl;
115 }
116 // -----------------------------------------------------------------------------
117 
118 } // namespace oops
119 
120 #endif // OOPS_BASE_GETVALUETLADS_H_
Computes observation equivalent TL and AD to/from increments.
Definition: GetValueTLADs.h:26
void append(GetValPtr_)
Definition: GetValueTLADs.h:63
void doProcessingTL(const Increment_ &) override
Definition: GetValueTLADs.h:94
std::vector< GetValPtr_ > getvals_
Definition: GetValueTLADs.h:51
void doFirstAD(Increment_ &, const util::DateTime &, const util::Duration &) override
void doProcessingAD(Increment_ &) override
State< MODEL > State_
Definition: GetValueTLADs.h:28
Increment< MODEL > Increment_
Definition: GetValueTLADs.h:27
GetValueTLADs(const util::DateTime &, const util::DateTime &)
Definition: GetValueTLADs.h:56
void doInitializeTraj(const State_ &, const util::DateTime &, const util::Duration &) override
Definition: GetValueTLADs.h:70
void doFinalizeTL(const Increment_ &) override
Definition: GetValueTLADs.h:44
void doInitializeTL(const Increment_ &, const util::DateTime &, const util::Duration &) override
Definition: GetValueTLADs.h:86
std::shared_ptr< GetValueTLAD< MODEL, OBS > > GetValPtr_
Definition: GetValueTLADs.h:29
void doLastAD(Increment_ &) override
Definition: GetValueTLADs.h:48
void doFinalizeTraj(const State_ &) override
Definition: GetValueTLADs.h:40
void doProcessingTraj(const State_ &) override
Definition: GetValueTLADs.h:78
Increment class used in oops.
Handles post-processing of model fields related to cost function.
Definition: PostBaseTLAD.h:41
State class used in oops; subclass of interface class interface::State.
The namespace for the main oops code.