OOPS
test/assimilation/SpectralLMP.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_SPECTRALLMP_H_
9 #define TEST_ASSIMILATION_SPECTRALLMP_H_
10 
11 #include <memory>
12 #include <string>
13 #include <vector>
14 
15 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
16 
17 #include "eckit/config/LocalConfiguration.h"
18 #include "eckit/testing/Test.h"
19 
22 #include "oops/runs/Test.h"
23 #include "oops/util/Expect.h"
24 #include "oops/util/FloatCompare.h"
25 
27 
28 namespace test {
29 
30  void test_SpectralLMP(const eckit::LocalConfiguration &conf)
31  {
32  oops::SpectralLMP<Vector3D> spectralLMP(conf);
33 
34  // assign vectors following DRPLanczosMinimizer.h
35  std::vector<std::unique_ptr<Vector3D>> hvecs;
36  std::vector<std::unique_ptr<Vector3D>> vvecs;
37  std::vector<std::unique_ptr<Vector3D>> zvecs;
38  std::vector<double> alphas;
39  std::vector<double> betas;
40 
41  // Simple case
42  hvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(1, 1, 1)));
43  hvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(1, 1, 1)));
44  hvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(1, 1, 1)));
45  vvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(1, 1, 1)));
46  vvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(1, 1, 1)));
47  vvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(1, 1, 1)));
48  zvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(1, 1, 1)));
49  zvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(1, 1, 1)));
50  zvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(1, 1, 1)));
51 
52  alphas.push_back(1.0);
53  alphas.push_back(1.0);
54  betas.push_back(1.0);
55  betas.push_back(1.0);
56 
57  spectralLMP.update(vvecs, hvecs, zvecs, alphas, betas);
58 
59  Vector3D pr(1, 1, 1);
60  Vector3D zz(1, 1, 1);
61 
62  spectralLMP.multiply(pr, zz);
63 
64  // More complicated case
65  hvecs.clear();
66  vvecs.clear();
67  zvecs.clear();
68  alphas.clear();
69  betas.clear();
70  hvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(10, 1, -10)));
71  hvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(1, 10, 100)));
72  hvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(-5, 5, 20)));
73  vvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(1, 3, 11)));
74  vvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(-1, 2, 100)));
75  vvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(6, 77, 7)));
76  zvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(1, 10, 1)));
77  zvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(1, 21, 21)));
78  zvecs.emplace_back(std::unique_ptr<Vector3D>(new Vector3D(100, 3, 70)));
79 
80  alphas.push_back(1000.0);
81  alphas.push_back(33.0);
82  betas.push_back(93.0);
83  betas.push_back(2.0);
84 
85  spectralLMP.update(vvecs, hvecs, zvecs, alphas, betas);
86 
87  Vector3D pr2(1, 3, 1);
88  Vector3D zz2(50, 1, 1);
89 
90  spectralLMP.multiply(pr2, zz2);
91  }
92 
93  class SpectralLMP : public oops::Test {
94  private:
95  std::string testid() const override {return "test::SpectralLMP";}
96 
97  void register_tests() const override {
98  std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
99 
100  const eckit::LocalConfiguration conf(::test::TestEnvironment::config());
101  for (const std::string & testCaseName : conf.keys())
102  {
103  const eckit::LocalConfiguration testCaseConf(::test::TestEnvironment::config(),
104  testCaseName);
105  ts.emplace_back(CASE("SpectralLMP/" + testCaseName, testCaseConf)
106  {
107  test_SpectralLMP(testCaseConf);
108  });
109  }
110  }
111 
112  void clear() const override {}
113  };
114 
115 } // namespace test
116 
117 #endif // TEST_ASSIMILATION_SPECTRALLMP_H_
The solvers represent matrices as objects that implement a "multiply" method.
void multiply(const VECTOR &, VECTOR &) const
void update(std::vector< std::unique_ptr< VECTOR >> &, std::vector< std::unique_ptr< VECTOR >> &, std::vector< std::unique_ptr< VECTOR >> &, std::vector< double > &, std::vector< double > &)
std::string testid() const override
void register_tests() const override
static const eckit::Configuration & config()
void test_SpectralLMP(const eckit::LocalConfiguration &conf)
CASE("test_linearmodelparameterswrapper_valid_name")