![]() |
Chaste
Release::3.4
|
#include <BuskeAdhesiveForce.hpp>
Inheritance diagram for BuskeAdhesiveForce< DIM >:
Collaboration diagram for BuskeAdhesiveForce< DIM >:Public Member Functions | |
| BuskeAdhesiveForce () | |
| double | GetAdhesionEnergyParameter () |
| void | SetAdhesionEnergyParameter (double adhesionEnergyParameter) |
| c_vector< double, DIM > | CalculateForceBetweenNodes (unsigned nodeAGlobalIndex, unsigned nodeBGlobalIndex, AbstractCellPopulation< DIM > &rCellPopulation) |
| double | GetMagnitudeOfForce (double distanceBetweenNodes, double radiusOfCellOne, double radiusOfCellTwo) |
| virtual void | OutputForceParameters (out_stream &rParamsFile) |
Public Member Functions inherited from AbstractTwoBodyInteractionForce< DIM > | |
| AbstractTwoBodyInteractionForce () | |
| bool | GetUseCutOffLength () |
| void | SetCutOffLength (double cutOffLength) |
| double | GetCutOffLength () |
| virtual c_vector< double, ELEMENT_DIM > | CalculateForceBetweenNodes (unsigned nodeAGlobalIndex, unsigned nodeBGlobalIndex, AbstractCellPopulation< ELEMENT_DIM, ELEMENT_DIM > &rCellPopulation)=0 |
| void | AddForceContribution (AbstractCellPopulation< ELEMENT_DIM, ELEMENT_DIM > &rCellPopulation) |
Public Member Functions inherited from AbstractForce< ELEMENT_DIM, ELEMENT_DIM > | |
| AbstractForce () | |
| virtual | ~AbstractForce () |
| virtual void | AddForceContribution (AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM > &rCellPopulation)=0 |
| void | OutputForceInfo (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 | mAdhesionEnergyParameter |
Friends | |
| class | TestForcesNotForRelease |
| class | boost::serialization::access |
Additional Inherited Members | |
Protected Attributes inherited from AbstractTwoBodyInteractionForce< DIM > | |
| bool | mUseCutOffLength |
| double | mMechanicsCutOffLength |
A force law employed by Buske et al (2011) in their overlapping spheres model of the intestinal crypt (doi:10.1371/journal.pcbi.1001045).
Length is scaled by natural length.
Definition at line 52 of file BuskeAdhesiveForce.hpp.
| BuskeAdhesiveForce< DIM >::BuskeAdhesiveForce | ( | ) |
Constructor.
Definition at line 40 of file BuskeAdhesiveForce.cpp.
| c_vector< double, DIM > BuskeAdhesiveForce< DIM >::CalculateForceBetweenNodes | ( | unsigned | nodeAGlobalIndex, |
| unsigned | nodeBGlobalIndex, | ||
| AbstractCellPopulation< DIM > & | rCellPopulation | ||
| ) |
Note that this assumes they are connected and is called by rCalculateVelocitiesOfEachNode()
| nodeAGlobalIndex | index of one neighbouring node |
| nodeBGlobalIndex | index of the other neighbouring node |
| rCellPopulation | the cell population |
Definition at line 59 of file BuskeAdhesiveForce.cpp.
References AbstractCellPopulation< ELEMENT_DIM, SPACE_DIM >::GetNode(), Node< SPACE_DIM >::GetRadius(), and Node< SPACE_DIM >::rGetLocation().
| double BuskeAdhesiveForce< DIM >::GetAdhesionEnergyParameter | ( | ) |
Definition at line 47 of file BuskeAdhesiveForce.cpp.
| double BuskeAdhesiveForce< DIM >::GetMagnitudeOfForce | ( | double | distanceBetweenNodes, |
| double | radiusOfCellOne, | ||
| double | radiusOfCellTwo | ||
| ) |
| distanceBetweenNodes | the distance between two nodes |
| radiusOfCellOne | radius of a cell |
| radiusOfCellTwo | radius of a cell |
Definition at line 108 of file BuskeAdhesiveForce.cpp.
|
virtual |
Overridden OutputForceParameters() method.
| rParamsFile | the file stream to which the parameters are output |
Reimplemented from AbstractTwoBodyInteractionForce< DIM >.
Definition at line 125 of file BuskeAdhesiveForce.cpp.
References AbstractTwoBodyInteractionForce< ELEMENT_DIM, SPACE_DIM >::OutputForceParameters().
|
inlineprivate |
Archive the object and its member variables.
| archive | the archive |
| version | the current version of this class |
Definition at line 66 of file BuskeAdhesiveForce.hpp.
References BuskeAdhesiveForce< DIM >::mAdhesionEnergyParameter.
| void BuskeAdhesiveForce< DIM >::SetAdhesionEnergyParameter | ( | double | adhesionEnergyParameter | ) |
Set mAdhesionEnergyParameter.
| adhesionEnergyParameter | the new value of mAdhesionEnergyParameter |
Definition at line 53 of file BuskeAdhesiveForce.cpp.
|
friend |
Needed for serialization.
Definition at line 58 of file BuskeAdhesiveForce.hpp.
|
private |
Adhesion energy parameter.
Represented by the parameter epsilon in the model by Buske et al (2011) in their off-lattice model of the intestinal crypt (doi:10.1371/journal.pcbi.1001045).
Definition at line 79 of file BuskeAdhesiveForce.hpp.
Referenced by BuskeAdhesiveForce< DIM >::serialize().