Anshul Singhvi
Anshul Singhvi
Given a `System` `sys`, you can obtain a serializable problem expression via: ```julia import ModelingToolkit as MTK # sys = ... prob_expr = MTK.ODEProblem{true, MTK.SciMLBase.FullSpecialize}(sys2, [], (0.0, 3000.0); expression =...
This is a good one for claude In https://docs.sciml.ai/ModelingToolkit/dev/tutorials/SampledData/ the mathematical representation is not rendering in the browser. Here's the mwe that created it: ```julia using ModelingToolkit, Plots, OrdinaryDiffEq using...
Our usecase is that we have a tool that generates Julia files (the Dyad compiler) into a `YourPackage.jl/generated` folder, whose contents get `include`d into `src/YourPackage.jl`. The Dyad compiler changes a...
**Is your feature request related to a problem? Please describe.** I'm always frustrated when precompiling ModelingToolkit. A couple of sublibraries like OptimizationMOI have MTK as a direct dependency, which adds...
This is on Julia v1.11.7, the error message asked me to file an issue so here it is 🤷 ```julia ┌ Tokenize │ ┌ Error: JuliaSyntax parser failed — falling...
There are some cases in which it would be nice to have the abstractions of coordinate transformations without the overhead of StaticArrays and LinearAlgebra. I could refactor to create a...
LinearRingTrait -> LineString in convert, so at least converting any polygon will work Line convert method added as well
Implements GeoInterface.coordtype for GeometryBasics types. Returns type parameter T. 🤖 Generated with [Claude Code](https://claude.ai/code)
This means that you can not plot any linear rings. Seems like we should have that just target LineString which seems to work, although is a bit lossy.