You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Firstly I want to thanks to you guys for making great library for solving PDE with NN. Now I'm going on project for solving PDE with NN too and interested to used your library and on practicing using it. But, I have an issue when try to solve Poisson eq with 4 different bc. For the example I practiced to solve this eq:
I can't find the correct solution to solving this PDE. I realized that there was a mistake when writing the code.
But I can't find any correction in your documentation. Could you please help me how to write the correct code for this kind of PDE? Thank you very much.
pde = {
'n_dims': 2,
'form': lambda u, x, y: D(D(u, x), x) + D(D(u, y), y) - 4,
'boundary_condition': ......... <------- (how to write those BC mentioned above to here?)
}
The text was updated successfully, but these errors were encountered:
Hi,
@roman-kh @akoryagin @SergeyTsimfer @dpodvyaznikov
Firstly I want to thanks to you guys for making great library for solving PDE with NN. Now I'm going on project for solving PDE with NN too and interested to used your library and on practicing using it. But, I have an issue when try to solve Poisson eq with 4 different bc. For the example I practiced to solve this eq:
with BC:
I can't find the correct solution to solving this PDE. I realized that there was a mistake when writing the code.
But I can't find any correction in your documentation. Could you please help me how to write the correct code for this kind of PDE? Thank you very much.
The text was updated successfully, but these errors were encountered: