Learn R Programming

BacArena (version 1.0.1)

extractMed: Function for re-constructing a medium concentrations from simulations

Description

The generic function extractMed re-constructs a list of vectors of medium concentrations from a simulation step in an Eval object.

Usage

extractMed(object, time = length(object@medlist))
"extractMed"(object, time = length(object@medlist))

Arguments

object
An object of class Eval.
time
A number giving the simulation step of interest.

Value

Returns a list containing concentration vectors of all medium substances.

Details

Medium concentrations in slot medlist of an object of class Eval store only the changes of concentrations in the simulation process. The function extractMed reconstructs the original and uncompressed version of medium concentrations.

See Also

Eval-class and Arena-class

Examples

Run this code
data(Ec_core, envir = environment()) #get Escherichia coli core metabolic model
bac <- Bac(Ec_core,deathrate=0.05,
           growthlimit=0.05,growtype="exponential") #initialize a bacterium
arena <- Arena(n=20,m=20) #initialize the environment
addOrg(arena,bac,amount=10) #add 10 organisms
addSubs(arena,40) #add all possible substances
eval <- simEnv(arena,10)
med5 <- extractMed(eval,5)

Run the code above in your browser using DataLab