-
-
Notifications
You must be signed in to change notification settings - Fork 233
DE Transformation (Change of Variables) #3695
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 13 commits
6b0f03c
24ebd99
e0bb5d2
86411c2
22ab624
8ace5e7
50a4fc3
a1e9944
7b3ea99
e33bcc1
192872c
9a53121
8140b62
c0453f4
166b0f8
0884e59
70a5b39
2d5c9e7
2b32ad4
2b48648
07affe6
7d5e915
5367f60
96609b3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -53,6 +53,124 @@ function liouville_transform(sys::System; kwargs...) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| """ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| $(TYPEDSIGNATURES) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Generates the set of ODEs after change of variables. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Example: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```julia | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| using ModelingToolkit, OrdinaryDiffEq, Test | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| # Change of variables: z = log(x) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| # (this implies that x = exp(z) is automatically non-negative) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| @parameters t α | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| @variables x(t) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| D = Differential(t) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| eqs = [D(x) ~ α*x] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| tspan = (0., 1.) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| u0 = [x => 1.0] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| p = [α => -0.5] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| @named sys = ODESystem(eqs; defaults=u0) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| prob = ODEProblem(sys, [], tspan, p) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| sol = solve(prob, Tsit5()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| @variables z(t) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| forward_subs = [log(x) => z] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| backward_subs = [x => exp(z)] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| @named new_sys = changeofvariables(sys, forward_subs, backward_subs) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| @test equations(new_sys)[1] == (D(z) ~ α) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| new_prob = ODEProblem(new_sys, [], tspan, p) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| new_sol = solve(new_prob, Tsit5()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| @test isapprox(new_sol[x][end], sol[x][end], atol=1e-4) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| """ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| function changeofvariables( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| sys::System, iv, forward_subs, backward_subs; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| simplify=true, t0=missing, isSDE=false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| if !iscomplete(sys) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| sys = mtkcompile(sys) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| t = iv | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| old_vars = first.(backward_subs) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| new_vars = last.(forward_subs) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| # use: f = Y(t, X) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| # use: dY = (∂f/∂t + μ∂f/∂x + (1/2)*σ^2*∂2f/∂x2)dt + σ∂f/∂xdW | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| old_eqs = equations(sys) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| neqs = get_noise_eqs(sys) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| if neqs !== nothing | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| isSDE = true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| neqs = [neqs[i,:] for i in 1:size(neqs,1)] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| brownvars = map([Symbol(:B, :_, i) for i in 1:length(neqs[1])]) do name | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| unwrap(only(@brownian $name)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ChrisRackauckas marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Is = Int[] | |
| Js = Int[] | |
| vals = Num[] | |
| new_eqs = copy(eqs) | |
| dvar2eq = Dict{Any, Int}() | |
| for (v, dv) in enumerate(var_to_diff) | |
| dv === nothing && continue | |
| deqs = 𝑑neighbors(graph, dv) | |
| if length(deqs) != 1 | |
| error("$(eqs[deqs]) is not handled.") | |
| end | |
| dvar2eq[fullvars[dv]] = only(deqs) | |
| end | |
| for (j, bj) in enumerate(brown_vars), i in 𝑑neighbors(graph, bj) | |
| push!(Is, i) | |
| push!(Js, j) | |
| eq = new_eqs[i] | |
| brown = fullvars[bj] | |
| (coeff, residual, islinear) = Symbolics.linear_expansion(eq, brown) | |
| islinear || error("$brown isn't linear in $eq") | |
| new_eqs[i] = 0 ~ residual | |
| push!(vals, coeff) | |
| end | |
| g = Matrix(sparse(Is, Js, vals)) | |
| sys = state.sys | |
| @set! sys.eqs = new_eqs | |
| @set! sys.unknowns = [v | |
| for (i, v) in enumerate(fullvars) | |
| if !iszero(new_idxs[i]) && | |
| invview(var_to_diff)[i] === nothing] | |
| ode_sys = mtkcompile( | |
| sys; simplify, inputs, outputs, disturbance_inputs, kwargs...) | |
| eqs = equations(ode_sys) | |
| sorted_g_rows = zeros(Num, length(eqs), size(g, 2)) | |
| for (i, eq) in enumerate(eqs) | |
| dvar = eq.lhs | |
| # differential equations always precede algebraic equations | |
| _iszero(dvar) && break | |
| g_row = get(dvar2eq, dvar, 0) | |
| iszero(g_row) && error("$dvar isn't handled.") | |
| g_row > size(g, 1) && continue | |
| @views copyto!(sorted_g_rows[i, :], g[g_row, :]) | |
| end | |
| # Fix for https://github.com/SciML/ModelingToolkit.jl/issues/2490 | |
| if sorted_g_rows isa AbstractMatrix && size(sorted_g_rows, 2) == 1 | |
| # If there's only one brownian variable referenced across all the equations, | |
| # we get a Nx1 matrix of noise equations, which is a special case known as scalar noise | |
| noise_eqs = reshape(sorted_g_rows[:, 1], (:, 1)) | |
| is_scalar_noise = true | |
| elseif __num_isdiag_noise(sorted_g_rows) | |
| # If each column of the noise matrix has either 0 or 1 non-zero entry, then this is "diagonal noise". | |
| # In this case, the solver just takes a vector column of equations and it interprets that to | |
| # mean that each noise process is independent | |
| noise_eqs = __get_num_diag_noise(sorted_g_rows) | |
| is_scalar_noise = false | |
| else | |
| noise_eqs = sorted_g_rows | |
| is_scalar_noise = false | |
| end |
ChrisRackauckas marked this conversation as resolved.
Show resolved
Hide resolved
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,142 @@ | ||
| using ModelingToolkit, OrdinaryDiffEq, StochasticDiffEq | ||
| using Test, LinearAlgebra | ||
|
|
||
|
|
||
| # Change of variables: z = log(x) | ||
| # (this implies that x = exp(z) is automatically non-negative) | ||
| @independent_variables t | ||
| @variables z(t)[1:2, 1:2] | ||
| D = Differential(t) | ||
| eqs = [D(D(z)) ~ ones(2, 2)] | ||
| @mtkcompile sys = System(eqs, t) | ||
| @test_nowarn ODEProblem(sys, [z => zeros(2, 2), D(z) => ones(2, 2)], (0.0, 10.0)) | ||
|
|
||
| @parameters α | ||
| @variables x(t) | ||
| D = Differential(t) | ||
| eqs = [D(x) ~ α*x] | ||
|
|
||
| tspan = (0., 1.) | ||
| def = [x => 1.0, α => -0.5] | ||
|
|
||
| @mtkcompile sys = System(eqs, t;defaults=def) | ||
| prob = ODEProblem(sys, [], tspan) | ||
| sol = solve(prob, Tsit5()) | ||
|
|
||
| @variables z(t) | ||
| forward_subs = [log(x) => z] | ||
| backward_subs = [x => exp(z)] | ||
| new_sys = changeofvariables(sys, t, forward_subs, backward_subs) | ||
| @test equations(new_sys)[1] == (D(z) ~ α) | ||
|
|
||
| new_prob = ODEProblem(new_sys, [], tspan) | ||
| new_sol = solve(new_prob, Tsit5()) | ||
|
|
||
| @test isapprox(new_sol[x][end], sol[x][end], atol=1e-4) | ||
|
|
||
|
|
||
|
|
||
| # Riccati equation | ||
| @parameters α | ||
| @variables x(t) | ||
| D = Differential(t) | ||
| eqs = [D(x) ~ t^2 + α - x^2] | ||
| def = [x=>1., α => 1.] | ||
| @mtkcompile sys = System(eqs, t; defaults=def) | ||
|
|
||
| @variables z(t) | ||
| forward_subs = [t + α/(x+t) => z ] | ||
| backward_subs = [ x => α/(z-t) - t] | ||
|
|
||
| new_sys = changeofvariables(sys, t, forward_subs, backward_subs; simplify=true, t0=0.) | ||
| # output should be equivalent to | ||
| # t^2 + α - z^2 + 2 (but this simplification is not found automatically) | ||
|
|
||
| tspan = (0., 1.) | ||
| prob = ODEProblem(sys,[],tspan) | ||
| new_prob = ODEProblem(new_sys,[],tspan) | ||
|
|
||
| sol = solve(prob, Tsit5()) | ||
| new_sol = solve(new_prob, Tsit5()) | ||
|
|
||
| @test isapprox(sol[x][end], new_sol[x][end], rtol=1e-4) | ||
|
|
||
|
|
||
| # Linear transformation to diagonal system | ||
| @independent_variables t | ||
| @variables x(t)[1:3] | ||
| x = reshape(x, 3, 1) | ||
| D = Differential(t) | ||
| A = [0. -1. 0.; -0.5 0.5 0.; 0. 0. -1.] | ||
| right = A*x | ||
| eqs = vec(D.(x) .~ right) | ||
|
|
||
| tspan = (0., 10.) | ||
| u0 = [x[1] => 1.0, x[2] => 2.0, x[3] => -1.0] | ||
|
|
||
| @mtkcompile sys = System(eqs, t; defaults=u0) | ||
| prob = ODEProblem(sys,[],tspan) | ||
| sol = solve(prob, Tsit5()) | ||
|
|
||
| T = eigen(A).vectors | ||
| T_inv = inv(T) | ||
|
|
||
| @variables z(t)[1:3] | ||
| z = reshape(z, 3, 1) | ||
| forward_subs = vec(T_inv*x .=> z) | ||
| backward_subs = vec(x .=> T*z) | ||
|
|
||
| new_sys = changeofvariables(sys, t, forward_subs, backward_subs; simplify=true) | ||
|
|
||
| new_prob = ODEProblem(new_sys, [], tspan) | ||
| new_sol = solve(new_prob, Tsit5()) | ||
|
|
||
| # test RHS | ||
| new_rhs = [eq.rhs for eq in equations(new_sys)] | ||
| new_A = Symbolics.value.(Symbolics.jacobian(new_rhs, z)) | ||
| A = diagm(eigen(A).values) | ||
| A = sortslices(A, dims=1) | ||
| new_A = sortslices(new_A, dims=1) | ||
| @test isapprox(A, new_A, rtol = 1e-10) | ||
| @test isapprox( new_sol[x[1],end], sol[x[1],end], rtol=1e-4) | ||
|
|
||
| # Change of variables for sde | ||
| noise_eqs = ModelingToolkit.get_noise_eqs | ||
| value = ModelingToolkit.value | ||
|
|
||
| @independent_variables t | ||
| @brownian B | ||
| @parameters μ σ | ||
| @variables x(t) y(t) | ||
| D = Differential(t) | ||
| eqs = [D(x) ~ μ*x + σ*x*B] | ||
|
|
||
| def = [x=>0., μ => 2., σ=>1.] | ||
| @mtkcompile sys = System(eqs, t; defaults=def) | ||
| forward_subs = [log(x) => y] | ||
| backward_subs = [x => exp(y)] | ||
| new_sys = changeofvariables(sys, t, forward_subs, backward_subs) | ||
| @test equations(new_sys)[1] == (D(y) ~ μ - 1/2*σ^2) | ||
| @test noise_eqs(new_sys)[1] === value(σ) | ||
|
|
||
| #Multiple Brownian and equations | ||
| @independent_variables t | ||
| @brownian Bx By | ||
ChrisRackauckas marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| @parameters μ σ α | ||
| @variables x(t) y(t) z(t) w(t) u(t) v(t) | ||
| D = Differential(t) | ||
| eqs = [D(x) ~ μ*x + σ*x*Bx, D(y) ~ α*By, D(u) ~ μ*u + σ*u*Bx + α*u*By] | ||
| def = [x=>0., y=> 0., u=>0., μ => 2., σ=>1., α=>3.] | ||
| @mtkcompile sys = System(eqs, t; defaults=def) | ||
| forward_subs = [log(x) => z, y^2 => w, log(u) => v] | ||
| backward_subs = [x => exp(z), y => w^.5, u => exp(v)] | ||
| new_sys = changeofvariables(sys, t, forward_subs, backward_subs) | ||
| @test equations(new_sys)[1] == (D(z) ~ μ - 1/2*σ^2) | ||
| @test equations(new_sys)[2] == (D(w) ~ α^2) | ||
| @test equations(new_sys)[3] == (D(v) ~ μ - 1/2*(α^2 + σ^2)) | ||
| @test noise_eqs(new_sys)[1,1] === value(σ) | ||
| @test noise_eqs(new_sys)[1,2] === value(0) | ||
| @test noise_eqs(new_sys)[2,1] === value(0) | ||
| @test noise_eqs(new_sys)[2,2] === value(substitute(2*α*y, backward_subs[2])) | ||
| @test noise_eqs(new_sys)[3,1] === value(σ) | ||
| @test noise_eqs(new_sys)[3,2] === value(α) | ||
Uh oh!
There was an error while loading. Please reload this page.