#include <AbstractCardiacCellFactory.hpp>
Public Member Functions | |
virtual AbstractCardiacCell * | CreateCardiacCellForNode (unsigned nodeIndex) |
virtual AbstractCardiacCell * | CreateCardiacCellForTissueNode (unsigned nodeIndex)=0 |
virtual void | FinaliseCellCreation (std::vector< AbstractCardiacCell * > *pCellsDistributed, unsigned lo, unsigned hi) |
virtual unsigned | GetNumberOfCells () |
AbstractCardiacCellFactory (boost::shared_ptr< AbstractIvpOdeSolver > pSolver=boost::shared_ptr< AbstractIvpOdeSolver >(new EulerIvpOdeSolver)) | |
virtual | ~AbstractCardiacCellFactory () |
void | SetMesh (AbstractTetrahedralMesh< ELEM_DIM, SPACE_DIM > *pMesh) |
AbstractTetrahedralMesh < ELEM_DIM, SPACE_DIM > * | GetMesh () |
Protected Attributes | |
boost::shared_ptr< ZeroStimulus > | mpZeroStimulus |
boost::shared_ptr < AbstractIvpOdeSolver > | mpSolver |
AbstractCardiacCell * | mpFakeCell |
Private Attributes | |
AbstractTetrahedralMesh < ELEM_DIM, SPACE_DIM > * | mpMesh |
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 54 of file AbstractCardiacCellFactory.hpp.
AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::AbstractCardiacCellFactory | ( | boost::shared_ptr< AbstractIvpOdeSolver > | pSolver = boost::shared_ptr<AbstractIvpOdeSolver>(new EulerIvpOdeSolver) |
) | [inline] |
Default constructor.
pSolver | the ODE solver to use to simulate this cell. |
Definition at line 63 of file AbstractCardiacCellFactory.cpp.
AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::~AbstractCardiacCellFactory | ( | ) | [inline, virtual] |
Destructor: free solver, zero stimulus and fake bath cell.
Definition at line 73 of file AbstractCardiacCellFactory.cpp.
References AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::mpFakeCell.
AbstractCardiacCell * AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::CreateCardiacCellForNode | ( | unsigned | nodeIndex | ) | [inline, 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 34 of file AbstractCardiacCellFactory.cpp.
References HeartRegionCode::BATH, AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::CreateCardiacCellForTissueNode(), AbstractMesh< ELEMENT_DIM, SPACE_DIM >::GetNode(), AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::mpFakeCell, and AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::mpMesh.
Referenced by AbstractCardiacPde< ELEM_DIM, SPACE_DIM >::AbstractCardiacPde().
virtual AbstractCardiacCell* AbstractCardiacCellFactory< ELEM_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 QuarterStimulusCellFactory< CELL, DIM >, PlaneStimulusCellFactory< CELL, ELEM_DIM, SPACE_DIM >, and ZeroStimulusCellFactory< CELL, DIM >.
Referenced by AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::CreateCardiacCellForNode().
void AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::FinaliseCellCreation | ( | std::vector< AbstractCardiacCell * > * | pCellsDistributed, | |
unsigned | lo, | |||
unsigned | hi | |||
) | [inline, 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 48 of file AbstractCardiacCellFactory.cpp.
Referenced by AbstractCardiacPde< ELEM_DIM, SPACE_DIM >::AbstractCardiacPde().
unsigned AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::GetNumberOfCells | ( | ) | [inline, virtual] |
Definition at line 56 of file AbstractCardiacCellFactory.cpp.
References AbstractMesh< ELEMENT_DIM, SPACE_DIM >::GetNumNodes(), and AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::mpMesh.
Referenced by AbstractCardiacPde< ELEM_DIM, SPACE_DIM >::AbstractCardiacPde(), and BidomainPde< SPACE_DIM >::BidomainPde().
void AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::SetMesh | ( | AbstractTetrahedralMesh< ELEM_DIM, SPACE_DIM > * | pMesh | ) | [inline] |
pMesh | the mesh for which to create cardiac cells. |
Definition at line 79 of file AbstractCardiacCellFactory.cpp.
References AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::mpMesh.
AbstractTetrahedralMesh< ELEM_DIM, SPACE_DIM > * AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::GetMesh | ( | ) | [inline] |
Definition at line 85 of file AbstractCardiacCellFactory.cpp.
References AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::mpMesh.
Referenced by AbstractCardiacPde< ELEM_DIM, SPACE_DIM >::AbstractCardiacPde(), BidomainPde< SPACE_DIM >::BidomainPde(), and PlaneStimulusCellFactory< CELL, ELEM_DIM, SPACE_DIM >::CreateCardiacCellForTissueNode().
AbstractTetrahedralMesh<ELEM_DIM,SPACE_DIM>* AbstractCardiacCellFactory< ELEM_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.
Definition at line 59 of file AbstractCardiacCellFactory.hpp.
Referenced by AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::CreateCardiacCellForNode(), AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::GetMesh(), AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::GetNumberOfCells(), and AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::SetMesh().
boost::shared_ptr<ZeroStimulus> AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::mpZeroStimulus [protected] |
For use at un-stimulated cells.
Definition at line 63 of file AbstractCardiacCellFactory.hpp.
Referenced by PlaneStimulusCellFactory< CELL, ELEM_DIM, SPACE_DIM >::CreateCardiacCellForTissueNode().
boost::shared_ptr<AbstractIvpOdeSolver> AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::mpSolver [protected] |
The solver to give each of the cells
Definition at line 65 of file AbstractCardiacCellFactory.hpp.
Referenced by PlaneStimulusCellFactory< CELL, ELEM_DIM, SPACE_DIM >::CreateCardiacCellForTissueNode().
AbstractCardiacCell* AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::mpFakeCell [protected] |
A fake cell object to use at bath nodes.
Definition at line 68 of file AbstractCardiacCellFactory.hpp.
Referenced by AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::CreateCardiacCellForNode(), and AbstractCardiacCellFactory< ELEM_DIM, SPACE_DIM >::~AbstractCardiacCellFactory().