OOPS
GeometryQG.cc
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 #include <sstream>
12 
13 #include "atlas/field.h"
14 #include "atlas/functionspace.h"
15 #include "atlas/grid.h"
16 #include "atlas/util/Config.h"
17 
18 #include "oops/base/Variables.h"
19 #include "oops/util/abor1_cpp.h"
20 #include "oops/util/Logger.h"
21 
22 #include "model/GeometryQG.h"
23 #include "model/QgFortran.h"
24 
25 // -----------------------------------------------------------------------------
26 namespace qg {
27 // -----------------------------------------------------------------------------
29  const eckit::mpi::Comm & comm) : comm_(comm) {
30  ASSERT(comm_.size() == 1);
31  qg_geom_setup_f90(keyGeom_, params.toConfiguration());
32 
33  // Set ATLAS lon/lat field
34  atlasFieldSet_.reset(new atlas::FieldSet());
36  atlas::Field atlasField = atlasFieldSet_->field("lonlat");
37 
38  // Create ATLAS function space
39  atlasFunctionSpace_.reset(new atlas::functionspace::PointCloud(atlasField));
40 
41  // Set ATLAS function space pointer in Fortran
43 
44  // Fill ATLAS fieldset
45  atlasFieldSet_.reset(new atlas::FieldSet());
47 }
48 // -----------------------------------------------------------------------------
49 GeometryQG::GeometryQG(const GeometryQG & other) : comm_(other.comm_) {
50  ASSERT(comm_.size() == 1);
52 
53  // Copy ATLAS function space
54  atlasFunctionSpace_.reset(new atlas::functionspace::PointCloud(
55  other.atlasFunctionSpace_->lonlat()));
56 
57  // Set ATLAS function space pointer in Fortran
59 
60  // Copy ATLAS fieldset
61  atlasFieldSet_.reset(new atlas::FieldSet());
62  for (int jfield = 0; jfield < other.atlasFieldSet_->size(); ++jfield) {
63  atlas::Field atlasField = other.atlasFieldSet_->field(jfield);
64  atlasFieldSet_->add(atlasField);
65  }
66 }
67 // -----------------------------------------------------------------------------
70 }
71 // -----------------------------------------------------------------------------
73  return GeometryQGIterator(*this);
74 }
75 // -----------------------------------------------------------------------------
77  int nx = 0;
78  int ny = 0;
79  int nz;
80  double deltax;
81  double deltay;
82  qg_geom_info_f90(keyGeom_, nx, ny, nz, deltax, deltay);
83  return GeometryQGIterator(*this, nx*ny+1);
84 }
85 // -------------------------------------------------------------------------------------------------
86 std::vector<double> GeometryQG::verticalCoord(std::string & vcUnits) const {
87  // returns vertical coordinate in untis of vcUnits
88  int nx = 0;
89  int ny = 0;
90  int nz;
91  double deltax;
92  double deltay;
93  qg_geom_info_f90(keyGeom_, nx, ny, nz, deltax, deltay);
94  std::vector<double> vc(nz);
95  if (vcUnits == "levels") {
96  for (int i=0; i < nz; ++i) {vc[i]=i+1;}
97  } else {
98  std::stringstream errorMsg;
99  errorMsg << "Uknown vertical coordinate unit " << vcUnits << std::endl;
100  ABORT(errorMsg.str());
101  }
102  oops::Log::debug() << "QG vert coord: " << vc << std::endl;
103  return vc;
104 }
105 // -------------------------------------------------------------------------------------------------
106 std::vector<size_t> GeometryQG::variableSizes(const oops::Variables & vars) const {
107  // Note: in qg we always do trilinear interpolation, so GeoVaLs are always
108  // size 1.
109  std::vector<size_t> sizes(vars.size(), 1);
110  return sizes;
111 }
112 // -----------------------------------------------------------------------------
113 void GeometryQG::print(std::ostream & os) const {
114  int nx;
115  int ny;
116  int nz;
117  double deltax;
118  double deltay;
119  qg_geom_info_f90(keyGeom_, nx, ny, nz, deltax, deltay);
120  os << "Geometry:" << std::endl;
121  os << "nx = " << nx << ", ny = " << ny << ", nz = " << nz << std::endl;
122  os << "deltax = " << deltax << ", deltay = " << deltay;
123 }
124 // -----------------------------------------------------------------------------
125 } // namespace qg
size_t size() const
GeometryQG handles geometry for QG model.
Definition: GeometryQG.h:58
std::unique_ptr< atlas::functionspace::PointCloud > atlasFunctionSpace_
Definition: GeometryQG.h:84
std::vector< double > verticalCoord(std::string &) const
Definition: GeometryQG.cc:86
GeometryQGIterator begin() const
Definition: GeometryQG.cc:72
std::unique_ptr< atlas::FieldSet > atlasFieldSet_
Definition: GeometryQG.h:85
std::vector< size_t > variableSizes(const oops::Variables &vars) const
Definition: GeometryQG.cc:106
GeometryQGIterator end() const
Definition: GeometryQG.cc:76
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
The namespace for the qg model.
void qg_geom_setup_f90(F90geom &, const eckit::Configuration &)
void qg_geom_set_atlas_functionspace_pointer_f90(const F90geom &, atlas::functionspace::FunctionSpaceImpl *)
void qg_geom_fill_atlas_fieldset_f90(const F90geom &, atlas::field::FieldSetImpl *)
void qg_geom_delete_f90(F90geom &)
void qg_geom_info_f90(const F90geom &, int &, int &, int &, double &, double &)
void qg_geom_set_atlas_lonlat_f90(const F90geom &, atlas::field::FieldSetImpl *)
void qg_geom_clone_f90(F90geom &, const F90geom &)