OOPS
StateL95.h
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 #ifndef LORENZ95_STATEL95_H_
13 #define LORENZ95_STATEL95_H_
14 
15 #include <memory>
16 #include <ostream>
17 #include <string>
18 #include <vector>
19 
20 #include "lorenz95/FieldL95.h"
21 #include "lorenz95/Resolution.h"
22 
23 #include "oops/base/Variables.h"
24 #include "oops/util/DateTime.h"
25 #include "oops/util/Duration.h"
26 #include "oops/util/ObjectCounter.h"
27 #include "oops/util/Printable.h"
28 
29 namespace eckit {
30  class Configuration;
31 }
32 
33 namespace oops {
34  class Variables;
35 }
36 
37 namespace lorenz95 {
38  class GomL95;
39  class IncrementL95;
40  class LocsL95;
41  class ModelBias;
42  class ModelL95;
43  class ModelTrajectory;
44 
45 /// L95 model state
46 /*!
47  * A State contains everything that is needed to propagate the state
48  * forward in time.
49  */
50 
51 // -----------------------------------------------------------------------------
52 class StateL95 : public util::Printable,
53  private util::ObjectCounter<StateL95> {
54  public:
55  static const std::string classname() {return "lorenz95::StateL95";}
56 
57 /// Constructor, destructor
58  StateL95(const Resolution &, const oops::Variables &, const util::DateTime &);
59  StateL95(const Resolution &, const eckit::Configuration &);
60  StateL95(const Resolution &, const StateL95 &);
61  StateL95(const StateL95 &);
62  virtual ~StateL95();
63  StateL95 & operator=(const StateL95 &);
64 
65 /// Interactions with increments
66  StateL95 & operator+=(const IncrementL95 &);
67 
68 // Utilities
69  const FieldL95 & getField() const {return fld_;}
70  FieldL95 & getField() {return fld_;}
71  std::shared_ptr<const Resolution> geometry() const {
72  std::shared_ptr<const Resolution> geom(new Resolution(fld_.resol()));
73  return geom;
74  }
75 
76  void read(const eckit::Configuration &);
77  void write(const eckit::Configuration &) const;
78  double norm () const {return fld_.rms();}
79  const util::DateTime & validTime() const {return time_;}
80  void updateTime(const util::Duration & dt) {time_ += dt;}
81  util::DateTime & validTime() {return time_;}
82  const oops::Variables & variables() const {return vars_;}
83 
84 // For accumulator
85  void zero();
86  void accumul(const double &, const StateL95 &);
87 
88 /// Serialize and deserialize
89  size_t serialSize() const;
90  void serialize(std::vector<double> &) const;
91  void deserialize(const std::vector<double> &, size_t &);
92 
93  private:
94  void print(std::ostream &) const;
96  util::DateTime time_;
98 };
99 // -----------------------------------------------------------------------------
100 
101 } // namespace lorenz95
102 
103 #endif // LORENZ95_STATEL95_H_
Class to represent fields for the L95 model.
Definition: FieldL95.h:34
const int & resol() const
Set and get.
Definition: FieldL95.h:65
double rms() const
Definition: FieldL95.cc:162
Increment Class: Difference between two states.
Definition: IncrementL95.h:58
Handles resolution.
Definition: Resolution.h:43
L95 model state.
Definition: StateL95.h:53
double norm() const
Definition: StateL95.h:78
void accumul(const double &, const StateL95 &)
Definition: StateL95.cc:178
void updateTime(const util::Duration &dt)
Definition: StateL95.h:80
void zero()
For accumulator.
Definition: StateL95.cc:174
util::DateTime & validTime()
Definition: StateL95.h:81
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
const FieldL95 & getField() const
Definition: StateL95.h:69
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
static const std::string classname()
Definition: StateL95.h:55
void write(const eckit::Configuration &) const
Definition: StateL95.cc:125
const util::DateTime & validTime() const
Definition: StateL95.h:79
void deserialize(const std::vector< double > &, size_t &)
Definition: StateL95.cc:199
FieldL95 & getField()
Definition: StateL95.h:70
const oops::Variables & variables() const
Definition: StateL95.h:82
void serialize(std::vector< double > &) const
Definition: StateL95.cc:191
void print(std::ostream &) const
Definition: StateL95.cc:167
std::shared_ptr< const Resolution > geometry() const
Definition: StateL95.h:71
StateL95 & operator=(const StateL95 &)
Basic operators.
Definition: StateL95.cc:84
util::DateTime time_
Definition: StateL95.h:96
Definition: FieldL95.h:22
The namespace for the L95 model.
The namespace for the main oops code.