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