Function implementing a growth model of a human cell
The generic function cellgrowth
implements different growth models for an object of class Human.
cellgrowth(object, population, j, occupyM, fbasol, tstep) ## S4 method for signature 'Human' cellgrowth(object, population, j, occupyM, fbasol, tstep)
object |
An object of class Human. |
population |
An object of class Arena. |
j |
The number of the iteration of interest. |
occupyM |
A matrix indicating grid cells that are obstacles |
fbasol |
Problem object according to the constraints and then solved with |
tstep |
A number giving the time intervals for each simulation step. |
Linear growth of organisms is implemented by adding the calculated growthrate by optimizeLP
to the already present growth value. Exponential growth of organisms is implemented by adding the calculated growthrate multiplied with the current growth calculated by optimizeLP
plus to the already present growth value.
Boolean variable of the j
th individual indicating if individual died.
Human-class
, growLin
and growExp
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.