You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to create a SDAE system with @mtkbuild and a list of equations, using a variable declared with the brownian macro in one of the algebraic equations.
Expected behavior
I would expect this example to be simplified to a single (constant at zero) differential equation with a noise equation constant at sigma. Instead, the noise equation is constant at zero.
Minimal Reproducible Example 👇
using ModelingToolkit
using ModelingToolkit: D_nounits as D, t_nounits as t
@variablesα(t) β(t)
@parameters σ
@brownian W
eqs = [
D(α) ~ β,
β ~ σ * W
]
@mtkbuild sys =System(eqs, t)
ModelingToolkit.get_noiseeqs(sys)
Error & Stacktrace ⚠️
1-element Vector{Num}:0
Environment (please complete the following information):
Output of using Pkg; Pkg.status()
Status `C:\Sandbox\BugReport\Project.toml`
[961ee093] ModelingToolkit v9.68.1
Output of using Pkg; Pkg.status(; mode = PKGMODE_MANIFEST)
Julia Version 1.11.3
Commit d63adeda50 (2025-01-2119:42 UTC)
Build Info:
Official https://julialang.org/ release
Platform Info:
OS: Windows (x86_64-w64-mingw32)
CPU:8×11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz
WORD_SIZE:64
LLVM: libLLVM-16.0.6 (ORCJIT, tigerlake)
Threads:1 default, 0 interactive, 1 GC (on 8 virtual cores)
Environment:
JULIA_EDITOR = code
JULIA_NUM_THREADS =
Additional context
I'm trying to parse system structure diagrams from another library into systems of DAEs, SDAEs, and RDAEs using Modeling Toolkit. The mtkbuild syntax with a list of equations seems like a natural fit, but I'd love to know if what I'm doing is outside of the intended/supported use of mtkbuild or of MTK more generally. Thank you for all of the work you all put into these tools!
The text was updated successfully, but these errors were encountered:
Describe the bug 🐞
I'm trying to create a SDAE system with @mtkbuild and a list of equations, using a variable declared with the brownian macro in one of the algebraic equations.
Expected behavior
I would expect this example to be simplified to a single (constant at zero) differential equation with a noise equation constant at sigma. Instead, the noise equation is constant at zero.
Minimal Reproducible Example 👇
Error & Stacktrace⚠️
Environment (please complete the following information):
using Pkg; Pkg.status()
using Pkg; Pkg.status(; mode = PKGMODE_MANIFEST)
versioninfo()
Additional context
I'm trying to parse system structure diagrams from another library into systems of DAEs, SDAEs, and RDAEs using Modeling Toolkit. The mtkbuild syntax with a list of equations seems like a natural fit, but I'd love to know if what I'm doing is outside of the intended/supported use of mtkbuild or of MTK more generally. Thank you for all of the work you all put into these tools!
The text was updated successfully, but these errors were encountered: