-
|
First off, thanks so much for this package. Really easy to get started with. Right now, I am trying to create a |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
Thanks for your interest in this package! Indeed currently there's no easy way of imposing different boundary conditions on each side. This is something that I've been wanting to do (shouldn't be very difficult). I'll try to take a look at this soon. |
Beta Was this translation helpful? Give feedback.
-
|
It should be now possible on v0.16 :) See also #70. You can now create a recombined basis like this: B = BSplineBasis(...)
R = RecombinedBSplineBasis(B, Derivative(0), Derivative(1))where Let me know if you find any issues! |
Beta Was this translation helpful? Give feedback.
It should be now possible on v0.16 :) See also #70.
You can now create a recombined basis like this:
where
Derivative(0)means imposing Dirichlet conditions on the left, andDerivative(1)corresponds to Neumann on the right.Let me know if you find any issues!