Modeling dissociation using Hill function provides misleading results

7 views (last 30 days)
I stumbled upon a simple dissociation model using Hill function. The process in question is
[A:B] -> A + 2 B
A, B, [A:B] species [nanomole]
Now, dependent on how one formulates it mathematically, the results are completely different.
Case 1: Vmax/((EC50/[A:B])^n+1)
Vmax = 1.2 [nanomole/hour]
EC50 = 10 [nanomole]
n = 2 [-]
Simulation produces figure 1.
Case 2: Vmax/((EC50/([A:B]/comp1))^n+1)
Vmax = 1.2 [nanomole/hour]
EC50 = 10 [nanomole/liter]
n = 2 [-]
comp1 = 1 [microliter]
Simulation produces figure 2.
The question I am wandering about why in the second case the amount becomes negative.
sbproj files attached. Any comments would be appreciated. Emjey

Accepted Answer

Arthur Goldsipe
Arthur Goldsipe on 1 Aug 2023
Similar questions come up periodicaly. I suggest looking at my previous responses here and here.
The bottom line is that both of these plots show the expected numerical behavior of the differential equations as you implemented them. My recommendation is to replace the [A:B] term with max(0,[A:B]).
In your case, the reactions for the two cases proceed at vastly different rates. In Case 1, EC50 = 10 nanomole. In Case 2, EC50*comp1 = 10 nanomole/liter*microliter = 1e-5 nanomole.This leads to much faster dynamics for Case 2, and eventually the solver takes a large enough time step that the concentration goes negative. And it turns out that the solver tolerances are still satisifed under these conditions, due to the form of your reaction rate. The problem here is that a "negative amount" of [A:B] of -10 nanomole results in the exact same reaction rate as +10 nanomole of [A:B]. So a slightly negative amount leads to even more negative amounts of [A:B]. I typically say that negative concentrations that are within the solver's absolute tolerance of zero should be considered as equivalent to zero. And you can actually enforce such a constraint on your equations by replacing terms involving [A:B] with max(0,[A:B]).
I made such a change in your model, and this eliminated the negative concentrations. Note however that if you make such a change and still see concentrations with large magnitude negative values (say, -10 or -100 nanomole, for this model), then you may have a modeling error that leads to non-physical behavior.
  3 Comments
emjey
emjey on 4 Aug 2023
Btw, I simulated the above using ode45 solver and get the same results (using the max(0,[A:B]) detour). Could you explain what do you do to the model to be able to handle the different scales with a non-stiff solver?
Arthur Goldsipe
Arthur Goldsipe on 4 Aug 2023
You will find a detailed description of the algorithm for absolute tolerance scaling here.
I'm not sure I understand what you're asking about ode45. For your model diss_conc.sbproj with the max detour, I get basically the same results when simulating with ode45, ode15s, and sundials.

Sign in to comment.

More Answers (0)

Communities

More Answers in the  SimBiology Community

Categories

Find more on Scan Parameter Ranges in Help Center and File Exchange

Products


Release

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!