12 #ifndef OOPS_RUNS_HOFX4D_H_
13 #define OOPS_RUNS_HOFX4D_H_
18 #include "eckit/config/LocalConfiguration.h"
19 #include "eckit/exception/Exceptions.h"
36 #include "oops/util/algorithms.h"
37 #include "oops/util/DateTime.h"
38 #include "oops/util/Duration.h"
39 #include "oops/util/Logger.h"
40 #include "oops/util/parameters/OptionalParameter.h"
41 #include "oops/util/parameters/Parameter.h"
42 #include "oops/util/parameters/Parameters.h"
43 #include "oops/util/parameters/RequiredParameter.h"
50 template <
typename OBS>
60 oops::RequiredParameter<ObsSpaceParameters_>
obsSpace{
"obs space",
this};
66 oops::Parameter<ObsErrorParameters_>
obsError{
"obs error", {},
this};
69 oops::Parameter<ObsAuxControlParameters_>
obsBias{
"obs bias", {},
this};
75 template <
typename MODEL,
typename OBS>
85 oops::RequiredParameter<util::DateTime>
windowBegin{
"window begin",
this};
86 oops::RequiredParameter<util::Duration>
windowLength{
"window length",
this};
89 oops::RequiredParameter<util::Duration>
forecastLength{
"forecast length",
this};
92 oops::Parameter<std::vector<ObsTypeParameters<OBS>>>
observations{
"observations", {},
this};
95 oops::RequiredParameter<GeometryParameters_>
geometry{
"geometry",
this};
98 oops::RequiredParameter<ModelParameters_>
model{
"model",
this};
101 oops::RequiredParameter<eckit::LocalConfiguration>
initialCondition{
"initial condition",
this};
104 oops::Parameter<eckit::LocalConfiguration>
prints{
"prints", eckit::LocalConfiguration(),
this};
110 oops::Parameter<bool>
makeObs{
"make obs",
false,
this};
114 oops::Parameter<eckit::LocalConfiguration>
test{
"test", eckit::LocalConfiguration(),
this};
143 instantiateObsErrorFactory<OBS>();
144 instantiateObsFilterFactory<OBS>();
145 instantiateVariableChangeFactory<MODEL>();
150 int execute(
const eckit::Configuration & fullConfig)
const {
153 params.validateAndDeserialize(fullConfig);
158 const util::DateTime winend(winbgn + winlen);
159 Log::info() <<
"Observation window from " << winbgn <<
" to " << winend << std::endl;
165 const Model_ model(geometry, params.
model.value().modelParameters);
171 Log::test() <<
"Initial state: " << xx << std::endl;
175 Log::error() <<
"Observation window can not be outside of forecast window." << std::endl;
176 Log::error() <<
"Obs window: " << winbgn <<
" to " << winend << std::endl;
177 Log::error() <<
"Forecast runs from: " << xx.
validTime() <<
" for " << flength << std::endl;
178 throw eckit::BadValue(
"Observation window can not be outside of forecast window.");
188 const eckit::LocalConfiguration obsConfig(fullConfig,
"observations");
189 const std::vector<ObsSpaceParameters_> obsspaceParams = util::transformVector(
191 [](
const ObsTypeParameters_ & obsTypeParams) { return obsTypeParams.obsSpace.value(); });
194 const std::vector<ObsAuxControlParameters_> obsauxParams = util::transformVector(
196 [](
const ObsTypeParameters_ & obsTypeParams) { return obsTypeParams.obsBias.value(); });
197 ObsAux_ obsaux(obspaces, obsauxParams);
199 const std::vector<ObsErrorParameters_> obsErrorParams = util::transformVector(
201 [](
const ObsTypeParameters_ & obsTypeParams) { return obsTypeParams.obsError.value(); });
205 std::vector<ObserverParameters_> observerParams = util::transformVector(
209 hofx.
initialize(geometry, obsaux, Rmat, post);
212 model.
forecast(xx, moderr, flength, post);
213 Log::test() <<
"Final state: " << xx << std::endl;
218 Log::test() <<
"H(x): " << std::endl << yobs <<
"End H(x)" << std::endl;
224 Log::test() <<
"Perturbed H(x): " << std::endl << yobs <<
"End Perturbed H(x)" << std::endl;
236 return "oops::HofX4D<" + MODEL::name() +
", " + OBS::name() +
">";
const eckit::mpi::Comm & getComm() const
Geometry class used in oops; subclass of interface class interface::Geometry.
interface::Geometry< MODEL >::Parameters_ Parameters_
HofX4D(const eckit::mpi::Comm &comm=oops::mpi::world())
int execute(const eckit::Configuration &fullConfig) const
ObserverParameters< OBS > ObserverParameters_
Observations< OBS > Observations_
Observers< MODEL, OBS > Observers_
ObsSpace< OBS >::Parameters_ ObsSpaceParameters_
ModelAuxControl< MODEL > ModelAux_
ObsSpaces< OBS > ObsSpaces_
HofX4DParameters< MODEL, OBS > HofX4DParameters_
virtual ~HofX4D()=default
std::string appname() const
ObsTypeParameters< OBS > ObsTypeParameters_
Geometry< MODEL > Geometry_
ObsErrorParametersWrapper< OBS > ObsErrorParameters_
ObsErrors< OBS > ObsErrors_
ObsAuxControl< OBS >::Parameters_ ObsAuxControlParameters_
ObsAuxControls< OBS > ObsAux_
Top-level options taken by the HofX4D application.
oops::Parameter< std::vector< ObsTypeParameters< OBS > > > observations
A list whose elements determine treatment of observations from individual observation spaces.
oops::RequiredParameter< eckit::LocalConfiguration > initialCondition
Initial state parameters.
oops::RequiredParameter< util::DateTime > windowBegin
oops::RequiredParameter< ModelParameters_ > model
Model parameters.
oops::Parameter< eckit::LocalConfiguration > prints
Options passed to the object writing out forecast fields.
Geometry< MODEL >::Parameters_ GeometryParameters_
oops::RequiredParameter< util::Duration > forecastLength
Forecast length.
oops::Parameter< bool > obsPerturbations
Whether to perturb the H(x) vector before saving.
oops::RequiredParameter< util::Duration > windowLength
ModelParametersWrapper< MODEL > ModelParameters_
oops::RequiredParameter< GeometryParameters_ > geometry
Geometry parameters.
oops::Parameter< bool > makeObs
Whether to save the H(x) vector as ObsValues.
Auxiliary state related to model (could be e.g. model bias), not used at the moment.
Abstract nonlinear forecast model used by high level algorithms and applications.
void forecast(State_ &xx, const ModelAux_ &, const util::Duration &len, PostProcessor< State_ > &post) const
Run the forecast from state xx for len time, with post postprocessors Does not need to be implemented...
Contains a polymorphic parameter holding an instance of a subclass of ModelParametersBase.
ObsAuxControl_::Parameters_ Parameters_
Holds a vector of ObsAuxControl.
Contains a polymorphic parameter holding an instance of a subclass of ObsErrorParametersBase.
Container for ObsErrors for all observation types that are used in DA.
ObsSpace_::Parameters_ Parameters_
void save() const
Save files.
Options controlling the processing of observations from a single obs space.
oops::Parameter< ObsAuxControlParameters_ > obsBias
Options used to configure bias correction.
ObsAuxControl< OBS >::Parameters_ ObsAuxControlParameters_
ObserverParameters< OBS > observer
Options used to configure the observation operator, observation filters and GetValues.
oops::RequiredParameter< ObsSpaceParameters_ > obsSpace
Options used to configure the observation space.
ObsErrorParametersWrapper< OBS > ObsErrorParameters_
oops::Parameter< ObsErrorParameters_ > obsError
Options used to configure the observation error covariance matrix model.
ObsSpace< OBS >::Parameters_ ObsSpaceParameters_
void save(const std::string &) const
Save/read observations values.
void perturb(const ObsErrors_ &)
Perturbations.
Computes observation operator (from GeoVaLs), applies bias correction and runs QC filters.
void initialize(const Geometry_ &, const ObsAuxCtrls_ &, ObsErrors_ &, PostProc_ &, const eckit::Configuration &=eckit::LocalConfiguration())
Initializes variables, obs bias, obs filters (could be different for different iterations.
void finalize(Observations_ &)
Computes H(x) from the filled in GeoVaLs.
Control model post processing.
void enrollProcessor(PostBase_ *pp)
State class used in oops; subclass of interface class interface::State.
Handles writing-out of forecast fields.
const util::DateTime validTime() const
Accessor to the time of this State.
const eckit::mpi::Comm & myself()
Default communicator with each MPI task by itself.
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
The namespace for the main oops code.