11 #ifndef OOPS_ASSIMILATION_COSTJO_H_
12 #define OOPS_ASSIMILATION_COSTJO_H_
19 #include <boost/noncopyable.hpp>
21 #include "eckit/config/LocalConfiguration.h"
37 #include "oops/util/DateTime.h"
38 #include "oops/util/Logger.h"
52 private boost::noncopyable {
69 CostJo(
const eckit::Configuration &,
const eckit::mpi::Comm &,
70 const util::DateTime &,
const util::DateTime &,
91 void computeCostAD(std::shared_ptr<const GeneralizedDepartures>,
96 std::unique_ptr<GeneralizedDepartures>
98 std::unique_ptr<GeneralizedDepartures>
102 std::unique_ptr<GeneralizedDepartures>
newDualVector()
const override;
105 std::unique_ptr<GeneralizedDepartures>
newGradientFG()
const override;
116 std::unique_ptr<Observations_>
yobs_;
132 template<
typename MODEL,
typename OBS>
134 const util::DateTime & winbgn,
const util::DateTime & winend,
135 const eckit::mpi::Comm & ctime)
136 : obsconf_(joConf), obspaces_(obsconf_, comm, winbgn, winend, ctime),
137 Rmat_(obsconf_, obspaces_), observers_(obspaces_, joConf),
138 gradFG_(), obstlad_(), currentConf_()
140 Log::trace() <<
"CostJo::CostJo" << std::endl;
145 template<
typename MODEL,
typename OBS>
148 Log::trace() <<
"CostJo::~CostJo" << std::endl;
153 template<
typename MODEL,
typename OBS>
156 Log::trace() <<
"CostJo::setPostProc start" << std::endl;
159 currentConf_.reset(
new eckit::LocalConfiguration(conf));
163 Log::trace() <<
"CostJo::setPostProc done" << std::endl;
168 template<
typename MODEL,
typename OBS>
170 Log::trace() <<
"CostJo::computeCost start" << std::endl;
176 observers_.finalize(yeqv);
179 bool obspert = currentConf_->getBool(
"obs perturbations",
false);
181 yobs_->perturb(Rmat_);
182 Log::info() <<
"Perturbed observations: " << *yobs_ << std::endl;
187 if (currentConf_->has(
"diagnostics.departures")) {
188 const std::string depname = currentConf_->getString(
"diagnostics.departures");
194 Rmat_.inverseMultiply(*gradFG_);
197 Log::info() <<
"Jo Observations:" << std::endl << *yobs_
198 <<
"End Jo Observations" << std::endl;
200 Log::info() <<
"Jo Observations Equivalent:" << std::endl << yeqv
201 <<
"End Jo Observations Equivalent" << std::endl;
203 Log::info() <<
"Jo Bias Corrected Departures:" << std::endl << ydep
204 <<
"End Jo Bias Corrected Departures" << std::endl;
206 Log::info() <<
"Jo Observations Errors:" << std::endl << Rmat_
207 <<
"End Jo Observations Errors" << std::endl;
211 std::vector<eckit::LocalConfiguration> typeconfs = obsconf_.getSubConfigurations();
212 for (
size_t jj = 0; jj < obspaces_.size(); ++jj) {
214 const unsigned nobs = (*gradFG_)[jj].
nobs();
215 Log::test() <<
"CostJo : Nonlinear Jo(" << obspaces_[jj].obsname() <<
") = ";
218 zz = 0.5 * dot_product(ydep[jj], (*gradFG_)[jj]);
219 const double err = Rmat_[jj].getRMSE();
220 Log::test() << zz <<
", nobs = " << nobs <<
", Jo/n = " << zz/nobs <<
", err = " << err;
222 Log::test() << zz <<
" --- No Observations";
225 if (typeconfs[jj].getBool(
"monitoring only",
false)) {
226 Log::test() <<
" (Monitoring only)";
230 Log::test() << std::endl;
233 Log::trace() <<
"CostJo::computeCost done" << std::endl;
239 template<
typename MODEL,
typename OBS>
242 Log::trace() <<
"CostJo::setPostProcTraj start" << std::endl;
244 obstlad_->initializeTraj(lowres, xx.
obsVar(), pptraj);
245 Log::trace() <<
"CostJo::setPostProcTraj done" << std::endl;
250 template<
typename MODEL,
typename OBS>
252 obstlad_->finalizeTraj();
253 Log::trace() <<
"CostJo::computeCostTraj done" << std::endl;
258 template<
typename MODEL,
typename OBS>
260 Log::trace() <<
"CostJo::setPostProcTL start" << std::endl;
262 obstlad_->initializeTL(pptl);
263 Log::trace() <<
"CostJo::setPostProcTL done" << std::endl;
268 template<
typename MODEL,
typename OBS>
270 Log::trace() <<
"CostJo::computeCostTL start" << std::endl;
273 obstlad_->finalizeTL(dx.
obsVar(), ydep);
274 Log::trace() <<
"CostJo::computeCostTL done" << std::endl;
279 template<
typename MODEL,
typename OBS>
282 Log::trace() <<
"CostJo::computeCostAD start" << std::endl;
284 std::shared_ptr<const Departures_> dy = std::dynamic_pointer_cast<const Departures_>(pv);
285 obstlad_->initializeAD(*dy, dx.
obsVar(), ppad);
286 Log::trace() <<
"CostJo::computeCostAD done" << std::endl;
291 template<
typename MODEL,
typename OBS>
293 Log::trace() <<
"CostJo::setPostProcAD start" << std::endl;
295 obstlad_->finalizeAD();
296 Log::trace() <<
"CostJo::setPostProcAD done" << std::endl;
301 template<
typename MODEL,
typename OBS>
302 std::unique_ptr<GeneralizedDepartures>
304 Log::trace() <<
"CostJo::multiplyCovar start" << std::endl;
307 return std::move(y1);
312 template<
typename MODEL,
typename OBS>
313 std::unique_ptr<GeneralizedDepartures>
315 Log::trace() <<
"CostJo::multiplyCoInv start" << std::endl;
317 Rmat_.inverseMultiply(*y1);
318 return std::move(y1);
323 template<
typename MODEL,
typename OBS>
325 Log::trace() <<
"CostJo::newDualVector start" << std::endl;
326 std::unique_ptr<Departures_> ydep(
new Departures_(obspaces_));
328 Log::trace() <<
"CostJo::newDualVector done" << std::endl;
329 return std::move(ydep);
334 template<
typename MODEL,
typename OBS>
336 return std::unique_ptr<Departures_>(
new Departures_(*gradFG_));
341 template<
typename MODEL,
typename OBS>
343 Log::trace() <<
"CostJo::resetLinearization start" << std::endl;
345 Log::trace() <<
"CostJo::resetLinearization done" << std::endl;
ObsAuxIncrs_ & obsVar()
Get augmented observation control variable.
ObsAuxCtrls_ & obsVar()
Get augmented observation control variable.
State_ & state()
Get state control variable.
std::shared_ptr< ObserversTLAD_ > obstlad_
Linearized observation operators.
CostJo(const eckit::Configuration &, const eckit::mpi::Comm &, const util::DateTime &, const util::DateTime &, const eckit::mpi::Comm &ctime=oops::mpi::myself())
Construct from and .
void computeCostTL(const CtrlInc_ &, GeneralizedDepartures &) const override
Finish cost computation after TL model integration.
std::unique_ptr< GeneralizedDepartures > newDualVector() const override
Provide new departure.
void setPostProcTL(const CtrlInc_ &, PostProcTLAD_ &) const override
Initialize before starting the TL run.
PostProcessor< State_ > PostProc_
double computeCost() override
Finalize after the integration of the model.
std::unique_ptr< GeneralizedDepartures > newGradientFG() const override
Return gradient at first guess ie .
std::unique_ptr< GeneralizedDepartures > multiplyCoInv(const GeneralizedDepartures &) const override
GetValuePosts< MODEL, OBS > GetValuePosts_
void resetLinearization() override
Reset obs operator trajectory.
Departures< OBS > Departures_
virtual ~CostJo()
Destructor.
ObsSpaces< OBS > ObsSpaces_
void setPostProcTraj(const CtrlVar_ &, const eckit::Configuration &, const Geometry_ &, PostProcTLAD_ &) override
Initialize for the trajectory run.
std::unique_ptr< GeneralizedDepartures > multiplyCovar(const GeneralizedDepartures &) const override
Multiply by and .
void setPostProc(const CtrlVar_ &, const eckit::Configuration &, PostProc_ &) override
Initialize before starting the integration of the model.
void computeCostTraj() override
Finish cost computation and trajectory handling after nonlinear model integration.
void setPostProcAD() const override
Adjoint ot setPostProcTL (clean-up)
PostProcessorTLAD< MODEL > PostProcTLAD_
ObsErrors< OBS > ObsErrors_
Observations< OBS > Observations_
ObserversTLAD< MODEL, OBS > ObserversTLAD_
ControlVariable< MODEL, OBS > CtrlVar_
std::unique_ptr< eckit::LocalConfiguration > currentConf_
Configuration for current initialize/finalize pair.
void computeCostAD(std::shared_ptr< const GeneralizedDepartures >, CtrlInc_ &, PostProcTLAD_ &) const override
Initialize before starting the AD run.
const ObsSpaces_ & obspaces() const
Accessor...
ControlIncrement< MODEL, OBS > CtrlInc_
std::unique_ptr< Departures_ > gradFG_
Jo Gradient at first guess : .
const eckit::LocalConfiguration obsconf_
Geometry< MODEL > Geometry_
Observers< MODEL, OBS > Observers_
std::unique_ptr< Observations_ > yobs_
Base Class for Cost Function Terms.
Difference between two observation vectors.
void save(const std::string &) const
Save departures values.
size_t nobs() const
Return number of departures (excluding departures that are masked out)
Abstract base class for quantities.
Geometry class used in oops; subclass of interface class interface::Geometry.
Fills GeoVaLs with requested variables at requested locations during model run.
Container for ObsErrors for all observation types that are used in DA.
Computes observation operator (from GeoVaLs), applies bias correction and runs QC filters.
Computes observation equivalent TL and AD to/from increments.
Control model post processing.
Control model post processing.
State class used in oops; subclass of interface class interface::State.
Geometry_ geometry() const
Accessor to geometry associated with this State.
const eckit::mpi::Comm & myself()
Default communicator with each MPI task by itself.
The namespace for the main oops code.