Filter löschen
Filter löschen

Accessing PK library models from code

3 Ansichten (letzte 30 Tage)
Abed Alnaif
Abed Alnaif am 12 Nov. 2020
Kommentiert: Abed Alnaif am 14 Nov. 2020
Hello,
Is there a way to access models from the PK library from code? I see there's a PKModelDesign class, but I'm wondering if there's a way for me to access one of the pre-built PK models from code. I'm using R2020b.
Thank you,
Abed

Antworten (1)

Rick Paxson
Rick Paxson am 12 Nov. 2020
Hello,
Yes you can use PKModelDesign to construct simple PK models from the command line (i.e. in code).
I'll refer you to the documentation for the details and all the options available but here is a simple example.
pkm = PKModelDesign;
pkm.addCompartment('Central', 'DosingType', 'Bolus', ...
'EliminationType', 'linear-clearance', ...
'HasResponseVariable', true);
modelObj = pkm.construct;
This will make a one compartment model with linear elimination and parameterized with clearance (i.e. a clearance parameter is built).
Hope this answers your question.
  1 Kommentar
Abed Alnaif
Abed Alnaif am 14 Nov. 2020
Hi Pax, Thanks. One question: my understanding is that, if I used models from the built in library, SimBiology runs the model using the analytical solution, rather than running it numerically. Is this also true if I use PKModelDesign, that the model runs using the analytical solution? I was just curious. Thanks, Abed

Melden Sie sich an, um zu kommentieren.

Communitys

Weitere Antworten in  SimBiology Community

Kategorien

Mehr zu Extend Modeling Environment finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by