12 #ifndef OOPS_BASE_GETVALUESPOST_H_
13 #define OOPS_BASE_GETVALUESPOST_H_
29 #include "oops/util/DateTime.h"
30 #include "oops/util/Duration.h"
31 #include "oops/util/Logger.h"
42 template <
typename MODEL,
typename OBS>
60 const std::vector<eckit::LocalConfiguration> &);
70 void doInitialize(
const State_ &,
const util::DateTime &,
const util::Duration &)
override;
88 template <
typename MODEL,
typename OBS>
91 const std::vector<Variables> & vars,
92 const std::vector<eckit::LocalConfiguration> & confs)
94 winbgn_(obsdb.windowStart()), winend_(obsdb.windowEnd()), hslot_(),
95 locations_(locations), geovars_(vars), getvalsconfs_(confs)
97 Log::trace() <<
"GetValuesPost::GetValuesPost" << std::endl;
101 template <
typename MODEL,
typename OBS>
103 Log::trace() <<
"GetValuesPost::fill start" << std::endl;
104 const size_t nstates = xx.
size();
105 util::Duration tstep = winend_ - winbgn_;
109 tstep = xx[1].validTime() - xx[0].validTime();
110 for (
size_t ii = 1; ii < nstates; ++ii) {
111 ASSERT(tstep == (xx[ii].validTime() - xx[ii-1].validTime()));
115 doInitialize(xx[0], xx[nstates-1].validTime(), tstep);
116 for (
size_t ii = 0; ii < nstates; ++ii) {
117 doProcessing(xx[ii]);
119 Log::trace() <<
"GetValuesPost::fill done" << std::endl;
124 template <
typename MODEL,
typename OBS>
126 const util::Duration & tstep) {
127 Log::trace() <<
"GetValuesPost::doInitialize start" << std::endl;
130 for (
size_t jj = 0; jj < locations_.size(); ++jj) {
131 getvals_.emplace_back(
new GetValues_(xx.
geometry(), *locations_[jj], getvalsconfs_[jj]));
132 geovals_.emplace_back(
new GeoVaLs_(*locations_[jj], geovars_[jj],
136 Log::trace() <<
"GetValuesPost::doInitialize done" << std::endl;
141 template <
typename MODEL,
typename OBS>
143 Log::trace() <<
"GetValuesPost::doProcessing start" << std::endl;
144 util::DateTime t1 = std::max(xx.
validTime()-hslot_, winbgn_);
145 util::DateTime t2 = std::min(xx.
validTime()+hslot_, winend_);
147 eckit::LocalConfiguration chvarconf;
149 for (
size_t jj = 0; jj < getvals_.size(); ++jj) gvars += geovars_[jj];
155 for (
size_t jj = 0; jj < getvals_.size(); ++jj) {
156 getvals_[jj]->fillGeoVaLs(zz, t1, t2, *geovals_[jj]);
158 Log::trace() <<
"GetValuesPost::doProcessing done" << std::endl;
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
Gets values from model State to observation locations (fills GeoVaLs)
Fills GeoVaLs with requested variables at requested locations:
ObsSpaces< OBS > ObsSpaces_
GetValuesVec_ getvals_
Variables needed from model.
const GeoVaLsVec_ & geovals() const
Returns geovals filled in during the model run.
std::vector< std::unique_ptr< GetValues_ > > GetValuesVec_
util::Duration hslot_
End of assimilation window.
std::vector< std::unique_ptr< Locations_ > > LocationsVec_
Locations< OBS > Locations_
void doProcessing(const State_ &) override
called at each model step: fill in GeoVaLs for the current time slot
State4D< MODEL > State4D_
GetValues< MODEL, OBS > GetValues_
GetValuesPost(const ObsSpaces_ &, const LocationsVec_ &, const std::vector< Variables > &, const std::vector< eckit::LocalConfiguration > &)
Saves Locations and Variables to be processed.
const LocationsVec_ & locations_
Half time slot.
const std::vector< Variables > geovars_
locations of observations
void doInitialize(const State_ &, const util::DateTime &, const util::Duration &) override
initialization before model run: sets up GetValues and allocate GeoVaLs
std::vector< std::unique_ptr< GeoVaLs_ > > GeoVaLsVec_
void fill(const State4D_ &)
fills in GeoVaLs looping through State4D
ChangeVariables< MODEL > ChangeVariables_
const std::vector< eckit::LocalConfiguration > getvalsconfs_
GeoVaLs that are filled in.
GeoVaLsVec_ geovals_
GetValues used to fill in GeoVaLs.
util::DateTime winend_
Begining of assimilation window.
Locations of observations for observation operator.
Handles post-processing of model fields.
Four dimensional state (vector of 3D States)
size_t size() const
Get 3D model state.
State class used in oops; subclass of interface class interface::State.
std::vector< size_t > variableSizes(const Variables &) const
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.