aboutsummaryrefslogtreecommitdiff
path: root/mg2d_boundary.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2019-02-08 08:48:28 +0100
committerAnton Khirnov <anton@khirnov.net>2019-02-08 08:49:44 +0100
commitf1d308e6c7a394256d8ede2979c80d57e3868efa (patch)
tree27560a6c431ddc3c03e81ddc1cac92d3b4e18846 /mg2d_boundary.h
parent1e3d13b0f885479fca1e02bf4fdbdba219dc0578 (diff)
Rename fixdiff boundary condition to reflect.
This is what it actually does, we do not support setting arbitrary derivative values. API bump.
Diffstat (limited to 'mg2d_boundary.h')
-rw-r--r--mg2d_boundary.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/mg2d_boundary.h b/mg2d_boundary.h
index 12c897f..910249f 100644
--- a/mg2d_boundary.h
+++ b/mg2d_boundary.h
@@ -32,12 +32,9 @@ enum MG2DBCType {
*/
MG2D_BC_TYPE_FIXVAL,
/**
- * The normal derivative of the unkown function is fixed on the boundary.
- *
- * TODO: the only supported value of the derivative is currently zero, i.e.
- * periodic boundary conditions.
+ * The unknown function is mirrored across the boundary
*/
- MG2D_BC_TYPE_FIXDIFF,
+ MG2D_BC_TYPE_REFLECT,
};
/**