OOPS
oops/generic/gc99.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2018 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 <math.h>
9 #include <cfloat>
10 
11 #include "oops/generic/gc99.h"
12 
13 namespace oops {
14 
15 double gc99(const double & distnorm) {
16  // computes Gaspari-Cohn 99 localization
17  // NOTE: this implementation goes to 0 at distnorm==1
18  // returns eps_double outside of distnorm>1
19  // distnorm - normalized distance
20 
21  double gc99value = 0.0;
22 
23  if (distnorm < 0.5) {
24  gc99value = -8.0*pow(distnorm, 5.0)+8.0*pow(distnorm, 4.0)+5.0*pow(distnorm, 3.0)-
25  20.0/3.0*pow(distnorm, 2.0)+1.0;
26  } else if (distnorm < 1.0) {
27  gc99value = 8.0/3.0*pow(distnorm, 5.0)-8.0*pow(distnorm, 4.0)+5.0*pow(distnorm, 3.0)+
28  20.0/3.0*pow(distnorm, 2.0)-10.0*distnorm+4.0-1.0/(3.0*distnorm);
29  } else {
30  gc99value = DBL_EPSILON;
31  }
32  return gc99value;
33 }
34 } // namespace oops
35 
The namespace for the main oops code.
double gc99(const double &distnorm)