8 #ifndef TEST_INTERFACE_GETVALUES_H_
9 #define TEST_INTERFACE_GETVALUES_H_
20 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
22 #include <boost/noncopyable.hpp>
23 #include <boost/ptr_container/ptr_vector.hpp>
25 #include "eckit/config/LocalConfiguration.h"
26 #include "eckit/testing/Test.h"
36 #include "oops/util/DateTime.h"
37 #include "oops/util/dot_product.h"
38 #include "oops/util/Duration.h"
45 template <
typename MODEL,
typename OBS>
class GetValuesFixture :
private boost::noncopyable {
78 return theGetValuesFixture;
109 ~GetValuesFixture<MODEL, OBS>() {}
117 std::unique_ptr<const Locations_>
locs_;
128 std::unique_ptr<const GetValues_>
132 oops::Log::test() <<
"Testing GetValues: " << *
GetValues << std::endl;
144 const util::Duration windowlength = Test_::timeend() - Test_::timebeg();
145 const util::DateTime timemid = Test_::timebeg() + windowlength/2;
147 const eckit::LocalConfiguration confgen(Test_::testconf(),
"state generate");
148 const State_ xx(Test_::resol(), confgen);
150 EXPECT(xx.norm() > 0.0);
152 GeoVaLs_ gv1(Test_::locs(), Test_::geovalvars(), Test_::geovalvarsizes());
153 GeoVaLs_ gv2(Test_::locs(), Test_::geovalvars(), Test_::geovalvarsizes());
156 Test_::getvalues().fillGeoVaLs(xx, Test_::timebeg(), Test_::timeend(), gv1);
159 Test_::getvalues().fillGeoVaLs(xx, Test_::timebeg(), timemid, gv2);
160 Test_::getvalues().fillGeoVaLs(xx, timemid, Test_::timeend(), gv2);
162 EXPECT(gv1.rms() > 0.0);
163 EXPECT(gv2.rms() > 0.0);
164 EXPECT(gv1.rms() == gv2.rms());
208 const eckit::LocalConfiguration confgen(Test_::testconf(),
"state generate");
209 const State_ xx(Test_::resol(), confgen);
212 double interp_tol = Test_::testconf().getDouble(
"interpolation tolerance");
215 GeoVaLs_ gval(Test_::locs(), Test_::geovalvars(), Test_::geovalvarsizes());
217 EXPECT(xx.norm() > 0.0);
220 Test_::getvalues().fillGeoVaLs(xx, Test_::timebeg(), Test_::timeend(), gval);
222 EXPECT(gval.rms() > 0.0);
223 oops::Log::debug() <<
"RMS GeoVaLs: " << gval.rms() << std::endl;
228 AnalyticInit_ init(confgen);
229 init.fillGeoVaLs(Test_::locs(), ref);
231 EXPECT(ref.rms() > 0.0);
232 oops::Log::debug() <<
"RMS reference GeoVaLs: " << ref.rms() << std::endl;
238 oops::Log::test() <<
"Normalized rms of the difference: " << gval.normalizedrms(ref) << std::endl;
239 EXPECT(gval.normalizedrms(ref) < interp_tol);
244 template <
typename MODEL,
typename OBS>
251 std::string
testid()
const override {
return "test::GetValues<" + MODEL::name() +
252 ", " + OBS::name() +
">";}
255 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
257 ts.emplace_back(
CASE(
"interface/GetValues/testGetValuesConstructor")
258 { testGetValuesConstructor<MODEL, OBS>(); });
259 ts.emplace_back(
CASE(
"interface/GetValues/testGetValuesMultiWindow")
260 { testGetValuesMultiWindow<MODEL, OBS>(); });
261 ts.emplace_back(
CASE(
"interface/GetValues/testGetValuesInterpolation")
262 { testGetValuesInterpolation<MODEL, OBS>(); });
Initializes GeoVaLs with analytic formula.
Geometry class used in oops; subclass of interface class interface::Geometry.
Gets values from model State to observation locations (fills GeoVaLs)
Locations of observations for observation operator.
State class used in oops; subclass of interface class interface::State.
static const GetValues_ & getvalues()
std::unique_ptr< const GeoVaLs_ > geovals_
std::unique_ptr< const LocalConfig_ > testconf_
static const Variables_ & geovalvars()
std::unique_ptr< const Geometry_ > resol_
static const Geometry_ & resol()
oops::Locations< OBS > Locations_
oops::Variables Variables_
static const Locations_ & locs()
std::unique_ptr< const DateTime_ > timeend_
static const GeoVaLs_ & geovals()
std::vector< size_t > geovalvarsizes_
static const DateTime_ & timebeg()
static const DateTime_ & timeend()
oops::Geometry< MODEL > Geometry_
static const std::vector< size_t > & geovalvarsizes()
eckit::LocalConfiguration LocalConfig_
std::unique_ptr< const GetValues_ > getvalues_
std::unique_ptr< const Variables_ > geovalvars_
std::unique_ptr< const DateTime_ > timebeg_
oops::GetValues< MODEL, OBS > GetValues_
static const LocalConfig_ & testconf()
std::unique_ptr< const Locations_ > locs_
static GetValuesFixture< MODEL, OBS > & getInstance()
oops::GeoVaLs< OBS > GeoVaLs_
void register_tests() const override
std::string testid() const override
void clear() const override
static const eckit::Configuration & config()
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
logical function has(this, var)
void testGetValuesMultiWindow()
void testGetValuesInterpolation()
Interpolation test.
void testGetValuesConstructor()
tests constructor and print method
CASE("test_linearmodelparameterswrapper_valid_name")