TissuePartition Function Inclusion into SimBiology PBPK

2 vues (au cours des 30 derniers jours)
Andrew Heitman
Andrew Heitman le 16 Mai 2019
I am trying to incorporate the functions described here:
In particular the tissue partition coefficients - how do I load that matlab code?

Réponse acceptée

Sietse Braakman
Sietse Braakman le 16 Mai 2019
Hi Andrew,
Are you trying to pull out the values of the partition coefficients or the model equations?
In general, SimBiology models are objects (as in object-oriented programming), rather than MATLAB code. As such, you can create MATLAB code to construct a SimBiology model object, but you can't extract MATLAB code from the SimBiology model. What you can do is get the equations or model parameter values from the SimBiology object.
In order to load the model you refer to in your post, you can either open the SimBiology App by typing in the command line:
simbiology
and then clicking on 'Open' and navigating to the folder where the model is.
If you want to load the model object in MATLAB, rather than in the SimBiology App, you can use the function sbioloadproject.
model = sbioloadproject('PBPK.sbproj');
parameters = model.Parameters % shows you all parameters, their model values and units (if present)
equations = getequations(model) % retrieves the equations from the model
Note that the PBPK model relies on a two functions (calculateParacellularAbsorptions.m and calculateTissuePartition.m) that need to be on your MATLAB path or in your current folder in order for the PBPK model to simulate without errors.
I hope that helps.

Plus de réponses (0)

Communautés

Plus de réponses dans  SimBiology Community

Catégories

En savoir plus sur QSP, PKPD, and Systems Biology dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by