![]() |
Chaste
Release::3.4
|
#include <RandomCaSwitchingUpdateRule.hpp>
Inheritance diagram for RandomCaSwitchingUpdateRule< DIM >:
Collaboration diagram for RandomCaSwitchingUpdateRule< DIM >:Public Member Functions | |
| RandomCaSwitchingUpdateRule () | |
| ~RandomCaSwitchingUpdateRule () | |
| double | EvaluateSwitchingProbability (unsigned currentNodeIndex, unsigned neighbourNodeIndex, CaBasedCellPopulation< DIM > &rCellPopulation, double dt, double deltaX) |
| double | GetSwitchingParameter () |
| void | SetSwitchingParameter (double switchingParameter) |
| void | OutputSwitchingUpdateRuleParameters (out_stream &rParamsFile) |
Public Member Functions inherited from AbstractCaSwitchingUpdateRule< DIM > | |
| AbstractCaSwitchingUpdateRule () | |
| virtual | ~AbstractCaSwitchingUpdateRule () |
| void | OutputUpdateRuleInfo (out_stream &rParamsFile) |
Public Member Functions inherited from Identifiable | |
| virtual | ~Identifiable () |
| std::string | GetIdentifier () const |
Private Member Functions | |
| template<class Archive > | |
| void | serialize (Archive &archive, const unsigned int version) |
Private Attributes | |
| double | mSwitchingParameter |
Friends | |
| class | TestCaUpdateRules |
| class | boost::serialization::access |
A random switching update rule for use in cell-based simulations using the cellular CA model.
The probability of performing a switch is
P* delta_t
Where P is the mSwitchingParameter. delta_t is the timestep.
Definition at line 57 of file RandomCaSwitchingUpdateRule.hpp.
| RandomCaSwitchingUpdateRule< DIM >::RandomCaSwitchingUpdateRule | ( | ) |
Constructor.
Definition at line 39 of file RandomCaSwitchingUpdateRule.cpp.
| RandomCaSwitchingUpdateRule< DIM >::~RandomCaSwitchingUpdateRule | ( | ) |
Destructor.
Definition at line 46 of file RandomCaSwitchingUpdateRule.cpp.
|
virtual |
Calculate the probability of a given switch. Here this is hust
mSwitchingParameter * dt
| currentNodeIndex | The index of the current node/lattice site |
| neighbourNodeIndex | The index of the neighbour node/lattice site |
| rCellPopulation | The cell population |
| dt | is the time interval |
| deltaX | defines the size of the lattice site |
Implements AbstractCaSwitchingUpdateRule< DIM >.
Definition at line 51 of file RandomCaSwitchingUpdateRule.cpp.
| double RandomCaSwitchingUpdateRule< DIM >::GetSwitchingParameter | ( | ) |
Definition at line 61 of file RandomCaSwitchingUpdateRule.cpp.
|
virtual |
Overridden OutputSwitchingUpdateRuleParameters() method.
| rParamsFile | the file stream to which the parameters are output |
Implements AbstractCaSwitchingUpdateRule< DIM >.
Definition at line 73 of file RandomCaSwitchingUpdateRule.cpp.
References AbstractCaSwitchingUpdateRule< DIM >::OutputSwitchingUpdateRuleParameters().
|
inlineprivate |
Boost Serialization method for archiving/checkpointing. Archives the object and its member variables.
| archive | The boost archive. |
| version | The current version of this class. |
Definition at line 79 of file RandomCaSwitchingUpdateRule.hpp.
References RandomCaSwitchingUpdateRule< DIM >::mSwitchingParameter.
| void RandomCaSwitchingUpdateRule< DIM >::SetSwitchingParameter | ( | double | switchingParameter | ) |
Set mSwitchingParameter.
| switchingParameter | the new value of mSwitchingParameter |
Definition at line 67 of file RandomCaSwitchingUpdateRule.cpp.
|
private |
Switching parameter for update rule. Set to the default value 0.5 in the constructor.
Definition at line 68 of file RandomCaSwitchingUpdateRule.hpp.
Referenced by RandomCaSwitchingUpdateRule< DIM >::serialize().