39 namespace DeltaHamiltonian {
43 assert( cd.
Check() &&
"CoreData not ok in PlainGC DeltaHamiltonian");
49 const auto& p = cd.m_parameters->get_child(
"cell_mechanics");
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");
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;
72 if (!cell->IsBoundaryPolygon()) {
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]));
80 dh += del_area * (2.0 * (cell->GetTargetArea() - cell->
GetArea()) + del_area);
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;
93 dh += m_lambda_length * (w1 * (new1 * new1 - old1 * old1) + w2 * (new2 * new2 - old2 * old2));
98 if ((abs(m_lambda_cell_length) > 1.0e-7) || (abs(m_lambda_alignment) > 1.0e-7)) {
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();
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);
111 dh += m_lambda_cell_length * (t_new * t_new - t_old * t_old);
117 if (abs(m_lambda_alignment) > 1.0e-7) {
118 dh += m_lambda_alignment * DHelper::AlignmentTerm(get<1>(old_tup), get<1>(new_tup));
126 if (abs(m_lambda_bend) > 1.0e-7) {
127 dh += m_lambda_bend * DHelper::BendingTerm(nb1_p, nb2_p, now_p, mov_p);
Interface for DeltaHamiltonian::PlainGC.
Core data with mesh, parameters, random engine and time data.
A cell contains walls and nodes.
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.
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...
Node * GetNb2() const
Return second node of this Neighbor pair.
Interface/Implementation for DeltaHamiltonian::DHelper.
GeoData GetGeoData() const
Return GeData (area, centroid, area moment of inertia).
double GetArea() const
Return the area of the cell.
bool Check() const
Verify all pointers non-null.