View source: R/utilities-simulation.R
getAllApplicationParameters | R Documentation |
Get parameters of applications in the simulation
getAllApplicationParameters(simulation, moleculeNames = NULL)
simulation |
A |
moleculeNames |
Names of the molecules which applications parameters
will be returned. If |
Every application event has a ProtocolSchemaItem
container that
holds parameters describing the dose, start time, infusion time etc. This
function returns a list of all constant parameters located under the
ProtocolSchemaItem
container of applications defined for the moleculeNames
.
A list of Parameter
objects defining the applications in the
simulation.
simPath <- system.file("extdata", "Aciclovir.pkml", package = "ospsuite")
simulation <- loadSimulation(simPath)
applicationParams <- getAllApplicationParameters(simulation = simulation)
applicationParams <- getAllApplicationParameters(
simulation = simulation,
moleculeNames = "Aciclovir"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.