Chaste Commit::675f9facbe008c5eacb9006feaeb6423206579ea
BuskeAdhesiveForce.cpp
1/*
2
3Copyright (c) 2005-2025, University of Oxford.
4All rights reserved.
5
6University of Oxford means the Chancellor, Masters and Scholars of the
7University of Oxford, having an administrative office at Wellington
8Square, Oxford OX1 2JD, UK.
9
10This file is part of Chaste.
11
12Redistribution and use in source and binary forms, with or without
13modification, are permitted provided that the following conditions are met:
14 * Redistributions of source code must retain the above copyright notice,
15 this list of conditions and the following disclaimer.
16 * Redistributions in binary form must reproduce the above copyright notice,
17 this list of conditions and the following disclaimer in the documentation
18 and/or other materials provided with the distribution.
19 * Neither the name of the University of Oxford nor the names of its
20 contributors may be used to endorse or promote products derived from this
21 software without specific prior written permission.
22
23THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
27LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
29GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
34*/
35
36#include "BuskeAdhesiveForce.hpp"
37
38#include "NodeBasedCellPopulation.hpp"
39
40template<unsigned DIM>
43 mAdhesionEnergyParameter(0.2) // Denoted by epsilon in Buske et al (2011) (doi:10.1371/journal.pcbi.1001045).
44{
45}
46
47template<unsigned DIM>
49{
50 return mAdhesionEnergyParameter;
51}
52
53template<unsigned DIM>
54void BuskeAdhesiveForce<DIM>::SetAdhesionEnergyParameter(double adhesionEnergyParameter)
55{
56 mAdhesionEnergyParameter = adhesionEnergyParameter;
57}
58
59template<unsigned DIM>
60c_vector<double, DIM> BuskeAdhesiveForce<DIM>::CalculateForceBetweenNodes(unsigned nodeAGlobalIndex,
61 unsigned nodeBGlobalIndex,
62 AbstractCellPopulation<DIM>& rCellPopulation)
63{
64 // This force class is defined for NodeBasedCellPopulations only
65 assert(dynamic_cast<NodeBasedCellPopulation<DIM>*>(&rCellPopulation) != nullptr);
66
67 // We should only ever calculate the force between two distinct nodes
68 assert(nodeAGlobalIndex != nodeBGlobalIndex);
69
70 Node<DIM>* p_node_a = rCellPopulation.GetNode(nodeAGlobalIndex);
71 Node<DIM>* p_node_b = rCellPopulation.GetNode(nodeBGlobalIndex);
72
73 // Get the node locations
74 const c_vector<double, DIM>& r_node_a_location = p_node_a->rGetLocation();
75 const c_vector<double, DIM>& r_node_b_location = p_node_b->rGetLocation();
76
77 // Get the unit vector parallel to the line joining the two nodes (assuming no periodicities etc.)
78 c_vector<double, DIM> unit_vector = r_node_b_location - r_node_a_location;
79
80 // Calculate the distance between the two nodes
81 double distance_between_nodes = norm_2(unit_vector);
82
83 // Account for any cutoff in the force law
84 if (this->mUseCutOffLength)
85 {
86 if (distance_between_nodes >= this->GetCutOffLength())
87 {
88 return zero_vector<double>(DIM);
89 }
90 }
91
92 // Assert that the nodes are a finite, non-zero distance apart
93 assert(distance_between_nodes > 0);
94 assert(!std::isnan(distance_between_nodes));
95
96 // Normalize the unit vector
97 unit_vector /= distance_between_nodes;
98
99 double radius_of_cell_one = p_node_a->GetRadius();
100 double radius_of_cell_two = p_node_b->GetRadius();
101
102 // Compute the force vector
103 c_vector<double, DIM> force_between_nodes = GetMagnitudeOfForce(distance_between_nodes,radius_of_cell_one,radius_of_cell_two) * unit_vector;
104
105 return force_between_nodes;
106}
107
108template<unsigned DIM>
109double BuskeAdhesiveForce<DIM>::GetMagnitudeOfForce(double distanceBetweenNodes, double radiusOfCellOne, double radiusOfCellTwo)
110{
111 double dWAdd = 0.0;
112
113 // If the cells are close enough...
114 if (distanceBetweenNodes < radiusOfCellOne + radiusOfCellTwo)
115 {
116 // ...calculate the force contribution from their adhesive interaction energy
117 double xij = 0.5*(radiusOfCellOne*radiusOfCellOne - radiusOfCellTwo*radiusOfCellTwo + distanceBetweenNodes*distanceBetweenNodes)/distanceBetweenNodes;
118 double dxijdd = 1.0 - xij/distanceBetweenNodes;
119 dWAdd = 2.0*mAdhesionEnergyParameter*M_PI*xij*dxijdd;
120 }
121
122 return dWAdd;
123}
124
125template<unsigned DIM>
127{
128 *rParamsFile << "\t\t\t<AdhesionEnergyParameter>" << mAdhesionEnergyParameter << "</AdhesionEnergyParameter>\n";
129
130 // Call method on direct parent class
132}
133
134// Explicit instantiation
135template class BuskeAdhesiveForce<1>;
136template class BuskeAdhesiveForce<2>;
137template class BuskeAdhesiveForce<3>;
138
139// Serialization for Boost >= 1.36
#define EXPORT_TEMPLATE_CLASS_SAME_DIMS(CLASS)
virtual Node< SPACE_DIM > * GetNode(unsigned index)=0
virtual void OutputForceParameters(out_stream &rParamsFile)
c_vector< double, DIM > CalculateForceBetweenNodes(unsigned nodeAGlobalIndex, unsigned nodeBGlobalIndex, AbstractCellPopulation< DIM > &rCellPopulation)
virtual void OutputForceParameters(out_stream &rParamsFile)
double GetMagnitudeOfForce(double distanceBetweenNodes, double radiusOfCellOne, double radiusOfCellTwo)
void SetAdhesionEnergyParameter(double adhesionEnergyParameter)
Definition Node.hpp:59
const c_vector< double, SPACE_DIM > & rGetLocation() const
Definition Node.cpp:139
double GetRadius()
Definition Node.cpp:248