How to realize the Robin Boundary condition on pde #756
jsfeng-fudan
started this conversation in
General
Replies: 2 comments
|
sorry, Robin boundary condition reads : |
0 replies
|
As this problem only involves MFEM data structures, I suggest posting in their repository: https://github.com/mfem/mfem/ |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I have one 1d ode :

-y' ' = 3 in domain x in [0,1], with the boundary
y'[0]-y[0] = -1 and y'[0]+y[0] = +1;
I tried to solve this problem using mfem library. but I can not arrive at correct solution.
The correct solution is
my solution is

I post my code for enforce the Robin boundary ..
All reactions