Closed Sush1090 closed 1 week ago
I found a working solution.
function sto(;name)
para = @parameters begin
σ=10.0
ρ=28
β=8/3
end
vars = @variables begin
x(t)
y(t)
z(t)
end
@brownian B
eqs = [D(x) ~ σ * (y - x) + B,
D(y) ~ x * (ρ - z) - y ,
D(z) ~ x * y - β * z ]
System(eqs,t,vars,para;name)
end
This already existed
Is your feature request related to a problem? Please describe.
I like to make my "acausal" components using the following format
This works very well for
ODESystems
I would like to know if I can have the same possibility of doing the same withSDESystem
Describe the solution you’d like So it should look something like this:The current example of
SDESystem
works well as described in here but uses@mtkbuild
which does not allow me to make my function. Describe alternatives you’ve considered The example in the tutorial is the only alternative I know but the "low-level" interface allows for more flexibility as I have mentioned in the example ofODESystem
andSDESystem
.Additional context