Christopher Tessum

Results 31 issues of Christopher Tessum

When following this [SINDy example](https://docs.sciml.ai/DataDrivenDiffEq/stable/libs/datadrivensparse/examples/example_02/), a logical final step would be to run a simulation with the discovered system of equations to inspect the result that it gives. One of...

documentation

Hello! I'm trying to debug an issue where I have a PDE system that takes a very long time for `solve` to run at a low point count (equivalent to...

Hello, As suggested in #311, I am experimenting with using the JuliaSimCompiler to allow the use of simulations with larger point counts. I am working with a system similar to...

Hello, The code below is a version of the [Brusselator example](https://docs.sciml.ai/MethodOfLines/stable/tutorials/brusselator/), modified only by changing alpha from a numeric value to a @parameter: ``` julia using ModelingToolkit, MethodOfLines, OrdinaryDiffEq, DomainSets...

Hello, Here is a small example with units: ``` julia using ModelingToolkit, MethodOfLines, OrdinaryDiffEq, DomainSets using Unitful function ModelingToolkit.get_unit(a::Pair{Num, Float64}) ModelingToolkit.get_unit(a[1]) end @parameters x [unit=u"m"] @parameters t [unit=u"s"] @variables u(..)...

Hello, I'm using Proj in some code where I'm trying to avoid allocations and dynamic dispatches for performance. To assist with this, I'm using the [AllocCheck.jl](https://github.com/JuliaLang/AllocCheck.jl) packages, which finds allocations...

**Is your feature request related to a problem? Please describe.** The problem is described here: https://discourse.julialang.org/t/how-to-use-scimloperators-jl-with-autograd-in-differentialequations-jl/117731 **Describe the solution you’d like** I would like to be able to use SciMLOperators...

[This issue](https://github.com/JuliaGeo/Proj.jl/issues/104) contains an MWE reporting a possible dynamic dispatch occuring in a @ccall function in the package Proj.jl. However, upon investigation using other methods, it was determined that there...

**Describe the bug 🐞** I have a project that involves data loaders, basically reading large amounts of data from files and interpolating them into MTK models, for example here: https://data.earthsci.dev/stable/geosfp/....

bug