11 #ifndef TEST_INTERFACE_MODELAUXINCREMENT_H_
12 #define TEST_INTERFACE_MODELAUXINCREMENT_H_
20 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
22 #include <boost/noncopyable.hpp>
24 #include "eckit/config/LocalConfiguration.h"
25 #include "eckit/testing/Test.h"
32 #include "oops/util/DateTime.h"
33 #include "oops/util/dot_product.h"
54 return theModelAuxIncrementFixture;
67 ~ModelAuxIncrementFixture<MODEL>() {}
69 std::unique_ptr<const eckit::LocalConfiguration>
conf_;
70 std::unique_ptr<const Geometry_>
resol_;
71 std::unique_ptr<const Covariance_>
covar_;
80 AuxIncr_ dx(Test_::resol(), Test_::config());
81 oops::Log::test() <<
"Testing ModelAuxIncrement: " << dx << std::endl;
82 EXPECT(dx.norm() == 0.0);
91 AuxIncr_ dx1(Test_::resol(), Test_::config());
95 EXPECT(dx2.norm() > 0.0);
96 EXPECT(dx2.norm() == dx1.norm());
100 EXPECT(dx2.norm() == 0.0);
109 AuxIncr_ dx1(Test_::resol(), Test_::config());
112 AuxIncr_ dx2(dx1, Test_::config());
113 EXPECT(dx2.norm() > 0.0);
114 EXPECT(dx2.norm() == dx1.norm());
118 EXPECT(dx2.norm() == 0.0);
127 AuxIncr_ dx1(Test_::resol(), Test_::config());
129 AuxIncr_ dx2(Test_::resol(), Test_::config());
133 double dot1 = dx1.norm();
136 double dot2 = dx2.norm();
140 double dot3 = dx2.norm();
143 EXPECT(dot3 <= dot1 + dot2);
152 AuxIncr_ dx1(Test_::resol(), Test_::config());
161 EXPECT(dx2.norm() < 1e-8);
170 AuxIncr_ dx1(Test_::resol(), Test_::config());
172 AuxIncr_ dx2(Test_::resol(), Test_::config());
176 double zz1 = dot_product(dx1, dx2);
177 double zz2 = dot_product(dx2, dx1);
188 AuxIncr_ dx(Test_::resol(), Test_::config());
190 EXPECT(dx.norm() > 0.0);
194 EXPECT(dx.norm() == 0.0);
203 AuxIncr_ dx1(Test_::resol(), Test_::config());
214 EXPECT(dx2.norm() < 1e-8);
225 std::string
testid()
const override {
return "test::ModelAuxIncrement<" + MODEL::name() +
">";}
228 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
229 ts.emplace_back(
CASE(
"interface/ModelAuxIncrement/testModelAuxIncrementConstructor")
230 { testModelAuxIncrementConstructor<MODEL>(); });
231 ts.emplace_back(
CASE(
"interface/ModelAuxIncrement/testModelAuxIncrementCopyConstructor")
232 { testModelAuxIncrementCopyConstructor<MODEL>(); });
233 ts.emplace_back(
CASE(
"interface/ModelAuxIncrement/testModelAuxIncrementChangeRes")
234 { testModelAuxIncrementChangeRes<MODEL>(); });
235 ts.emplace_back(
CASE(
"interface/ModelAuxIncrement/testModelAuxIncrementTriangle")
236 { testModelAuxIncrementTriangle<MODEL>(); });
237 ts.emplace_back(
CASE(
"interface/ModelAuxIncrement/testModelAuxIncrementOpPlusEq")
238 { testModelAuxIncrementOpPlusEq<MODEL>(); });
239 ts.emplace_back(
CASE(
"interface/ModelAuxIncrement/testModelAuxIncrementDotProduct")
240 { testModelAuxIncrementDotProduct<MODEL>(); });
241 ts.emplace_back(
CASE(
"interface/ModelAuxIncrement/testModelAuxIncrementAxpy")
242 { testModelAuxIncrementAxpy<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.
Auxiliary Error Covariance related to model, not used at the moment.
void randomize(ModelAuxIncrement_ &) const
randomize the values in the ModelAuxIncrement
Auxiliary Increment related to model, not used at the moment.
std::unique_ptr< const Geometry_ > resol_
std::unique_ptr< const eckit::LocalConfiguration > conf_
oops::Geometry< MODEL > Geometry_
std::unique_ptr< const Covariance_ > covar_
static const Geometry_ & resol()
static ModelAuxIncrementFixture< MODEL > & getInstance()
oops::ModelAuxIncrement< MODEL > AuxIncr_
oops::ModelAuxCovariance< MODEL > Covariance_
static const eckit::Configuration & config()
static const Covariance_ & covariance()
oops::ModelAuxControl< MODEL > ModelAux_
virtual ~ModelAuxIncrement()
void register_tests() const override
void clear() const override
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 testModelAuxIncrementAxpy()
void testModelAuxIncrementZero()
void testModelAuxIncrementChangeRes()
void testModelAuxIncrementCopyConstructor()
void testModelAuxIncrementConstructor()
tests constructor and print method
void testModelAuxIncrementOpPlusEq()
void testModelAuxIncrementTriangle()
void testModelAuxIncrementDotProduct()
CASE("test_linearmodelparameterswrapper_valid_name")