OOPS
FieldsQG.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 "model/FieldsQG.h"
12 
13 #include <algorithm>
14 #include <cmath>
15 #include <iomanip>
16 #include <map>
17 #include <numeric>
18 #include <string>
19 #include <vector>
20 
21 #include "atlas/field.h"
22 
23 #include "eckit/config/Configuration.h"
24 #include "eckit/config/LocalConfiguration.h"
25 
26 #include "model/GeometryQG.h"
27 #include "model/GomQG.h"
28 #include "model/LocationsQG.h"
29 #include "model/QgFortran.h"
30 
31 #include "oops/base/Variables.h"
32 #include "oops/util/DateTime.h"
33 #include "oops/util/Logger.h"
34 
35 // -----------------------------------------------------------------------------
36 namespace qg {
37 // -----------------------------------------------------------------------------
38 FieldsQG::FieldsQG(const GeometryQG & geom, const oops::Variables & vars,
39  const bool & lbc, const util::DateTime & time):
40  geom_(new GeometryQG(geom)), vars_(vars), lbc_(lbc), time_(time)
41 {
42  qg_fields_create_f90(keyFlds_, geom_->toFortran(), vars_, lbc_);
43 }
44 // -----------------------------------------------------------------------------
45 FieldsQG::FieldsQG(const FieldsQG & other, const bool copy)
46  : geom_(other.geom_), vars_(other.vars_), lbc_(other.lbc_), time_(other.time_)
47 {
49  if (copy) {
51  }
52 }
53 // -----------------------------------------------------------------------------
55  : geom_(other.geom_), vars_(other.vars_), lbc_(other.lbc_), time_(other.time_)
56 {
59 }
60 // -----------------------------------------------------------------------------
61 FieldsQG::FieldsQG(const FieldsQG & other, const GeometryQG & geom)
62  : geom_(new GeometryQG(geom)), vars_(other.vars_), lbc_(other.lbc_), time_(other.time_)
63 {
64  qg_fields_create_f90(keyFlds_, geom_->toFortran(), vars_, lbc_);
66 }
67 // -----------------------------------------------------------------------------
68 FieldsQG::FieldsQG(const FieldsQG & other, const oops::Variables & vars)
69  : geom_(other.geom_), vars_(vars), lbc_(other.lbc_), time_(other.time_)
70 {
71 // TODO(Benjamin): delete that ?
72  qg_fields_create_f90(keyFlds_, geom_->toFortran(), vars_, lbc_);
74 }
75 // -----------------------------------------------------------------------------
78 }
79 // -----------------------------------------------------------------------------
82  time_ = rhs.time_;
83  return *this;
84 }
85 // -----------------------------------------------------------------------------
88  return *this;
89 }
90 // -----------------------------------------------------------------------------
93  return *this;
94 }
95 // -----------------------------------------------------------------------------
96 FieldsQG & FieldsQG::operator*=(const double & zz) {
98  return *this;
99 }
100 // -----------------------------------------------------------------------------
103 }
104 // -----------------------------------------------------------------------------
105 void FieldsQG::zero(const util::DateTime & time) {
107  time_ = time;
108 }
109 // -----------------------------------------------------------------------------
112 }
113 // -----------------------------------------------------------------------------
114 void FieldsQG::axpy(const double & zz, const FieldsQG & rhs) {
116 }
117 // -----------------------------------------------------------------------------
118 double FieldsQG::dot_product_with(const FieldsQG & fld2) const {
119  double zz;
121  return zz;
122 }
123 // -----------------------------------------------------------------------------
126 }
127 // -----------------------------------------------------------------------------
130 }
131 // -----------------------------------------------------------------------------
132 void FieldsQG::dirac(const eckit::Configuration & config) {
133  qg_fields_dirac_f90(keyFlds_, config);
134 }
135 // -----------------------------------------------------------------------------
138 }
139 // -----------------------------------------------------------------------------
140 void FieldsQG::add(const FieldsQG & rhs) {
141  FieldsQG rhs_myres(rhs, *geom_);
143 }
144 // -----------------------------------------------------------------------------
145 void FieldsQG::diff(const FieldsQG & x1, const FieldsQG & x2) {
146  FieldsQG x1_myres(x1, *geom_);
147  FieldsQG x2_myres(x2, *geom_);
148  qg_fields_diff_incr_f90(keyFlds_, x1_myres.keyFlds_, x2_myres.keyFlds_);
149 }
150 // -----------------------------------------------------------------------------
151 void FieldsQG::setAtlas(atlas::FieldSet * afieldset) const {
152  qg_fields_set_atlas_f90(keyFlds_, vars_, afieldset->get());
153 }
154 // -----------------------------------------------------------------------------
155 void FieldsQG::toAtlas(atlas::FieldSet * afieldset) const {
156  qg_fields_to_atlas_f90(keyFlds_, vars_, afieldset->get());
157 }
158 // -----------------------------------------------------------------------------
159 void FieldsQG::fromAtlas(atlas::FieldSet * afieldset) {
160  qg_fields_from_atlas_f90(keyFlds_, vars_, afieldset->get());
161 }
162 // -----------------------------------------------------------------------------
163 void FieldsQG::read(const eckit::Configuration & config) {
165 }
166 // -----------------------------------------------------------------------------
167 void FieldsQG::analytic_init(const eckit::Configuration & config) {
169 }
170 // -----------------------------------------------------------------------------
171 void FieldsQG::write(const eckit::Configuration & config) const {
173 }
174 // -----------------------------------------------------------------------------
175 double FieldsQG::norm() const {
176  double zz = 0.0;
178  return zz;
179 }
180 // -----------------------------------------------------------------------------
181 void FieldsQG::print(std::ostream & os) const {
182  // Resolution
183  int nx, ny, nz;
184  qg_fields_sizes_f90(keyFlds_, nx, ny, nz);
185  os << std::endl << " Resolution = " << nx << ", " << ny << ", " << nz;
186 
187  // Min, max, RMS of fields
188  std::vector<std::string> var{"Streamfunction :",
189  "Potential vorticity :",
190  "U-wind :",
191  "V-wind :",
192  "Streamfunction LBC :",
193  "Potential vorticity LBC:"};
194  std::vector<int> vpresent(6);
195  std::vector<double> vmin(6);
196  std::vector<double> vmax(6);
197  std::vector<double> vrms(6);
198  qg_fields_gpnorm_f90(keyFlds_, vpresent.data(), vmin.data(), vmax.data(), vrms.data());
199  for (int jj = 0; jj < 6; ++jj) {
200  if (vpresent[jj] == 1) {
201  std::ios_base::fmtflags f(os.flags());
202  os << std::endl << " " << var[jj] << std::scientific << std::setprecision(4)
203  << " Min=" << std::setw(12) << vmin[jj]
204  << ", Max=" << std::setw(12) << vmax[jj]
205  << ", RMS=" << std::setw(12) << vrms[jj];
206  os.flags(f);
207  }
208  }
209 }
210 // -----------------------------------------------------------------------------
211 bool FieldsQG::isForModel(const bool & nonlinear) const {
212  bool ok = true;
213  if (nonlinear) {
214  int lbc;
216  ok = (lbc == 1);
217  }
218  return ok;
219 }
220 // -----------------------------------------------------------------------------
222  int nx, ny, nz;
223  qg_fields_sizes_f90(keyFlds_, nx, ny, nz);
224  std::vector<int> varlens(vars_.size());
225  for (unsigned int ii = 0; ii < vars_.size(); ii++) {
226  varlens[ii] = nz;
227  }
228  int lenvalues = std::accumulate(varlens.begin(), varlens.end(), 0);
229  std::vector<double> values(lenvalues);
230  qg_fields_getpoint_f90(keyFlds_, iter.toFortran(), values.size(), values[0]);
231  return oops::LocalIncrement(vars_, values, varlens);
232 }
233 // -----------------------------------------------------------------------------
235  const std::vector<double> vals = x.getVals();
236  qg_fields_setpoint_f90(keyFlds_, iter.toFortran(), vals.size(), vals[0]);
237 }
238 // -----------------------------------------------------------------------------
239 size_t FieldsQG::serialSize() const {
240  int nx, ny, nz, lbc;
241  qg_fields_sizes_f90(keyFlds_, nx, ny, nz);
243  size_t nn = nx * ny * nz;
244  if (lbc == 1) {
245  nn += 2 * (nx + 1) * nz;
246  }
247  nn += time_.serialSize();
248  return nn;
249 }
250 // -----------------------------------------------------------------------------
251 void FieldsQG::serialize(std::vector<double> & vect) const {
252  size_t size_fld = this->serialSize() - time_.serialSize();
253 
254  // Allocate space for fld, xb and qb
255  std::vector<double> v_fld(size_fld, 0);
256 
257  // Serialize the field
258  qg_fields_serialize_f90(keyFlds_, static_cast<int>(size_fld), v_fld.data());
259  vect.insert(vect.end(), v_fld.begin(), v_fld.end());
260 
261  // Serialize the date and time
262  time_.serialize(vect);
263 }
264 // -----------------------------------------------------------------------------
265 void FieldsQG::deserialize(const std::vector<double> & vect, size_t & index) {
266  int indexInt = static_cast<int>(index);
267  qg_fields_deserialize_f90(keyFlds_, static_cast<int>(vect.size()), vect.data(), indexInt);
268  index = static_cast<size_t>(indexInt);
269  time_.deserialize(vect, index);
270 }
271 // -----------------------------------------------------------------------------
272 } // namespace qg
const std::vector< double > & getVals() const
size_t size() const
Class to represent a Fields for the QG model.
Definition: FieldsQG.h:52
FieldsQG & operator*=(const double &)
Definition: FieldsQG.cc:96
void toAtlas(atlas::FieldSet *) const
Definition: FieldsQG.cc:155
void deserialize(const std::vector< double > &, size_t &) override
Definition: FieldsQG.cc:265
void random()
Definition: FieldsQG.cc:128
FieldsQG & operator=(const FieldsQG &)
Definition: FieldsQG.cc:80
util::DateTime time_
Definition: FieldsQG.h:117
FieldsQG & operator-=(const FieldsQG &)
Definition: FieldsQG.cc:91
void add(const FieldsQG &)
Definition: FieldsQG.cc:140
void print(std::ostream &) const override
Definition: FieldsQG.cc:181
void fromAtlas(atlas::FieldSet *)
Definition: FieldsQG.cc:159
void analytic_init(const eckit::Configuration &)
Definition: FieldsQG.cc:167
void serialize(std::vector< double > &) const override
Definition: FieldsQG.cc:251
void setAtlas(atlas::FieldSet *) const
Definition: FieldsQG.cc:151
void setLocal(const oops::LocalIncrement &, const GeometryQGIterator &)
Definition: FieldsQG.cc:234
void write(const eckit::Configuration &) const
Definition: FieldsQG.cc:171
const bool lbc_
Definition: FieldsQG.h:116
bool isForModel(const bool &) const
Definition: FieldsQG.cc:211
void zero()
Definition: FieldsQG.cc:101
double norm() const
Definition: FieldsQG.cc:175
const oops::Variables vars_
Definition: FieldsQG.h:115
FieldsQG & operator+=(const FieldsQG &)
Definition: FieldsQG.cc:86
void schur_product_with(const FieldsQG &)
Definition: FieldsQG.cc:124
oops::LocalIncrement getLocal(const GeometryQGIterator &) const
Definition: FieldsQG.cc:221
void axpy(const double &, const FieldsQG &)
Definition: FieldsQG.cc:114
std::shared_ptr< const GeometryQG > geom_
Definition: FieldsQG.h:114
void read(const eckit::Configuration &)
Definition: FieldsQG.cc:163
FieldsQG(const GeometryQG &, const oops::Variables &, const bool &, const util::DateTime &)
Definition: FieldsQG.cc:38
void changeResolution(const FieldsQG &)
Definition: FieldsQG.cc:136
void dirac(const eckit::Configuration &)
Definition: FieldsQG.cc:132
void ones()
Definition: FieldsQG.cc:110
double dot_product_with(const FieldsQG &) const
Definition: FieldsQG.cc:118
F90flds keyFlds_
Definition: FieldsQG.h:113
void diff(const FieldsQG &, const FieldsQG &)
Definition: FieldsQG.cc:145
size_t serialSize() const override
Serialization.
Definition: FieldsQG.cc:239
const util::DateTime & time() const
Definition: FieldsQG.h:95
GeometryQG handles geometry for QG model.
Definition: GeometryQG.h:58
const F90iter & toFortran() const
The namespace for the qg model.
void qg_fields_create_f90(F90flds &, const F90geom &, const oops::Variables &, const bool &)
void qg_fields_self_add_f90(const F90flds &, const F90flds &)
void qg_fields_diff_incr_f90(const F90flds &, const F90flds &, const F90flds &)
void qg_fields_self_sub_f90(const F90flds &, const F90flds &)
void qg_fields_set_atlas_f90(const F90flds &, const oops::Variables &, atlas::field::FieldSetImpl *)
void qg_fields_axpy_f90(const F90flds &, const double &, const F90flds &)
void qg_fields_random_f90(const F90flds &, const oops::Variables &)
void qg_fields_getpoint_f90(const F90flds &, const F90iter &, const int &, double &)
void qg_fields_rms_f90(const F90flds &, double &)
void qg_fields_add_incr_f90(const F90flds &, const F90flds &)
void qg_fields_change_resol_f90(const F90flds &, const F90flds &)
void qg_fields_write_file_f90(const F90flds &, const eckit::Configuration &, const util::DateTime &)
void qg_fields_ones_f90(const F90flds &)
void qg_fields_to_atlas_f90(const F90flds &, const oops::Variables &, atlas::field::FieldSetImpl *)
void qg_fields_delete_f90(F90flds &)
void qg_fields_lbc_f90(const F90flds &, int &)
void qg_fields_create_from_other_f90(F90flds &, const F90flds &, const F90geom &)
void qg_fields_analytic_init_f90(const F90flds &, const eckit::Configuration &, util::DateTime &)
void qg_fields_copy_f90(const F90flds &, const F90flds &)
void qg_fields_from_atlas_f90(const F90flds &, const oops::Variables &, atlas::field::FieldSetImpl *)
void qg_fields_zero_f90(const F90flds &)
void qg_fields_self_schur_f90(const F90flds &, const F90flds &)
void qg_fields_sizes_f90(const F90flds &, int &, int &, int &)
void qg_fields_dirac_f90(const F90flds &, const eckit::Configuration &)
void qg_fields_self_mul_f90(const F90flds &, const double &)
void qg_fields_setpoint_f90(const F90flds &, const F90iter &, const int &, const double &)
void qg_fields_read_file_f90(const F90flds &, const eckit::Configuration &, util::DateTime &)
void qg_fields_gpnorm_f90(const F90flds &, int[], double[], double[], double[])
void qg_fields_serialize_f90(const F90flds &, const int &, double[])
void qg_fields_dot_prod_f90(const F90flds &, const F90flds &, double &)
void qg_fields_deserialize_f90(const F90flds &, const int &, const double[], int &)