Loading [MathJax]/extensions/tex2jax.js
OOPS
All Classes Namespaces Files Functions Variables Typedefs Macros Pages
CostJcDFI.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_ASSIMILATION_COSTJCDFI_H_
12 #define OOPS_ASSIMILATION_COSTJCDFI_H_
13 
14 #include <memory>
15 #include <utility>
16 
17 #include "eckit/config/LocalConfiguration.h"
22 #include "oops/base/Geometry.h"
23 #include "oops/base/Increment.h"
26 #include "oops/base/State.h"
27 #include "oops/base/Variables.h"
28 #include "oops/base/WeightedDiff.h"
30 #include "oops/base/WeightingFct.h"
31 #include "oops/util/DateTime.h"
32 #include "oops/util/Duration.h"
33 #include "oops/util/Logger.h"
34 
35 namespace oops {
36 
37 // -----------------------------------------------------------------------------
38 
39 /// Jc DFI Cost Function
40 /*!
41  * Digital filter based constraint term for the cost function.
42  */
43 
44 template<typename MODEL, typename OBS> class CostJcDFI : public CostTermBase<MODEL, OBS> {
52 
53  public:
54 /// Construct \f$ J_c\f$.
55  CostJcDFI(const eckit::Configuration &, const Geometry_ &, const util::DateTime &,
56  const util::Duration &, const util::Duration & tstep = util::Duration(0));
57 
58 /// Destructor
59  virtual ~CostJcDFI() {}
60 
61 /// Nonlinear Jc DFI computation
62  void setPostProc(const CtrlVar_ &, const eckit::Configuration &, PostProc_ &) override;
63  double computeCost() override;
64 
65 /// Linearization trajectory for Jc DFI computation
66  void setPostProcTraj(const CtrlVar_ &, const eckit::Configuration &,
67  const Geometry_ &, PostProcTLAD_ &) override;
68  void computeCostTraj() override;
69 
70 /// TL Jc DFI computation
71  void setPostProcTL(const CtrlInc_ &, PostProcTLAD_ &) const override;
72  void computeCostTL(const CtrlInc_ &, GeneralizedDepartures &) const override;
73 
74 /// Adjoint Jc DFI computation
75  void computeCostAD(std::shared_ptr<const GeneralizedDepartures>,
76  CtrlInc_ &, PostProcTLAD_ &) const override;
77  void setPostProcAD() const override {}
78 
79 /// Multiply by \f$ C\f$ and \f$ C^{-1}\f$.
80  std::unique_ptr<GeneralizedDepartures>
81  multiplyCovar(const GeneralizedDepartures &) const override;
82  std::unique_ptr<GeneralizedDepartures>
83  multiplyCoInv(const GeneralizedDepartures &) const override;
84 
85 /// Provide new increment.
86  std::unique_ptr<GeneralizedDepartures> newDualVector() const override;
87 
88 /// Gradient of \f$ J_c\f$ at first guess.
89  std::unique_ptr<GeneralizedDepartures> newGradientFG() const override;
90 
91 /// Reset trajectory.
92  void resetLinearization() override;
93 
94  private:
95  util::DateTime vt_;
96  util::Duration span_;
97  double alpha_;
98  std::unique_ptr<WeightingFct> wfct_;
99  std::unique_ptr<Increment_> gradFG_;
101  const util::Duration tstep_;
102  std::unique_ptr<Geometry_> tlres_;
103  util::Duration tlstep_;
104  mutable std::shared_ptr<WeightedDiff<MODEL, Increment_, State_> > filter_;
105  mutable std::shared_ptr<WeightedDiffTLAD<MODEL> > ftlad_;
107 };
108 
109 // =============================================================================
110 
111 template<typename MODEL, typename OBS>
112 CostJcDFI<MODEL, OBS>::CostJcDFI(const eckit::Configuration & conf, const Geometry_ & resol,
113  const util::DateTime & vt, const util::Duration & span,
114  const util::Duration & tstep)
115  : vt_(vt), span_(span), alpha_(0), wfct_(), gradFG_(),
116  resol_(resol), tstep_(tstep), tlres_(), tlstep_(), filter_(), vars_(conf, "filtered variables")
117 {
118  alpha_ = conf.getDouble("alpha");
119  if (conf.has("ftime")) vt_ = util::DateTime(conf.getString("ftime"));
120  if (conf.has("span")) span_ = util::Duration(conf.getString("span"));
121 // wfct_.reset(WeightFactory::create(config)); YT
122  wfct_.reset(new DolphChebyshev(conf));
123  Log::trace() << "CostJcDFI created" << std::endl;
124 }
125 
126 // -----------------------------------------------------------------------------
127 
128 template<typename MODEL, typename OBS>
129 void CostJcDFI<MODEL, OBS>::setPostProc(const CtrlVar_ &, const eckit::Configuration &,
130  PostProc_ & pp) {
131  filter_.reset(new WeightedDiff<MODEL, Increment_, State_>(vars_, vt_, span_,
132  tstep_, resol_, *wfct_));
133  pp.enrollProcessor(filter_);
134 }
135 
136 // -----------------------------------------------------------------------------
137 
138 template<typename MODEL, typename OBS>
140  double zz = 0.5 * alpha_;
141  std::unique_ptr<Increment_> dx(filter_->releaseDiff());
142  zz *= dot_product(*dx, *dx);
143  Log::test() << "CostJcDFI: Nonlinear Jc = " << zz << std::endl;
144  return zz;
145 }
146 
147 // -----------------------------------------------------------------------------
148 
149 template<typename MODEL, typename OBS>
150 void CostJcDFI<MODEL, OBS>::setPostProcTraj(const CtrlVar_ &, const eckit::Configuration & conf,
151  const Geometry_ & tlres, PostProcTLAD_ & pptraj) {
152  tlres_.reset(new Geometry_(tlres));
153  tlstep_ = util::Duration(conf.getString("linear model.tstep", tstep_.toString()));
154  ftlad_.reset(new WeightedDiffTLAD<MODEL>(vars_, vt_, span_, tstep_, *tlres_, *wfct_));
155  pptraj.enrollProcessor(ftlad_);
156 }
157 
158 // -----------------------------------------------------------------------------
159 
160 template<typename MODEL, typename OBS>
162  gradFG_.reset(ftlad_->releaseDiff());
163  *gradFG_ *= alpha_;
164 }
165 
166 // -----------------------------------------------------------------------------
167 
168 template<typename MODEL, typename OBS>
170  ftlad_->setupTL(*tlres_);
171  pptl.enrollProcessor(ftlad_);
172 }
173 
174 // -----------------------------------------------------------------------------
175 
176 template<typename MODEL, typename OBS>
178  Log::trace() << "CostJcDFI::computeCostTL start" << std::endl;
179  Increment_ & ydep = dynamic_cast<Increment_ &>(gdep);
180  ftlad_->finalTL(ydep);
181  Log::trace() << "CostJcDFI::computeCostTL done" << std::endl;
182 }
183 
184 // -----------------------------------------------------------------------------
185 
186 template<typename MODEL, typename OBS>
187 void CostJcDFI<MODEL, OBS>::computeCostAD(std::shared_ptr<const GeneralizedDepartures> pv,
188  CtrlInc_ &, PostProcTLAD_ & ppad) const {
189  Log::trace() << "CostJcDFI::computeCostAD start" << std::endl;
190  std::shared_ptr<const Increment_> dx = std::dynamic_pointer_cast<const Increment_>(pv);
191  ftlad_->setupAD(dx);
192  ppad.enrollProcessor(ftlad_);
193  Log::trace() << "CostJcDFI::computeCostAD done" << std::endl;
194 }
195 
196 // -----------------------------------------------------------------------------
197 
198 template<typename MODEL, typename OBS>
199 std::unique_ptr<GeneralizedDepartures>
201  const Increment_ & dx1 = dynamic_cast<const Increment_ &>(dv1);
202  std::unique_ptr<Increment_> dx2(new Increment_(dx1));
203  const double za = 1.0/alpha_;
204  *dx2 *= za;
205  return std::move(dx2);
206 }
207 
208 // -----------------------------------------------------------------------------
209 
210 template<typename MODEL, typename OBS>
211 std::unique_ptr<GeneralizedDepartures>
213  const Increment_ & dx1 = dynamic_cast<const Increment_ &>(dv1);
214  std::unique_ptr<Increment_> dx2(new Increment_(dx1));
215  *dx2 *= alpha_;
216  return std::move(dx2);
217 }
218 
219 // -----------------------------------------------------------------------------
220 
221 template<typename MODEL, typename OBS>
222 std::unique_ptr<GeneralizedDepartures> CostJcDFI<MODEL, OBS>::newDualVector() const {
223  std::unique_ptr<Increment_> dx(new Increment_(*tlres_, vars_, vt_));
224  return std::move(dx);
225 }
226 
227 // -----------------------------------------------------------------------------
228 
229 template<typename MODEL, typename OBS>
230 std::unique_ptr<GeneralizedDepartures> CostJcDFI<MODEL, OBS>::newGradientFG() const {
231  return std::unique_ptr<Increment_>(new Increment_(*gradFG_));
232 }
233 
234 // -----------------------------------------------------------------------------
235 
236 template<typename MODEL, typename OBS>
238  gradFG_.reset();
239  ftlad_.reset();
240 }
241 
242 // -----------------------------------------------------------------------------
243 
244 } // namespace oops
245 
246 #endif // OOPS_ASSIMILATION_COSTJCDFI_H_
Control variable.
Jc DFI Cost Function.
Definition: CostJcDFI.h:44
void computeCostTraj() override
Finish cost computation and trajectory handling after nonlinear model integration.
Definition: CostJcDFI.h:161
void setPostProc(const CtrlVar_ &, const eckit::Configuration &, PostProc_ &) override
Nonlinear Jc DFI computation.
Definition: CostJcDFI.h:129
void setPostProcTL(const CtrlInc_ &, PostProcTLAD_ &) const override
TL Jc DFI computation.
Definition: CostJcDFI.h:169
Geometry< MODEL > Geometry_
Definition: CostJcDFI.h:47
ControlIncrement< MODEL, OBS > CtrlInc_
Definition: CostJcDFI.h:45
std::unique_ptr< GeneralizedDepartures > multiplyCoInv(const GeneralizedDepartures &) const override
Definition: CostJcDFI.h:212
std::unique_ptr< GeneralizedDepartures > multiplyCovar(const GeneralizedDepartures &) const override
Multiply by and .
Definition: CostJcDFI.h:200
util::Duration span_
Definition: CostJcDFI.h:96
ControlVariable< MODEL, OBS > CtrlVar_
Definition: CostJcDFI.h:46
CostJcDFI(const eckit::Configuration &, const Geometry_ &, const util::DateTime &, const util::Duration &, const util::Duration &tstep=util::Duration(0))
Construct .
Definition: CostJcDFI.h:112
std::shared_ptr< WeightedDiffTLAD< MODEL > > ftlad_
Definition: CostJcDFI.h:105
const Geometry_ resol_
Definition: CostJcDFI.h:100
virtual ~CostJcDFI()
Destructor.
Definition: CostJcDFI.h:59
std::shared_ptr< WeightedDiff< MODEL, Increment_, State_ > > filter_
Definition: CostJcDFI.h:104
std::unique_ptr< Increment_ > gradFG_
Definition: CostJcDFI.h:99
const util::Duration tstep_
Definition: CostJcDFI.h:101
double alpha_
Definition: CostJcDFI.h:97
State< MODEL > State_
Definition: CostJcDFI.h:49
Variables vars_
Definition: CostJcDFI.h:106
PostProcessorTLAD< MODEL > PostProcTLAD_
Definition: CostJcDFI.h:51
void computeCostAD(std::shared_ptr< const GeneralizedDepartures >, CtrlInc_ &, PostProcTLAD_ &) const override
Adjoint Jc DFI computation.
Definition: CostJcDFI.h:187
void resetLinearization() override
Reset trajectory.
Definition: CostJcDFI.h:237
void computeCostTL(const CtrlInc_ &, GeneralizedDepartures &) const override
Finish cost computation after TL model integration.
Definition: CostJcDFI.h:177
void setPostProcTraj(const CtrlVar_ &, const eckit::Configuration &, const Geometry_ &, PostProcTLAD_ &) override
Linearization trajectory for Jc DFI computation.
Definition: CostJcDFI.h:150
util::DateTime vt_
Definition: CostJcDFI.h:95
Increment< MODEL > Increment_
Definition: CostJcDFI.h:48
std::unique_ptr< GeneralizedDepartures > newDualVector() const override
Provide new increment.
Definition: CostJcDFI.h:222
double computeCost() override
Finish computation of cost function term after nonlinear model integration.
Definition: CostJcDFI.h:139
util::Duration tlstep_
Definition: CostJcDFI.h:103
PostProcessor< State_ > PostProc_
Definition: CostJcDFI.h:50
std::unique_ptr< GeneralizedDepartures > newGradientFG() const override
Gradient of at first guess.
Definition: CostJcDFI.h:230
std::unique_ptr< Geometry_ > tlres_
Definition: CostJcDFI.h:102
std::unique_ptr< WeightingFct > wfct_
Definition: CostJcDFI.h:98
void setPostProcAD() const override
Adjoint ot setPostProcTL (clean-up)
Definition: CostJcDFI.h:77
Base Class for Cost Function Terms.
Definition: CostTermBase.h:36
Abstract base class for quantities.
Geometry class used in oops; subclass of interface class interface::Geometry.
Increment class used in oops.
Control model post processing.
Definition: PostProcessor.h:30
void enrollProcessor(PostBase_ *pp)
Definition: PostProcessor.h:38
Control model post processing.
void enrollProcessor(PostBaseTLAD_ *pp)
State class used in oops; subclass of interface class interface::State.
Compute time average of states or increments during model run.
Definition: WeightedDiff.h:39
Compute time average of states or increments during linear model run.
The namespace for the main oops code.