How to implement non-linear protein binding function in PK-Sim/Mobi #1838
Replies: 2 comments 1 reply
-
Dear Michiel, thanks for your inquiry. "fu" is a global parameter/property of a molecule, while "concentration" is "local", thus depending on the location of the molecule. You will not be able to use a local reference path definition (relative path) for the "concentration" in the formula you set up but would have to decide of a "representative" concentration value, here. So this could e.g. be either the arterial or venous blood plasma concentrations (use the full absolute path definition (global reference point)). For your formula, please consider that fu can never be > 1, so I would use a saturatable function (Michaelis Menten or Hill equation) or a capped function, i.e., including "concentration > 1" condition: 'Concentration < 0.001 ? 0.10 : (Concentration > 1? 1 : 0.10 + 5.4*Concentration)' Best, |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Hi all,
I am trying to implement a non-linear protein binding function in PK-Sim/Mobi.
The following discussion was found on this topic,
Non linear Protein Binding Function in PK-Sim/Mobi #157
In this discussion, the answer provided was:
However, I can't figure out the correct formula to use. This is what I am trying to implement, with Concentration in molar.
Concentration< 0.001 ? 0.10 : 0.10 + 5.4*Concentration
where Concentration was defined as an Alias with Dimension Concentration (molar), however, I can't seem to figure out which Path to use for the Concentration Alias.
The error is always that this alias references an entity with a path that cannot be found. I also could not find it in the manual/help menu.
Thanks in advance for any response
Beta Was this translation helpful? Give feedback.
All reactions