Alex Jones

Results 176 comments of Alex Jones
trafficstars

I got sidetracked, this is the issue you are looking for, especially the examples on tools given in the 3rd paragraph https://github.com/SciML/PDEBase.jl/issues/8

I have seen this one recently, I will look closer soon

I see the problem, you need to supply bcs for any of your observables that contain derivatives else they are not well specified. This needs a better error though.

You can try scalarizing yourself before solving, we try to do this internally to make systems compatible. please be aware that ODEFunction is intended to be internal for MOL, you...

I think that the `Dx((ṁ(t,x))^2` is causing problems with the rule application, what error are you getting? Please post full output including warnings and stacktrace. > Question: Is there a...

Ok this is a bug, sorry about this. I will investigate closer soon.

You are getting a common MTK Error, but I'm not certain you can solve this system with MOL. You can use values at a boundary in equations, but unfortunately not...

Hey, rebase and this should pass - thanks!

Yep, that's the way right now, we might do it automatically in the future though. I think this does it: ```julia using Logging: global_logger using TerminalLoggers: TerminalLogger global_logger(TerminalLogger()) using OrdinaryDiffEq,...

You need to add bcs for \omega > e.g. Dx(u(xmin, y, t)) ~ 0 is allowed while Dx(u(xmin, y, t)) ~ 0 is not. these read identical to me and...