11 #ifndef OOPS_BASE_OBSERVERTLAD_H_
12 #define OOPS_BASE_OBSERVERTLAD_H_
17 #include "eckit/config/Configuration.h"
28 #include "oops/util/DateTime.h"
34 template <
typename MODEL,
typename OBS>
75 template <
typename MODEL,
typename OBS>
77 : obsconfig_(conf), obspace_(obsdb),
80 conf.
has(
"linear obs operator") ?
81 eckit::LocalConfiguration(conf,
"linear obs operator") :
82 eckit::LocalConfiguration(conf,
"obs operator"))),
83 getvals_(), locations_(), winbgn_(obsdb.windowStart()), winend_(obsdb.windowEnd()),
84 ybias_(nullptr), init_(false)
86 Log::trace() <<
"ObserverTLAD::ObserverTLAD" << std::endl;
89 template <
typename MODEL,
typename OBS>
90 std::shared_ptr<GetValueTLAD<MODEL, OBS>>
92 Log::trace() <<
"ObserverTLAD::initializeTraj start" << std::endl;
97 validateAndDeserialize<typename ObsOperator_::Parameters_>(
98 eckit::LocalConfiguration(obsconfig_,
"obs operator")));
100 linvars_sizes_ = geom.
variableSizes(hoptlad_.requiredVars());
101 eckit::LocalConfiguration gvconf(obsconfig_.has(
"linear get values") ?
102 eckit::LocalConfiguration(obsconfig_,
"linear get values") :
103 (obsconfig_.has(
"get values") ?
104 eckit::LocalConfiguration(obsconfig_,
"get values") :
105 eckit::LocalConfiguration(obsconfig_,
"")));
110 geovars += ybias_->requiredVars();
112 getvals_.reset(
new GetValTLAD_(gvconf, geom, winbgn_, winend_,
113 *locations_, geovars, hoptlad_.requiredVars()));
116 Log::trace() <<
"ObserverTLAD::initializeTraj done" << std::endl;
120 template <
typename MODEL,
typename OBS>
122 Log::trace() <<
"ObserverTLAD::finalizeTraj start" << std::endl;
126 std::unique_ptr<GeoVaLs_> geovals = getvals_->finalize();
129 hoptlad_.setTrajectory(*geovals, *ybias_);
132 Log::trace() <<
"ObserverTLAD::finalizeTraj done" << std::endl;
135 template <
typename MODEL,
typename OBS>
137 Log::trace() <<
"ObserverTLAD::initializeTL" << std::endl;
141 template <
typename MODEL,
typename OBS>
143 Log::trace() <<
"ObserverTLAD::finalizeTL start" << std::endl;
146 std::unique_ptr<GeoVaLs_> geovals = getvals_->finalize();
149 hoptlad_.simulateObsTL(*geovals, ydeptl, ybiastl);
151 Log::trace() <<
"ObserverTLAD::finalizeTL done" << std::endl;
154 template <
typename MODEL,
typename OBS>
155 std::shared_ptr<GetValueTLAD<MODEL, OBS>>
157 Log::trace() <<
"ObserverTLAD::initializeAD start" << std::endl;
160 std::unique_ptr<GeoVaLs_> geovals(
new GeoVaLs_(*locations_, hoptlad_.requiredVars(),
162 hoptlad_.simulateObsAD(*geovals, ydepad, ybiasad);
165 getvals_->setAD(geovals);
167 Log::trace() <<
"ObserverTLAD::initializeAD done" << std::endl;
171 template <
typename MODEL,
typename OBS>
173 getvals_->finalizeAD();
174 Log::trace() <<
"ObserverTLAD::finalizeAD done" << std::endl;
Geometry class used in oops; subclass of interface class interface::Geometry.
TLAD of filling GeoVaLs with requested variables at requested locations during model run.
MODEL-agnostic part of tangent-linear and adjoint of the nonlinear observation (forward) operator Obs...
Locations of observations for observation operator.
Auxiliary state related to observations, templated on <OBS>
Auxiliary increment related to observations, templated on <OBS>
MODEL-agnostic part of nonlinear observation (forward) operator. The full nonlinear observation opera...
const Variables & requiredVars() const
Locations_ locations() const
Locations used for computing GeoVaLs that will be passed to simulateObs.
ObsVector class used in oops; subclass of interface class interface::ObsVector.
Computes observation equivalent TL and AD to/from increments.
std::shared_ptr< GetValTLAD_ > initializeTraj(const Geometry_ &, const ObsAuxCtrl_ &)
ObsSpace< OBS > ObsSpace_
ObsAuxIncrement< OBS > ObsAuxIncr_
void finalizeTL(const ObsAuxIncr_ &, ObsVector_ &)
std::shared_ptr< GetValTLAD_ > initializeAD(const ObsVector_ &, ObsAuxIncr_ &)
ObsOperator< OBS > ObsOperator_
GetValueTLAD< MODEL, OBS > GetValTLAD_
ObsVector< OBS > ObsVector_
Locations< OBS > Locations_
std::vector< size_t > linvars_sizes_
std::unique_ptr< Locations_ > locations_
ObsAuxControl< OBS > ObsAuxCtrl_
std::shared_ptr< GetValTLAD_ > initializeTL()
const ObsSpace_ & obspace_
std::shared_ptr< GetValTLAD_ > getvals_
const ObsAuxCtrl_ * ybias_
Geometry< MODEL > Geometry_
ObserverTLAD(const ObsSpace_ &, const eckit::Configuration &)
eckit::LocalConfiguration obsconfig_
LinearObsOperator< OBS > LinearObsOperator_
LinearObsOperator_ hoptlad_
std::vector< size_t > variableSizes(const Variables &) const
logical function has(this, var)
The namespace for the main oops code.