We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Parameters in ModelingToolkit can be passed as (name, value) pairs or dictionaries. Example:
ModelingToolkit
(name, value)
rn = @reaction_network begin s, 0 -> A d, A -> 0 end dprob = DiscreteProblem(rn, [ :A => 5 ], (0, 10.), [ :s => 10, :d => 1])
This seems to work via ModelingToolkit.varmap_to_vars and should probably be added to MomentClosure
ModelingToolkit.varmap_to_vars
MomentClosure
The text was updated successfully, but these errors were encountered:
Note that with MTK9, and hence Catalyst 14, using named mappings is a requirement as under the hood parameter and species orders can now change.
Sorry, something went wrong.
And a different parameter object is now generated for use in solvers: https://docs.sciml.ai/ModelingToolkit/stable/basics/FAQ/#Why-are-my-parameters-some-obscure-object?
(wrong link initially)
No branches or pull requests
Parameters in
ModelingToolkit
can be passed as(name, value)
pairs or dictionaries. Example:This seems to work via
ModelingToolkit.varmap_to_vars
and should probably be added toMomentClosure
The text was updated successfully, but these errors were encountered: