OOPS
GeometryQG.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 QG_MODEL_GEOMETRYQG_H_
12 #define QG_MODEL_GEOMETRYQG_H_
13 
14 #include <memory>
15 #include <ostream>
16 #include <string>
17 #include <vector>
18 
19 #include "atlas/field.h"
20 #include "atlas/functionspace.h"
21 
22 #include "eckit/mpi/Comm.h"
23 
24 #include "oops/util/ObjectCounter.h"
25 #include "oops/util/parameters/Parameter.h"
26 #include "oops/util/parameters/Parameters.h"
27 #include "oops/util/parameters/RequiredParameter.h"
28 #include "oops/util/Printable.h"
29 
30 #include "oops/qg/GeometryQGIterator.h"
31 #include "oops/qg/QgFortran.h"
32 
33 namespace oops {
34  class Variables;
35 }
36 
37 namespace qg {
38 
39 class GeometryQgParameters : public oops::Parameters {
40  OOPS_CONCRETE_PARAMETERS(GeometryQgParameters, Parameters)
41 
42  public:
43  /// Domain size
44  oops::RequiredParameter<int> nx{"nx", this};
45  oops::RequiredParameter<int> ny{"ny", this};
46  /// Depths
47  oops::RequiredParameter<std::vector<float>> depths{"depths", this};
48  /// Heating option (AS: should it be in geometry or model?)
49  oops::Parameter<bool> heating{"heating", true, this};
50 };
51 
52 class GeometryQGIterator;
53 
54 // -----------------------------------------------------------------------------
55 /// GeometryQG handles geometry for QG model.
56 
57 class GeometryQG : public util::Printable,
58  private util::ObjectCounter<GeometryQG> {
59  public:
61 
62  static const std::string classname() {return "qg::GeometryQG";}
63 
64  GeometryQG(const GeometryQgParameters &, const eckit::mpi::Comm &);
65  GeometryQG(const GeometryQG &);
66  ~GeometryQG();
67 
68  const F90geom & toFortran() const {return keyGeom_;}
69 
70  GeometryQGIterator begin() const;
71  GeometryQGIterator end() const;
72  std::vector<double> verticalCoord(std::string &) const;
73  const eckit::mpi::Comm & getComm() const {return comm_;}
74  atlas::FunctionSpace * atlasFunctionSpace() const {return atlasFunctionSpace_.get();}
75  atlas::FieldSet * atlasFieldSet() const {return atlasFieldSet_.get();}
76 
77  std::vector<size_t> variableSizes(const oops::Variables & vars) const;
78 
79  private:
81  void print(std::ostream &) const;
83  const eckit::mpi::Comm & comm_;
84  std::unique_ptr<atlas::functionspace::PointCloud> atlasFunctionSpace_;
85  std::unique_ptr<atlas::FieldSet> atlasFieldSet_;
86 };
87 // -----------------------------------------------------------------------------
88 
89 } // namespace qg
90 
91 #endif // QG_MODEL_GEOMETRYQG_H_
GeometryQG handles geometry for QG model.
Definition: GeometryQG.h:58
GeometryQgParameters Parameters_
Definition: GeometryQG.h:60
const F90geom & toFortran() const
Definition: GeometryQG.h:68
atlas::FieldSet * atlasFieldSet() const
Definition: GeometryQG.h:75
std::unique_ptr< atlas::functionspace::PointCloud > atlasFunctionSpace_
Definition: GeometryQG.h:84
const eckit::mpi::Comm & getComm() const
Definition: GeometryQG.h:73
std::vector< double > verticalCoord(std::string &) const
Definition: GeometryQG.cc:86
GeometryQGIterator begin() const
Definition: GeometryQG.cc:72
GeometryQG & operator=(const GeometryQG &)
std::unique_ptr< atlas::FieldSet > atlasFieldSet_
Definition: GeometryQG.h:85
static const std::string classname()
Definition: GeometryQG.h:62
std::vector< size_t > variableSizes(const oops::Variables &vars) const
Definition: GeometryQG.cc:106
GeometryQGIterator end() const
Definition: GeometryQG.cc:76
atlas::FunctionSpace * atlasFunctionSpace() const
Definition: GeometryQG.h:74
void print(std::ostream &) const
Definition: GeometryQG.cc:113
F90geom keyGeom_
Definition: GeometryQG.h:82
const eckit::mpi::Comm & comm_
Definition: GeometryQG.h:83
GeometryQG(const GeometryQgParameters &, const eckit::mpi::Comm &)
Definition: GeometryQG.cc:28
oops::Parameter< bool > heating
Heating option (AS: should it be in geometry or model?)
Definition: GeometryQG.h:49
oops::RequiredParameter< std::vector< float > > depths
Depths.
Definition: GeometryQG.h:47
oops::RequiredParameter< int > nx
Domain size.
Definition: GeometryQG.h:44
oops::RequiredParameter< int > ny
Definition: GeometryQG.h:45
The namespace for the main oops code.
The namespace for the qg model.
int F90geom
Definition: QgFortran.h:38