OOPS
GetValuesL95.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2019-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 
9 
10 #include <fstream>
11 #include <string>
12 
13 #include "eckit/exception/Exceptions.h"
14 
15 #include "oops/util/Logger.h"
16 
17 #include "lorenz95/GomL95.h"
18 #include "lorenz95/LocsL95.h"
19 #include "lorenz95/Resolution.h"
20 #include "lorenz95/StateL95.h"
21 
22 namespace lorenz95 {
23 
24 // -----------------------------------------------------------------------------
26  const LocsL95 & locs,
27  const eckit::Configuration & conf)
28  : resolidx_(locs.size()), times_(locs.times())
29 {
30  // find indices of gridpoints nearest to all observations (resolidx_)
31 
32  const int npoints = resol.npoints();
33  const double dres = static_cast<double>(npoints);
34  for (size_t jobs = 0; jobs < locs.size(); ++jobs) {
35  int ii = round(locs[jobs] * dres);
36  ASSERT(ii >= 0 && ii <= npoints);
37  if (ii == npoints) ii = 0;
38  resolidx_[jobs] = ii;
39  }
40 }
41 // -----------------------------------------------------------------------------
42 void GetValuesL95::fillGeoVaLs(const StateL95 & state, const util::DateTime & t1,
43  const util::DateTime & t2, GomL95 & vals) const {
44  const FieldL95 & field = state.getField();
45  for (unsigned int jobs = 0; jobs < times_.size(); ++jobs) {
46  // only fill in geovals for (t1, t2) timeslot
47  if (times_[jobs] > t1 && times_[jobs] <= t2) {
48  vals[jobs] = field[resolidx_[jobs]];
49  }
50  }
51 }
52 // -----------------------------------------------------------------------------
53 void GetValuesL95::print(std::ostream & os) const {
54  os << "Nearest neighbor interpolation GetValues";
55 }
56 // -----------------------------------------------------------------------------
57 
58 
59 } // namespace lorenz95
Class to represent fields for the L95 model.
Definition: FieldL95.h:34
GetValuesL95(const Resolution &, const LocsL95 &locs, const eckit::Configuration &)
computes indices resolidx_ of nearest gridpoints for all locations locs
Definition: GetValuesL95.cc:25
std::vector< int > resolidx_
Definition: GetValuesL95.h:46
void fillGeoVaLs(const StateL95 &state, const util::DateTime &t1, const util::DateTime &t2, GomL95 &geovals) const
fills in geovals for all observations in the timeframe (t1, t2], geovals are equal to the value of st...
Definition: GetValuesL95.cc:42
std::vector< util::DateTime > times_
Definition: GetValuesL95.h:47
void print(std::ostream &) const
Definition: GetValuesL95.cc:53
GomL95 class to handle locations for L95 model.
Definition: GomL95.h:33
LocsL95 class to handle locations for L95 model.
Definition: LocsL95.h:32
size_t size() const
Definition: LocsL95.h:40
Handles resolution.
Definition: Resolution.h:43
int npoints() const
Definition: Resolution.h:53
L95 model state.
Definition: StateL95.h:53
const FieldL95 & getField() const
Definition: StateL95.h:69
The namespace for the L95 model.