Replies: 1 comment 3 replies
-
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, is the DeepXDE scale-dependent? I tried to use DeepXDE for a simple 1-D forward problem like this one dy^2/dx^2 = 0. I found that for a small domain [0, 1] DeepXDE gives good results without using data inside the domain from the reference solution. But, it did not predict a good result with larger domain [0, 5], [0, 10], or [0, 100]. Even for the 1-D domain [0, 100], deepXDE could not predict good result with 500 data from the reference solution. Following are simulations of some cases to make you understand my problem.
I also would like to know, can we use the installed DeepXDE package for domain discretization? So far, my understanding is that the user can only give geometry input and DeepXDE discretize the domain based on boundary values in input data from the reference solution.
Case-1:
Domain = [0, 1]
data = dde.data.PDE(geom, pde, bc, 0, 2, solution=func, num_test= 100)
Case-2:
Domain = [0, 5]
data = dde.data.PDE(geom, pde, bc, 0, 2, solution=func, num_test= 100)
Case-3:
Domain = [0, 5]
data = dde.data.PDE(geom, pde, bc, 5, 2, solution=func, num_test= 100)
Case-4:
Domain = [0, 100]
data = dde.data.PDE(geom, pde, bc, 0, 2, solution=func, num_test= 100)
Case-5:
Domain = [0, 100]
data = dde.data.PDE(geom, pde, bc, 500, 2, solution=func, num_test= 100)
Beta Was this translation helpful? Give feedback.
All reactions