-
Hi @kylebaron, Can we request the rate of change for each compartment (dxdt_comp) in the output file? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
kylebaron
Oct 29, 2021
Replies: 1 comment 3 replies
-
Hi @Mutaz94 - You can copy it to a different name and then capture it [ des ]
dxdt_depot = -ka*depot;
double rate_depot = dxdt_depot;
[ capture] rate_depot But just be careful using it; it's really for the solver to use and might not always be what you expect; no guarantees. Kyle |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
Mutaz94
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @Mutaz94 -
You can copy it to a different name and then capture it
But just be careful using it; it's really for the solver to use and might not always be what you expect; no guarantees.
Kyle