File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,8 @@ struct FunctionSpaceFixtures {
116116struct FieldSpecFixtures {
117117 static const Config& get (const std::string& fixture) {
118118 static const auto fieldSpecs = std::map<std::string_view, Config>{
119+ {" scalar" , option::name (" test field" ) | option::variables (1 ) |
120+ option::type (" scalar" )},
119121 {" 2vector" , option::name (" test field" ) | option::variables (2 ) |
120122 option::type (" vector" )},
121123 {" 3vector" , option::name (" test field" ) | option::variables (3 ) |
@@ -308,6 +310,17 @@ void testInterpolation(const Config& config) {
308310 }
309311}
310312
313+ CASE (" cubed sphere CS-LFR-48 scalar interpolation (3d-field, scalar)" ) {
314+ const auto config =
315+ Config (" source_fixture" , " cubedsphere_mesh" )
316+ .set (" target_fixture" , " gaussian_mesh" )
317+ .set (" field_spec_fixture" , " scalar" )
318+ .set (" interp_fixture" , " cubedsphere_bilinear_spherical" )
319+ .set (" file_id" , " spherical_vector_cs2" )
320+ .set (" tol" , 0.00018 );
321+
322+ testInterpolation<Rank3dField>((config));
323+ }
311324
312325CASE (" cubed sphere CS-LFR-48 vector interpolation (3d-field, 2-vector)" ) {
313326 const auto config =
You can’t perform that action at this time.
0 commit comments