OOPS
StateQG.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/StateQG.h"
12 
13 #include <algorithm>
14 #include <string>
15 #include <utility>
16 #include <vector>
17 
18 #include "eckit/config/LocalConfiguration.h"
19 #include "eckit/exception/Exceptions.h"
20 
21 #include "oops/base/Variables.h"
22 #include "oops/util/DateTime.h"
23 #include "oops/util/Duration.h"
24 #include "oops/util/Logger.h"
25 
26 #include "model/FieldsQG.h"
27 #include "model/GeometryQG.h"
28 #include "model/GomQG.h"
29 #include "model/IncrementQG.h"
30 #include "model/LocationsQG.h"
31 #include "model/ModelBias.h"
32 #include "model/ModelQG.h"
33 
34 
35 namespace qg {
36 
37 // -----------------------------------------------------------------------------
38 /// Constructor, destructor
39 // -----------------------------------------------------------------------------
40 StateQG::StateQG(const GeometryQG & resol, const oops::Variables & vars,
41  const util::DateTime & vt)
42  : fields_(new FieldsQG(resol, vars, lbc_, vt))
43 {
44  oops::Log::trace() << "StateQG::StateQG created." << std::endl;
45 }
46 // -----------------------------------------------------------------------------
47 StateQG::StateQG(const GeometryQG & resol, const eckit::Configuration & file)
48  : fields_()
49 {
50  oops::Variables vars({"x"});
51  if (file.has("state variables")) vars = oops::Variables(file, "state variables");
52  oops::Log::trace() << "StateQG::StateQG variables: " << vars << std::endl;
53  fields_.reset(new FieldsQG(resol, vars, 1, util::DateTime()));
54  if (file.has("analytic_init")) {
55  fields_->analytic_init(file);
56  } else if (file.has("read_from_file")) {
57  const int read_from_file = file.getInt("read_from_file");
58  if (read_from_file == 0) {
59  fields_->analytic_init(file);
60  } else if (read_from_file == 1) {
61  fields_->read(file);
62  }
63  } else {
64  fields_->read(file);
65  }
66 
67  ASSERT(fields_);
68  oops::Log::trace() << "StateQG::StateQG created and read in." << std::endl;
69 }
70 // -----------------------------------------------------------------------------
71 StateQG::StateQG(const GeometryQG & resol, const StateQG & other)
72  : fields_(new FieldsQG(*other.fields_, resol))
73 {
74  ASSERT(fields_);
75  oops::Log::trace() << "StateQG::StateQG created by interpolation." << std::endl;
76 }
77 // -----------------------------------------------------------------------------
78 StateQG::StateQG(const StateQG & other)
79  : fields_(new FieldsQG(*other.fields_))
80 {
81  ASSERT(fields_);
82  oops::Log::trace() << "StateQG::StateQG copied." << std::endl;
83 }
84 // -----------------------------------------------------------------------------
86  oops::Log::trace() << "StateQG::StateQG destructed." << std::endl;
87 }
88 // -----------------------------------------------------------------------------
89 /// Basic operators
90 // -----------------------------------------------------------------------------
92  ASSERT(fields_);
93  *fields_ = *rhs.fields_;
94  return *this;
95 }
96 // -----------------------------------------------------------------------------
97 /// Interpolate full fields
98 // -----------------------------------------------------------------------------
99 void StateQG::changeResolution(const StateQG & other) {
100  fields_->changeResolution(*other.fields_);
101  oops::Log::trace() << "StateQG interpolated" << std::endl;
102 }
103 // -----------------------------------------------------------------------------
104 /// Interactions with Increments
105 // -----------------------------------------------------------------------------
107  ASSERT(this->validTime() == dx.validTime());
108  ASSERT(fields_);
109  fields_->add(dx.fields());
110  return *this;
111 }
112 // -----------------------------------------------------------------------------
113 /// I/O and diagnostics
114 // -----------------------------------------------------------------------------
115 void StateQG::read(const eckit::Configuration & files) {
116  fields_->read(files);
117 }
118 // -----------------------------------------------------------------------------
119 void StateQG::write(const eckit::Configuration & files) const {
120  fields_->write(files);
121 }
122 // -----------------------------------------------------------------------------
123 /// Serialization
124 // -----------------------------------------------------------------------------
125 size_t StateQG::serialSize() const {
126  size_t nn = fields_->serialSize();
127  return nn;
128 }
129 // -----------------------------------------------------------------------------
130 void StateQG::serialize(std::vector<double> & vect) const {
131  fields_->serialize(vect);
132 }
133 // -----------------------------------------------------------------------------
134 void StateQG::deserialize(const std::vector<double> & vect, size_t & index) {
135  fields_->deserialize(vect, index);
136 }
137 // -----------------------------------------------------------------------------
138 void StateQG::print(std::ostream & os) const {
139  os << std::endl << " Valid time: " << validTime();
140  os << *fields_;
141 }
142 // -----------------------------------------------------------------------------
143 /// For accumulator
144 // -----------------------------------------------------------------------------
146  fields_->zero();
147 }
148 // -----------------------------------------------------------------------------
149 void StateQG::accumul(const double & zz, const StateQG & xx) {
150  fields_->axpy(zz, *xx.fields_);
151 }
152 
153 } // namespace qg
Class to represent a Fields for the QG model.
Definition: FieldsQG.h:52
GeometryQG handles geometry for QG model.
Definition: GeometryQG.h:58
Increment Class: Difference between two states.
Definition: IncrementQG.h:64
const util::DateTime & validTime() const
Definition: IncrementQG.h:94
FieldsQG & fields()
Access to fields.
Definition: IncrementQG.h:104
QG model state.
Definition: StateQG.h:42
void print(std::ostream &) const
Definition: StateQG.cc:138
void write(const eckit::Configuration &) const
Definition: StateQG.cc:119
StateQG & operator+=(const IncrementQG &)
Interactions with Increment.
Definition: StateQG.cc:106
void accumul(const double &, const StateQG &)
Definition: StateQG.cc:149
StateQG & operator=(const StateQG &)
Basic operators.
Definition: StateQG.cc:91
void changeResolution(const StateQG &xx)
Interpolate full fields.
Definition: StateQG.cc:99
virtual ~StateQG()
Definition: StateQG.cc:85
const util::DateTime & validTime() const
Definition: StateQG.h:64
std::unique_ptr< FieldsQG > fields_
Definition: StateQG.h:88
void read(const eckit::Configuration &)
I/O and diagnostics.
Definition: StateQG.cc:115
void serialize(std::vector< double > &) const
Definition: StateQG.cc:130
size_t serialSize() const
Serialization.
Definition: StateQG.cc:125
void deserialize(const std::vector< double > &, size_t &)
Definition: StateQG.cc:134
StateQG(const GeometryQG &, const oops::Variables &, const util::DateTime &)
Constructor, destructor.
Definition: StateQG.cc:40
void zero()
Other.
Definition: StateQG.cc:145
The namespace for the qg model.