Skip to content

Commit 81fd461

Browse files
committed
Clarify message
1 parent 11d0c17 commit 81fd461

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/mesh/interpolation/bilinear_xz.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ XZBilinear::XZBilinear(int y_offset, Mesh* mesh)
3232
w3(localmesh) {
3333

3434
if (localmesh->getNXPE() > 1) {
35-
throw BoutException("Do not support MPI splitting in X");
35+
throw BoutException("XZBilinear interpolation does not support MPI splitting in X");
3636
}
3737

3838
// Index arrays contain guard cells in order to get subscripts right

src/mesh/interpolation/lagrange_4pt_xz.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ XZLagrange4pt::XZLagrange4pt(int y_offset, Mesh* mesh)
3030
: XZInterpolation(y_offset, mesh), t_x(localmesh), t_z(localmesh) {
3131

3232
if (localmesh->getNXPE() > 1) {
33-
throw BoutException("Do not support MPI splitting in X");
33+
throw BoutException("XZLagrange4pt interpolation does not support MPI splitting in X");
3434
}
3535

3636
// Index arrays contain guard cells in order to get subscripts right

0 commit comments

Comments
 (0)