OOPS
ChangeVarQG.cc
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 #include "model/ChangeVarQG.h"
9 
10 #include <ostream>
11 #include <string>
12 
13 #include "oops/util/Logger.h"
14 
15 #include "model/QgFortran.h"
16 #include "model/StateQG.h"
17 
18 namespace qg {
19 // -----------------------------------------------------------------------------
20 ChangeVarQG::ChangeVarQG(const GeometryQG &, const eckit::Configuration &) {}
21 // -----------------------------------------------------------------------------
23 // -----------------------------------------------------------------------------
24 void ChangeVarQG::changeVar(const StateQG & xa, StateQG & xm) const {
26 }
27 // -----------------------------------------------------------------------------
28 void ChangeVarQG::changeVarInverse(const StateQG & xm, StateQG & xa) const {
30 }
31 // -----------------------------------------------------------------------------
32 void ChangeVarQG::print(std::ostream & os) const {
33  os << "QG change of variable";
34 }
35 // -----------------------------------------------------------------------------
36 } // namespace qg
37 
38 
void changeVarInverse(const StateQG &, StateQG &) const override
Definition: ChangeVarQG.cc:28
void print(std::ostream &) const override
Print, used for logging.
Definition: ChangeVarQG.cc:32
void changeVar(const StateQG &, StateQG &) const override
Perform transforms.
Definition: ChangeVarQG.cc:24
ChangeVarQG(const GeometryQG &, const eckit::Configuration &)
Definition: ChangeVarQG.cc:20
const int & toFortran() const
Definition: FieldsQG.h:99
GeometryQG handles geometry for QG model.
Definition: GeometryQG.h:58
QG model state.
Definition: StateQG.h:42
FieldsQG & fields()
Access to fields.
Definition: StateQG.h:69
The namespace for the qg model.
void qg_change_var_f90(const F90flds &, const F90flds &)
Interface to Fortran QG model.