aboutsummaryrefslogtreecommitdiff
path: root/src/Interpolate.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Interpolate.c')
-rw-r--r--src/Interpolate.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/Interpolate.c b/src/Interpolate.c
index 51ac0c5..4e27699 100644
--- a/src/Interpolate.c
+++ b/src/Interpolate.c
@@ -432,7 +432,10 @@ if (n == LocalInterp_verbose_debug_n)
"or inside but too close to a grid boundary)\n"
" for interpolation order %d\n"
" at interpolation point %d with x = (%f)\n"
- " and grid min/max = (%f/%f)\n",
+ " and grid min/max = (%f/%f)\n"
+ "(this may be caused by a global interpolation with\n"
+ " driver::ghost_size too small)\n"
+ ,
order, n,
(double) coord[0][n],
(double) origin[0], (double) (origin[0] + (dims[0]-1)*delta[0]));
@@ -445,7 +448,10 @@ if (n == LocalInterp_verbose_debug_n)
"or inside but too close to a grid boundary)\n"
" for interpolation order %d\n"
" at interpolation point %d with xy = (%f, %f)\n"
- " and grid min/max = (%f/%f, %f/%f)\n",
+ " and grid min/max = (%f/%f, %f/%f)\n"
+ "(this may be caused by a global interpolation with\n"
+ " driver::ghost_size too small)\n"
+ ,
order, n,
(double) coord[0][n], (double) coord[1][n],
(double) origin[0], (double) (origin[0] + (dims[0]-1)*delta[0]),
@@ -459,7 +465,10 @@ if (n == LocalInterp_verbose_debug_n)
"or inside but too close to a grid boundary)\n"
" for interpolation order %d\n"
" at interpolation point %d with xyz = (%f, %f, %f)\n"
- " and grid min/max = (%f/%f, %f/%f, %f/%f)\n",
+ " and grid min/max = (%f/%f, %f/%f, %f/%f)\n"
+ "(this may be caused by a global interpolation with\n"
+ " driver::ghost_size too small)\n"
+ ,
order, n,
(double) coord[0][n], (double) coord[1][n], (double) coord[2][n],
(double) origin[0], (double) (origin[0] + (dims[0]-1)*delta[0]),