issues with my first testcase #1375
-
|
Dear deepxde users, the space-time domain : geom = dde.geometry.Interval(0, L) and the BCs and IC (Dirichlet on the right side of the domain L and Neumann and Robin on the left side for h & R ) So far so good, but as I try to use Time PDE :
I get the following error message that I'm not able to solve : ` Could anyone help me ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Hi all,
with
and doing the same for the other BC, the aforementioned error disappears. I recall the defintion of boundary_r (which seems to be responsible for the bug):
Could anyone provide some help ? |
Beta Was this translation helpful? Give feedback.
-
|
In my opinion, since you have defined the boundary function |
Beta Was this translation helpful? Give feedback.
In my opinion, since you have defined the boundary function
boundary_landboundary_r, so you don't need to write the lambda expression. You can directly write it in the following form:BC_h_right = dde.icbc.DirichletBC( geomtime, lambda X: 0, boundary_r, component=0 )