VPTissue Reference Manual
delta_hamiltonian/PlainGC.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2011-2016 Universiteit Antwerpen
3  *
4  * Licensed under the EUPL, Version 1.1 or as soon they will be approved by
5  * the European Commission - subsequent versions of the EUPL (the "Licence");
6  * You may not use this work except in compliance with the Licence.
7  * You may obtain a copy of the Licence at: http://ec.europa.eu/idabc/eupl5
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the Licence is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the Licence for the specific language governing
13  * permissions and limitations under the Licence.
14  */
21 #include "PlainGC.h"
22 
23 #include "DHelper.h"
24 #include "bio/Cell.h"
25 #include "bio/GeoData.h"
26 #include "bio/Mesh.h"
27 #include "bio/NeighborNodes.h"
28 #include "bio/Node.h"
29 #include "math/Geom.h"
30 #include "sim/CoreData.h"
32 
33 #include <cassert>
34 
35 using namespace std;
36 using namespace boost::property_tree;
37 
38 namespace SimPT_Default {
39 namespace DeltaHamiltonian {
40 
41 PlainGC::PlainGC(const CoreData& cd)
42 {
43  assert( cd.Check() && "CoreData not ok in PlainGC DeltaHamiltonian");
44  Initialize(cd);
45 }
46 
47 void PlainGC::Initialize(const CoreData& cd)
48 {
49  const auto& p = cd.m_parameters->get_child("cell_mechanics");
50 
51  m_lambda_alignment = p.get<double>("lambda_alignment");
52  m_lambda_bend = p.get<double>("lambda_bend");
53  m_lambda_cell_length = p.get<double>("lambda_celllength");
54  m_lambda_length = p.get<double>("lambda_length");
55  m_rp_stiffness = p.get<double>("relative_perimeter_stiffness");
56  m_target_node_distance = p.get<double>("target_node_distance");
57 
58 }
59 
60 double PlainGC::operator()(const NeighborNodes& nb, Node* n, std::array<double, 3> move)
61 {
62  double dh = 0.0;
63 
64  const Cell* cell = nb.GetCell();
65  const auto& nb1 = nb.GetNb1();
66  const auto& nb2 = nb.GetNb2();
67  const array<double, 3> now_p = *n;
68  const array<double, 3> mov_p = now_p + move;
69  const array<double, 3> nb1_p = *nb1;
70  const array<double, 3> nb2_p = *nb2;
71 
72  if (!cell->IsBoundaryPolygon()) {
73 
74  // --------------------------------------------------------------------------------------------
75  // Cell area:
76  // --------------------------------------------------------------------------------------------
77  const auto del_area = 0.5 * ((mov_p[0] - now_p[0]) * (nb1_p[1] - nb2_p[1])
78  + (mov_p[1] - now_p[1]) * (nb2_p[0] - nb1_p[0]));
79 
80  dh += del_area * (2.0 * (cell->GetTargetArea() - cell->GetArea()) + del_area);
81 
82  // --------------------------------------------------------------------------------------------
83  // Edge length:
84  // --------------------------------------------------------------------------------------------
85  const bool at_b = n->IsAtBoundary();
86  const auto w1 = (at_b && nb1->IsAtBoundary()) ? m_rp_stiffness : 1.0;
87  const auto w2 = (at_b && nb2->IsAtBoundary()) ? m_rp_stiffness : 1.0;
88  const auto old1 = Norm(now_p - nb1_p) - m_target_node_distance;
89  const auto old2 = Norm(now_p - nb2_p) - m_target_node_distance;
90  const auto new1 = Norm(mov_p - nb1_p) - m_target_node_distance;
91  const auto new2 = Norm(mov_p - nb2_p) - m_target_node_distance;
92 
93  dh += m_lambda_length * (w1 * (new1 * new1 - old1 * old1) + w2 * (new2 * new2 - old2 * old2));
94 
95  // --------------------------------------------------------------------------------------------
96  // Cell length and alignment:
97  // --------------------------------------------------------------------------------------------
98  if ((abs(m_lambda_cell_length) > 1.0e-7) || (abs(m_lambda_alignment) > 1.0e-7)) {
99  const auto old_geo = cell->GetGeoData();
100  const auto new_geo = ModifyForMove(old_geo, nb1_p, nb2_p, now_p, mov_p);
101  const auto old_tup = old_geo.GetEllipseAxes();
102  const auto new_tup = new_geo.GetEllipseAxes();
103 
104  // ------------------------------------------------------------------------------------
105  // CellLength:
106  // ------------------------------------------------------------------------------------
107  if (abs(m_lambda_cell_length) > 1.0e-7) {
108  const double t_old = cell->GetTargetLength() - get<0>(old_tup);
109  const double t_new = cell->GetTargetLength() - get<0>(new_tup);
110 
111  dh += m_lambda_cell_length * (t_new * t_new - t_old * t_old);
112  }
113 
114  // ------------------------------------------------------------------------------------
115  // Alignment:
116  // ------------------------------------------------------------------------------------
117  if (abs(m_lambda_alignment) > 1.0e-7) {
118  dh += m_lambda_alignment * DHelper::AlignmentTerm(get<1>(old_tup), get<1>(new_tup));
119  }
120  }
121  }
122 
123  // --------------------------------------------------------------------------------------------
124  // Vertex bending:
125  // --------------------------------------------------------------------------------------------
126  if (abs(m_lambda_bend) > 1.0e-7) {
127  dh += m_lambda_bend * DHelper::BendingTerm(nb1_p, nb2_p, now_p, mov_p);
128  }
129 
130  return dh;
131 }
132 
133 } // namespace
134 } // namespace
Interface for DeltaHamiltonian::PlainGC.
Core data with mesh, parameters, random engine and time data.
Definition: CoreData.h:38
STL namespace.
A cell contains walls and nodes.
Definition: Cell.h:48
Node in cell wall.
Definition: Node.h:39
Cell * GetCell() const
Return the cell of this Neighbor pair.
Core data used during model execution.
Combo header for circular iterator.
Interface for NeighborNodes.
Interface/Implementation for GeoData.
Namespace for components of the Default model group.
Interface for Cell.
Node * GetNb1() const
Return first node of this Neighbor pair.
Structure of neighboring nodes: two neighboring nodes from standpoint of a given cell with an orderin...
Definition: NeighborNodes.h:34
Interface for Node.
Node * GetNb2() const
Return second node of this Neighbor pair.
Interface for Geom.
Interface/Implementation for DeltaHamiltonian::DHelper.
GeoData GetGeoData() const
Return GeData (area, centroid, area moment of inertia).
Definition: Cell.cpp:225
double GetArea() const
Return the area of the cell.
Definition: Cell.cpp:178
bool Check() const
Verify all pointers non-null.
Definition: CoreData.h:53
Interface for Mesh.