OOPS
TlmQG.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
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  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #include "model/TlmQG.h"
12 
13 #include <iomanip>
14 #include <vector>
15 
16 #include "eckit/config/LocalConfiguration.h"
17 #include "eckit/exception/Exceptions.h"
18 
19 #include "oops/util/abor1_cpp.h"
20 #include "oops/util/DateTime.h"
21 #include "oops/util/Logger.h"
22 
23 #include "model/GeometryQG.h"
24 #include "model/IncrementQG.h"
25 #include "model/ModelBias.h"
27 #include "model/ModelQG.h"
28 #include "model/QgFortran.h"
29 #include "model/QgTraits.h"
30 #include "model/StateQG.h"
31 
32 namespace qg {
33 // -----------------------------------------------------------------------------
35 // -----------------------------------------------------------------------------
36 TlmQG::TlmQG(const GeometryQG & resol, const eckit::Configuration & tlConf)
37  : keyConfig_(0), tstep_(), resol_(resol), traj_(),
38  lrmodel_(resol_,
39  oops::validateAndDeserialize<ModelQgParameters>(
40  eckit::LocalConfiguration(tlConf, "trajectory"))),
41  linvars_({"x"})
42 {
43  if (tlConf.has("tlm variables")) linvars_ = oops::Variables(tlConf, "tlm variables");
44  tstep_ = util::Duration(tlConf.getString("tstep"));
45  qg_model_setup_f90(keyConfig_, tlConf);
46 
47  oops::Log::trace() << "TlmQG created" << std::endl;
48 }
49 // -----------------------------------------------------------------------------
52  for (trajIter jtra = traj_.begin(); jtra != traj_.end(); ++jtra) {
53  qg_fields_delete_f90(jtra->second);
54  }
55  oops::Log::trace() << "TlmQG destructed" << std::endl;
56 }
57 // -----------------------------------------------------------------------------
58 void TlmQG::setTrajectory(const StateQG & xx, StateQG & xlr, const ModelBias & bias) {
59 // StateQG xlr(resol_, xx);
60  xlr.changeResolution(xx);
61  int ftraj = lrmodel_.saveTrajectory(xlr, bias);
62  traj_[xx.validTime()] = ftraj;
63 }
64 // -----------------------------------------------------------------------------
65 void TlmQG::initializeTL(IncrementQG & dx) const {
66  ASSERT(dx.fields().isForModel(false));
67  oops::Log::debug() << "TlmQG::initializeTL" << dx.fields() << std::endl;
68 }
69 // -----------------------------------------------------------------------------
70 void TlmQG::stepTL(IncrementQG & dx, const ModelBiasIncrement &) const {
71  trajICst itra = traj_.find(dx.validTime());
72  if (itra == traj_.end()) {
73  oops::Log::error() << "TlmQG: trajectory not available at time " << dx.validTime() << std::endl;
74  ABORT("TlmQG: trajectory not available");
75  }
76  ASSERT(dx.fields().isForModel(false));
77  oops::Log::debug() << "TlmQG::stepTL fields in" << dx.fields() << std::endl;
79  oops::Log::debug() << "TlmQG::stepTL fields out" << dx.fields() << std::endl;
80  dx.validTime() += tstep_;
81 }
82 // -----------------------------------------------------------------------------
83 void TlmQG::finalizeTL(IncrementQG & dx) const {
84  oops::Log::debug() << "TlmQG::finalizeTL" << dx.fields() << std::endl;
85 }
86 // -----------------------------------------------------------------------------
87 void TlmQG::initializeAD(IncrementQG & dx) const {
88  ASSERT(dx.fields().isForModel(false));
89  oops::Log::debug() << "TlmQG::initializeAD" << dx.fields() << std::endl;
90 }
91 // -----------------------------------------------------------------------------
93  dx.validTime() -= tstep_;
94  trajICst itra = traj_.find(dx.validTime());
95  if (itra == traj_.end()) {
96  oops::Log::error() << "TlmQG: trajectory not available at time " << dx.validTime() << std::endl;
97  ABORT("TlmQG: trajectory not available");
98  }
99  ASSERT(dx.fields().isForModel(false));
100  oops::Log::debug() << "TlmQG::stepAD fields in" << dx.fields() << std::endl;
101  qg_model_propagate_ad_f90(keyConfig_, itra->second, dx.fields().toFortran());
102  oops::Log::debug() << "TlmQG::stepAD fields out" << dx.fields() << std::endl;
103 }
104 // -----------------------------------------------------------------------------
105 void TlmQG::finalizeAD(IncrementQG & dx) const {
106  oops::Log::debug() << "TlmQG::finalizeAD" << dx.fields() << std::endl;
107 }
108 // -----------------------------------------------------------------------------
109 void TlmQG::print(std::ostream & os) const {
110  os << "QG TLM Trajectory, nstep=" << traj_.size() << std::endl;
111  typedef std::map< util::DateTime, int >::const_iterator trajICst;
112  if (traj_.size() > 0) {
113  os << "QG TLM Trajectory: times are:";
114  for (trajICst jtra = traj_.begin(); jtra != traj_.end(); ++jtra) {
115  // Time
116  os << " " << jtra->first;
117  os << " " << jtra->second;
118  }
119  }
120 }
121 // -----------------------------------------------------------------------------
122 } // namespace qg
A subclass of LinearModelFactory able to create instances of T (a concrete subclass of interface::Lin...
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
Increment Class: Difference between two states.
Definition: IncrementQG.h:64
const util::DateTime & validTime() const
Definition: IncrementQG.h:94
FieldsQG & fields()
Access to fields.
Definition: IncrementQG.h:104
Model error for the QG model.
int saveTrajectory(StateQG &, const ModelBias &) const
Definition: ModelQG.cc:61
QG model state.
Definition: StateQG.h:42
void changeResolution(const StateQG &xx)
Interpolate full fields.
Definition: StateQG.cc:99
const util::DateTime & validTime() const
Definition: StateQG.h:64
void print(std::ostream &) const override
Print, used in logging.
Definition: TlmQG.cc:109
void initializeTL(IncrementQG &) const override
Prepare model integration.
Definition: TlmQG.cc:65
void stepTL(IncrementQG &, const ModelBiasIncrement &) const override
Model integration.
Definition: TlmQG.cc:70
std::map< util::DateTime, int >::iterator trajIter
Definition: TlmQG.h:70
void finalizeTL(IncrementQG &) const override
Finish model integration.
Definition: TlmQG.cc:83
void setTrajectory(const StateQG &, StateQG &, const ModelBias &) override
Definition: TlmQG.cc:58
F90model keyConfig_
Definition: TlmQG.h:74
void stepAD(IncrementQG &, ModelBiasIncrement &) const override
Definition: TlmQG.cc:92
std::map< util::DateTime, F90flds > traj_
Definition: TlmQG.h:77
~TlmQG()
Definition: TlmQG.cc:50
TlmQG(const GeometryQG &, const eckit::Configuration &)
Definition: TlmQG.cc:36
void initializeAD(IncrementQG &) const override
Definition: TlmQG.cc:87
std::map< util::DateTime, int >::const_iterator trajICst
Definition: TlmQG.h:71
void finalizeAD(IncrementQG &) const override
Definition: TlmQG.cc:105
const ModelQG lrmodel_
Definition: TlmQG.h:78
util::Duration tstep_
Definition: TlmQG.h:75
int error
Definition: compare.py:168
Definition: FieldL95.h:22
The namespace for the main oops code.
The namespace for the qg model.
void qg_model_setup_f90(F90model &, const eckit::Configuration &)
void qg_model_delete_f90(F90model &)
void qg_fields_delete_f90(F90flds &)
void qg_model_propagate_ad_f90(const F90model &, const F90flds &, const F90flds &)
static oops::interface::LinearModelMaker< QgTraits, TlmQG > makerQGTLM_("QgTLM")
void qg_model_propagate_tl_f90(const F90model &, const F90flds &, const F90flds &)