v0.14.0
EshelbianCore.hpp
Go to the documentation of this file.
1 /**
2  * @file EshelbianCore.hpp
3  * @author your name (you@domain.com)
4  * @brief
5  * @version 0.1
6  * @date 2024-12-31
7  *
8  * @copyright Copyright (c) 2024
9  *
10  */
11 
13 
15  static inline enum RotSelector rotSelector = LARGE_ROT;
16  static inline enum RotSelector gradApproximator = LARGE_ROT;
17  static inline enum StretchSelector stretchSelector = LOG;
18  static inline PetscBool noStretch = PETSC_FALSE; //< no stretch field
19  static inline PetscBool setSingularity = PETSC_TRUE; //< set singularity
20  static inline PetscBool dynamicRelaxation =
21  PETSC_FALSE; //< switch on/off dynamic relaxation
22  static inline PetscBool crackingOn = PETSC_FALSE; //< cracking on
23  static inline double dynamicTime =
24  0; //< true time used when dynamic relaxation is used.
25  static inline int dynamicStep =
26  0; //< true time used when dynamic relaxation is used.
27  static inline PetscBool l2UserBaseScale = PETSC_FALSE; //< scale L2 user base
28  static inline int addCrackMeshsetId = 1000; //< add crack meshset id
29  static inline double griffithEnergy = 1; ///< Griffith energy
30 
31  static double exponentBase;
32  static boost::function<double(const double)> f;
33  static boost::function<double(const double)> d_f;
34  static boost::function<double(const double)> dd_f;
35  static boost::function<double(const double)> inv_f;
36  static boost::function<double(const double)> inv_d_f;
37  static boost::function<double(const double)> inv_dd_f;
38 
39  static double f_log_e(const double v) { return std::exp(v); }
40  static double d_f_log_e(const double v) { return std::exp(v); }
41  static double dd_f_log_e(const double v) { return std::exp(v); }
42  static double inv_f_log_e(const double v) { return std::log(v); }
43  static double inv_d_f_log_e(const double v) { return (1. / v); }
44  static double inv_dd_f_log_e(const double v) { return -(1. / v / v); }
45 
46  static double f_log(const double v) {
47  return pow(EshelbianCore::exponentBase, v);
48  }
49  static double d_f_log(const double v) {
50  return pow(exponentBase, v) * log(EshelbianCore::exponentBase);
51  }
52  static double dd_f_log(const double v) {
53  return pow(EshelbianCore::exponentBase, v) *
55  }
56 
57  static double inv_f_log(const double v) {
58  return log(v) / log(EshelbianCore::exponentBase);
59  }
60  static double inv_d_f_log(const double v) {
61  return (1. / v) / log(EshelbianCore::exponentBase);
62  }
63  static double inv_dd_f_log(const double v) {
64  return -(1. / (v * v)) / log(EshelbianCore::exponentBase);
65  }
66 
67  static double f_linear(const double v) { return v + 1; }
68  static double d_f_linear(const double v) { return 1; }
69  static double dd_f_linear(const double v) { return 0; }
70 
71  static double inv_f_linear(const double v) { return v - 1; }
72  static double inv_d_f_linear(const double v) { return 0; }
73  static double inv_dd_f_linear(const double v) { return 0; }
74 
75  /**
76  * \brief Getting interface of core database
77  * @param uuid unique ID of interface
78  * @param iface returned pointer to interface
79  * @return error code
80  */
81  MoFEMErrorCode query_interface(boost::typeindex::type_index type_index,
82  UnknownInterface **iface) const;
83 
85 
86  boost::shared_ptr<DataAtIntegrationPts> dataAtPts;
87  boost::shared_ptr<PhysicalEquations> physicalEquations;
88 
89  boost::shared_ptr<VolumeElementForcesAndSourcesCore> elasticFeRhs;
90  boost::shared_ptr<VolumeElementForcesAndSourcesCore> elasticFeLhs;
91  boost::shared_ptr<FaceElementForcesAndSourcesCore> elasticBcLhs;
92  boost::shared_ptr<FaceElementForcesAndSourcesCore> elasticBcRhs;
93  boost::shared_ptr<ContactTree> contactTreeRhs; ///< Make a contact tree
94 
95  SmartPetscObj<DM> dM; ///< Coupled problem all fields
96  SmartPetscObj<DM> dmElastic; ///< Elastic problem
97  SmartPetscObj<DM> dmMaterial; ///< Material problem
98  SmartPetscObj<DM> dmPrjSpatial; ///< Projection spatial displacement
99 
100  const std::string piolaStress = "P";
101  const std::string eshelbyStress = "S";
102  const std::string spatialL2Disp = "wL2";
103  const std::string materialL2Disp = "WL2";
104  const std::string spatialH1Disp = "wH1";
105  const std::string materialH1Positions = "XH1";
106  const std::string hybridSpatialDisp = "hybridSpatialDisp";
107  const std::string hybridMaterialDisp = "hybridMaterialDisp";
108  const std::string contactDisp = "contactDisp";
109  const std::string stretchTensor = "u";
110  const std::string rotAxis = "omega";
111  const std::string bubbleField = "bubble";
112 
113  const std::string elementVolumeName = "EP";
114  const std::string naturalBcElement = "NATURAL_BC";
115  const std::string skinElement = "SKIN";
116  const std::string skeletonElement = "SKELETON";
117  const std::string contactElement = "CONTACT";
118  const std::string materialVolumeElement = "MEP";
119  const std::string materialSkeletonElement = "MATERIAL_SKELETON";
120 
122  virtual ~EshelbianCore();
123 
124  int spaceOrder = 2;
125  int spaceH1Order = -1;
126  int materialOrder = 1;
127  double alphaU = 0;
128  double alphaW = 0;
129  double alphaOmega = 0;
130  double alphaRho = 0;
131 
132  int contactRefinementLevels = 1; //< refinement levels for contact integration
133  int frontLayers = 3; //< front layers with material element
134 
136 
137  boost::shared_ptr<BcDispVec> bcSpatialDispVecPtr;
138  boost::shared_ptr<BcRotVec> bcSpatialRotationVecPtr;
139  boost::shared_ptr<TractionBcVec> bcSpatialTraction;
140  boost::shared_ptr<TractionFreeBc> bcSpatialFreeTraction;
141 
142  template <typename BC>
143  MoFEMErrorCode getBc(boost::shared_ptr<BC> &bc_vec_ptr,
144  const std::string block_name, const int nb_attributes) {
146  for (auto it :
147  mField.getInterface<MeshsetsManager>()->getCubitMeshsetPtr(std::regex(
148 
149  (boost::format("%s(.*)") % block_name).str()
150 
151  ))
152 
153  ) {
154  std::vector<double> block_attributes;
155  CHKERR it->getAttributes(block_attributes);
156  if (block_attributes.size() < nb_attributes) {
157  SETERRQ3(PETSC_COMM_SELF, MOFEM_DATA_INCONSISTENCY,
158  "In block %s expected %d attributes, but given %d",
159  it->getName().c_str(), nb_attributes, block_attributes.size());
160  }
161  Range faces;
162  CHKERR it->getMeshsetIdEntitiesByDimension(mField.get_moab(), 2, faces,
163  true);
164  bc_vec_ptr->emplace_back(it->getName(), block_attributes, faces);
165  }
167  }
168 
170 
172  bcSpatialRotationVecPtr = boost::make_shared<BcRotVec>();
173  return getBc(bcSpatialRotationVecPtr, "SPATIAL_ROTATION_BC", 4);
174  }
175 
177 
178  /**
179  * @brief Remove all, but entities where kinematic constrains are applied.
180  *
181  * @param meshset
182  * @param bc_ptr
183  * @param disp_block_set_name
184  * @param rot_block_set_name
185  * @param contact_set_name
186  * @return MoFEMErrorCode
187  */
189  boost::shared_ptr<TractionFreeBc> &bc_ptr,
190  const std::string contact_set_name);
191 
192  inline MoFEMErrorCode
195  boost::shared_ptr<TractionFreeBc>(new TractionFreeBc());
196  return getTractionFreeBc(meshset, bcSpatialFreeTraction, "CONTACT");
197  }
198 
200 
201  MoFEMErrorCode addFields(const EntityHandle meshset = 0);
202  MoFEMErrorCode projectGeometry(const EntityHandle meshset = 0);
203 
207  const EntityHandle meshset = 0);
208 
210  const double lambda,
211  const double mu,
212  const double sigma_y);
213 
214  MoFEMErrorCode addMaterial_HMHMooneyRivlin(const int tape, const double alpha,
215  const double beta,
216  const double lambda,
217  const double sigma_y);
218 
219  MoFEMErrorCode addMaterial_HMHNeohookean(const int tape, const double c10,
220  const double K);
221 
222  MoFEMErrorCode addMaterial_Hencky(double E, double nu);
223 
225  const int tag, const bool do_rhs, const bool do_lhs,
226  const bool calc_rates, SmartPetscObj<Vec> ver_vec,
227  boost::shared_ptr<VolumeElementForcesAndSourcesCore> fe);
228 
230  const int tag, const bool add_elastic, const bool add_material,
231  boost::shared_ptr<VolumeElementForcesAndSourcesCore> &fe_rhs,
232  boost::shared_ptr<VolumeElementForcesAndSourcesCore> &fe_lhs);
233 
235  setFaceElementOps(const bool add_elastic, const bool add_material,
236  boost::shared_ptr<FaceElementForcesAndSourcesCore> &fe_rhs,
237  boost::shared_ptr<FaceElementForcesAndSourcesCore> &fe_lhs);
238 
240 
241  boost::shared_ptr<ContactTree> &fe_contact_tree
242 
243  );
244 
245  MoFEMErrorCode setElasticElementOps(const int tag);
247 
248  friend struct solve_elastic_set_up;
249  MoFEMErrorCode solveElastic(TS ts, Vec x);
251 
253 
254  MoFEMErrorCode postProcessResults(const int tag, const std::string file,
255  Vec f_residual = PETSC_NULL,
256  Vec var_vec = PETSC_NULL,
257  std::vector<Tag> tags_to_transfer = {});
259  const std::string file,
260  Vec f_residual = PETSC_NULL);
261 
263 
264  struct SetUpSchur {
265  static boost::shared_ptr<SetUpSchur> createSetUpSchur(
266 
267  MoFEM::Interface &m_field, EshelbianCore *ep_core_ptr
268 
269  );
270  virtual MoFEMErrorCode setUp(TS) = 0;
271 
272  protected:
273  SetUpSchur() = default;
274  };
275 
276  MoFEMErrorCode calculateEnergyRelease(const int tag, TS ts);
277  MoFEMErrorCode calculateOrientation(const int tag, bool set_orientation);
282 
283  boost::shared_ptr<Range> contactFaces;
284  boost::shared_ptr<Range> crackFaces;
285  boost::shared_ptr<Range> frontEdges;
286  boost::shared_ptr<Range> frontAdjEdges;
287  boost::shared_ptr<Range> frontVertices;
288  boost::shared_ptr<Range> skeletonFaces;
289  boost::shared_ptr<Range> materialSkeletonFaces;
290  boost::shared_ptr<Range> maxMovedFaces;
291 
292  boost::shared_ptr<ParentFiniteElementAdjacencyFunctionSkeleton<2>>
294 
295  BitRefLevel bitAdjParent = BitRefLevel().set(); ///< bit ref level for parent
297  BitRefLevel().set(); ///< bit ref level for parent parent
298  BitRefLevel bitAdjEnt = BitRefLevel().set(); ///< bit ref level for parent
300  BitRefLevel().set(); ///< bit ref level for parent parent
301 
302  SmartPetscObj<Vec> solTSStep;
303 
304  CommInterface::EntitiesPetscVector volumeExchange;
305  CommInterface::EntitiesPetscVector faceExchange;
306  CommInterface::EntitiesPetscVector edgeExchange;
307  CommInterface::EntitiesPetscVector vertexExchange;
308 
309  std::vector<Tag>
310  listTagsToTransfer; ///< list of tags to transfer to postprocessor
311 
312  Mat S = PETSC_NULL; //< Schur complement matrix
313  AO aoS = PETSC_NULL; //< AO for Schur complement matrix
314  SmartPetscObj<IS> crackHybridIs; //< IS for crack hybrid field
315  std::vector<std::string> a00FieldList; //< list of fields for Schur complement
316  std::vector<boost::shared_ptr<Range>>
317  a00RangeList; //< list of ranges for Schur complement
318 
319 
320 };
MoFEM::UnknownInterface::getInterface
MoFEMErrorCode getInterface(IFACE *&iface) const
Get interface reference to pointer of interface.
Definition: UnknownInterface.hpp:93
MoFEM::K
VectorDouble K
Definition: Projection10NodeCoordsOnField.cpp:125
EshelbianCore::materialL2Disp
const std::string materialL2Disp
Definition: EshelbianCore.hpp:103
EshelbianCore::addMaterial_HMHMooneyRivlin
MoFEMErrorCode addMaterial_HMHMooneyRivlin(const int tape, const double alpha, const double beta, const double lambda, const double sigma_y)
Definition: EshelbianADOL-C.cpp:507
EshelbianCore::setNewFrontCoordinates
MoFEMErrorCode setNewFrontCoordinates()
Definition: EshelbianPlasticity.cpp:4990
EshelbianCore::inv_d_f_log
static double inv_d_f_log(const double v)
Definition: EshelbianCore.hpp:60
EshelbianCore::inv_d_f_linear
static double inv_d_f_linear(const double v)
Definition: EshelbianCore.hpp:72
EshelbianCore::dd_f
static boost::function< double(const double)> dd_f
Definition: EshelbianCore.hpp:34
EshelbianCore::setVolumeElementOps
MoFEMErrorCode setVolumeElementOps(const int tag, const bool add_elastic, const bool add_material, boost::shared_ptr< VolumeElementForcesAndSourcesCore > &fe_rhs, boost::shared_ptr< VolumeElementForcesAndSourcesCore > &fe_lhs)
Definition: EshelbianPlasticity.cpp:2119
EshelbianCore::bitAdjParent
BitRefLevel bitAdjParent
bit ref level for parent
Definition: EshelbianCore.hpp:295
EshelbianCore::a00FieldList
std::vector< std::string > a00FieldList
Definition: EshelbianCore.hpp:315
EshelbianCore::S
Mat S
Definition: EshelbianCore.hpp:312
EntityHandle
EshelbianCore::spatialL2Disp
const std::string spatialL2Disp
Definition: EshelbianCore.hpp:102
EshelbianCore::contactFaces
boost::shared_ptr< Range > contactFaces
Definition: EshelbianCore.hpp:283
EshelbianCore::SetUpSchur::createSetUpSchur
static boost::shared_ptr< SetUpSchur > createSetUpSchur(MoFEM::Interface &m_field, EshelbianCore *ep_core_ptr)
Definition: SetUpSchurImpl.cpp:578
EshelbianCore::f
static boost::function< double(const double)> f
Definition: EshelbianCore.hpp:32
EshelbianCore::elasticFeLhs
boost::shared_ptr< VolumeElementForcesAndSourcesCore > elasticFeLhs
Definition: EshelbianCore.hpp:90
EshelbianCore::frontLayers
int frontLayers
Definition: EshelbianCore.hpp:133
EshelbianCore::materialSkeletonFaces
boost::shared_ptr< Range > materialSkeletonFaces
Definition: EshelbianCore.hpp:289
EshelbianCore::bcSpatialFreeTraction
boost::shared_ptr< TractionFreeBc > bcSpatialFreeTraction
Definition: EshelbianCore.hpp:140
EshelbianCore::noStretch
static PetscBool noStretch
Definition: EshelbianCore.hpp:18
EshelbianCore::naturalBcElement
const std::string naturalBcElement
Definition: EshelbianCore.hpp:114
EshelbianCore::stretchSelector
static enum StretchSelector stretchSelector
Definition: EshelbianCore.hpp:17
MoFEM::Exceptions::MoFEMErrorCode
PetscErrorCode MoFEMErrorCode
MoFEM/PETSc error code.
Definition: Exceptions.hpp:56
E
EshelbianCore::addBoundaryFiniteElement
MoFEMErrorCode addBoundaryFiniteElement(const EntityHandle meshset=0)
Definition: EshelbianPlasticity.cpp:1442
EshelbianCore::alphaOmega
double alphaOmega
Definition: EshelbianCore.hpp:129
EshelbianCore::saveOrgCoords
MoFEMErrorCode saveOrgCoords()
Definition: EshelbianPlasticity.cpp:5194
EshelbianCore::contactTreeRhs
boost::shared_ptr< ContactTree > contactTreeRhs
Make a contact tree.
Definition: EshelbianCore.hpp:93
EshelbianCore::materialVolumeElement
const std::string materialVolumeElement
Definition: EshelbianCore.hpp:118
EshelbianCore::calculateOrientation
MoFEMErrorCode calculateOrientation(const int tag, bool set_orientation)
Definition: EshelbianPlasticity.cpp:4068
EshelbianCore::postProcessSkeletonResults
MoFEMErrorCode postProcessSkeletonResults(const int tag, const std::string file, Vec f_residual=PETSC_NULL)
Definition: EshelbianPlasticity.cpp:3558
EshelbianCore::getTractionFreeBc
MoFEMErrorCode getTractionFreeBc(const EntityHandle meshset, boost::shared_ptr< TractionFreeBc > &bc_ptr, const std::string contact_set_name)
Remove all, but entities where kinematic constrains are applied.
Definition: EshelbianPlasticity.cpp:1796
EshelbianCore::addCrackSurfaces
MoFEMErrorCode addCrackSurfaces()
Definition: EshelbianPlasticity.cpp:5028
EshelbianPlasticity::SymmetrySelector
SymmetrySelector
Definition: EshelbianPlasticity.hpp:44
EshelbianCore::addFields
MoFEMErrorCode addFields(const EntityHandle meshset=0)
Definition: EshelbianPlasticity.cpp:1027
EshelbianCore::frontVertices
boost::shared_ptr< Range > frontVertices
Definition: EshelbianCore.hpp:287
EshelbianCore::f_linear
static double f_linear(const double v)
Definition: EshelbianCore.hpp:67
EshelbianCore::dd_f_log_e
static double dd_f_log_e(const double v)
Definition: EshelbianCore.hpp:41
EshelbianCore::physicalEquations
boost::shared_ptr< PhysicalEquations > physicalEquations
Definition: EshelbianCore.hpp:87
EshelbianCore::griffithEnergy
static double griffithEnergy
Griffith energy.
Definition: EshelbianCore.hpp:29
EshelbianCore::solveElastic
MoFEMErrorCode solveElastic(TS ts, Vec x)
Definition: EshelbianPlasticity.cpp:2920
EshelbianCore::solve_elastic_set_up
friend struct solve_elastic_set_up
Definition: EshelbianCore.hpp:248
EshelbianCore::spaceOrder
int spaceOrder
Definition: EshelbianCore.hpp:124
EshelbianCore::crackHybridIs
SmartPetscObj< IS > crackHybridIs
Definition: EshelbianCore.hpp:314
EshelbianCore::frontEdges
boost::shared_ptr< Range > frontEdges
Definition: EshelbianCore.hpp:285
MoFEM::DeprecatedCoreInterface
Deprecated interface functions.
Definition: DeprecatedCoreInterface.hpp:16
EshelbianCore::setSingularity
static PetscBool setSingularity
Definition: EshelbianCore.hpp:19
EshelbianCore::contactDisp
const std::string contactDisp
Definition: EshelbianCore.hpp:108
EshelbianCore::setBaseVolumeElementOps
MoFEMErrorCode setBaseVolumeElementOps(const int tag, const bool do_rhs, const bool do_lhs, const bool calc_rates, SmartPetscObj< Vec > ver_vec, boost::shared_ptr< VolumeElementForcesAndSourcesCore > fe)
Definition: EshelbianPlasticity.cpp:1999
EshelbianCore::skeletonFaces
boost::shared_ptr< Range > skeletonFaces
Definition: EshelbianCore.hpp:288
EshelbianCore::maxMovedFaces
boost::shared_ptr< Range > maxMovedFaces
Definition: EshelbianCore.hpp:290
EshelbianCore::gradApproximator
static enum RotSelector gradApproximator
Definition: EshelbianCore.hpp:16
EshelbianCore::addMaterial_HMHNeohookean
MoFEMErrorCode addMaterial_HMHNeohookean(const int tape, const double c10, const double K)
Definition: EshelbianADOL-C.cpp:516
EshelbianCore::dmElastic
SmartPetscObj< DM > dmElastic
Elastic problem.
Definition: EshelbianCore.hpp:96
EshelbianCore::calculateEnergyRelease
MoFEMErrorCode calculateEnergyRelease(const int tag, TS ts)
Definition: EshelbianPlasticity.cpp:3638
EshelbianCore::parentAdjSkeletonFunctionDim2
boost::shared_ptr< ParentFiniteElementAdjacencyFunctionSkeleton< 2 > > parentAdjSkeletonFunctionDim2
Definition: EshelbianCore.hpp:293
EshelbianCore::query_interface
MoFEMErrorCode query_interface(boost::typeindex::type_index type_index, UnknownInterface **iface) const
Getting interface of core database.
Definition: EshelbianPlasticity.cpp:859
MoFEM::Sev
MoFEM::LogManager::SeverityLevel Sev
Definition: CoreTemplates.hpp:17
EshelbianCore::getSpatialDispBc
MoFEMErrorCode getSpatialDispBc()
[Getting norms]
Definition: EshelbianPlasticity.cpp:5290
CHKERR
#define CHKERR
Inline error check.
Definition: definitions.h:548
EshelbianCore::alphaRho
double alphaRho
Definition: EshelbianCore.hpp:130
EshelbianPlasticity::SYMMETRIC
@ SYMMETRIC
Definition: EshelbianPlasticity.hpp:44
MoFEM::CoreInterface::get_moab
virtual moab::Interface & get_moab()=0
EshelbianCore::inv_f_linear
static double inv_f_linear(const double v)
Definition: EshelbianCore.hpp:71
EshelbianCore::bitAdjEnt
BitRefLevel bitAdjEnt
bit ref level for parent
Definition: EshelbianCore.hpp:298
EshelbianCore::contactElement
const std::string contactElement
Definition: EshelbianCore.hpp:117
EshelbianCore::getOptions
MoFEMErrorCode getOptions()
Definition: EshelbianPlasticity.cpp:883
EshelbianCore::dM
SmartPetscObj< DM > dM
Coupled problem all fields.
Definition: EshelbianCore.hpp:95
EshelbianCore::rotAxis
const std::string rotAxis
Definition: EshelbianCore.hpp:110
EshelbianCore::solveDynamicRelaxation
MoFEMErrorCode solveDynamicRelaxation(TS ts, Vec x)
Definition: EshelbianPlasticity.cpp:2995
EshelbianCore::alphaU
double alphaU
Definition: EshelbianCore.hpp:127
EshelbianPlasticity::TractionFreeBc
std::vector< Range > TractionFreeBc
Definition: EshelbianPlasticity.hpp:435
EshelbianCore::eshelbyStress
const std::string eshelbyStress
Definition: EshelbianCore.hpp:101
EshelbianCore::SetUpSchur::setUp
virtual MoFEMErrorCode setUp(TS)=0
double
bit
auto bit
set bit
Definition: hanging_node_approx.cpp:75
EshelbianCore::materialH1Positions
const std::string materialH1Positions
Definition: EshelbianCore.hpp:105
EshelbianCore::gettingNorms
MoFEMErrorCode gettingNorms()
[Getting norms]
Definition: EshelbianPlasticity.cpp:5226
EshelbianCore::SetUpSchur::SetUpSchur
SetUpSchur()=default
EshelbianCore::inv_dd_f_log
static double inv_dd_f_log(const double v)
Definition: EshelbianCore.hpp:63
EshelbianCore::elementVolumeName
const std::string elementVolumeName
Definition: EshelbianCore.hpp:113
EshelbianCore::d_f_log
static double d_f_log(const double v)
Definition: EshelbianCore.hpp:49
EshelbianCore::spatialH1Disp
const std::string spatialH1Disp
Definition: EshelbianCore.hpp:104
EshelbianCore::setBlockTagsOnSkin
MoFEMErrorCode setBlockTagsOnSkin()
Definition: EshelbianPlasticity.cpp:3087
EshelbianCore::aoS
AO aoS
Definition: EshelbianCore.hpp:313
EshelbianPlasticity::StretchSelector
StretchSelector
Definition: EshelbianPlasticity.hpp:46
EshelbianCore::materialSkeletonElement
const std::string materialSkeletonElement
Definition: EshelbianCore.hpp:119
EshelbianCore::mField
MoFEM::Interface & mField
Definition: EshelbianCore.hpp:84
EshelbianCore::getSpatialRotationBc
MoFEMErrorCode getSpatialRotationBc()
Definition: EshelbianCore.hpp:171
EshelbianCore::bitAdjEntMask
BitRefLevel bitAdjEntMask
bit ref level for parent parent
Definition: EshelbianCore.hpp:299
EshelbianCore::addCrackMeshsetId
static int addCrackMeshsetId
Definition: EshelbianCore.hpp:28
EshelbianCore::EshelbianCore
EshelbianCore(MoFEM::Interface &m_field)
Definition: EshelbianPlasticity.cpp:877
EshelbianCore::exponentBase
static double exponentBase
Definition: EshelbianCore.hpp:31
EshelbianCore::getSpatialTractionFreeBc
MoFEMErrorCode getSpatialTractionFreeBc(const EntityHandle meshset=0)
Definition: EshelbianCore.hpp:193
EshelbianCore::setElasticElementOps
MoFEMErrorCode setElasticElementOps(const int tag)
Definition: EshelbianPlasticity.cpp:2752
EshelbianCore::materialOrder
int materialOrder
Definition: EshelbianCore.hpp:126
EshelbianCore::spaceH1Order
int spaceH1Order
Definition: EshelbianCore.hpp:125
EshelbianCore::hybridSpatialDisp
const std::string hybridSpatialDisp
Definition: EshelbianCore.hpp:106
EshelbianCore::stretchTensor
const std::string stretchTensor
Definition: EshelbianCore.hpp:109
EshelbianCore::bcSpatialRotationVecPtr
boost::shared_ptr< BcRotVec > bcSpatialRotationVecPtr
Definition: EshelbianCore.hpp:138
EshelbianCore::inv_f_log_e
static double inv_f_log_e(const double v)
Definition: EshelbianCore.hpp:42
EshelbianCore::faceExchange
CommInterface::EntitiesPetscVector faceExchange
Definition: EshelbianCore.hpp:305
EshelbianCore::symmetrySelector
static enum SymmetrySelector symmetrySelector
Definition: EshelbianCore.hpp:14
EshelbianCore::elasticBcRhs
boost::shared_ptr< FaceElementForcesAndSourcesCore > elasticBcRhs
Definition: EshelbianCore.hpp:92
EshelbianCore::a00RangeList
std::vector< boost::shared_ptr< Range > > a00RangeList
Definition: EshelbianCore.hpp:317
EshelbianCore::~EshelbianCore
virtual ~EshelbianCore()
EshelbianCore::bitAdjParentMask
BitRefLevel bitAdjParentMask
bit ref level for parent parent
Definition: EshelbianCore.hpp:296
MoFEM::UnknownInterface
base class for all interface classes
Definition: UnknownInterface.hpp:34
EshelbianCore::skeletonElement
const std::string skeletonElement
Definition: EshelbianCore.hpp:116
EshelbianCore::setElasticElementToTs
MoFEMErrorCode setElasticElementToTs(DM dm)
Definition: EshelbianPlasticity.cpp:2775
EshelbianCore::setContactElementRhsOps
MoFEMErrorCode setContactElementRhsOps(boost::shared_ptr< ContactTree > &fe_contact_tree)
Definition: EshelbianPlasticity.cpp:2653
EshelbianCore::inv_dd_f_log_e
static double inv_dd_f_log_e(const double v)
Definition: EshelbianCore.hpp:44
EshelbianCore::listTagsToTransfer
std::vector< Tag > listTagsToTransfer
list of tags to transfer to postprocessor
Definition: EshelbianCore.hpp:310
v
const double v
phase velocity of light in medium (cm/ns)
Definition: initial_diffusion.cpp:40
EshelbianCore::SetUpSchur
Definition: EshelbianCore.hpp:264
Range
EshelbianCore::elasticFeRhs
boost::shared_ptr< VolumeElementForcesAndSourcesCore > elasticFeRhs
Definition: EshelbianCore.hpp:89
EshelbianCore::inv_d_f_log_e
static double inv_d_f_log_e(const double v)
Definition: EshelbianCore.hpp:43
EshelbianCore::d_f_log_e
static double d_f_log_e(const double v)
Definition: EshelbianCore.hpp:40
EshelbianCore::f_log
static double f_log(const double v)
Definition: EshelbianCore.hpp:46
EshelbianCore::alphaW
double alphaW
Definition: EshelbianCore.hpp:128
EshelbianPlasticity::LARGE_ROT
@ LARGE_ROT
Definition: EshelbianPlasticity.hpp:45
EshelbianPlasticity::LOG
@ LOG
Definition: EshelbianPlasticity.hpp:46
EshelbianCore::dynamicRelaxation
static PetscBool dynamicRelaxation
Definition: EshelbianCore.hpp:20
EshelbianCore::createExchangeVectors
MoFEMErrorCode createExchangeVectors(Sev sev)
Definition: EshelbianPlasticity.cpp:5356
EshelbianCore::dmMaterial
SmartPetscObj< DM > dmMaterial
Material problem.
Definition: EshelbianCore.hpp:97
EshelbianCore::postProcessResults
MoFEMErrorCode postProcessResults(const int tag, const std::string file, Vec f_residual=PETSC_NULL, Vec var_vec=PETSC_NULL, std::vector< Tag > tags_to_transfer={})
Definition: EshelbianPlasticity.cpp:3148
EshelbianCore::bubbleField
const std::string bubbleField
Definition: EshelbianCore.hpp:111
EshelbianCore::frontAdjEdges
boost::shared_ptr< Range > frontAdjEdges
Definition: EshelbianCore.hpp:286
EshelbianCore::dd_f_log
static double dd_f_log(const double v)
Definition: EshelbianCore.hpp:52
EshelbianPlasticity::RotSelector
RotSelector
Definition: EshelbianPlasticity.hpp:45
EshelbianCore::addVolumeFiniteElement
MoFEMErrorCode addVolumeFiniteElement(const EntityHandle meshset=0)
Definition: EshelbianPlasticity.cpp:1380
EshelbianCore::bcSpatialTraction
boost::shared_ptr< TractionBcVec > bcSpatialTraction
Definition: EshelbianCore.hpp:139
EshelbianCore::skinElement
const std::string skinElement
Definition: EshelbianCore.hpp:115
EshelbianCore::inv_f
static boost::function< double(const double)> inv_f
Definition: EshelbianCore.hpp:35
EshelbianCore::getSpatialTractionBc
MoFEMErrorCode getSpatialTractionBc()
Definition: EshelbianPlasticity.cpp:5328
mu
double mu
Definition: dynamic_first_order_con_law.cpp:97
EshelbianCore::hybridMaterialDisp
const std::string hybridMaterialDisp
Definition: EshelbianCore.hpp:107
lambda
static double lambda
Definition: incompressible_elasticity.cpp:199
EshelbianCore::vertexExchange
CommInterface::EntitiesPetscVector vertexExchange
Definition: EshelbianCore.hpp:307
EigenMatrix::Vec
const FTensor::Tensor2< T, Dim, Dim > Vec
Definition: MatrixFunction.hpp:64
MOFEM_DATA_INCONSISTENCY
@ MOFEM_DATA_INCONSISTENCY
Definition: definitions.h:31
EshelbianCore::bcSpatialDispVecPtr
boost::shared_ptr< BcDispVec > bcSpatialDispVecPtr
Definition: EshelbianCore.hpp:137
EshelbianCore::elasticBcLhs
boost::shared_ptr< FaceElementForcesAndSourcesCore > elasticBcLhs
Definition: EshelbianCore.hpp:91
EshelbianCore::volumeExchange
CommInterface::EntitiesPetscVector volumeExchange
Definition: EshelbianCore.hpp:304
EshelbianCore::setFaceElementOps
MoFEMErrorCode setFaceElementOps(const bool add_elastic, const bool add_material, boost::shared_ptr< FaceElementForcesAndSourcesCore > &fe_rhs, boost::shared_ptr< FaceElementForcesAndSourcesCore > &fe_lhs)
Definition: EshelbianPlasticity.cpp:2570
EshelbianCore::piolaStress
const std::string piolaStress
Definition: EshelbianCore.hpp:100
EshelbianCore::addMaterial_Hencky
MoFEMErrorCode addMaterial_Hencky(double E, double nu)
Definition: EshelbianADOL-C.cpp:525
EshelbianCore::inv_d_f
static boost::function< double(const double)> inv_d_f
Definition: EshelbianCore.hpp:36
EshelbianCore::inv_dd_f_linear
static double inv_dd_f_linear(const double v)
Definition: EshelbianCore.hpp:73
EshelbianCore::rotSelector
static enum RotSelector rotSelector
Definition: EshelbianCore.hpp:15
EshelbianCore::projectGeometry
MoFEMErrorCode projectGeometry(const EntityHandle meshset=0)
Definition: EshelbianPlasticity.cpp:1251
MoFEM::Types::BitRefLevel
std::bitset< BITREFLEVEL_SIZE > BitRefLevel
Bit structure attached to each entity identifying to what mesh entity is attached.
Definition: Types.hpp:40
EshelbianCore::getBc
MoFEMErrorCode getBc(boost::shared_ptr< BC > &bc_vec_ptr, const std::string block_name, const int nb_attributes)
Definition: EshelbianCore.hpp:143
EshelbianCore::crackFaces
boost::shared_ptr< Range > crackFaces
Definition: EshelbianCore.hpp:284
EshelbianCore::contactRefinementLevels
int contactRefinementLevels
Definition: EshelbianCore.hpp:132
EshelbianCore::dataAtPts
boost::shared_ptr< DataAtIntegrationPts > dataAtPts
Definition: EshelbianCore.hpp:86
EshelbianCore::dynamicStep
static int dynamicStep
Definition: EshelbianCore.hpp:25
EshelbianCore::crackingOn
static PetscBool crackingOn
Definition: EshelbianCore.hpp:22
EshelbianCore::d_f_linear
static double d_f_linear(const double v)
Definition: EshelbianCore.hpp:68
EshelbianCore::f_log_e
static double f_log_e(const double v)
Definition: EshelbianCore.hpp:39
EshelbianCore::solTSStep
SmartPetscObj< Vec > solTSStep
Definition: EshelbianCore.hpp:302
EshelbianCore::dynamicTime
static double dynamicTime
Definition: EshelbianCore.hpp:23
MoFEMFunctionReturn
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:429
EshelbianCore::dmPrjSpatial
SmartPetscObj< DM > dmPrjSpatial
Projection spatial displacement.
Definition: EshelbianCore.hpp:98
EshelbianCore::l2UserBaseScale
static PetscBool l2UserBaseScale
Definition: EshelbianCore.hpp:27
EshelbianCore::dd_f_linear
static double dd_f_linear(const double v)
Definition: EshelbianCore.hpp:69
MoFEMFunctionBegin
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:359
EshelbianCore::addDMs
MoFEMErrorCode addDMs(const BitRefLevel bit=BitRefLevel().set(0), const EntityHandle meshset=0)
Definition: EshelbianPlasticity.cpp:1614
EshelbianCore::createCrackSurfaceMeshset
MoFEMErrorCode createCrackSurfaceMeshset()
Definition: EshelbianPlasticity.cpp:5214
EshelbianCore::d_f
static boost::function< double(const double)> d_f
Definition: EshelbianCore.hpp:33
EshelbianCore::inv_dd_f
static boost::function< double(const double)> inv_dd_f
Definition: EshelbianCore.hpp:37
EshelbianCore::addMaterial_HMHHStVenantKirchhoff
MoFEMErrorCode addMaterial_HMHHStVenantKirchhoff(const int tape, const double lambda, const double mu, const double sigma_y)
Definition: EshelbianADOL-C.cpp:498
EshelbianCore
Definition: EshelbianCore.hpp:12
EshelbianCore::edgeExchange
CommInterface::EntitiesPetscVector edgeExchange
Definition: EshelbianCore.hpp:306
EshelbianCore::inv_f_log
static double inv_f_log(const double v)
Definition: EshelbianCore.hpp:57