dafred94
dafred94
> @cgrudz, just `dev JuliaInterpreter` and make this change: > > ```diff > $ git diff > diff --git a/src/commands.jl b/src/commands.jl > index a2d8a44..a033374 100644 > --- a/src/commands.jl > +++...
> Also, differentiating LU should be totally unnecessary. We can/will get around to adding dual overloads to linear solve. We like this idea! Any news on this? Or should we...
1. Can't see changes with `allow_symbolic=false`. 2. I just built the same system in Modelica and simulated it using Dymola. The simple case with `trans₊ry != trans₊rx` of course runs...
1. `allow_parameter` - `true` ``` > states(sys) 6-element Vector{Any}: trans₊r0y(t) trans₊r0yˍt(t) body₊w(t) body₊phi(t) body₊fa₊oyˍtt(t) trans₊r0xˍtt(t) ``` - `false` ``` > states(sys) 6-element Vector{Any}: trans₊r0y(t) trans₊r0yˍt(t) body₊w(t) body₊phi(t) body₊fa₊oyˍtt(t) body₊phiˍtt(t) ```...
So I created a minimal but complete demonstration: ``` using TinyModia function simandprint!(model) simulate!(model) println(" m = $(model.p[1]) x starts at $(get_result(model, "x")[1]) and ends at $(get_result(model, "x")[end]) ") end...
You are right about your first remark (where I mixed up `p` and `pv`), this was a remainder of an earlier refactoring. However, if I try to uncomment `#der(x) =...