Modeling dissociation using Hill function provides misleading results
4 ビュー (過去 30 日間)
古いコメントを表示
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
0 件のコメント
採用された回答
Arthur Goldsipe
2023 年 8 月 1 日
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 件のコメント
Arthur Goldsipe
2023 年 8 月 4 日
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.
その他の回答 (0 件)
コミュニティ
その他の回答 SimBiology コミュニティ
参考
カテゴリ
Help Center および File Exchange で Extend Modeling Environment についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!