OOPS
test/generic/soar.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 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 <cfloat>
9 #include <cmath>
10 
11 #include "oops/generic/soar.h"
12 #include "oops/util/Logger.h"
13 
14 #include "eckit/testing/Test.h"
15 
16 namespace {
17 
18 
19 // -----------------------------------------------------------------------------
20 
21  CASE("test_soar") {
22  double t;
23  t = oops::soar(0.0);
24  oops::Log::info() << "soar(0.0)=" << t << std::endl;
25  EXPECT(std::abs(t-1) < 2*DBL_EPSILON);
26 
27  t = oops::soar(1.0);
28  oops::Log::info() << "soar(1.0)=" << t << std::endl;
29  EXPECT(std::abs(t-0.735758882342885) < 1e-6);
30 
31  t = oops::soar(2.0);
32  oops::Log::info() << "soar(2.0)=" << t << std::endl;
33  EXPECT(std::abs(t-0.406005849709838) < 1e-6);
34 
35  t = oops::soar(4.0);
36  oops::Log::info() << "soar(4.0)=" << t << std::endl;
37  EXPECT(std::abs(t-0.091578194443671) < 1e-6);
38 
39  t = oops::soar(8.0);
40  oops::Log::info() << "soar(8.0)=" << t << std::endl;
41  EXPECT(std::abs(t-0.003019163651123) < 1e-6);
42  }
43 
44 // -----------------------------------------------------------------------------
45 
46 } // anonymous namespace
47 
48 int main(int argc, char **argv)
49 {
50  return eckit::testing::run_tests ( argc, argv );
51 }
double soar(const double &distnorm)
computes second order autoregressive function
int main(int argc, char **argv)