MPAS-JEDI
IncrementMPAS.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 <algorithm>
9 #include <iomanip>
10 #include <iostream>
11 #include <vector>
12 
13 #include "eckit/config/LocalConfiguration.h"
14 #include "eckit/exception/Exceptions.h"
15 
16 #include "oops/util/Logger.h"
17 
18 #include "mpasjedi/GeometryMPAS.h"
19 #include "mpasjedi/IncrementMPAS.h"
20 #include "mpasjedi/StateMPAS.h"
21 
22 namespace mpas {
23 
24 // -----------------------------------------------------------------------------
25 /// Constructor, destructor
26 // -----------------------------------------------------------------------------
28  const oops::Variables & vars,
29  const util::DateTime & time):
30  geom_(new GeometryMPAS(geom)), vars_(vars), time_(time)
31 {
34  oops::Log::trace() << "IncrementMPAS constructed." << std::endl;
35 }
36 // -----------------------------------------------------------------------------
38  const IncrementMPAS & other)
39  : geom_(new GeometryMPAS(resol)), vars_(other.vars_), time_(other.time_)
40 {
43  oops::Log::trace() << "IncrementMPAS constructed from other." << std::endl;
44 }
45 // -----------------------------------------------------------------------------
46 IncrementMPAS::IncrementMPAS(const IncrementMPAS & other, const bool copy)
47  : geom_(other.geom_), vars_(other.vars_), time_(other.time_)
48 {
50  if (copy) {
52  } else {
54  }
55  oops::Log::trace() << "IncrementMPAS copy-created." << std::endl;
56 }
57 // -----------------------------------------------------------------------------
59  : geom_(other.geom_), vars_(other.vars_), time_(other.time_)
60 {
63  oops::Log::trace() << "IncrementMPAS copy-created." << std::endl;
64 }
65 // -----------------------------------------------------------------------------
68  oops::Log::trace() << "IncrementMPAS destructed" << std::endl;
69 }
70 // -----------------------------------------------------------------------------
71 /// Basic operators
72 // -----------------------------------------------------------------------------
73 void IncrementMPAS::diff(const StateMPAS & x1, const StateMPAS & x2) {
74  ASSERT(this->validTime() == x1.validTime());
75  ASSERT(this->validTime() == x2.validTime());
76  oops::Log::debug() << "IncrementMPAS:diff x1 " << x1.toFortran() << std::endl;
77  oops::Log::debug() << "IncrementMPAS:diff x2 " << x2.toFortran() << std::endl;
78 
79  // If the states x1, x2 have a different geometry than the increment, need to
80  // convert them.
81  std::shared_ptr<const GeometryMPAS> stateGeom = x1.geometry();
82  ASSERT(stateGeom->isEqual(*(x2.geometry())));
83  if (geom_->isEqual(*stateGeom)) {
85  } else {
86  // Note: this is likely a high-to-low resolution interpolation that should
87  // probably not be done with barycentric?
88  StateMPAS x1_ir(*geom_, x1);
89  StateMPAS x2_ir(*geom_, x2);
91  }
92 }
93 // -----------------------------------------------------------------------------
96  time_ = rhs.time_;
97  return *this;
98 }
99 // -----------------------------------------------------------------------------
101  ASSERT(this->validTime() == dx.validTime());
103  return *this;
104 }
105 // -----------------------------------------------------------------------------
107  ASSERT(this->validTime() == dx.validTime());
109  return *this;
110 }
111 // -----------------------------------------------------------------------------
114  return *this;
115 }
116 // -----------------------------------------------------------------------------
119 }
120 // -----------------------------------------------------------------------------
121 void IncrementMPAS::zero(const util::DateTime & vt) {
123  time_ = vt;
124 }
125 // ------------------------------------------------------------------------------
128 }
129 // -----------------------------------------------------------------------------
130 void IncrementMPAS::axpy(const double & zz, const IncrementMPAS & dx,
131  const bool check) {
132  ASSERT(!check || this->validTime() == dx.validTime());
134 }
135 // -----------------------------------------------------------------------------
136 void IncrementMPAS::axpy(const double & zz, const StateMPAS & xx,
137  const bool check) {
138  ASSERT(!check || this->validTime() == xx.validTime());
140 }
141 // -----------------------------------------------------------------------------
142 void IncrementMPAS::accumul(const double & zz, const StateMPAS & xx) {
144 }
145 // -----------------------------------------------------------------------------
148 }
149 // -----------------------------------------------------------------------------
150 double IncrementMPAS::dot_product_with(const IncrementMPAS & other) const {
151  double zz;
153  return zz;
154 }
155 // -----------------------------------------------------------------------------
158 }
159 // -----------------------------------------------------------------------------
160 /// ATLAS
161 // -----------------------------------------------------------------------------
162 void IncrementMPAS::setAtlas(atlas::FieldSet * afieldset) const {
164  afieldset->get());
165 }
166 // -----------------------------------------------------------------------------
167 void IncrementMPAS::toAtlas(atlas::FieldSet * afieldset) const {
169  afieldset->get());
170 }
171 // -----------------------------------------------------------------------------
172 void IncrementMPAS::fromAtlas(atlas::FieldSet * afieldset) {
174  afieldset->get());
175 }
176 // -----------------------------------------------------------------------------
177 /// I/O and diagnostics
178 // -----------------------------------------------------------------------------
179 void IncrementMPAS::read(const eckit::Configuration & config) {
181 }
182 // -----------------------------------------------------------------------------
183 void IncrementMPAS::write(const eckit::Configuration & config) const {
185 }
186 // -----------------------------------------------------------------------------
187 /// Serialization
188 // -----------------------------------------------------------------------------
190  // Field
191  size_t nn;
193 
194  // Magic value
195  nn += 1;
196 
197  // Date and time
198  nn += time_.serialSize();
199  return nn;
200 }
201 
202 // -----------------------------------------------------------------------------
203 constexpr double SerializeCheckValue = -54321.98765;
204 void IncrementMPAS::serialize(std::vector<double> & vect) const {
205  // Serialize the field
206  size_t nn;
208  std::vector<double> vect_field(nn, 0.0);
209  mpas_increment_serialize_f90(keyInc_, nn, vect_field.data());
210  vect.insert(vect.end(), vect_field.begin(), vect_field.end());
211 
212  // Magic value placed in serialization; used to validate deserialization
213  vect.push_back(SerializeCheckValue);
214 
215  // Serialize the date and time
216  time_.serialize(vect);
217 }
218 // -----------------------------------------------------------------------------
219 void IncrementMPAS::deserialize(const std::vector<double> & vect,
220  size_t & index) {
221  mpas_increment_deserialize_f90(keyInc_, vect.size(), vect.data(), index);
222 
223  // Use magic value to validate deserialization
224  ASSERT(vect.at(index) == SerializeCheckValue);
225  ++index;
226 
227  time_.deserialize(vect, index);
228 }
229 // -----------------------------------------------------------------------------
230 double IncrementMPAS::norm() const {
231  double zz = 0.0;
233  return zz;
234 }
235 // -----------------------------------------------------------------------------
236 void IncrementMPAS::print(std::ostream & os) const {
237  // store os fmt state
238  std::ios oldState(nullptr);
239  oldState.copyfmt(os);
240 
241  int nc = 0;
242  int nf = 0;
244 
245  os << std::endl << " Valid time: " << validTime();
246  os << std::endl << " Resolution: nCellsGlobal = " << nc <<
247  ", nFields = " << nf;
248  std::vector<double> zstat(3*nf);
249  mpas_increment_gpnorm_f90(keyInc_, nf, zstat[0]);
250  os << std::setprecision(9);
251  os << std::scientific;
252  for (int jj = 0; jj < nf; ++jj) {
253  os << std::endl << "Fld=" << jj+1 << " Min=" << zstat[3*jj]
254  << ", Max=" << zstat[3*jj+1] << ", RMS=" << zstat[3*jj+2]
255  << " : " << vars_[jj];
256  }
257 
258  // restore os fmt state
259  os.copyfmt(oldState);
260 }
261 // -----------------------------------------------------------------------------
262 void IncrementMPAS::dirac(const eckit::Configuration & config) {
264 }
265 // -----------------------------------------------------------------------------
266 
267 } // namespace mpas
GeometryMPAS handles geometry for MPAS model.
Definition: GeometryMPAS.h:37
Increment Class: Difference between two states.
Definition: IncrementMPAS.h:57
IncrementMPAS & operator=(const IncrementMPAS &)
void schur_product_with(const IncrementMPAS &)
void setAtlas(atlas::FieldSet *) const
ATLAS.
void print(std::ostream &) const override
Data.
void accumul(const double &, const StateMPAS &)
Other.
size_t serialSize() const override
Serialization.
void deserialize(const std::vector< double > &, size_t &) override
void axpy(const double &, const IncrementMPAS &, const bool check=true)
double dot_product_with(const IncrementMPAS &) const
void read(const eckit::Configuration &)
I/O and diagnostics.
void fromAtlas(atlas::FieldSet *)
void serialize(std::vector< double > &) const override
std::shared_ptr< const GeometryMPAS > geom_
const util::DateTime & validTime() const
void diff(const StateMPAS &, const StateMPAS &)
Basic operators.
virtual ~IncrementMPAS()
void dirac(const eckit::Configuration &)
IncrementMPAS & operator*=(const double &)
double norm() const
util::DateTime time_
void toAtlas(atlas::FieldSet *) const
oops::Variables vars_
IncrementMPAS & operator-=(const IncrementMPAS &)
void write(const eckit::Configuration &) const
IncrementMPAS(const GeometryMPAS &, const oops::Variables &, const util::DateTime &)
Constructor, destructor.
IncrementMPAS & operator+=(const IncrementMPAS &)
MPAS model state.
Definition: StateMPAS.h:51
int & toFortran()
Definition: StateMPAS.h:94
std::shared_ptr< const GeometryMPAS > geometry() const
Definition: StateMPAS.h:85
const util::DateTime & validTime() const
Definition: StateMPAS.h:89
Definition: config.py:1
void mpas_increment_self_add_f90(const F90inc &, const F90inc &)
void mpas_increment_from_atlas_f90(const F90inc &, const F90geom &, const oops::Variables &, atlas::field::FieldSetImpl *)
void mpas_increment_diff_incr_f90(const F90inc &, const F90state &, const F90state &)
void mpas_increment_gpnorm_f90(const F90inc &, const int &, double &)
void mpas_increment_self_sub_f90(const F90inc &, const F90inc &)
void mpas_increment_create_f90(F90inc &, const F90geom &, const oops::Variables &)
void mpas_increment_self_mul_f90(const F90inc &, const double &)
void mpas_increment_self_schur_f90(const F90inc &, const F90inc &)
void mpas_increment_serialize_f90(const F90inc &, const std::size_t &, double[])
void mpas_increment_dirac_f90(const F90inc &, const eckit::Configuration &)
void mpas_increment_read_file_f90(const F90inc &, const eckit::Configuration &, util::DateTime &)
void mpas_increment_copy_f90(const F90inc &, const F90inc &)
void mpas_increment_ones_f90(const F90inc &)
void mpas_increment_random_f90(const F90inc &)
void mpas_increment_axpy_state_f90(const F90inc &, const double &, const F90state &)
void mpas_increment_serial_size_f90(const F90inc &, std::size_t &)
void mpas_increment_axpy_inc_f90(const F90inc &, const double &, const F90inc &)
void mpas_increment_change_resol_f90(const F90inc &, const F90inc &)
void mpas_increment_zero_f90(const F90inc &)
void mpas_increment_dot_prod_f90(const F90inc &, const F90inc &, double &)
constexpr double SerializeCheckValue
void mpas_increment_to_atlas_f90(const F90inc &, const F90geom &, const oops::Variables &, atlas::field::FieldSetImpl *)
void mpas_increment_rms_f90(const F90inc &, double &)
void mpas_increment_deserialize_f90(const F90inc &, const std::size_t &, const double[], const std::size_t &)
void mpas_increment_sizes_f90(const F90inc &, int &, int &)
void mpas_increment_write_file_f90(const F90inc &, const eckit::Configuration &, const util::DateTime &)
void mpas_increment_delete_f90(F90inc &)
void mpas_increment_set_atlas_f90(const F90inc &, const F90geom &, const oops::Variables &, atlas::field::FieldSetImpl *)