Sascha Timme

Results 58 comments of Sascha Timme

Double precision floating point range is only up to around 10^308. So even just squaring a coordinate in your case would result in an overflow (`inf`). Can you rescale your...

The problem is that the Jacobian of your system at the given solution and `u_` does not have full rank ```julia julia> svdvals(jacobian(F, pt, u_)) 20-element Vector{Float64}: 51.9256162568611 25.6244168604164 14.839201646797381...

I think the approach would still be the same, i.e., you "just" need to evaluate the nonlinear system defined with ModelingToolkit at `(hc_vars, hc_params)`. I would expect that MT has...

Yes, some sort of special handling for determinants would be really nice but it is definitely not trivial to integrate it into our symbolics pipeline. Right now every symbolic function...

Using Symbolics.jl would allow some niceties like evaluating arbitrary Julia types with the symbolic engine (with symengine we can only do the symengine supported ones). Also based on Symbolics.jl /...

I took a stab at converting this to the JS API over at my fork: https://github.com/saschatimme/julia-format This is not a one to one conversion from the existing implementation. Instead this...

Ok, let me try to come up with your suggested version. One question though, do you want to keep the `args` field and the `bin` version or should we rather...

Maybe this is an orthogonal discussion to the switch to the JS api but I think there should be an official configuration file. See for example the prettier docs https://prettier.io/docs/en/configuration.html...

I am busy this week, but I hope to get a version working during the weekend. However, if you want to try this before feel free to just take my...

Thank you for your awesome input @JeffreySarnoff !!! Another thing to consider would be the support of rounding modes since we then could support `IntervalsArithmetic.jl`. But I am not sure...