MPAS-JEDI
GeometryMPAS.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017 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 #include "eckit/config/Configuration.h"
9 
10 #include "atlas/grid.h"
11 #include "atlas/util/Config.h"
12 
13 #include "oops/util/Logger.h"
14 
15 #include "mpasjedi/GeometryMPAS.h"
16 
17 // -----------------------------------------------------------------------------
18 namespace mpas {
19 // -----------------------------------------------------------------------------
20 GeometryMPAS::GeometryMPAS(const eckit::Configuration & config,
21  const eckit::mpi::Comm & comm) : comm_(comm) {
22  oops::Log::trace() << "========= GeometryMPAS::GeometryMPAS step 1 =========="
23  << std::endl;
25 
26  // Set ATLAS lon/lat field
27  atlasFieldSet_.reset(new atlas::FieldSet());
29  atlas::Field atlasField = atlasFieldSet_->field("lonlat");
30 
31  // Create ATLAS function space
32  atlasFunctionSpace_.reset(new atlas::functionspace::PointCloud(atlasField));
33 
34  // Set ATLAS function space pointer in Fortran
36  atlasFunctionSpace_->get());
37 
38  // Fill ATLAS fieldset
39  atlasFieldSet_.reset(new atlas::FieldSet());
41 
42  oops::Log::trace() << "========= GeometryMPAS::GeometryMPAS step 2 =========="
43  << std::endl;
44 }
45 // -----------------------------------------------------------------------------
46 GeometryMPAS::GeometryMPAS(const GeometryMPAS & other) : comm_(other.comm_) {
47  oops::Log::trace() << "========= GeometryMPAS mpas_geo_clone_f90 =========="
48  << std::endl;
50  atlasFunctionSpace_.reset(new atlas::functionspace::PointCloud(
51  other.atlasFunctionSpace_->lonlat()));
53  atlasFunctionSpace_->get());
54  atlasFieldSet_.reset(new atlas::FieldSet());
55  for (int jfield = 0; jfield < other.atlasFieldSet_->size(); ++jfield) {
56  atlas::Field atlasField = other.atlasFieldSet_->field(jfield);
57  atlasFieldSet_->add(atlasField);
58  }
59 }
60 // -----------------------------------------------------------------------------
63 }
64 // -----------------------------------------------------------------------------
65 bool GeometryMPAS::isEqual(const GeometryMPAS & other) const {
66  bool isEqual;
67 
69 
70  return isEqual;
71 }
72 // -----------------------------------------------------------------------------
73 std::vector<size_t> GeometryMPAS::variableSizes(const oops::Variables & vars) const {
74  // vector of level counts
75  std::vector<size_t> varSizes(vars.size());
76 
77  mpas_geo_vars_nlevels_f90(keyGeom_, vars, vars.size(), varSizes[0]);
78 
79  return varSizes;
80 }
81 // -----------------------------------------------------------------------------
82 void GeometryMPAS::print(std::ostream & os) const {
83  int nCellsGlobal;
84  int nCells;
85  int nCellsSolve;
86  int nEdgesGlobal;
87  int nEdges;
88  int nEdgesSolve;
89  int nVertLevels;
90  int nVertLevelsP1;
91  mpas_geo_info_f90(keyGeom_, nCellsGlobal, nCells, nCellsSolve, \
92  nEdgesGlobal, nEdges, nEdgesSolve, \
93  nVertLevels, nVertLevelsP1);
94 
95  os << ", nCellsGlobal = " << nCellsGlobal \
96  << ", nCells = " << nCells \
97  << ", nCellsSolve = " << nCellsSolve \
98  << ", nEdgesGlobal = " << nEdgesGlobal \
99  << ", nEdges = " << nEdges \
100  << ", nEdgesSolve = " << nEdgesSolve \
101  << ", nVertLevels = " <<nVertLevels \
102  << ", nVertLevelsP1 = " <<nVertLevelsP1
103  << ", communicator = " << this->getComm().name();
104 }
105 // -----------------------------------------------------------------------------
106 } // namespace mpas
GeometryMPAS handles geometry for MPAS model.
Definition: GeometryMPAS.h:37
std::unique_ptr< atlas::FieldSet > atlasFieldSet_
Definition: GeometryMPAS.h:64
std::vector< size_t > variableSizes(const oops::Variables &) const
Definition: GeometryMPAS.cc:73
std::unique_ptr< atlas::functionspace::PointCloud > atlasFunctionSpace_
Definition: GeometryMPAS.h:63
const eckit::mpi::Comm & getComm() const
Definition: GeometryMPAS.h:47
GeometryMPAS(const eckit::Configuration &, const eckit::mpi::Comm &)
Definition: GeometryMPAS.cc:20
void print(std::ostream &) const
Definition: GeometryMPAS.cc:82
bool isEqual(const GeometryMPAS &) const
Definition: GeometryMPAS.cc:65
Definition: config.py:1
void mpas_geo_clone_f90(F90geom &, const F90geom &)
void mpas_geo_fill_atlas_fieldset_f90(const F90geom &, atlas::field::FieldSetImpl *)
void mpas_geo_set_atlas_lonlat_f90(const F90geom &, atlas::field::FieldSetImpl *)
void mpas_geo_is_equal_f90(bool &, const F90geom &, const F90geom &)
void mpas_geo_vars_nlevels_f90(const F90geom &, const oops::Variables &, const std::size_t &, std::size_t &)
void mpas_geo_setup_f90(F90geom &, const eckit::Configuration &, const eckit::mpi::Comm *)
Interface to Fortran MPAS model.
void mpas_geo_delete_f90(F90geom &)
void mpas_geo_set_atlas_functionspace_pointer_f90(const F90geom &, atlas::functionspace::FunctionSpaceImpl *)
void mpas_geo_info_f90(const F90geom &, int &, int &, int &, int &, int &, int &, int &, int &)