Equivalent network dynamics of reaction networks using complexes (reducing the network) #2
yewalenikhil65
started this conversation in
Ideas
Replies: 1 comment 5 replies
-
Functions reaction_complexes()
reaction_rates()
complex_stoich_matrix()
complex_incidence_matrix()
complex_outgoing_matrix() are as defined in PR SciML#359 |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Based on SciML#318 and explanation from the paper
"A network dynamics approach to chemical reaction networks(CRN)" https://arxiv.org/pdf/1502.02247.pdf
Define a chemical reaction network
For demonstration purpose, lets assume a neural -stem cell regulation reaction system [1].
Some useful stoichiomatrices based on "complex" representation of the CRN based on [2],
Visualise original complex CRN as follows
As stated in [2], CRN can be re-wrttin in ODE form as . Thus, we can express CRN Network as ODESystem as follows.
Following procedure outputs the index of species to be eliminated from the network.
Following procedure eliminates species identified from previous step
Certain complexes then become identical. So we delete all the identical columns from Zₑ and keep only one of them.
We determine the
ncₑ x nrₑ
incidence composition matrix Bₑ of the equivalent network.Equivalent reduced model after elimination
Plot for species which are retained, it matches fairly well(qualitatively) with original model. Lets check for
X[2] (t)
species,Lets plot for species which is eliminated, it doesn't match the original model as it has been eliminated from the calculation,and thus retaining its initial concentration
References
Beta Was this translation helpful? Give feedback.
All reactions