NDSolve::bcnop
NDSolveValue::bcnop
ParametricNDSolve::bcnop
ParametricNDSolveValue::bcnop
NDEigensystem::bcnop
NDEigenvalues::bcnop
The region is given with a bound of
. One DirichletCondition, however, has a predicate at
that is not on the boundary of the region:
NDSolve[{Laplacian[u[x, y], {x, y}] == 1, DirichletCondition[u[x, y] == 0, x == -1], DirichletCondition[u[x, y] == 0, y == 0]}, u, {x, y}∈Rectangle[{0, 0}, {1, 1}]]The DirichletCondition needs to be on the boundary of the region:
NDSolve[{Laplacian[u[x, y], {x, y}] == 1, DirichletCondition[u[x, y] == 0, x == 1], DirichletCondition[u[x, y] == 0, y == 0]}, u, {x, y}∈Rectangle[{0, 0}, {1, 1}]]