MPAS-JEDI
IncrementMPAS.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017 UCAR
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  */
7 
8 #ifndef MPASJEDI_INCREMENTMPAS_H_
9 #define MPASJEDI_INCREMENTMPAS_H_
10 
11 #include <memory>
12 #include <ostream>
13 #include <string>
14 #include <vector>
15 
16 #include "atlas/field.h"
17 
18 #include "oops/base/Variables.h"
19 #include "oops/util/DateTime.h"
20 #include "oops/util/dot_product.h"
21 #include "oops/util/Duration.h"
22 #include "oops/util/ObjectCounter.h"
23 #include "oops/util/Printable.h"
24 #include "oops/util/Serializable.h"
25 
27 
28 namespace eckit {
29  class Configuration;
30 }
31 
32 namespace ufo {
33  class GeoVaLs;
34  class Locations;
35 }
36 
37 namespace oops {
38  class Variables;
39 }
40 
41 namespace mpas {
42  class GeometryMPAS;
43  class GetValuesTrajMPAS;
44  class StateMPAS;
45 
46 /// Increment Class: Difference between two states
47 /*!
48  * Some fields that are present in a State may not be present in
49  * an Increment. The Increment contains everything that is needed by
50  * the tangent-linear and adjoint models.
51  */
52 
53 // -----------------------------------------------------------------------------
54 
55 class IncrementMPAS : public util::Printable,
56  public util::Serializable,
57  private util::ObjectCounter<IncrementMPAS> {
58  public:
59  static const std::string classname() {return "mpas::IncrementMPAS";}
60 
61 /// Constructor, destructor
62  IncrementMPAS(const GeometryMPAS &, const oops::Variables &,
63  const util::DateTime &);
64  IncrementMPAS(const GeometryMPAS &, const IncrementMPAS &);
65  IncrementMPAS(const IncrementMPAS &, const bool);
67  virtual ~IncrementMPAS();
68 
69 /// Basic operators
70  void diff(const StateMPAS &, const StateMPAS &);
71  void zero();
72  void zero(const util::DateTime &);
73  void ones();
77  IncrementMPAS & operator*=(const double &);
78  void axpy(const double &, const IncrementMPAS &, const bool check = true);
79  void axpy(const double &, const StateMPAS &, const bool check = true);
80  double dot_product_with(const IncrementMPAS &) const;
81  void schur_product_with(const IncrementMPAS &);
82  void random();
83  void dirac(const eckit::Configuration &);
84 
85  /// ATLAS
86  void setAtlas(atlas::FieldSet *) const;
87  void toAtlas(atlas::FieldSet *) const;
88  void fromAtlas(atlas::FieldSet *);
89 
90 /// I/O and diagnostics
91  void read(const eckit::Configuration &);
92  void write(const eckit::Configuration &) const;
93  double norm() const;
94 
95  void updateTime(const util::Duration & dt) {time_ += dt;}
96 
97 /// Other
98  void accumul(const double &, const StateMPAS &);
99 
100  std::shared_ptr<const GeometryMPAS> geometry() const {return geom_;}
101 
102  const util::DateTime & time() const {return time_;}
103  util::DateTime & time() {return time_;}
104  const util::DateTime & validTime() const {return time_;}
105  util::DateTime & validTime() {return time_;}
106 
107  int & toFortran() {return keyInc_;}
108  const int & toFortran() const {return keyInc_;}
109 
110 /// Serialization
111  size_t serialSize() const override;
112  void serialize(std::vector<double> &) const override;
113  void deserialize(const std::vector<double> &, size_t &) override;
114 
115 /// Data
116  private:
117  void print(std::ostream &) const override;
119  std::shared_ptr<const GeometryMPAS> geom_;
120  oops::Variables vars_;
121  util::DateTime time_;
122 };
123 // -----------------------------------------------------------------------------
124 
125 } // namespace mpas
126 
127 #endif // MPASJEDI_INCREMENTMPAS_H_
GeometryMPAS handles geometry for MPAS model.
Definition: GeometryMPAS.h:37
Increment Class: Difference between two states.
Definition: IncrementMPAS.h:57
IncrementMPAS & operator=(const IncrementMPAS &)
static const std::string classname()
Definition: IncrementMPAS.h:59
void schur_product_with(const IncrementMPAS &)
void setAtlas(atlas::FieldSet *) const
ATLAS.
void print(std::ostream &) const override
Data.
void accumul(const double &, const StateMPAS &)
Other.
size_t serialSize() const override
Serialization.
void deserialize(const std::vector< double > &, size_t &) override
void axpy(const double &, const IncrementMPAS &, const bool check=true)
double dot_product_with(const IncrementMPAS &) const
void read(const eckit::Configuration &)
I/O and diagnostics.
const util::DateTime & time() const
void updateTime(const util::Duration &dt)
Definition: IncrementMPAS.h:95
void fromAtlas(atlas::FieldSet *)
void serialize(std::vector< double > &) const override
std::shared_ptr< const GeometryMPAS > geom_
const util::DateTime & validTime() const
void diff(const StateMPAS &, const StateMPAS &)
Basic operators.
virtual ~IncrementMPAS()
void dirac(const eckit::Configuration &)
IncrementMPAS & operator*=(const double &)
double norm() const
util::DateTime time_
void toAtlas(atlas::FieldSet *) const
util::DateTime & time()
oops::Variables vars_
IncrementMPAS & operator-=(const IncrementMPAS &)
void write(const eckit::Configuration &) const
util::DateTime & validTime()
IncrementMPAS(const GeometryMPAS &, const oops::Variables &, const util::DateTime &)
Constructor, destructor.
IncrementMPAS & operator+=(const IncrementMPAS &)
const int & toFortran() const
std::shared_ptr< const GeometryMPAS > geometry() const
MPAS model state.
Definition: StateMPAS.h:51
Definition: Fortran.h:17
int F90inc
Definition: Fortran.h:44
Definition: GetValues.h:35