Learn R Programming

BacArena (version 1.0.1)

addEval: Function for adding a simulation step

Description

The generic function addEval adds results of a simulation step to an Eval object.

Usage

addEval(object, arena, replace = F)
"addEval"(object, arena, replace = F)

Arguments

object
An object of class Eval.
arena
An object of class Arena.
replace
A boolean variable indicating if the last simulation step should be replaced by the new simulation step arena.

Details

The function addEval can be used in iterations to manipulate an Arena object and store the results in an Eval object.

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)
addEval(eval,arena)

Run the code above in your browser using DataLab