MPAS-JEDI
LinVarChaC2A.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2021 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 #include <ostream>
9 #include <string>
10 
11 #include "eckit/config/Configuration.h"
12 
13 #include "oops/interface/LinearVariableChange.h"
14 #include "oops/util/Logger.h"
15 #include "oops/util/Timer.h"
16 
17 #include "mpasjedi/GeometryMPAS.h"
18 #include "mpasjedi/IncrementMPAS.h"
19 #include "mpasjedi/MPASTraits.h"
20 #include "mpasjedi/StateMPAS.h"
22 
23 namespace mpas {
24 // -------------------------------------------------------------------------------------------------
25 static oops::LinearVariableChangeMaker
26  < MPASTraits, oops::LinearVariableChange<MPASTraits, LinVarChaC2A> >
27  makerLinVarChaC2A_("Control2Analysis");
28 // -----------------------------------------------------------------------------
30  const StateMPAS & fg,
31  const GeometryMPAS & resol,
32  const eckit::Configuration & config)
33 : geom_(new GeometryMPAS(resol)), vars_(config, "input variables") {
34  util::Timer timer(classname(), "LinVarChaC2A");
35  oops::Log::trace() << classname() << " constructor starting" << std::endl;
37  bg.toFortran(), fg.toFortran(),
38  config, vars_);
39  oops::Log::trace() << classname() << " constructor done" << std::endl;
40 }
41 // -----------------------------------------------------------------------------
43  util::Timer timer(classname(), "~LinVarChaC2A");
44  oops::Log::trace() << classname() << " destructor starting" << std::endl;
46  oops::Log::trace() << classname() << " destructor done" << std::endl;
47 }
48 // -----------------------------------------------------------------------------
50  const {
51  util::Timer timer(classname(), "multiply");
52  oops::Log::trace() << classname() << " multiply starting" << std::endl;
54  dxc.toFortran(), dxa.toFortran());
55  oops::Log::trace() << classname() << " multiply done" << std::endl;
56 }
57 // -----------------------------------------------------------------------------
59  const {
60  util::Timer timer(classname(), "multiplyInverse");
61  oops::Log::trace() << classname() << " multiplyInverse starting" << std::endl;
63  dxa.toFortran(), dxc.toFortran());
64  oops::Log::trace() << classname() << " multiplyInverse done" << std::endl;
65 }
66 // -----------------------------------------------------------------------------
68  const {
69  util::Timer timer(classname(), "multiplyAD");
70  oops::Log::trace() << classname() << " multiplyAD starting" << std::endl;
72  dxa.toFortran(), dxc.toFortran());
73  oops::Log::trace() << classname() << " multiplyAD done" << std::endl;
74 }
75 // -----------------------------------------------------------------------------
77  const {
78  util::Timer timer(classname(), "multiplyInverseAD");
79  oops::Log::trace() << classname() << " multiplyInverseAD starting" << std::endl;
81  dxc.toFortran(), dxa.toFortran());
82  oops::Log::trace() << classname() << " multiplyInverseAD done" << std::endl;
83 }
84 // -----------------------------------------------------------------------------
85 void LinVarChaC2A::print(std::ostream & os)
86  const {
87  os << classname() << " variable change";
88 }
89 // -----------------------------------------------------------------------------
90 } // 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
Definition: LinVarChaC2A.cc:58
static const std::string classname()
Definition: LinVarChaC2A.h:39
void multiply(const IncrementMPAS &, IncrementMPAS &) const
Definition: LinVarChaC2A.cc:49
oops::Variables vars_
Definition: LinVarChaC2A.h:51
void multiplyAD(const IncrementMPAS &, IncrementMPAS &) const
Definition: LinVarChaC2A.cc:67
std::shared_ptr< const GeometryMPAS > geom_
Definition: LinVarChaC2A.h:50
F90lvc_C2A keyFtnConfig_
Definition: LinVarChaC2A.h:52
void multiplyInverseAD(const IncrementMPAS &, IncrementMPAS &) const
Definition: LinVarChaC2A.cc:76
LinVarChaC2A(const StateMPAS &, const StateMPAS &, const GeometryMPAS &, const eckit::Configuration &)
Definition: LinVarChaC2A.cc:29
void print(std::ostream &) const override
Definition: LinVarChaC2A.cc:85
MPAS model state.
Definition: StateMPAS.h:51
int & toFortran()
Definition: StateMPAS.h:94
Definition: config.py:1
static oops::LinearVariableChangeMaker< MPASTraits, oops::LinearVariableChange< MPASTraits, LinVarChaC2A > > makerLinVarChaC2A_("Control2Analysis")
void mpasjedi_linvarcha_c2a_multiply_f90(const F90lvc_C2A &, const F90geom &, const F90inc &, const F90inc &)
void mpasjedi_linvarcha_c2a_multiplyadjoint_f90(const F90lvc_C2A &, const F90geom &, const F90inc &, const F90inc &)
void mpasjedi_linvarcha_c2a_create_f90(const F90lvc_C2A &, const F90geom &, const F90state &, const F90state &, const eckit::Configuration &, const oops::Variables &)
void mpasjedi_linvarcha_c2a_multiplyinverse_f90(const F90lvc_C2A &, const F90geom &, const F90inc &, const F90inc &)
void mpasjedi_linvarcha_c2a_delete_f90(F90lvc_C2A &)
void mpasjedi_linvarcha_c2a_multiplyinverseadjoint_f90(const F90lvc_C2A &, const F90geom &, const F90inc &, const F90inc &)