OOPS
ExternalDFI.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_RUNS_EXTERNALDFI_H_
12 #define OOPS_RUNS_EXTERNALDFI_H_
13 
14 #include <memory>
15 #include <string>
16 
17 #include "eckit/config/LocalConfiguration.h"
18 #include "eckit/exception/Exceptions.h"
19 #include "oops/base/Geometry.h"
20 #include "oops/base/Model.h"
22 #include "oops/base/State.h"
23 #include "oops/base/StateInfo.h"
24 #include "oops/base/StateWriter.h"
25 #include "oops/base/Variables.h"
26 #include "oops/base/WeightedMean.h"
28 #include "oops/mpi/mpi.h"
29 #include "oops/runs/Application.h"
30 #include "oops/util/DateTime.h"
31 #include "oops/util/Duration.h"
32 #include "oops/util/Logger.h"
33 
34 namespace oops {
35 
36 template <typename MODEL> class ExternalDFI : public Application {
41 
42  public:
43 // -----------------------------------------------------------------------------
44  explicit ExternalDFI(const eckit::mpi::Comm & comm = oops::mpi::world()) : Application(comm) {}
45 // -----------------------------------------------------------------------------
46  virtual ~ExternalDFI() {}
47 // -----------------------------------------------------------------------------
48  int execute(const eckit::Configuration & fullConfig) const {
49 // Setup resolution
50  const eckit::LocalConfiguration resolConfig(fullConfig, "geometry");
51  const Geometry_ resol(resolConfig, this->getComm());
52 
53 // Setup Model
54  const eckit::LocalConfiguration modelConfig(fullConfig, "model");
55  const Model_ model(resol, modelConfig);
56 
57 // Setup initial state
58  const eckit::LocalConfiguration initialConfig(fullConfig, "initial condition");
59  State_ xx(resol, initialConfig);
60  Log::test() << "Initial state: " << xx << std::endl;
61 
62 // Setup augmented state
63  const ModelAux_ moderr(resol, fullConfig.getSubConfiguration("model aux control"));
64 
65 // Setup times
66  const util::Duration fclength(fullConfig.getString("forecast length"));
67  const util::DateTime bgndate(xx.validTime());
68  const util::DateTime enddate(bgndate + fclength);
69  Log::info() << "Running forecast from " << bgndate << " to " << enddate << std::endl;
70 
71 // Setup post-processing
73 
74  eckit::LocalConfiguration prtConf;
75  fullConfig.get("prints", prtConf);
76  post.enrollProcessor(new StateInfo<State_>("fc", prtConf));
77 
78 // Setup DFI
79  PostProcessor<State_> pp(post);
80 
81  const eckit::LocalConfiguration dfiConf(fullConfig, "dfi");
82  const util::Duration dfispan(dfiConf.getString("filter_span"));
83  const util::DateTime dfitime(bgndate+dfispan/2);
84  const Variables vars(dfiConf, "filtered variables");
85  std::shared_ptr< WeightedMean<MODEL, State_> >
86  pdfi(new WeightedMean<MODEL, State_>(vars, dfitime, dfispan, resol, dfiConf));
87  pp.enrollProcessor(pdfi);
88 
89 // Run DFI forecast
90  model.forecast(xx, moderr, dfispan, pp);
91 
92 // Retrieve initialized state
93  std::unique_ptr<State_> xdfi(pdfi->releaseMean());
94  Log::test() << "Filtered state: " << *xdfi << std::endl;
95 
96 // Setup forecast outputs
97  const eckit::LocalConfiguration outConfig(fullConfig, "output");
98  post.enrollProcessor(new StateWriter<State_>(outConfig));
99 
100 // Run forecast from initialized state
101  const util::Duration fclen = fclength - dfispan/2;
102  if (fclength < util::Duration(0))
103  throw eckit::BadParameter("DFI: filter span longer than forecast");
104  State_ zz(*xdfi);
105  model.forecast(zz, moderr, fclen, post);
106  Log::test() << "Final state: " << zz << std::endl;
107 
108  return 0;
109  }
110 // -----------------------------------------------------------------------------
111  private:
112  std::string appname() const {
113  return "oops::ExternalDFI<" + MODEL::name() + ">";
114  }
115 // -----------------------------------------------------------------------------
116 };
117 
118 } // namespace oops
119 #endif // OOPS_RUNS_EXTERNALDFI_H_
const eckit::mpi::Comm & getComm() const
Definition: Application.h:36
State< MODEL > State_
Definition: ExternalDFI.h:40
virtual ~ExternalDFI()
Definition: ExternalDFI.h:46
ModelAuxControl< MODEL > ModelAux_
Definition: ExternalDFI.h:39
int execute(const eckit::Configuration &fullConfig) const
Definition: ExternalDFI.h:48
Model< MODEL > Model_
Definition: ExternalDFI.h:38
std::string appname() const
Definition: ExternalDFI.h:112
Geometry< MODEL > Geometry_
Definition: ExternalDFI.h:37
ExternalDFI(const eckit::mpi::Comm &comm=oops::mpi::world())
Definition: ExternalDFI.h:44
Geometry class used in oops; subclass of interface class interface::Geometry.
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...
Control model post processing.
Definition: PostProcessor.h:30
void enrollProcessor(PostBase_ *pp)
Definition: PostProcessor.h:38
State class used in oops; subclass of interface class interface::State.
Handles writing-out of forecast fields.
Definition: StateInfo.h:28
Handles writing-out of forecast fields.
Definition: StateWriter.h:26
Compute time average of states or increments during model run.
Definition: WeightedMean.h:41
const util::DateTime validTime() const
Accessor to the time of this State.
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
Definition: oops/mpi/mpi.cc:84
The namespace for the main oops code.