File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -474,6 +474,7 @@ void RBParametrizedFunction::preevaluate_parametrized_function_on_mesh(const RBP
474
474
counter ++ ;
475
475
}
476
476
}
477
+ libmesh_error_msg_if (counter == 0 , "Parametrized function on mesh has no values" );
477
478
478
479
std ::vector < RBParameters > mus {mu };
479
480
vectorized_evaluate (mus ,
@@ -629,6 +630,7 @@ void RBParametrizedFunction::preevaluate_parametrized_function_on_mesh_sides(con
629
630
else
630
631
libmesh_error_msg ("Unrecognized side_type: " << side_type );
631
632
}
633
+ libmesh_error_msg_if (counter == 0 , "Parametrized function on mesh sides has no values" );
632
634
633
635
std ::vector < RBParameters > mus {mu };
634
636
side_vectorized_evaluate (mus ,
@@ -674,6 +676,7 @@ void RBParametrizedFunction::preevaluate_parametrized_function_on_mesh_nodes(con
674
676
675
677
counter ++ ;
676
678
}
679
+ libmesh_error_msg_if (counter == 0 , "Parametrized function on mesh nodes has no values" );
677
680
678
681
std ::vector < RBParameters > mus {mu };
679
682
node_vectorized_evaluate (mus ,
You can’t perform that action at this time.
0 commit comments