Alex Jones
Alex Jones
Feature Request: allow references to integrator `dt` in `ODESystem`, automatically generate callback
As in the title, I'm faced with a problem implementing flux limiters in MethodOfLines where I need to apply a callback `step_limiter!(uarr, integrator, p, t)` to handle situations where the...
This change reflects something that is done internally in MethodOfLines.jl, which may have more general applicability. Gets all dvs and ivs in their naked Symbolics.jl type, which is more useful...
I've created an omf theme which I call [Runic](https://github.com/xtalax/runic), with merged ideas from Agnoster and Lambda, containing all features of both. On the `wal` branch it features automatic color settings...
### Summary Dragging a Chrome tab out in to a new window has expected behaviour (50/50 split tiling) initially, but upon letting go the original window returns to its original...
### Summary I find that often that windows do not resize correctly in response to windows being moved to another workspace or closed, or sometimes that newly opened windows do...
The following: ```julia using Symbolics, ModelingToolkit @parameters t, x, y @variables u(..) udisc[1:11, 1:11](t) Dt = Differential(t) Dxx = Differential(t) Dyy = Differential(t) Igrid = CartesianIndices((1:11, 1:11)) interior = Igrid[2:end-1,...
I have been trying to use Optimization.jl with Optim.jl to perform global optimization with `ParticleSwarm()`, with MethodOfLines.jl generating the data for the loss, and running the forward problem. I have...
I have been trying to use Optimization.jl with Optim.jl to perform global optimization with `ParticleSwarm()`, with MethodOfLines.jl generating the data for the loss, and running the forward problem. I have...
# Roadmap for Vector Derivative Operators Continuing from #146 A checklist on how to allow Vector calculus operations on `u::AbstractArray{AbstractArray{T,M}, N}`, useful in a lot of physics applications and likely...
I've thinking about the possibility of extending this package to be able to perform Vector/Tensor calculus operations. A suitable discretization of a vector field is an `Array{SVector{N, T},N}`. The most...