MTK SDDE ArgumentError when Connecting two Components
Julia Programming Language
MTK SDDE ArgumentError when Connecting two Components
Hi, I am trying to connect two MTK components and then solve the resulting SDDE system. However, I am getting an ArgumentsError that I don’t understand. using ModelingToolkit using DifferentialEquations using ModelingToolkit: t_nounits as t, D_nounits as D using StochasticDiffEq @component function StochasticLV(;name) @variables x(t) = 0.9 y(t) = 0.9 @parameters begin α = 2/3 β = 4/3 γ = 1 δ = 1 end @brownians η eqs = [ D(x) ~ α * x ...
0 comments
No comments yet.