OOPS
test/assimilation/rotmat.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 Met Office UK
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 #ifndef TEST_ASSIMILATION_ROTMAT_H_
9 #define TEST_ASSIMILATION_ROTMAT_H_
10 
11 #include <string>
12 #include <vector>
13 
14 #include "eckit/testing/Test.h"
17 #include "oops/runs/Test.h"
18 #include "oops/util/Expect.h"
19 #include "oops/util/FloatCompare.h"
20 
21 namespace test {
22 
23  void test_b_zero()
24  {
25  const double a = 1.0;
26  const double b = 0.0;
27  double c = -1;
28  double s = -1;
29 
30  oops::rotmat(a, b, c, s);
31 
32  EXPECT_EQUAL(c, 1.0);
33  EXPECT_EQUAL(s, 0.0);
34  }
35 
36  void test_a_zero()
37  {
38  const double a = 0.0;
39  const double b = 1.0;
40  double c = -1;
41  double s = -1;
42 
43  oops::rotmat(a, b, c, s);
44 
45  EXPECT_EQUAL(c, 0.0);
46  EXPECT_EQUAL(s, 1.0);
47  }
48 
49  void test_b_gt_a()
50  {
51  const double a = 3.0;
52  const double b = 4.0;
53  double c = -1;
54  double s = -1;
55 
56  oops::rotmat(a, b, c, s);
57 
58  EXPECT(oops::is_close_absolute(c, 0.6, 1e-9));
59  EXPECT(oops::is_close_absolute(s, 0.8, 1e-9));
60  }
61 
62  void test_b_leq_a()
63  {
64  const double a = 4.0;
65  const double b = 3.0;
66  double c = -1;
67  double s = -1;
68 
69  oops::rotmat(a, b, c, s);
70 
71  EXPECT(oops::is_close_absolute(c, 0.8, 1e-9));
72  EXPECT(oops::is_close_absolute(s, 0.6, 1e-9));
73  }
74 
75  CASE("assimilation/rotmat/b_zero") {
76  test_b_zero();
77  }
78 
79  CASE("assimilation/rotmat/a_zero") {
80  test_a_zero();
81  }
82 
83  CASE("assimilation/rotmat/b_gt_a") {
84  test_b_gt_a();
85  }
86 
87  CASE("assimilation/rotmat/b_leq_a") {
88  test_b_leq_a();
89  }
90 
91 class rotmat : public oops::Test {
92  private:
93  std::string testid() const override {return "test::rotmat";}
94  void register_tests() const override {}
95  void clear() const override {}
96 };
97 
98 } // namespace test
99 
100 #endif // TEST_ASSIMILATION_ROTMAT_H_
void clear() const override
std::string testid() const override
void register_tests() const override
void rotmat(const double &a, const double &b, double &c, double &s)
CASE("test_linearmodelparameterswrapper_valid_name")
Compute the Givens rotation matrix parameters.