OOPS
ObsLocGC99.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020-2021 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 "lorenz95/ObsLocGC99.h"
9 
10 #include <algorithm>
11 #include <cmath>
12 #include <vector>
13 
14 #include "eckit/config/Configuration.h"
15 #include "eckit/geometry/Point2.h"
16 
17 #include "lorenz95/Iterator.h"
18 #include "lorenz95/L95Traits.h"
19 #include "lorenz95/ObsTable.h"
20 #include "lorenz95/ObsVec1D.h"
21 
22 #include "oops/generic/gc99.h"
23 
24 // -----------------------------------------------------------------------------
25 namespace lorenz95 {
26 
28 
29 // -----------------------------------------------------------------------------
30 
31 ObsLocGC99::ObsLocGC99(const eckit::Configuration & config, const ObsTable & obsdb)
32  : rscale_(config.getDouble("lengthscale")), obsdb_(obsdb)
33 {
34 }
35 
36 // -----------------------------------------------------------------------------
37 
38 void ObsLocGC99::computeLocalization(const Iterator & iterator, ObsVec1D & locfactor) const {
39  std::vector<double> locations = obsdb_.locations();
40  eckit::geometry::Point2 center = *iterator;
41  for (unsigned int ii=0; ii < obsdb_.nobs(); ++ii) {
42  double curdist = std::abs(center[0] - locations[ii]);
43  curdist = std::min(curdist, 1.-curdist);
44  if (curdist >= rscale_) {
45  locfactor[ii] = locfactor.missing();
46  } else {
47  locfactor[ii] = oops::gc99(curdist/rscale_);
48  }
49  }
50 }
51 
52 // -----------------------------------------------------------------------------
53 
54 void ObsLocGC99::print(std::ostream & os) const {
55  os << "Gaspari-Cohn localization with lengthscale=" << rscale_;
56 }
57 
58 // -----------------------------------------------------------------------------
59 
60 } // namespace lorenz95
const double rscale_
Gaspari-Cohn localization distance (localization goes to zero at rscale_)
Definition: ObsLocGC99.h:37
const ObsTable & obsdb_
ObsSpace associated with the observations.
Definition: ObsLocGC99.h:40
ObsLocGC99(const eckit::Configuration &, const ObsTable &)
Definition: ObsLocGC99.cc:31
void print(std::ostream &) const override
Definition: ObsLocGC99.cc:54
void computeLocalization(const Iterator &, ObsVec1D &locfactor) const override
Definition: ObsLocGC99.cc:38
A Simple Observation Data Handler.
Definition: ObsTable.h:67
const std::vector< double > & locations() const
Definition: ObsTable.h:90
unsigned int nobs() const
Definition: ObsTable.h:89
Vector in observation space.
Definition: ObsVec1D.h:33
const double & missing() const
Definition: ObsVec1D.h:75
The namespace for the L95 model.
static oops::ObsLocalizationMaker< L95Traits, L95ObsTraits, ObsLocGC99 > makerGC_("Gaspari-Cohn")
double gc99(const double &distnorm)