Research Article

Simulating Growth Kinetics in a Data-Parallel 3D Lattice Photobioreactor

Algorithm 2

Algorithmic version of state transitions and instructions within each state.
if in activated state then
 on probability , increment counter, transition to resting state
 otherwise on probability transition to inhibited state
 otherwise remain in activated state
else if in resting state then
 on probability degrade_scale degrade(cell counter value) + bias, perform cell division
 otherwise on probability transition to activated state
 otherwise remain in resting state
else if in inhibited state then
 on probability transition to resting state
 otherwise remain in inhibited state
end if