MPAS-JEDI
LinVarChaModel2GeoVars.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 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 #pragma once
9 
10 #include <memory>
11 #include <ostream>
12 #include <string>
13 
14 #include "oops/util/Printable.h"
15 
16 #include "mpasjedi/MPASTraits.h"
18 
19 // Forward declarations
20 namespace eckit {
21  class Configuration;
22 }
23 
24 namespace mpas {
25  class GeometryMPAS;
26  class StateMPAS;
27  class IncrementMPAS;
28 
29 // -------------------------------------------------------------------------------------------------
30 
31 class LinVarChaModel2GeoVars : public util::Printable,
32  private util::ObjectCounter<LinVarChaModel2GeoVars> {
33  public:
34  static const std::string classname() {return "mpas::LinVarChaModel2GeoVars";}
35 
36  explicit LinVarChaModel2GeoVars(const StateMPAS &, const StateMPAS &, const GeometryMPAS &,
37  const eckit::Configuration &);
39 
40  void multiply(const IncrementMPAS &, IncrementMPAS &) const;
41  void multiplyInverse(const IncrementMPAS &, IncrementMPAS &) const;
42  void multiplyAD(const IncrementMPAS &, IncrementMPAS &) const;
43  void multiplyInverseAD(const IncrementMPAS &, IncrementMPAS &) const;
44 
45  private:
46  std::shared_ptr<const GeometryMPAS> geom_;
48  void print(std::ostream &) const override;
49 };
50 // -------------------------------------------------------------------------------------------------
51 
52 } // namespace mpas
GeometryMPAS handles geometry for MPAS model.
Definition: GeometryMPAS.h:37
Increment Class: Difference between two states.
Definition: IncrementMPAS.h:57
void multiplyInverse(const IncrementMPAS &, IncrementMPAS &) const
void multiply(const IncrementMPAS &, IncrementMPAS &) const
static const std::string classname()
void multiplyAD(const IncrementMPAS &, IncrementMPAS &) const
std::shared_ptr< const GeometryMPAS > geom_
void multiplyInverseAD(const IncrementMPAS &, IncrementMPAS &) const
LinVarChaModel2GeoVars(const StateMPAS &, const StateMPAS &, const GeometryMPAS &, const eckit::Configuration &)
void print(std::ostream &) const override
MPAS model state.
Definition: StateMPAS.h:51
Definition: Fortran.h:17