Concentration in each compartment at a fixed time

3 views (last 30 days)
I have designed a physiological model with multiple compartments in SimBiology. I am interested in finding the concentration of drug (or species) in each compartment at a fixed time (the compartment are given a differential equation). Since, I'm new to MATLAB coding, I would appreciate if anyone can suggest me the code I could use to find the concentration in each compartment at a fixed time. I can get the graph and extract the data, but I'm looking for a simpler way.
Thank you!
  1 Comment
Arthur Goldsipe
Arthur Goldsipe on 3 May 2014
Are you using the SimBiology desktop or the command line? What version of MATLAB are you using?

Sign in to comment.

Answers (1)

Ingrid Tigges
Ingrid Tigges on 13 May 2014
Hi Rakesh,
Since I do not know whether you are using the SimBiology Desktop, let me explain the Desktop and Command Line approach (assuming you are using a relatively new version of MATLAB). The SimBiology Desktop approach:
  • Click on Simulation Settings
  • Specify the output times
  • Click on Task Results => More => Export Data
  • If you select export data as separate variables ensure that Time and States are ticked
  • Select the row of x which represents the time point you are interested inThese are the data you are looking for.
In case you are using the programmatic approach you can the same data as follows:
sbioloadproject radiodecay.sbproj
configsetObj = getconfigset(m1);
set(configsetObj.SolverOptions, 'OutputTimes', [1:10])%Specify the output times like it is done in the command line
[time,x,names] = sbiosimulate(m1,configsetObj)
Like in the SimBiology Desktop approach you can now select the row of x you are interested. I hope this helps. Let me know if you have further questions.

Communities

More Answers in the  SimBiology Community

Categories

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

Products

Community Treasure Hunt

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

Start Hunting!