#include <AbstractCaUpdateRule.hpp>
Inherits Identifiable.
Inherited by DiffusionCaUpdateRule< DIM >.
Public Member Functions | |
AbstractCaUpdateRule () | |
virtual | ~AbstractCaUpdateRule () |
virtual double | EvaluateProbability (unsigned currentNodeIndex, unsigned targetNodeIndex, CaBasedCellPopulation< DIM > &rCellPopulation, double dt, double deltaX, CellPtr cell)=0 |
void | OutputUpdateRuleInfo (out_stream &rParamsFile) |
virtual void | OutputUpdateRuleParameters (out_stream &rParamsFile)=0 |
Private Member Functions | |
template<class Archive > | |
void | serialize (Archive &archive, const unsigned int version) |
Friends | |
class | boost::serialization::access |
An abstract CA update rule class, for use in cell-based simulations using the cellular automota model.
Definition at line 52 of file AbstractCaUpdateRule.hpp.
AbstractCaUpdateRule< DIM >::AbstractCaUpdateRule | ( | ) | [inline] |
Default constructor.
Definition at line 39 of file AbstractCaUpdateRule.cpp.
AbstractCaUpdateRule< DIM >::~AbstractCaUpdateRule | ( | ) | [inline, virtual] |
Destructor.
Definition at line 44 of file AbstractCaUpdateRule.cpp.
virtual double AbstractCaUpdateRule< DIM >::EvaluateProbability | ( | unsigned | currentNodeIndex, | |
unsigned | targetNodeIndex, | |||
CaBasedCellPopulation< DIM > & | rCellPopulation, | |||
double | dt, | |||
double | deltaX, | |||
CellPtr | cell | |||
) | [pure virtual] |
Calculate the probability of a given move.
Uses random diffusion to each neighbouring node, scaled according to distance.
currentNodeIndex | The index of the current node/lattice site | |
targetNodeIndex | The index of the target node/lattice site | |
rCellPopulation | The cell population | |
dt | is the time interval | |
deltaX | defines the size of the lattice site | |
cell | a pointer to the cell (needed if more than one cell per lattice site |
Implemented in DiffusionCaUpdateRule< DIM >.
void AbstractCaUpdateRule< DIM >::OutputUpdateRuleInfo | ( | out_stream & | rParamsFile | ) | [inline] |
Output update rule to file. Call OutputUpdateRuleParameters() to output all member variables to file.
rParamsFile | a file stream |
Definition at line 49 of file AbstractCaUpdateRule.cpp.
References Identifiable::GetIdentifier(), and AbstractCaUpdateRule< DIM >::OutputUpdateRuleParameters().
void AbstractCaUpdateRule< DIM >::OutputUpdateRuleParameters | ( | out_stream & | rParamsFile | ) | [inline, pure virtual] |
Output update rule parameters to file.
As this method is pure virtual, it must be overridden in subclasses.
rParamsFile | a file stream |
Implemented in DiffusionCaUpdateRule< DIM >.
Definition at line 59 of file AbstractCaUpdateRule.cpp.
Referenced by AbstractCaUpdateRule< DIM >::OutputUpdateRuleInfo().
void AbstractCaUpdateRule< DIM >::serialize | ( | Archive & | archive, | |
const unsigned int | version | |||
) | [inline, private] |
Boost Serialization method for archiving/checkpointing. Archives the object and its member variables.
archive | The boost archive. | |
version | The current version of this class. |
Reimplemented in DiffusionCaUpdateRule< DIM >.
Definition at line 64 of file AbstractCaUpdateRule.hpp.
friend class boost::serialization::access [friend] |
Needed for serialization.
Reimplemented in DiffusionCaUpdateRule< DIM >.
Definition at line 55 of file AbstractCaUpdateRule.hpp.