Torkel Loman

Results 439 comments of Torkel Loman

I.e. trying ```julia using ModelingToolkit import ModelingToolkit.t_nounits as t import ModelingToolkit.D_nounits as D @variables X(t) Y(t) Z(t) @parameters p1 d η eq1 = D(X) ~ p1 eq2 = D(Y) ~...

I still think there is an advantage with isolating the actual call part, rather than creating a `ODEProblem` and then making calls to `remake` whenever one wants to try a...

Thanks. Yeah, I wrote `like one line of call per call` because I figured it would only be one line, but wasn't 100% sure that was the case, and you...

Previously, basically all these cases has to be hard-coded, almost case by case. Is any united internal interface for `setfield!` and `getfield` planned/in the works? That would make it more...

Could we keep teh symbol interfaces, e.g. `sol[:x]`. Removing that is going to permanently break Catalyst.

Maybe we can discuss in person next time we meet to see if we can expand to allow `:x` usage? I can see some obscure cases where it might not...

Ideally I would like Symbols to work for non-hierarchial systems (and throw an error if they are not, I think that is how it works currently)

Got it, didn' realise `FunctionMap` was outside JumpProcessess (not that I realized that `FunctionMap` was the issue either. I could use raise this at DiffEq instead.

If you are happy with it I am happy, just figured I should bring it up when I encounter it.