OOPS
IncrementL95.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  * (C) Copyright 2017-2019 UCAR.
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  * In applying this licence, ECMWF does not waive the privileges and immunities
8  * granted to it by virtue of its status as an intergovernmental organisation nor
9  * does it submit to any jurisdiction.
10  */
11 
12 #include "lorenz95/IncrementL95.h"
13 
14 #include <fstream>
15 #include <string>
16 
17 #include "atlas/field.h"
18 
19 #include "eckit/exception/Exceptions.h"
20 
21 #include "oops/util/abor1_cpp.h"
22 #include "oops/util/DateTime.h"
23 #include "oops/util/dot_product.h"
24 #include "oops/util/Duration.h"
25 #include "oops/util/Logger.h"
26 #include "oops/util/stringFunctions.h"
27 
28 #include "lorenz95/FieldL95.h"
29 #include "lorenz95/GomL95.h"
30 #include "lorenz95/LocsL95.h"
32 #include "lorenz95/Resolution.h"
33 #include "lorenz95/StateL95.h"
34 
35 namespace oops {
36  class Variables;
37 }
38 namespace sf = util::stringfunctions;
39 
40 namespace lorenz95 {
41 
42 // -----------------------------------------------------------------------------
43 /// Constructor, destructor
44 // -----------------------------------------------------------------------------
46  const util::DateTime & vt)
47  : fld_(resol), time_(vt)
48 {
49  fld_.zero();
50  oops::Log::trace() << "IncrementL95::IncrementL95 created." << std::endl;
51 }
52 // -----------------------------------------------------------------------------
54  : fld_(resol), time_(dx.time_)
55 {
56  fld_ = dx.fld_;
57  oops::Log::trace() << "IncrementL95::IncrementL95 created by interpolation." << std::endl;
58 }
59 // -----------------------------------------------------------------------------
60 IncrementL95::IncrementL95(const IncrementL95 & dx, const bool copy)
61  : fld_(dx.fld_, copy), time_(dx.time_)
62 {
63  oops::Log::trace() << "IncrementL95::IncrementL95 copy-created." << std::endl;
64 }
65 // -----------------------------------------------------------------------------
67  oops::Log::trace() << "IncrementL95::~IncrementL95 destructed" << std::endl;
68 }
69 // -----------------------------------------------------------------------------
70 /// Basic operators
71 // -----------------------------------------------------------------------------
72 void IncrementL95::diff(const StateL95 & x1, const StateL95 & x2) {
73  ASSERT(time_ == x1.validTime());
74  ASSERT(time_ == x2.validTime());
75  fld_.diff(x1.getField(), x2.getField());
76 }
77 // -----------------------------------------------------------------------------
79  fld_ = rhs.fld_;
80  time_ = rhs.time_;
81  return *this;
82 }
83 // -----------------------------------------------------------------------------
85  ASSERT(time_ == rhs.time_);
86  fld_ += rhs.fld_;
87  return *this;
88 }
89 // -----------------------------------------------------------------------------
91  ASSERT(time_ == rhs.time_);
92  fld_ -= rhs.fld_;
93  return *this;
94 }
95 // -----------------------------------------------------------------------------
96 IncrementL95 & IncrementL95::operator*=(const double & zz) {
97  fld_ *= zz;
98  return *this;
99 }
100 // -----------------------------------------------------------------------------
102  fld_.zero();
103 }
104 // -----------------------------------------------------------------------------
105 void IncrementL95::zero(const util::DateTime & vt) {
106  fld_.zero();
107  time_ = vt;
108 }
109 // -----------------------------------------------------------------------------
111  fld_.ones();
112 }
113 // -----------------------------------------------------------------------------
114 void IncrementL95::dirac(const eckit::Configuration & config) {
115  fld_.dirac(config);
116 }
117 // -----------------------------------------------------------------------------
118 void IncrementL95::axpy(const double & zz, const IncrementL95 & rhs,
119  const bool check) {
120  ASSERT(!check || time_ == rhs.time_);
121  fld_.axpy(zz, rhs.fld_);
122 }
123 // -----------------------------------------------------------------------------
124 double IncrementL95::dot_product_with(const IncrementL95 & other) const {
125  double zz = dot_product(fld_, other.fld_);
126  return zz;
127 }
128 // -----------------------------------------------------------------------------
130  fld_.schur(rhs.fld_);
131 }
132 // -----------------------------------------------------------------------------
134  fld_.random();
135 }
136 // -----------------------------------------------------------------------------
137 void IncrementL95::accumul(const double & zz, const StateL95 & xx) {
138  fld_.axpy(zz, xx.getField());
139 }
140 // -----------------------------------------------------------------------------
141 /// Utilities
142 // -----------------------------------------------------------------------------
143 void IncrementL95::read(const eckit::Configuration & config) {
144  std::string filename(config.getString("filename"));
145  sf::swapNameMember(config, filename);
146  oops::Log::trace() << "IncrementL95::read opening " << filename << std::endl;
147  std::ifstream fin(filename.c_str());
148  if (!fin.is_open()) ABORT("IncrementL95::read: Error opening file: " + filename);
149 
150  int resol;
151  fin >> resol;
152  ASSERT(fld_.resol() == resol);
153 
154  std::string stime;
155  fin >> stime;
156  const util::DateTime tt(stime);
157  const util::DateTime tc(config.getString("date"));
158  if (tc != tt) {
159  ABORT("IncrementL95::read: date and data file inconsistent.");
160  }
161  time_ = tt;
162 
163  fld_.read(fin);
164 
165  fin.close();
166  oops::Log::trace() << "IncrementL95::read: file closed." << std::endl;
167 }
168 // -----------------------------------------------------------------------------
169 void IncrementL95::write(const eckit::Configuration & config) const {
170  std::string dir = config.getString("datadir");
171  std::string exp = config.getString("exp");
172  std::string type = config.getString("type");
173  std::string filename = dir+"/"+exp+"."+type;
174 
175  if (type == "krylov") {
176  std::string iter = config.getString("iteration");
177  filename += "."+iter;
178  }
179 
180  const util::DateTime antime(config.getString("date"));
181  filename += "."+antime.toString();
182  const util::Duration step = time_ - antime;
183  filename += "."+step.toString();
184  sf::swapNameMember(config, filename);
185 
186  oops::Log::trace() << "IncrementL95::write opening " << filename << std::endl;
187  std::ofstream fout(filename.c_str());
188  if (!fout.is_open()) ABORT("IncrementL95::write: Error opening file: " + filename);
189 
190  fout << fld_.resol() << std::endl;
191  fout << time_ << std::endl;
192  fld_.write(fout);
193  fout << std::endl;
194 
195  fout.close();
196  oops::Log::trace() << "IncrementL95::write file closed." << std::endl;
197 }
198 // -----------------------------------------------------------------------------
199 void IncrementL95::print(std::ostream & os) const {
200  os << std::endl << " Valid time: " << time_;
201  os << std::endl << fld_;
202 }
203 // -----------------------------------------------------------------------------
205  std::vector<std::string> vars;
206  vars.push_back("x");
207  std::vector<double> vals;
208  vals.push_back(fld_[i.index()]);
209  std::vector<int> varlens;
210  varlens.push_back(1);
211  return oops::LocalIncrement(oops::Variables(vars), vals, varlens);
212 }
213 // -----------------------------------------------------------------------------
215  std::vector<double> vals;
216  vals = gp.getVals();
217  fld_[i.index()] = vals[0];
218 }
219 // -----------------------------------------------------------------------------
220 /// Convert to/from ATLAS fieldset
221 // -----------------------------------------------------------------------------
222 void IncrementL95::setAtlas(atlas::FieldSet *) const {
223  ABORT("FieldL95 setAtlas not implemented");
224 }
225 // -----------------------------------------------------------------------------
226 void IncrementL95::toAtlas(atlas::FieldSet *) const {
227  ABORT("FieldL95 toAtlas not implemented");
228 }
229 // -----------------------------------------------------------------------------
230 void IncrementL95::fromAtlas(atlas::FieldSet *) {
231  ABORT("FieldL95 fromAtlas not implemented");
232 }
233 // -----------------------------------------------------------------------------
234 /// Serialize - deserialize
235 // -----------------------------------------------------------------------------
236 size_t IncrementL95::serialSize() const {
237  size_t nn = 3;
238  nn += fld_.serialSize();
239  nn += time_.serialSize();
240  return nn;
241 }
242 // -----------------------------------------------------------------------------
243 void IncrementL95::serialize(std::vector<double> & vect) const {
244  vect.push_back(1000.0);
245  fld_.serialize(vect);
246  vect.push_back(2000.0);
247  time_.serialize(vect);
248  vect.push_back(3000.0);
249 }
250 // -----------------------------------------------------------------------------
251 void IncrementL95::deserialize(const std::vector<double> & vect, size_t & index) {
252  size_t ii = index + this->serialSize();
253  ASSERT(vect.at(index) == 1000.0);
254  ++index;
255  fld_.deserialize(vect, index);
256  ASSERT(vect.at(index) == 2000.0);
257  ++index;
258  time_.deserialize(vect, index);
259  ASSERT(vect.at(index) == 3000.0);
260  ++index;
261  ASSERT(index == ii);
262 }
263 // -----------------------------------------------------------------------------
264 
265 } // namespace lorenz95
void write(std::ofstream &) const
Definition: FieldL95.cc:157
void diff(const FieldL95 &, const FieldL95 &)
Definition: FieldL95.cc:122
const int & resol() const
Set and get.
Definition: FieldL95.h:65
void deserialize(const std::vector< double > &, size_t &) override
Definition: FieldL95.cc:177
void axpy(const double &, const FieldL95 &)
Definition: FieldL95.cc:130
void schur(const FieldL95 &)
Definition: FieldL95.cc:142
void zero()
Linear algebra.
Definition: FieldL95.cc:57
void dirac(const eckit::Configuration &)
Definition: FieldL95.cc:65
void serialize(std::vector< double > &) const override
Definition: FieldL95.cc:173
void read(std::ifstream &)
Utilities.
Definition: FieldL95.cc:152
size_t serialSize() const override
Serialize and deserialize.
Definition: FieldL95.cc:169
Increment Class: Difference between two states.
Definition: IncrementL95.h:58
void diff(const StateL95 &, const StateL95 &)
Basic operators.
Definition: IncrementL95.cc:72
void accumul(const double &, const StateL95 &)
void setLocal(const oops::LocalIncrement &, const Iterator &)
void deserialize(const std::vector< double > &, size_t &) override
IncrementL95 & operator=(const IncrementL95 &)
Definition: IncrementL95.cc:78
void write(const eckit::Configuration &) const
void axpy(const double &, const IncrementL95 &, const bool check=true)
IncrementL95 & operator-=(const IncrementL95 &)
Definition: IncrementL95.cc:90
IncrementL95 & operator*=(const double &)
Definition: IncrementL95.cc:96
oops::LocalIncrement getLocal(const Iterator &) const
void schur_product_with(const IncrementL95 &)
void toAtlas(atlas::FieldSet *) const
void read(const eckit::Configuration &)
Utilities.
double dot_product_with(const IncrementL95 &) const
void print(std::ostream &) const override
void serialize(std::vector< double > &) const override
void fromAtlas(atlas::FieldSet *)
size_t serialSize() const override
Serialize and deserialize.
void dirac(const eckit::Configuration &)
void setAtlas(atlas::FieldSet *) const
ATLAS.
IncrementL95 & operator+=(const IncrementL95 &)
Definition: IncrementL95.cc:84
IncrementL95(const Resolution &, const oops::Variables &, const util::DateTime &)
Constructor, destructor.
Definition: IncrementL95.cc:45
util::DateTime time_
Definition: IncrementL95.h:119
int index() const
Definition: Iterator.h:41
Handles resolution.
Definition: Resolution.h:43
L95 model state.
Definition: StateL95.h:53
const FieldL95 & getField() const
Definition: StateL95.h:69
const util::DateTime & validTime() const
Definition: StateL95.h:79
const std::vector< double > & getVals() const
The namespace for the L95 model.
The namespace for the main oops code.