OOPS
ModelQG.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  * (C) Copyright 2020-2020 UCAR.
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  * In applying this licence, ECMWF does not waive the privileges and immunities
8  * granted to it by virtue of its status as an intergovernmental organisation nor
9  * does it submit to any jurisdiction.
10  */
11 
12 #include "model/ModelQG.h"
13 
14 #include "eckit/exception/Exceptions.h"
15 
16 #include "oops/util/Logger.h"
17 
18 #include "model/FieldsQG.h"
19 #include "model/GeometryQG.h"
20 #include "model/ModelBias.h"
21 #include "model/QgFortran.h"
22 #include "model/StateQG.h"
23 
24 
25 namespace qg {
26 // -----------------------------------------------------------------------------
28 // -----------------------------------------------------------------------------
29 ModelQG::ModelQG(const GeometryQG & resol, const ModelQgParameters & params)
30  : keyConfig_(0), params_(params), geom_(resol),
31  vars_(params.variables())
32 {
33  oops::Log::trace() << "ModelQG::ModelQG" << std::endl;
34  qg_model_setup_f90(keyConfig_, params.toConfiguration());
35  oops::Log::trace() << "ModelQG created" << std::endl;
36 }
37 // -----------------------------------------------------------------------------
40  oops::Log::trace() << "ModelQG destructed" << std::endl;
41 }
42 // -----------------------------------------------------------------------------
43 void ModelQG::initialize(StateQG & xx) const {
44  ASSERT(xx.fields().isForModel(true));
45  oops::Log::debug() << "ModelQG::initialize" << xx.fields() << std::endl;
46 }
47 // -----------------------------------------------------------------------------
48 void ModelQG::step(StateQG & xx, const ModelBias &) const {
49  ASSERT(xx.fields().isForModel(true));
50  oops::Log::debug() << "ModelQG::step fields in" << xx.fields() << std::endl;
52  xx.validTime() += params_.tstep;
53  oops::Log::debug() << "ModelQG::step fields out" << xx.fields() << std::endl;
54 }
55 // -----------------------------------------------------------------------------
56 void ModelQG::finalize(StateQG & xx) const {
57  ASSERT(xx.fields().isForModel(true));
58  oops::Log::debug() << "ModelQG::finalize" << xx.fields() << std::endl;
59 }
60 // -----------------------------------------------------------------------------
61 int ModelQG::saveTrajectory(StateQG & xx, const ModelBias &) const {
62  ASSERT(xx.fields().isForModel(true));
63  int ftraj = 0;
64  oops::Log::debug() << "ModelQG::saveTrajectory fields in" << xx.fields() << std::endl;
66  qg_fields_copy_f90(ftraj, xx.fields().toFortran());
67  ASSERT(ftraj != 0);
68  oops::Log::debug() << "ModelQG::saveTrajectory fields out" << xx.fields() << std::endl;
69  return ftraj;
70 }
71 // -----------------------------------------------------------------------------
72 void ModelQG::print(std::ostream & os) const {
73  os << "ModelQG::print not implemented";
74 }
75 // -----------------------------------------------------------------------------
76 } // namespace qg
A subclass of ModelFactory able to create instances of T (a concrete subclass of interface::ModelBase...
const int & toFortran() const
Definition: FieldsQG.h:99
bool isForModel(const bool &) const
Definition: FieldsQG.cc:211
GeometryQG handles geometry for QG model.
Definition: GeometryQG.h:58
const F90geom & toFortran() const
Definition: GeometryQG.h:68
Model error for the QG model.
ModelQgParameters params_
Definition: ModelQG.h:86
int saveTrajectory(StateQG &, const ModelBias &) const
Definition: ModelQG.cc:61
F90model keyConfig_
Definition: ModelQG.h:85
void print(std::ostream &) const
Print; used for logging.
Definition: ModelQG.cc:72
void initialize(StateQG &) const
Prepare model integration.
Definition: ModelQG.cc:43
void finalize(StateQG &) const
Finish model integration.
Definition: ModelQG.cc:56
ModelQG(const GeometryQG &, const ModelQgParameters &)
Definition: ModelQG.cc:29
void step(StateQG &, const ModelBias &) const
Model integration.
Definition: ModelQG.cc:48
const GeometryQG geom_
Definition: ModelQG.h:87
oops::RequiredParameter< util::Duration > tstep
Model time step.
Definition: ModelQG.h:45
QG model state.
Definition: StateQG.h:42
FieldsQG & fields()
Access to fields.
Definition: StateQG.h:69
const util::DateTime & validTime() const
Definition: StateQG.h:64
The namespace for the qg model.
static oops::interface::ModelMaker< QgTraits, ModelQG > makermodel_("QG")
void qg_model_setup_f90(F90model &, const eckit::Configuration &)
void qg_model_delete_f90(F90model &)
void qg_fields_create_from_other_f90(F90flds &, const F90flds &, const F90geom &)
void qg_fields_copy_f90(const F90flds &, const F90flds &)
void qg_model_propagate_f90(const F90model &, const F90flds &)