Skip to content

Commit 34a8c8e

Browse files
test: test initial values dependent on constants
1 parent 486ae04 commit 34a8c8e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

test/constants.jl

+13
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,16 @@ eqs = [D(x) ~ β]
3737
simp = structural_simplify(sys)
3838

3939
@test isempty(MT.collect_constants(nothing))
40+
41+
@testset "Issue#3044" begin
42+
@constants h = 1
43+
@parameters τ = 0.5 * h
44+
@variables x(t) = h
45+
eqs = [D(x) ~ (h - x) / τ]
46+
47+
@mtkbuild fol_model = ODESystem(eqs, t)
48+
49+
prob = ODEProblem(fol_model, [], (0.0, 10.0))
50+
@test prob[x] 1
51+
@test prob.ps[τ] 0.5
52+
end

0 commit comments

Comments
 (0)