Skip to content

Commit d52a724

Browse files
committed
Fix for failing fci tests. Need to use Coordinates::DDY() not bout::derivatives::index::DDY()
as the former checks canToFromFieldAligned().
1 parent fd099bf commit d52a724

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mesh/coordinates.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ void Coordinates::correctionForNonUniformMeshes(bool force_interpolate_from_cent
857857
if (localmesh->get(d2y, "d2y" + suffix, 0.0, false, location) != 0) {
858858
output_warn.write("\tWARNING: differencing quantity 'd2y' not found. "
859859
"Calculating from dy\n");
860-
d1_dy_ = bout::derivatives::index::DDY(1. / dy()); // d/di(1/dy)
860+
d1_dy_ = DDY(1. / dy()); // d/di(1/dy)
861861

862862
communicate(d1_dy_);
863863
d1_dy_ =

0 commit comments

Comments
 (0)