MPAS-JEDI
LinearGetValues.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 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 "oops/util/abor1_cpp.h"
9 
10 #include "mpasjedi/GeometryMPAS.h"
12 #include "mpasjedi/IncrementMPAS.h"
13 #include "mpasjedi/StateMPAS.h"
16 
17 namespace mpas {
18 
19 // -----------------------------------------------------------------------------
20 
22  const ufo::Locations & locs, const eckit::Configuration & config)
23  : locs_(locs), geom_(new GeometryMPAS(geom)), linearmodel2geovars_(),
24  model2geovars_() {
25  oops::Log::trace() << "LinearGetValues::LinearGetValues starting"
26  << std::endl;
27 
28  // Create the variable change object
29  {
30  util::Timer timervc(classname(), "VarChaModel2GeoVars");
32  }
33 
34  // Call GetValues consructor
35  {
36  util::Timer timergv(classname(), "LinearGetValues");
37 
39  config);
40  }
41 
42  oops::Log::trace() << "LinearGetValues::LinearGetValues done" << std::endl;
43 }
44 
45 // -----------------------------------------------------------------------------
46 
48  oops::Log::trace() << "LinearGetValues::~LinearGetValues starting"
49  << std::endl;
50 
51  {
52  util::Timer timergv(classname(), "~LinearGetValues");
53 
55  }
56 
57  {
58  util::Timer timervc(classname(), "~LinVarChaModel2GeoVars");
59 
60  for (lvcIter jlvc = linearmodel2geovars_.begin(); jlvc != linearmodel2geovars_.end(); ++jlvc) {
61  delete jlvc->second;
62  }
63  }
64 
65  oops::Log::trace() << "LinearGetValues::~LinearGetValues done" << std::endl;
66 }
67 
68 // -----------------------------------------------------------------------------
69 
70 const LinVarChaModel2GeoVars * LinearGetValues::getLinVarCha(const util::DateTime & t1) const {
71  lvcIterCnst jlvc = linearmodel2geovars_.find(t1);
72  if (jlvc == linearmodel2geovars_.end()) {
73  oops::Log::error() << "LinearGetValues::getLinVarCha: linear variable change not available " <<
74  "at time " << t1 << std::endl;
75  ABORT("LinearGetValues::getLinVarCha: linear variable change not available");
76  }
77  return jlvc->second;
78 }
79 
80 // -------------------------------------------------------------------------------------------------
81 
83  const util::DateTime & t1, const util::DateTime & t2,
84  ufo::GeoVaLs & geovals) {
85  oops::Log::trace() << "LinearGetValues::setTrajectory starting" << std::endl;
86 
87  // Create state with geovals variables
88  StateMPAS geovars(*geom_, geovals.getVars(), state.validTime());
89  model2geovars_->changeVar(state, geovars);
90 
91  // Create the linear variable change object
92  {
93  util::Timer timervc(classname(), "LinearVarChaModel2GeoVars");
94  ASSERT(linearmodel2geovars_.find(t1) == linearmodel2geovars_.end());
95  char sep = '.';
96  eckit::LocalConfiguration dummyconfig(sep);
97  LinVarChaModel2GeoVars * linearmodel2geovars = new LinVarChaModel2GeoVars(state, state, *geom_,
98  dummyconfig);
99  linearmodel2geovars_[t1] = linearmodel2geovars;
100  }
101 
102  {
103  util::Timer timergv(classname(), "SetTrajectory");
104 
106  keyLinearGetValues_, geom_->toFortran(), geovars.toFortran(),
107  t1, t2, locs_, geovals.toFortran());
108  }
109 
110  oops::Log::trace() << "LinearGetValues::setTrajectory done" << std::endl;
111 }
112 
113 // -----------------------------------------------------------------------------
114 
116  const util::DateTime & t1, const util::DateTime & t2,
117  ufo::GeoVaLs & geovals) const {
118  oops::Log::trace() << "LinearGetValues::fillGeoVaLsTL starting" << std::endl;
119 
120  // Create increment with geovals variables
121  IncrementMPAS incgeovars(*geom_, geovals.getVars(), inc.validTime());
122 
123  {
124  util::Timer timervc(classname(), "multiply");
125  const LinVarChaModel2GeoVars * linearmodel2geovars = this->getLinVarCha(t1);
126  linearmodel2geovars->multiply(inc, incgeovars);
127  }
128 
129  {
130  util::Timer timergv(classname(), "fillGeoVaLsTL");
132  keyLinearGetValues_, geom_->toFortran(), incgeovars.toFortran(),
133  t1, t2, locs_, geovals.toFortran());
134  }
135 
136  oops::Log::trace() << "LinearGetValues::fillGeoVaLsTL done" << std::endl;
137 }
138 
139 // -----------------------------------------------------------------------------
140 
142  const util::DateTime & t1, const util::DateTime & t2,
143  const ufo::GeoVaLs & geovals) const {
144  oops::Log::trace() << "LinearGetValues::fillGeoVaLsAD starting" << std::endl;
145 
146  // Create increment with geovals variables
147  IncrementMPAS incgeovars(*geom_, geovals.getVars(), inc.validTime());
148 
149  {
150  util::Timer timergv(classname(), "fillGeoVaLsAD");
151 
153  keyLinearGetValues_, geom_->toFortran(), incgeovars.toFortran(),
154  t1, t2, locs_, geovals.toFortran());
155  }
156 
157  // Change variables
158  {
159  util::Timer timervc(classname(), "multiplyAD");
160  const LinVarChaModel2GeoVars * linearmodel2geovars = this->getLinVarCha(t1);
161  linearmodel2geovars->multiplyAD(incgeovars, inc);
162  }
163 
164  oops::Log::trace() << "LinearGetValues::fillGeoVaLsAD done" << std::endl;
165 }
166 
167 // -----------------------------------------------------------------------------
168 
169 void LinearGetValues::print(std::ostream & os) const {
170  os << " LinearGetValues for mpas-jedi" << std::endl;
171 }
172 
173 // -----------------------------------------------------------------------------
174 
175 } // namespace mpas
GeometryMPAS handles geometry for MPAS model.
Definition: GeometryMPAS.h:37
Increment Class: Difference between two states.
Definition: IncrementMPAS.h:57
const util::DateTime & validTime() const
void multiply(const IncrementMPAS &, IncrementMPAS &) const
void multiplyAD(const IncrementMPAS &, IncrementMPAS &) const
LinearGetValues(const GeometryMPAS &, const ufo::Locations &, const eckit::Configuration &)
std::map< util::DateTime, LinVarChaModel2GeoVars * >::const_iterator lvcIterCnst
std::unique_ptr< VarChaModel2GeoVars > model2geovars_
std::map< util::DateTime, LinVarChaModel2GeoVars * > linearmodel2geovars_
std::shared_ptr< const GeometryMPAS > geom_
static const std::string classname()
void setTrajectory(const StateMPAS &state, const util::DateTime &t1, const util::DateTime &t2, ufo::GeoVaLs &geovals)
ufo::Locations locs_
F90lineargetvalues keyLinearGetValues_
std::map< util::DateTime, LinVarChaModel2GeoVars * >::iterator lvcIter
void fillGeoVaLsTL(const IncrementMPAS &inc, const util::DateTime &t1, const util::DateTime &t2, ufo::GeoVaLs &geovals) const
void print(std::ostream &) const
const LinVarChaModel2GeoVars * getLinVarCha(const util::DateTime &) const
void fillGeoVaLsAD(IncrementMPAS &inc, const util::DateTime &t1, const util::DateTime &t2, const ufo::GeoVaLs &geovals) const
MPAS model state.
Definition: StateMPAS.h:51
int & toFortran()
Definition: StateMPAS.h:94
const util::DateTime & validTime() const
Definition: StateMPAS.h:89
Definition: config.py:1
void mpas_lineargetvalues_fill_geovals_tl_f90(const F90lineargetvalues &, const F90geom &, const F90inc &, const util::DateTime &, const util::DateTime &, const ufo::Locations &, const F90goms &)
void mpas_lineargetvalues_create_f90(F90lineargetvalues &, const F90geom &, const ufo::Locations &, const eckit::Configuration &)
void mpas_lineargetvalues_fill_geovals_ad_f90(const F90lineargetvalues &, const F90geom &, const F90inc &, const util::DateTime &, const util::DateTime &, const ufo::Locations &, const F90goms &)
void mpas_lineargetvalues_set_trajectory_f90(const F90lineargetvalues &, const F90geom &, const F90state &, const util::DateTime &, const util::DateTime &, const ufo::Locations &, const F90goms &)
void mpas_lineargetvalues_delete_f90(F90lineargetvalues &)