OOPS
StateL95.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/StateL95.h"
13 
14 #include <fstream>
15 #include <string>
16 #include <vector>
17 
18 #include "eckit/config/Configuration.h"
19 #include "eckit/exception/Exceptions.h"
20 
21 #include "lorenz95/FieldL95.h"
22 #include "lorenz95/GomL95.h"
23 #include "lorenz95/IncrementL95.h"
24 #include "lorenz95/LocsL95.h"
25 #include "lorenz95/ModelBias.h"
26 #include "lorenz95/ModelL95.h"
28 #include "lorenz95/Resolution.h"
29 
30 #include "oops/util/abor1_cpp.h"
31 #include "oops/util/DateTime.h"
32 #include "oops/util/Duration.h"
33 #include "oops/util/Logger.h"
34 #include "oops/util/stringFunctions.h"
35 
36 namespace oops {
37  class Variables;
38 }
39 namespace sf = util::stringfunctions;
40 
41 namespace lorenz95 {
42 
43 // -----------------------------------------------------------------------------
44 /// Constructor, destructor
45 // -----------------------------------------------------------------------------
46 StateL95::StateL95(const Resolution & resol, const oops::Variables & vars,
47  const util::DateTime & vt)
48  : fld_(resol), time_(vt), vars_(vars)
49 {
50  oops::Log::trace() << "StateL95::StateL95 created" << std::endl;
51 }
52 // -----------------------------------------------------------------------------
53 StateL95::StateL95(const Resolution & resol, const eckit::Configuration & conf)
54  : fld_(resol), time_(conf.getString("date")), vars_({"x"})
55 {
56  oops::Log::trace() << "StateL95::StateL95 conf " << conf << std::endl;
57  if (conf.has("filename")) {
58  this->read(conf);
59  } else {
60  fld_.generate(conf);
61  }
62  oops::Log::trace() << "StateL95::StateL95 created and read in." << std::endl;
63 }
64 // -----------------------------------------------------------------------------
65 StateL95::StateL95(const Resolution & resol, const StateL95 & xx)
66  : fld_(resol), time_(xx.time_), vars_(xx.vars_)
67 {
68  fld_ = xx.fld_;
69  oops::Log::trace() << "StateL95::StateL95 created by interpolation." << std::endl;
70 }
71 // -----------------------------------------------------------------------------
73  : fld_(xx.fld_), time_(xx.time_), vars_(xx.vars_)
74 {
75  oops::Log::trace() << "StateL95::StateL95 copy-created." << std::endl;
76 }
77 // -----------------------------------------------------------------------------
79  oops::Log::trace() << "StateL95::StateL95 destructed." << std::endl;
80 }
81 // -----------------------------------------------------------------------------
82 /// Basic operators
83 // -----------------------------------------------------------------------------
85  fld_ = rhs.fld_;
86  time_ = rhs.time_;
87  vars_ = rhs.vars_;
88  return *this;
89 }
90 // -----------------------------------------------------------------------------
91 /// Interactions with Increments
92 // -----------------------------------------------------------------------------
94  ASSERT(time_ == dx.validTime());
95  fld_ += dx.getField();
96  return *this;
97 }
98 // -----------------------------------------------------------------------------
99 /// Utilities
100 // -----------------------------------------------------------------------------
101 void StateL95::read(const eckit::Configuration & config) {
102  std::string filename(config.getString("filename"));
103  sf::swapNameMember(config, filename);
104  oops::Log::trace() << "StateL95::read opening " << filename << std::endl;
105  std::ifstream fin(filename.c_str());
106  if (!fin.is_open()) ABORT("StateL95::read: Error opening file: " + filename);
107 
108  int resol;
109  fin >> resol;
110  ASSERT(fld_.resol() == resol);
111 
112  std::string stime;
113  fin >> stime;
114  const util::DateTime tt(stime);
115  if (time_ != tt) {
116  ABORT("StateL95::read: date and data file inconsistent.");
117  }
118 
119  fld_.read(fin);
120 
121  fin.close();
122  oops::Log::trace() << "StateL95::read: file closed." << std::endl;
123 }
124 // -----------------------------------------------------------------------------
125 void StateL95::write(const eckit::Configuration & config) const {
126  std::string dir = config.getString("datadir");
127  std::string exp = config.getString("exp");
128  std::string type = config.getString("type");
129  std::string filename = dir+"/"+exp+"."+type;
130 
131  if (type == "ens") {
132  std::string memb = config.getString("member");
133  filename += "."+memb;
134  }
135 
136  if (type == "fc" || type == "ens") {
137  const util::DateTime antime(config.getString("date"));
138  filename += "."+antime.toString();
139  const util::Duration step = time_ - antime;
140  filename += "."+step.toString();
141  }
142 
143  if (type == "an") {
144  filename += "."+time_.toString();
145  }
146 
147  if (type == "krylov") {
148  std::string iter = config.getString("iteration");
149  filename += "."+iter+"."+time_.toString();
150  }
151 
152  sf::swapNameMember(config, filename);
153 
154  oops::Log::trace() << "StateL95::write opening " << filename << std::endl;
155  std::ofstream fout(filename.c_str());
156  if (!fout.is_open()) ABORT("StateL95::write: Error opening file: " + filename);
157 
158  fout << fld_.resol() << std::endl;
159  fout << time_ << std::endl;
160  fld_.write(fout);
161  fout << std::endl;
162 
163  fout.close();
164  oops::Log::trace() << "StateL95::write file closed." << std::endl;
165 }
166 // -----------------------------------------------------------------------------
167 void StateL95::print(std::ostream & os) const {
168  os << std::endl << " Valid time: " << time_;
169  os << std::endl << fld_;
170 }
171 // -----------------------------------------------------------------------------
172 /// For accumulator
173 // -----------------------------------------------------------------------------
175  fld_.zero();
176 }
177 // -----------------------------------------------------------------------------
178 void StateL95::accumul(const double & zz, const StateL95 & xx) {
179  fld_.axpy(zz, xx.fld_);
180 }
181 // -----------------------------------------------------------------------------
182 /// Serialize - deserialize
183 // -----------------------------------------------------------------------------
184 size_t StateL95::serialSize() const {
185  size_t nn = 3;
186  nn += fld_.serialSize();
187  nn += time_.serialSize();
188  return nn;
189 }
190 // -----------------------------------------------------------------------------
191 void StateL95::serialize(std::vector<double> & vect) const {
192  vect.push_back(1001.0);
193  fld_.serialize(vect);
194  vect.push_back(2002.0);
195  time_.serialize(vect);
196  vect.push_back(3003.0);
197 }
198 // -----------------------------------------------------------------------------
199 void StateL95::deserialize(const std::vector<double> & vect, size_t & index) {
200  size_t ii = index + this->serialSize();
201  ASSERT(vect.at(index) == 1001.0);
202  ++index;
203  fld_.deserialize(vect, index);
204  ASSERT(vect.at(index) == 2002.0);
205  ++index;
206  time_.deserialize(vect, index);
207  ASSERT(vect.at(index) == 3003.0);
208  ++index;
209  ASSERT(index == ii);
210 }
211 // -----------------------------------------------------------------------------
212 
213 } // namespace lorenz95
void write(std::ofstream &) const
Definition: FieldL95.cc:157
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 zero()
Linear algebra.
Definition: FieldL95.cc:57
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
const util::DateTime & validTime() const
Definition: IncrementL95.h:92
const FieldL95 & getField() const
Access to data.
Definition: IncrementL95.h:100
Handles resolution.
Definition: Resolution.h:43
L95 model state.
Definition: StateL95.h:53
void accumul(const double &, const StateL95 &)
Definition: StateL95.cc:178
void zero()
For accumulator.
Definition: StateL95.cc:174
FieldL95 fld_
Definition: StateL95.h:95
oops::Variables vars_
Definition: StateL95.h:97
StateL95(const Resolution &, const oops::Variables &, const util::DateTime &)
Constructor, destructor.
Definition: StateL95.cc:46
size_t serialSize() const
Serialize and deserialize.
Definition: StateL95.cc:184
void read(const eckit::Configuration &)
Utilities.
Definition: StateL95.cc:101
virtual ~StateL95()
Definition: StateL95.cc:78
StateL95 & operator+=(const IncrementL95 &)
Interactions with increments.
Definition: StateL95.cc:93
void write(const eckit::Configuration &) const
Definition: StateL95.cc:125
void deserialize(const std::vector< double > &, size_t &)
Definition: StateL95.cc:199
void serialize(std::vector< double > &) const
Definition: StateL95.cc:191
void print(std::ostream &) const
Definition: StateL95.cc:167
StateL95 & operator=(const StateL95 &)
Basic operators.
Definition: StateL95.cc:84
util::DateTime time_
Definition: StateL95.h:96
The namespace for the L95 model.
The namespace for the main oops code.