Chaste Release::3.1
|
#include <AbstractCardiacCellFactory.hpp>
A factory to ease creating cardiac cell objects for use in a mono/bidomain simulation.
The user should implement their own concrete class, in particular implementing CreateCardiacCellForTissueNode(unsigned), which should return the cell corresponding to a given node. The user should also implement GetNumberOfCells() if this isn't equal to the number of nodes. FinaliseCellCreation() can be used to (eg) add stimuli to certain cells after they have been created.
This class saves the user having to create cells in parallel, that work is done by the pde instead.
Definition at line 63 of file AbstractCardiacCellFactory.hpp.
AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::AbstractCardiacCellFactory | ( | boost::shared_ptr< AbstractIvpOdeSolver > | pSolver = boost::shared_ptr<AbstractIvpOdeSolver>(new EulerIvpOdeSolver) | ) |
Default constructor.
pSolver | the ODE solver to use to simulate this cell. |
Definition at line 75 of file AbstractCardiacCellFactory.cpp.
AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::~AbstractCardiacCellFactory | ( | ) | [virtual] |
Destructor: free solver, zero stimulus and fake bath cell.
Definition at line 85 of file AbstractCardiacCellFactory.cpp.
AbstractCardiacCellInterface * AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::CreateCardiacCellForNode | ( | unsigned | nodeIndex | ) | [virtual] |
Create a cell object for the given node.
The default implementation checks whether the node is in the bath (in which case a pointer to a (unique) fake cell is returned) and if not, calls CreateCardiacCellForTissueNode (which must be defined by subclasses).
nodeIndex | Global node index. |
Definition at line 40 of file AbstractCardiacCellFactory.cpp.
References HeartRegionCode::IsRegionBath().
Referenced by AbstractCardiacTissue< ELEMENT_DIM, SPACE_DIM >::AbstractCardiacTissue(), ExtendedBidomainTissue< SPACE_DIM >::ExtendedBidomainTissue(), and AbstractCardiacTissue< ELEMENT_DIM, SPACE_DIM >::SetUpHaloCells().
virtual AbstractCardiacCellInterface* AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::CreateCardiacCellForTissueNode | ( | unsigned | nodeIndex | ) | [pure virtual] |
Must be overridden by subclasses to return a cell object for the given node.
nodeIndex | Global node index. |
Implemented in RampedQuarterStimulusCellFactory< CELL, DIM >, BathCellFactory< DIM, CELLTYPE >, HeartConfigRelatedCellFactory< SPACE_DIM >, PlaneStimulusCellFactory< CELL, ELEMENT_DIM, SPACE_DIM >, and ZeroStimulusCellFactory< CELL, DIM >.
void AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::FillInCellularTransmuralAreas | ( | ) | [virtual] |
Method that fills in the vector of heterogeneity areas with the NodesLists that correspond to a given layer (implemented in subclasses)
Reimplemented in HeartConfigRelatedCellFactory< SPACE_DIM >, and HeartConfigRelatedCellFactory< SPACE_DIM >.
Definition at line 62 of file AbstractCardiacCellFactory.cpp.
void AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::FinaliseCellCreation | ( | std::vector< AbstractCardiacCellInterface * > * | pCellsDistributed, |
unsigned | lo, | ||
unsigned | hi | ||
) | [virtual] |
May be overridden by subclasses to perform any necessary work after all cells have been created.
pCellsDistributed | Pointer to a vector of cardiac cell pointers. |
lo | Lowest index owned by this process. |
hi | Highest index owned by this process. |
Definition at line 54 of file AbstractCardiacCellFactory.cpp.
Referenced by AbstractCardiacTissue< ELEMENT_DIM, SPACE_DIM >::AbstractCardiacTissue(), and ExtendedBidomainTissue< SPACE_DIM >::ExtendedBidomainTissue().
HeartGeometryInformation< SPACE_DIM > * AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::GetHeartGeometryInformation | ( | ) |
Definition at line 112 of file AbstractCardiacCellFactory.cpp.
References EXCEPTION.
AbstractTetrahedralMesh< ELEMENT_DIM, SPACE_DIM > * AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::GetMesh | ( | ) |
Definition at line 96 of file AbstractCardiacCellFactory.cpp.
References EXCEPTION.
Referenced by AbstractCardiacTissue< ELEMENT_DIM, SPACE_DIM >::AbstractCardiacTissue(), PlaneStimulusCellFactory< CELL, ELEMENT_DIM, SPACE_DIM >::CreateCardiacCellForTissueNode(), and ExtendedBidomainTissue< SPACE_DIM >::ExtendedBidomainTissue().
unsigned AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::GetNumberOfCells | ( | ) | [virtual] |
Definition at line 68 of file AbstractCardiacCellFactory.cpp.
Referenced by AbstractCardiacTissue< ELEMENT_DIM, SPACE_DIM >::AbstractCardiacTissue(), and ExtendedBidomainTissue< SPACE_DIM >::ExtendedBidomainTissue().
void AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::SetHeartGeometryInformation | ( | HeartGeometryInformation< SPACE_DIM > * | pHeartGeometryInformation | ) |
Set the HeartGeometryInformation object
pHeartGeometryInformation | the HeartGeometryInformation object that is to be set |
Definition at line 106 of file AbstractCardiacCellFactory.cpp.
void AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::SetMesh | ( | AbstractTetrahedralMesh< ELEMENT_DIM, SPACE_DIM > * | pMesh | ) | [virtual] |
pMesh | the mesh for which to create cardiac cells. |
Reimplemented in AbstractPurkinjeCellFactory< ELEMENT_DIM, SPACE_DIM >.
Definition at line 90 of file AbstractCardiacCellFactory.cpp.
Referenced by AbstractPurkinjeCellFactory< ELEMENT_DIM, SPACE_DIM >::SetMesh().
HeartGeometryInformation<SPACE_DIM>* AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::mpHeartGeometryInformation [private] |
A pointer to an HeartGeometryInformation information object Can be accessed via get and set methods in this class.
Definition at line 75 of file AbstractCardiacCellFactory.hpp.
AbstractTetrahedralMesh<ELEMENT_DIM,SPACE_DIM>* AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::mpMesh [private] |
The mesh is automatically set in MonodomainProblem and BidomainProblem. This member variable should be accessed through GetMesh(), which will check if it has been set before and throw an exception otherwise.
Definition at line 69 of file AbstractCardiacCellFactory.hpp.
boost::shared_ptr<AbstractIvpOdeSolver> AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::mpSolver [protected] |
The solver to give each of the cells
Definition at line 81 of file AbstractCardiacCellFactory.hpp.
Referenced by PlaneStimulusCellFactory< CELL, ELEMENT_DIM, SPACE_DIM >::CreateCardiacCellForTissueNode().
boost::shared_ptr<ZeroStimulus> AbstractCardiacCellFactory< ELEMENT_DIM, SPACE_DIM >::mpZeroStimulus [protected] |
For use at un-stimulated cells.
Definition at line 79 of file AbstractCardiacCellFactory.hpp.
Referenced by PlaneStimulusCellFactory< CELL, ELEMENT_DIM, SPACE_DIM >::CreateCardiacCellForTissueNode().