OOPS
l95/src/lorenz95/AnalyticInit.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 UCAR
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  */
7 
8 #ifndef LORENZ95_ANALYTICINIT_H_
9 #define LORENZ95_ANALYTICINIT_H_
10 
11 #include "eckit/config/LocalConfiguration.h"
12 
13 namespace lorenz95 {
14  class LocsL95;
15  class GomL95;
16 
17 /// AnalyticInit class fills GeoVaLs with analytic formulae
18 class AnalyticInit {
19  public:
20  explicit AnalyticInit(const eckit::Configuration &);
21  void fillGeoVaLs(const LocsL95 &, GomL95 &) const;
22 
23  private:
24  const eckit::LocalConfiguration config_;
25 };
26 
27 } // namespace lorenz95
28 
29 #endif // LORENZ95_ANALYTICINIT_H_
AnalyticInit class fills GeoVaLs with analytic formulae.
const eckit::LocalConfiguration config_
AnalyticInit(const eckit::Configuration &)
void fillGeoVaLs(const LocsL95 &, GomL95 &) const
GomL95 analytic initialization.
GomL95 class to handle locations for L95 model.
Definition: GomL95.h:33
LocsL95 class to handle locations for L95 model.
Definition: LocsL95.h:32
The namespace for the L95 model.