OOPS
test/generic/PseudoModelState4D.h
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 #ifndef TEST_GENERIC_PSEUDOMODELSTATE4D_H_
9 #define TEST_GENERIC_PSEUDOMODELSTATE4D_H_
10 
11 #include <memory>
12 #include <string>
13 #include <utility>
14 #include <vector>
15 
16 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
17 
18 #include "eckit/config/LocalConfiguration.h"
19 #include "eckit/testing/Test.h"
20 #include "oops/base/Geometry.h"
21 #include "oops/base/Model.h"
23 #include "oops/base/State4D.h"
26 #include "oops/interface/State.h"
27 #include "oops/mpi/mpi.h"
28 #include "oops/runs/Test.h"
29 #include "oops/util/Duration.h"
30 #include "test/TestEnvironment.h"
31 
32 namespace test {
33 
34 /// \brief Tests that PseudoModelState4D, run to 0th, 1st, 2nd, etc
35 /// state produces the same results as the Model specified in yaml.
36 template <typename MODEL> void testPseudoModelState4D() {
37  typedef oops::Geometry<MODEL> Geometry_;
38  typedef oops::Model<MODEL> Model_;
39  typedef oops::ModelAuxControl<MODEL> ModelAux_;
40  typedef oops::State<MODEL> State_;
41  typedef oops::State4D<MODEL> State4D_;
42  typedef oops::ModelBase<MODEL> ModelBase_;
43  typedef oops::PseudoModelState4D<MODEL> PseudoModelState4D_;
44 
45  // Setup geometry, model bias, and initial conditions
46  const eckit::LocalConfiguration geometryconf(TestEnvironment::config(), "geometry");
47  Geometry_ geometry(geometryconf, oops::mpi::world());
48  const eckit::LocalConfiguration biasconf(TestEnvironment::config(), "model aux control");
49  ModelAux_ modelaux(geometry, biasconf);
50  const eckit::LocalConfiguration initconf(TestEnvironment::config(), "initial condition");
51  State_ xinit(geometry, initconf);
52 
53  // set up Model specified in yaml
54  const eckit::LocalConfiguration modelconf(TestEnvironment::config(), "model");
55  Model_ model1(geometry, modelconf);
56  oops::Log::test() << "Model: " << model1 << std::endl;
57 
58  // set up PseudoModelState4D with State4D from yaml
59  const eckit::LocalConfiguration state4dconf(TestEnvironment::config(),
60  "pseudo model with 4D state");
61  State4D_ state4d(geometry, state4dconf);
62  std::unique_ptr<ModelBase_> pseudomodel(new PseudoModelState4D_(state4d));
63  Model_ model2(std::move(pseudomodel));
64  oops::Log::test() << "PseudoModelState4D: " << model2 << std::endl;
65 
66  // check that the two models have the same time resolutions
67  const util::Duration step = model1.timeResolution();
68  EXPECT(step == model2.timeResolution());
69  const size_t nsteps = state4d.size();
70 
71  // run forecasts with 0, step, 2*step, ... lengths and compare the results
72  for (size_t jstep = 0; jstep < nsteps; ++jstep) {
73  State_ x1(xinit);
74  State_ x2(xinit);
76  oops::Log::test() << "Running Model for " << jstep << " steps" << std::endl;
77  model1.forecast(x1, modelaux, step * jstep, post);
78  oops::Log::test() << "Running PseudoModelState4D for " << jstep << " steps" << std::endl;
79  model2.forecast(x2, modelaux, step * jstep, post);
80  EXPECT(x1.norm() == x2.norm());
81  EXPECT(x1.norm() == state4d[jstep].norm());
82  }
83 }
84 
85 template <typename MODEL>
87  public:
88  PseudoModelState4D() = default;
89  virtual ~PseudoModelState4D() = default;
90  private:
91  std::string testid() const override {return "test::PseudoModelState4D<" + MODEL::name() + ">";}
92 
93  void register_tests() const override {
94  std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
95 
96  ts.emplace_back(CASE("generic/PseudoModelState4D/testPseudoModelState4D")
97  { testPseudoModelState4D<MODEL>(); });
98  }
99 
100  void clear() const override {}
101 };
102 
103 } // namespace test
104 
105 #endif // TEST_GENERIC_PSEUDOMODELSTATE4D_H_
Geometry class used in oops; subclass of interface class interface::Geometry.
Auxiliary state related to model (could be e.g. model bias), not used at the moment.
Base class for generic implementations of the forecasting models. Use this class as a base class for ...
Abstract nonlinear forecast model used by high level algorithms and applications.
Control model post processing.
Definition: PostProcessor.h:30
Four dimensional state (vector of 3D States)
Definition: State4D.h:29
State class used in oops; subclass of interface class interface::State.
virtual ~PseudoModelState4D()=default
std::string testid() const override
static const eckit::Configuration & config()
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
Definition: oops/mpi/mpi.cc:84
void testPseudoModelState4D()
Tests that PseudoModelState4D, run to 0th, 1st, 2nd, etc state produces the same results as the Model...
CASE("test_linearmodelparameterswrapper_valid_name")