Jonnie Diegelman

Results 33 issues of Jonnie Diegelman

I am finally getting around to #30. In doing so I noticed: ```julia julia> x = (1, 2.0, fixed(3.0)) (1, 2.0, ParameterHandling.Fixed{Float64}(3.0)) julia> v, unflatten = flatten(x); julia> unflatten(v) (1,...

One of the biggest problems I have when handling parameters (whether I'm using ComponentArrays, Functors, ParameterHandling, etc.) is that I often only want to optimize (or do some other analysis)...

Based on [this](https://discourse.julialang.org/t/solving-symbolic-equations/57978/6) here's a first crack at how to handle Lagrangian systems. ```julia using Symbolics, ModelingToolkit, DifferentialEquations ∂_∂(x) = y -> expand_derivatives(Differential(x)(y)) function LagrangianSystem(L, q̇, q, p, t; Q...