OOPS
IncrementL95.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_INCREMENTL95_H_
13 #define LORENZ95_INCREMENTL95_H_
14 
15 #include <memory>
16 #include <ostream>
17 #include <string>
18 #include <vector>
19 
20 #include "atlas/field.h"
21 
22 #include "lorenz95/FieldL95.h"
23 #include "lorenz95/Iterator.h"
24 #include "lorenz95/Resolution.h"
25 
27 #include "oops/util/DateTime.h"
28 #include "oops/util/Duration.h"
29 #include "oops/util/ObjectCounter.h"
30 #include "oops/util/Printable.h"
31 #include "oops/util/Serializable.h"
32 
33 namespace eckit {
34  class Configuration;
35 }
36 
37 namespace oops {
38  class LocalIncrement;
39  class Variables;
40 }
41 
42 namespace lorenz95 {
43  class GomL95;
44  class LocsL95;
45  class ModelBiasCorrection;
46  class StateL95;
47 
48 /// Increment Class: Difference between two states
49 /*!
50  * Some fields that are present in a State may not be present in
51  * an Increment. The Increment contains everything that is needed by
52  * the tangent-linear and adjoint models.
53  */
54 
55 // -----------------------------------------------------------------------------
56 class IncrementL95 : public util::Printable,
57  public util::Serializable,
58  private util::ObjectCounter<IncrementL95> {
59  public:
60  static const std::string classname() {return "lorenz95::IncrementL95";}
61 
62 /// Constructor, destructor
63  IncrementL95(const Resolution &, const oops::Variables &, const util::DateTime &);
64  IncrementL95(const Resolution &, const IncrementL95 &);
65  IncrementL95(const IncrementL95 &, const bool);
66  virtual ~IncrementL95();
67 
68 /// Basic operators
69  void diff(const StateL95 &, const StateL95 &);
70  void zero();
71  void zero(const util::DateTime &);
72  void ones();
73  void dirac(const eckit::Configuration &);
77  IncrementL95 & operator*=(const double &);
78  void axpy(const double &, const IncrementL95 &, const bool check = true);
79  double dot_product_with(const IncrementL95 &) const;
80  void schur_product_with(const IncrementL95 &);
81  void random();
82 
83 /// ATLAS
84  void setAtlas(atlas::FieldSet *) const;
85  void toAtlas(atlas::FieldSet *) const;
86  void fromAtlas(atlas::FieldSet *);
87 
88 // Utilities
89  void read(const eckit::Configuration &);
90  void write(const eckit::Configuration &) const;
91  double norm () const {return fld_.rms();}
92  const util::DateTime & validTime() const {return time_;}
93  util::DateTime & validTime() {return time_;}
94  void updateTime(const util::Duration & dt) {time_ += dt;}
95 
96  oops::LocalIncrement getLocal(const Iterator &) const;
97  void setLocal(const oops::LocalIncrement &, const Iterator &);
98 
99 /// Access to data
100  const FieldL95 & getField() const {return fld_;}
101  FieldL95 & getField() {return fld_;}
102  std::shared_ptr<const Resolution> geometry() const {
103  std::shared_ptr<const Resolution> geom(new Resolution(fld_.resol()));
104  return geom;
105  }
106  std::vector<double> & asVector() {return fld_.asVector();}
107  const std::vector<double> & asVector() const {return fld_.asVector();}
108 
109  void accumul(const double &, const StateL95 &);
110 
111 /// Serialize and deserialize
112  size_t serialSize() const override;
113  void serialize(std::vector<double> &) const override;
114  void deserialize(const std::vector<double> &, size_t &) override;
115 
116  private:
117  void print(std::ostream &) const override;
119  util::DateTime time_;
120 };
121 
122 // -----------------------------------------------------------------------------
123 
124 } // namespace lorenz95
125 
126 #endif // LORENZ95_INCREMENTL95_H_
Class to represent fields for the L95 model.
Definition: FieldL95.h:34
const int & resol() const
Set and get.
Definition: FieldL95.h:65
std::vector< double > & asVector()
Definition: FieldL95.h:68
double rms() const
Definition: FieldL95.cc:162
Increment Class: Difference between two states.
Definition: IncrementL95.h:58
static const std::string classname()
Definition: IncrementL95.h:60
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)
double norm() const
Definition: IncrementL95.h:91
IncrementL95 & operator-=(const IncrementL95 &)
Definition: IncrementL95.cc:90
const util::DateTime & validTime() const
Definition: IncrementL95.h:92
void updateTime(const util::Duration &dt)
Definition: IncrementL95.h:94
IncrementL95 & operator*=(const double &)
Definition: IncrementL95.cc:96
oops::LocalIncrement getLocal(const Iterator &) const
void schur_product_with(const IncrementL95 &)
const std::vector< double > & asVector() const
Definition: IncrementL95.h:107
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 &)
std::shared_ptr< const Resolution > geometry() const
Definition: IncrementL95.h:102
void setAtlas(atlas::FieldSet *) const
ATLAS.
util::DateTime & validTime()
Definition: IncrementL95.h:93
IncrementL95 & operator+=(const IncrementL95 &)
Definition: IncrementL95.cc:84
const FieldL95 & getField() const
Access to data.
Definition: IncrementL95.h:100
std::vector< double > & asVector()
Definition: IncrementL95.h:106
IncrementL95(const Resolution &, const oops::Variables &, const util::DateTime &)
Constructor, destructor.
Definition: IncrementL95.cc:45
util::DateTime time_
Definition: IncrementL95.h:119
Handles resolution.
Definition: Resolution.h:43
L95 model state.
Definition: StateL95.h:53
Definition: FieldL95.h:22
The namespace for the L95 model.
The namespace for the main oops code.