![]() |
Chaste
Release::3.4
|
#include <CellwiseSourcePde.hpp>
Inheritance diagram for CellwiseSourcePde< DIM >:
Collaboration diagram for CellwiseSourcePde< DIM >:Public Member Functions | |
| CellwiseSourcePde (AbstractCellPopulation< DIM, DIM > &rCellPopulation, double coefficient=0.0) | |
| const AbstractCellPopulation < DIM > & | rGetCellPopulation () const |
| double | GetCoefficient () const |
| virtual double | ComputeConstantInUSourceTerm (const ChastePoint< DIM > &rX, Element< DIM, DIM > *pElement) |
| virtual double | ComputeLinearInUCoeffInSourceTerm (const ChastePoint< DIM > &rX, Element< DIM, DIM > *pElement) |
| virtual double | ComputeLinearInUCoeffInSourceTermAtNode (const Node< DIM > &rNode) |
| virtual c_matrix< double, DIM, DIM > | ComputeDiffusionTerm (const ChastePoint< DIM > &rX) |
Public Member Functions inherited from AbstractLinearEllipticPde< DIM, DIM > | |
| AbstractLinearEllipticPde () | |
| virtual | ~AbstractLinearEllipticPde () |
| virtual double | ComputeConstantInUSourceTerm (const ChastePoint< SPACE_DIM > &rX, Element< ELEMENT_DIM, SPACE_DIM > *pElement)=0 |
| virtual double | ComputeLinearInUCoeffInSourceTerm (const ChastePoint< SPACE_DIM > &rX, Element< ELEMENT_DIM, SPACE_DIM > *pElement)=0 |
| virtual c_matrix< double, SPACE_DIM, SPACE_DIM > | ComputeDiffusionTerm (const ChastePoint< SPACE_DIM > &rX)=0 |
| virtual double | ComputeConstantInUSourceTermAtNode (const Node< SPACE_DIM > &rNode) |
| virtual double | ComputeLinearInUCoeffInSourceTermAtNode (const Node< SPACE_DIM > &rNode) |
Protected Attributes | |
| AbstractCellPopulation< DIM, DIM > & | mrCellPopulation |
| double | mCoefficient |
Private Member Functions | |
| template<class Archive > | |
| void | serialize (Archive &archive, const unsigned int version) |
Friends | |
| class | TestCellBasedPdes |
| class | boost::serialization::access |
A PDE which has a source at each non-apoptotic cell.
Definition at line 49 of file CellwiseSourcePde.hpp.
| CellwiseSourcePde< DIM >::CellwiseSourcePde | ( | AbstractCellPopulation< DIM, DIM > & | rCellPopulation, |
| double | coefficient = 0.0 |
||
| ) |
Constructor.
| rCellPopulation | reference to the cell population |
| coefficient | the coefficient of consumption of nutrient by cells (defaults to 0.0) |
Definition at line 41 of file CellwiseSourcePde.cpp.
|
virtual |
Overridden ComputeConstantInUSourceTerm() method.
| rX | The point in space |
| pElement | The element |
Definition at line 60 of file CellwiseSourcePde.cpp.
|
virtual |
Overridden ComputeDiffusionTerm() method.
| rX | The point in space at which the diffusion term is computed |
Definition at line 93 of file CellwiseSourcePde.cpp.
|
virtual |
Overridden ComputeLinearInUCoeffInSourceTerm() method.
| rX | The point in space |
| pElement | the element |
Definition at line 66 of file CellwiseSourcePde.cpp.
References NEVER_REACHED.
|
virtual |
Overridden ComputeLinearInUCoeffInSourceTermAtNode() method.
| rNode | reference to the node |
Definition at line 73 of file CellwiseSourcePde.cpp.
References Node< SPACE_DIM >::GetIndex().
| double CellwiseSourcePde< DIM >::GetCoefficient | ( | ) | const |
Definition at line 54 of file CellwiseSourcePde.cpp.
| const AbstractCellPopulation< DIM, DIM > & CellwiseSourcePde< DIM >::rGetCellPopulation | ( | ) | const |
Definition at line 48 of file CellwiseSourcePde.cpp.
|
inlineprivate |
Serialize the PDE and its member variables.
| archive | the archive |
| version | the current version of this class |
Definition at line 64 of file CellwiseSourcePde.hpp.
References CellwiseSourcePde< DIM >::mCoefficient.
|
friend |
Needed for serialization.
Definition at line 56 of file CellwiseSourcePde.hpp.
|
protected |
Coefficient of consumption of nutrient by cells.
Definition at line 76 of file CellwiseSourcePde.hpp.
Referenced by CellwiseSourcePde< DIM >::serialize().
|
protected |
The cell population member.
Definition at line 73 of file CellwiseSourcePde.hpp.