8 #ifndef TEST_GENERIC_PSEUDOMODELSTATE4D_H_
9 #define TEST_GENERIC_PSEUDOMODELSTATE4D_H_
16 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
18 #include "eckit/config/LocalConfiguration.h"
19 #include "eckit/testing/Test.h"
29 #include "oops/util/Duration.h"
49 ModelAux_ modelaux(geometry, biasconf);
51 State_ xinit(geometry, initconf);
55 Model_ model1(geometry, modelconf);
56 oops::Log::test() <<
"Model: " << model1 << std::endl;
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;
67 const util::Duration step = model1.timeResolution();
68 EXPECT(step == model2.timeResolution());
69 const size_t nsteps = state4d.size();
72 for (
size_t jstep = 0; jstep < nsteps; ++jstep) {
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());
85 template <
typename MODEL>
91 std::string
testid()
const override {
return "test::PseudoModelState4D<" + MODEL::name() +
">";}
94 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
96 ts.emplace_back(
CASE(
"generic/PseudoModelState4D/testPseudoModelState4D")
97 { testPseudoModelState4D<MODEL>(); });
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.
Four dimensional state (vector of 3D States)
State class used in oops; subclass of interface class interface::State.
void clear() const override
void register_tests() const override
virtual ~PseudoModelState4D()=default
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)
void testPseudoModelState4D()
Tests that PseudoModelState4D, run to 0th, 1st, 2nd, etc state produces the same results as the Model...
CASE("test_linearmodelparameterswrapper_valid_name")