-
Notifications
You must be signed in to change notification settings - Fork 0
/
adaptive_util_impl.h
167 lines (137 loc) · 5.07 KB
/
adaptive_util_impl.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/*
* Copyright (c) 2015: G-CSC, Goethe University Frankfurt
* Author: Raphael Prohl
*
* This file is part of UG4.
*
* UG4 is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License version 3 (as published by the
* Free Software Foundation) with the following additional attribution
* requirements (according to LGPL/GPL v3 §7):
*
* (1) The following notice must be displayed in the Appropriate Legal Notices
* of covered and combined works: "Based on UG4 (www.ug4.org/license)".
*
* (2) The following notice must be displayed at a prominent place in the
* terminal output of covered works: "Based on UG4 (www.ug4.org/license)".
*
* (3) The following bibliography is recommended for citation and must be
* preserved in all covered files:
* "Reiter, S., Vogel, A., Heppner, I., Rupp, M., and Wittum, G. A massively
* parallel geometric multigrid solver on hierarchically distributed grids.
* Computing and visualization in science 16, 4 (2013), 151-164"
* "Vogel, A., Reiter, S., Rupp, M., Nägel, A., and Wittum, G. UG4 -- a novel
* flexible software system for simulating pde based models on high performance
* computers. Computing and visualization in science 16, 4 (2013), 165-179"
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*/
#ifndef ADAPTIVE_UTIL_IMPL_H_
#define ADAPTIVE_UTIL_IMPL_H_
#include "lib_grid/refinement/refiner_interface.h"
#include "adaptive_util.h"
namespace ug{
namespace SmallStrainMechanics{
template<typename TDomain, typename TElem>
void plastic_ip_elem(bool& bPlasticIPs, TElem* elem,
const LocalVector& locU, SmartPtr<TDomain> dom,
SmallStrainMechanicsElemDisc<TDomain>& elemDisc)
{
static const int dim = TDomain::dim;
// get vertices and extract corner coordinates
typedef typename TDomain::position_accessor_type position_accessor_type;
position_accessor_type& aaPos = dom->position_accessor();
MathVector<dim> coCoord[domain_traits<dim>::MaxNumVerticesOfElem];
const size_t numVertices = elem->num_vertices();
for (size_t i = 0; i < numVertices; ++i) {
coCoord[i] = aaPos[elem->vertex(i)];
};
int quadOrder = elemDisc.get_quad_order();
// update the geometry for the Element elem
DimFEGeometry<dim> geo;
try{
geo.update(elem, &(coCoord[0]),
LFEID(LFEID::LAGRANGE, dim, 1), quadOrder);
}
UG_CATCH_THROW("plastic_ip_elem:"
" Cannot update Finite Element Geometry.");
// get the material law
if (elemDisc.get_material_law().invalid())
UG_THROW("No material law set in plastic_ip_elem \n");
SmartPtr<IMaterialLaw<TDomain> > spMatLaw = elemDisc.get_material_law();
// pointer to internal variable of current elem
spMatLaw->internal_vars(elem);
MathMatrix<dim, dim> GradU;
for (size_t ip = 0; ip < geo.num_ip(); ++ip)
{
// get displacementGradient (GradU)
spMatLaw->template DisplacementGradient<DimFEGeometry<dim> >(GradU, ip, geo, locU);
number gamma = spMatLaw->plastic_multiplier(ip, GradU);
if (gamma > 0.0)
{
bPlasticIPs = true; return;
}
if (gamma == 0.0)
{
bPlasticIPs = false;
}
if (gamma < 0.0)
UG_THROW("gamma: " << gamma << "in plastIP_elem \n");
}
}
template <typename TDomain, typename TAlgebra>
void MarkForAdaption_PlasticElem(IRefiner& refiner,
GridFunction<TDomain, TAlgebra>& u,
SmallStrainMechanicsElemDisc<TDomain>& elemDisc)
{
// types
typedef GridFunction<TDomain, TAlgebra> TFunction;
typedef typename TFunction::element_type element_type;
typedef typename DoFDistribution::traits<element_type>::const_iterator const_iterator;
ConstSmartPtr<DoFDistribution> dd = u.dof_distribution();
int numMarkedRefine = 0;
bool bPlasticIPs = false;
const_iterator iter = dd->template begin<element_type>();
const_iterator iterEnd = dd->template end<element_type>();
// local indices and local algebra
LocalIndices ind; LocalVector locU;
// loop elements for marking
for(; iter != iterEnd; ++iter)
{
element_type* elem = *iter;
// get global indices
u.indices(elem, ind);
// adapt local algebra
locU.resize(ind);
// local vector extract -> locU
GetLocalVector(locU, u);
// reset boolean
bPlasticIPs = false;
// check, if plastic yielding occurs
// at one integration point in the element
plastic_ip_elem<TDomain, element_type> (bPlasticIPs, elem, locU,
u.domain(), elemDisc);
// marks for refinement
if(bPlasticIPs)
{
refiner.mark(elem, RM_REFINE);
numMarkedRefine++;
}
}
#ifdef UG_PARALLEL
if(pcl::NumProcs() > 1)
{
UG_LOG(" +++ Marked for refinement on Proc "<<pcl::ProcRank()<<": " << numMarkedRefine << " Elements.\n");
pcl::ProcessCommunicator com;
int numMarkedRefineLocal = numMarkedRefine;
numMarkedRefine = com.allreduce(numMarkedRefineLocal, PCL_RO_SUM);
}
#endif
UG_LOG(" +++ Marked for refinement: " << numMarkedRefine << " Elements.\n");
}
} //end of namespace SmallStrainMechanics
} //end of namespace ug
#endif /* ADAPTIVE_UTIL_IMPL_H_ */