-
-
Notifications
You must be signed in to change notification settings - Fork 74
Cannot perform linear solves with DiffEqOperatorCombination #391
Comments
@ChrisRackauckas Here's one of the issues I mentioned in our call today |
This is probably best replaced with MethodOfLines.jl |
There is a strange dispatch bug here. Changing:
to:
fixes this. |
@sjkelly I don't believe the |
Woops, yes, you are correct. Something didn't seem right about that! |
Yes this is a known issue, nobody was able to fix this back when ghost derivs were being implemented and I only noticed recently that they just deleted the test. Again, best practice these days is to use MethodOfLines |
Yes, this is rather difficult to solve in the DiffEqOperators.jl form and is one of the reasons why the library was deprecated in favor of MethodOfLines.jl. |
I'm trying to solve an elliptic differential equation that has multiple derivative terms and wanted to use
DiffEqOperators.jl
to build the matrices. It does not seem possible to sumDiffEqOperator
s and then solve using backslash? When I try this, I get an error:with output
For some futher discussion, please see https://discourse.julialang.org/t/solving-linear-system-with-summed-diffeqoperators/60998
The text was updated successfully, but these errors were encountered: