Loading [MathJax]/extensions/tex2jax.js
OOPS
All Classes Namespaces Files Functions Variables Typedefs Macros Pages
IdLinearVariableChange.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2018 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 OOPS_GENERIC_IDLINEARVARIABLECHANGE_H_
9 #define OOPS_GENERIC_IDLINEARVARIABLECHANGE_H_
10 
11 #include <ostream>
12 #include <string>
13 
14 #include "oops/base/Geometry.h"
15 #include "oops/base/Increment.h"
17 #include "oops/base/State.h"
18 #include "oops/util/Printable.h"
19 
20 // Forward declarations
21 namespace eckit {
22  class Configuration;
23 }
24 
25 namespace oops {
26 
27 // -----------------------------------------------------------------------------
28 /// No change of variable
29 
30 template <typename MODEL>
35  public:
36  static const std::string classname() {return "oops::IdLinearVariableChange";}
37 
38  IdLinearVariableChange(const State_ &, const State_ &, const Geometry_ &,
39  const eckit::Configuration & conf): LinearVariableChangeBase<MODEL>(conf) {}
41 
42 /// Perform linear transforms
43  void multiply(const Increment_ & dx1, Increment_ & dx2) const override {dx2 = dx1;}
44  void multiplyInverse(const Increment_ & dx1, Increment_ & dx2) const override {dx2 = dx1;}
45  void multiplyAD(const Increment_ & dx1, Increment_ & dx2) const override {dx2 = dx1;}
46  void multiplyInverseAD(const Increment_ & dx1, Increment_ & dx2) const override {dx2 = dx1;}
47 
48  private:
49  void print(std::ostream & os) const override {os << "IdVariableChange";}
50 };
51 
52 // -----------------------------------------------------------------------------
53 
54 } // namespace oops
55 #endif // OOPS_GENERIC_IDLINEARVARIABLECHANGE_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
void multiplyAD(const Increment_ &dx1, Increment_ &dx2) const override
void multiplyInverse(const Increment_ &dx1, Increment_ &dx2) const override
static const std::string classname()
void multiply(const Increment_ &dx1, Increment_ &dx2) const override
Perform linear transforms.
IdLinearVariableChange(const State_ &, const State_ &, const Geometry_ &, const eckit::Configuration &conf)
void multiplyInverseAD(const Increment_ &dx1, Increment_ &dx2) const override
void print(std::ostream &os) const override
Increment class used in oops.
State class used in oops; subclass of interface class interface::State.
Definition: FieldL95.h:22
The namespace for the main oops code.