MPAS-JEDI
LinVarChaModel2GeoVars.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-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 #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, LinVarChaModel2GeoVars> >
27  makerLinVarChaModel2GeoVars_("Model2GeoVars");
28 // -------------------------------------------------------------------------------------------------
30  const StateMPAS & bg, const StateMPAS & fg, const GeometryMPAS & resol,
31  const eckit::Configuration & config) : geom_(new GeometryMPAS(resol)) {
32  util::Timer timer(classname(), "LinVarChaModel2GeoVars");
33  oops::Log::trace() << classname() << " constructor starting" << std::endl;
35  fg.toFortran(), config);
36  oops::Log::trace() << classname() << " constructor done" << std::endl;
37 }
38 // -------------------------------------------------------------------------------------------------
40  util::Timer timer(classname(), "~LinVarChaModel2GeoVars");
41  oops::Log::trace() << classname() << " destructor starting" << std::endl;
43  oops::Log::trace() << classname() << " destructor done" << std::endl;
44 }
45 // -------------------------------------------------------------------------------------------------
47  const {
48  util::Timer timer(classname(), "multiply");
49  oops::Log::trace() << classname() << " multiply starting" << std::endl;
51  dxin.toFortran(), dxout.toFortran());
52  oops::Log::trace() << classname() << " multiply done" << std::endl;
53 }
54 // -------------------------------------------------------------------------------------------------
56  const {
57  util::Timer timer(classname(), "multiplyInverse");
58  oops::Log::trace() << classname() << " multiplyInverse starting" << std::endl;
59  dxout = dxin;
60  oops::Log::trace() << classname() << " multiplyInverse done" << std::endl;
61 }
62 // -------------------------------------------------------------------------------------------------
64  const {
65  util::Timer timer(classname(), "multiplyAD");
66  oops::Log::trace() << classname() << " multiplyAD starting" << std::endl;
68  dxin.toFortran(), dxout.toFortran());
69  oops::Log::trace() << classname() << " multiplyAD done" << std::endl;
70 }
71 // -------------------------------------------------------------------------------------------------
73  const {
74  util::Timer timer(classname(), "multiplyInverseAD");
75  oops::Log::trace() << classname() << " multiplyInverseAD starting" << std::endl;
76  dxout = dxin;
77  oops::Log::trace() << classname() << " multiplyInverseAD done" << std::endl;
78 }
79 // -------------------------------------------------------------------------------------------------
80 void LinVarChaModel2GeoVars::print(std::ostream & os)
81  const {
82  os << classname() << " variable change";
83 }
84 // -------------------------------------------------------------------------------------------------
85 } // 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
int & toFortran()
Definition: StateMPAS.h:94
Definition: config.py:1
void mpasjedi_lvc_model2geovars_delete_f90(F90lvc_M2G &)
void mpasjedi_lvc_model2geovars_multiply_f90(const F90lvc_M2G &, const F90geom &, const F90inc &, const F90inc &)
static oops::LinearVariableChangeMaker< MPASTraits, oops::LinearVariableChange< MPASTraits, LinVarChaModel2GeoVars > > makerLinVarChaModel2GeoVars_("Model2GeoVars")
void mpasjedi_lvc_model2geovars_multiplyadjoint_f90(const F90lvc_M2G &, const F90geom &, const F90inc &, const F90inc &)
void mpasjedi_lvc_model2geovars_create_f90(const F90lvc_M2G &, const F90geom &, const F90state &, const F90state &, const eckit::Configuration &)