v0.14.0
EshelbianPlasticity.hpp
Go to the documentation of this file.
1 /**
2  * \file EshelbianPlasticity.hpp
3  * \brief Eshelbian plasticity interface
4  *
5  * \brief Problem implementation for mix element for large-strain elasticity
6  *
7  * For reference on mixed formulation see: \cite gopalakrishnan2012second and
8  * \cite cockburn2010new
9  *
10  * \todo Implementation of plasticity
11  */
12 
13 constexpr int SPACE_DIM = 3;
14 // constexpr auto A = AssemblyType::BLOCK_SCHUR;
15 constexpr auto A = AssemblyType::BLOCK_MAT;
16 
17 #ifndef __ESHELBIAN_PLASTICITY_HPP__
18  #define __ESHELBIAN_PLASTICITY_HPP__
19 
20 namespace EshelbianPlasticity {
21 
23 
24  using CachePhi = boost::tuple<int, int, MatrixDouble>;
25 
26  CGGUserPolynomialBase(boost::shared_ptr<CachePhi> cache_phi = nullptr);
27  ~CGGUserPolynomialBase() = default;
28 
29  MoFEMErrorCode query_interface(boost::typeindex::type_index type_index,
30  BaseFunctionUnknownInterface **iface) const;
32  boost::shared_ptr<BaseFunctionCtx> ctx_ptr);
33 
34 private:
35 
37  boost::shared_ptr<CachePhi> cachePhiPtr;
38 
40 };
41 
42 struct ContactTree;
43 
47 
48 using MatrixPtr = boost::shared_ptr<MatrixDouble>;
49 using VectorPtr = boost::shared_ptr<VectorDouble>;
50 
57 
58 struct PhysicalEquations;
60  : public boost::enable_shared_from_this<DataAtIntegrationPts> {
61 
73 
93 
108  VectorDouble energyAtPts; //< this is density of energy at integration points
110 
116 
118 
122 
127 
128  double mu;
129  double lambda;
130  double piolaScale = 1.;
131  double faceEnergy = 0.;
132 
133  inline auto getPiolaScalePtr() {
134  return boost::shared_ptr<double>(shared_from_this(), &piolaScale);
135  }
136 
138  return boost::shared_ptr<MatrixDouble>(shared_from_this(),
140  }
142  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &approxPAtPts);
143  }
144 
146  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &divPAtPts);
147  }
148 
150  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &divSigmaAtPts);
151  }
152 
154  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &wL2AtPts);
155  }
156 
158  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &wL2DotAtPts);
159  }
160 
162  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &wL2DotDotAtPts);
163  }
164 
166  return boost::shared_ptr<MatrixDouble>(shared_from_this(),
168  }
169 
171  return boost::shared_ptr<MatrixDouble>(shared_from_this(),
173  }
174 
176  return boost::shared_ptr<MatrixDouble>(shared_from_this(),
178  }
179 
181  return boost::shared_ptr<MatrixDouble>(shared_from_this(),
183  }
184 
186  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &rotAxisAtPts);
187  }
188 
190  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &rotAxis0AtPts);
191  }
192 
194  return boost::shared_ptr<MatrixDouble>(shared_from_this(),
195  &rotAxisDotAtPts);
196  }
197 
199  return boost::shared_ptr<MatrixDouble>(shared_from_this(),
201  }
202 
204  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &GAtPts);
205  }
206 
208  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &GAtPts);
209  }
210 
212  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &matD);
213  }
214 
216  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &matInvD);
217  }
218 
220  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &matAxiatorD);
221  }
222 
224  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &matDeviatorD);
225  }
226 
228  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &wH1AtPts);
229  }
230 
232  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &XH1AtPts);
233  }
234 
236  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &contactL2AtPts);
237  }
238 
240  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &wGradH1AtPts);
241  }
242 
244  return boost::shared_ptr<VectorDouble>(shared_from_this(), &jacobianAtPts);
245  }
246 
248  return boost::shared_ptr<MatrixDouble>(shared_from_this(),
250  };
251 
253  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &varRotAxis);
254  }
255 
257  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &varLogStreach);
258  }
259 
261  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &varPiola);
262  }
263 
265  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &varDivPiola);
266  }
267 
269  return boost::shared_ptr<MatrixDouble>(shared_from_this(), &varWL2);
270  }
271 
272  boost::shared_ptr<PhysicalEquations> physicsPtr;
273 };
274 
275 struct OpJacobian;
276 
278 
285 
287 
290 
291  PhysicalEquations() = delete;
292  PhysicalEquations(const int size_active, const int size_dependent)
293  : activeVariables(size_active, 0),
294  dependentVariablesPiola(size_dependent, 0),
295  dependentVariablesPiolaDirevatives(size_dependent * size_active, 0) {}
296  virtual ~PhysicalEquations() = default;
297 
298  virtual MoFEMErrorCode recordTape(const int tag, DTensor2Ptr *t_h) = 0;
299 
300  virtual OpJacobian *
301  returnOpJacobian(const int tag, const bool eval_rhs, const bool eval_lhs,
302  boost::shared_ptr<DataAtIntegrationPts> data_ptr,
303  boost::shared_ptr<PhysicalEquations> physics_ptr) = 0;
304 
305  virtual VolUserDataOperator *
306  returnOpSpatialPhysical(const std::string &field_name,
307  boost::shared_ptr<DataAtIntegrationPts> data_ptr,
308  const double alpha_u);
309 
311  std::string row_field, std::string col_field,
312  boost::shared_ptr<DataAtIntegrationPts> data_ptr, const double alpha);
313 
314  virtual VolUserDataOperator *
315  returnOpCalculateEnergy(boost::shared_ptr<DataAtIntegrationPts> data_ptr,
316  boost::shared_ptr<double> total_energy_ptr);
317 
319  boost::shared_ptr<DataAtIntegrationPts> data_ptr,
320  boost::shared_ptr<PhysicalEquations> physics_ptr);
321 
323  boost::shared_ptr<DataAtIntegrationPts> data_ptr,
324  boost::shared_ptr<PhysicalEquations> physics_ptr);
325 
326  virtual VolUserDataOperator *
327  returnOpSetScale(boost::shared_ptr<double> scale_ptr,
328  boost::shared_ptr<PhysicalEquations> physics_ptr);
329 
330  std::vector<double> activeVariables;
331  std::vector<double> dependentVariablesPiola;
333 
334  /** \name Active variables */
335 
336  /**@{*/
337 
338  template <int S>
339  inline static DTensor2Ptr get_VecTensor2(std::vector<double> &v) {
340  return DTensor2Ptr(&v[S + 0], &v[S + 1], &v[S + 2], &v[S + 3], &v[S + 4],
341  &v[S + 5], &v[S + 6], &v[S + 7], &v[S + 8]);
342  }
343 
344  template <int S>
345  inline static DTensor0Ptr get_VecTensor0(std::vector<double> &v) {
346  return DTensor0Ptr(&v[S + 0]);
347  }
348 
349  template <int S0>
350  inline static DTensor3Ptr get_vecTensor3(std::vector<double> &v,
351  const int nba) {
352 
353  const int A00 = nba * 0 + S0;
354  const int A01 = nba * 1 + S0;
355  const int A02 = nba * 2 + S0;
356  const int A10 = nba * 3 + S0;
357  const int A11 = nba * 4 + S0;
358  const int A12 = nba * 5 + S0;
359  const int A20 = nba * 6 + S0;
360  const int A21 = nba * 7 + S0;
361  const int A22 = nba * 8 + S0;
362 
363  return DTensor3Ptr(
364 
365  &v[A00 + 0], &v[A00 + 1], &v[A00 + 2], &v[A01 + 0], &v[A01 + 1],
366  &v[A01 + 2], &v[A02 + 0], &v[A02 + 1], &v[A02 + 2],
367 
368  &v[A10 + 0], &v[A10 + 1], &v[A10 + 2], &v[A11 + 0], &v[A11 + 1],
369  &v[A11 + 2], &v[A12 + 0], &v[A12 + 1], &v[A12 + 2],
370 
371  &v[A20 + 0], &v[A20 + 1], &v[A20 + 2], &v[A21 + 0], &v[A21 + 1],
372  &v[A21 + 2], &v[A22 + 0], &v[A22 + 1], &v[A22 + 2]
373 
374  );
375  }
376 
377  /**@}*/
378 
379  /** \name Active variables */
380 
381  /**@{*/
382 
383  inline DTensor2Ptr get_h() { return get_VecTensor2<0>(activeVariables); }
384 
385  /**@}*/
386 
387  /** \name Dependent variables */
388 
389  /**@{*/
390 
391  inline DTensor2Ptr get_P() {
392  return get_VecTensor2<0>(dependentVariablesPiola);
393  }
394 
395  /**@}*/
396 
397  /** \name Derivatives of dependent variables */
398 
399  /**@{*/
400 
402  return get_vecTensor3<0>(dependentVariablesPiolaDirevatives,
403  activeVariables.size());
404  }
406  return get_vecTensor3<3>(dependentVariablesPiolaDirevatives,
407  activeVariables.size());
408  }
410  return get_vecTensor3<6>(dependentVariablesPiolaDirevatives,
411  activeVariables.size());
412  }
413 
414  /**@}*/
415 };
416 
417 struct BcDisp {
418  BcDisp(std::string name, std::vector<double> &attr, Range &faces);
419  std::string blockName;
423 };
424 typedef std::vector<BcDisp> BcDispVec;
425 
426 struct BcRot {
427  BcRot(std::string name, std::vector<double> &attr, Range &faces);
428  std::string blockName;
431  double theta;
432 };
433 typedef std::vector<BcRot> BcRotVec;
434 
435 typedef std::vector<Range> TractionFreeBc;
436 
437 struct TractionBc {
438  TractionBc(std::string name, std::vector<double> &attr, Range &faces);
439  std::string blockName;
443 };
444 typedef std::vector<TractionBc> TractionBcVec;
445 
446  #include "EshelbianCore.hpp"
447  #include "EshelbianOperators.hpp"
448 
449 } // namespace EshelbianPlasticity
450 
451 #endif //__ESHELBIAN_PLASTICITY_HPP__
EshelbianPlasticity::DataAtIntegrationPts::jacobianAtPts
VectorDouble jacobianAtPts
Definition: EshelbianPlasticity.hpp:71
EshelbianPlasticity::TractionBc
Definition: EshelbianPlasticity.hpp:437
EshelbianPlasticity::BcDispVec
std::vector< BcDisp > BcDispVec
Definition: EshelbianPlasticity.hpp:424
EshelbianPlasticity::PhysicalEquations::DTensor2
FTensor::Tensor2< double, 3, 3 > DTensor2
Definition: EshelbianPlasticity.hpp:283
EshelbianPlasticity::DataAtIntegrationPts::leviKirchhoffdLogStreatchAtPts
MatrixDouble leviKirchhoffdLogStreatchAtPts
Definition: EshelbianPlasticity.hpp:99
MoFEM::EntitiesFieldData::EntData
Data on single entity (This is passed as argument to DataOperator::doWork)
Definition: EntitiesFieldData.hpp:128
EshelbianPlasticity::BcRot::BcRot
BcRot(std::string name, std::vector< double > &attr, Range &faces)
Definition: EshelbianPlasticity.cpp:1768
EshelbianPlasticity::DataAtIntegrationPts::logStretch2H1AtPts
MatrixDouble logStretch2H1AtPts
Definition: EshelbianPlasticity.hpp:91
EshelbianPlasticity::DataAtIntegrationPts::getDivSigmaAtPts
MatrixPtr getDivSigmaAtPts()
Definition: EshelbianPlasticity.hpp:149
EshelbianPlasticity::DataAtIntegrationPts::getSmallWH1AtPts
MatrixPtr getSmallWH1AtPts()
Definition: EshelbianPlasticity.hpp:227
EshelbianPlasticity::TractionBcVec
std::vector< TractionBc > TractionBcVec
Definition: EshelbianPlasticity.hpp:444
EshelbianPlasticity::DataAtIntegrationPts::XH1AtPts
MatrixDouble XH1AtPts
Definition: EshelbianPlasticity.hpp:88
EshelbianPlasticity::PhysicalEquations::PhysicalEquations
PhysicalEquations(const int size_active, const int size_dependent)
Definition: EshelbianPlasticity.hpp:292
EshelbianPlasticity::LINEAR
@ LINEAR
Definition: EshelbianPlasticity.hpp:46
EshelbianPlasticity::CGGUserPolynomialBase
Definition: EshelbianPlasticity.hpp:22
EshelbianPlasticity::DataAtIntegrationPts::approxSigmaAtPts
MatrixDouble approxSigmaAtPts
Definition: EshelbianPlasticity.hpp:63
EshelbianPlasticity::PhysicalEquations::activeVariables
std::vector< double > activeVariables
Definition: EshelbianPlasticity.hpp:330
EshelbianPlasticity::BcRot
Definition: EshelbianPlasticity.hpp:426
EshelbianPlasticity::DataAtIntegrationPts::getLargeXH1AtPts
MatrixPtr getLargeXH1AtPts()
Definition: EshelbianPlasticity.hpp:231
MoFEM::Types::VectorDouble3
VectorBoundedArray< double, 3 > VectorDouble3
Definition: Types.hpp:92
EshelbianPlasticity::DataAtIntegrationPts::getJacobianAtPts
VectorPtr getJacobianAtPts()
Definition: EshelbianPlasticity.hpp:243
EshelbianPlasticity::PhysicalEquations::returnOpSpatialPhysical_du_du
virtual VolUserDataOperator * returnOpSpatialPhysical_du_du(std::string row_field, std::string col_field, boost::shared_ptr< DataAtIntegrationPts > data_ptr, const double alpha)
Definition: EshelbianADOL-C.cpp:260
FTensor::Tensor1< adouble, 3 >
EshelbianPlasticity::DataAtIntegrationPts::getSmallWL2DotDotAtPts
MatrixPtr getSmallWL2DotDotAtPts()
Definition: EshelbianPlasticity.hpp:161
EshelbianPlasticity::DataAtIntegrationPts::hAtPts
MatrixDouble hAtPts
Definition: EshelbianPlasticity.hpp:94
EshelbianPlasticity::DataAtIntegrationPts::getBigG0AtPts
MatrixPtr getBigG0AtPts()
Definition: EshelbianPlasticity.hpp:207
EshelbianPlasticity::DataAtIntegrationPts::getPiolaScalePtr
auto getPiolaScalePtr()
Definition: EshelbianPlasticity.hpp:133
EshelbianPlasticity::DataAtIntegrationPts::wH1AtPts
MatrixDouble wH1AtPts
Definition: EshelbianPlasticity.hpp:87
EshelbianPlasticity::DataAtIntegrationPts::getGradLogStretchDotTensorAtPts
MatrixPtr getGradLogStretchDotTensorAtPts()
Definition: EshelbianPlasticity.hpp:180
EshelbianPlasticity::DataAtIntegrationPts
Definition: EshelbianPlasticity.hpp:59
EshelbianPlasticity::PhysicalEquations::DTensor0Ptr
FTensor::Tensor0< FTensor::PackPtr< double *, 1 > > DTensor0Ptr
Definition: EshelbianPlasticity.hpp:286
EshelbianPlasticity::PhysicalEquations::returnOpJacobian
virtual OpJacobian * returnOpJacobian(const int tag, const bool eval_rhs, const bool eval_lhs, boost::shared_ptr< DataAtIntegrationPts > data_ptr, boost::shared_ptr< PhysicalEquations > physics_ptr)=0
EshelbianPlasticity::DataAtIntegrationPts::rotAxisDotAtPts
MatrixDouble rotAxisDotAtPts
Definition: EshelbianPlasticity.hpp:80
EshelbianPlasticity::PhysicalEquations::DTensor2Ptr
FTensor::Tensor2< FTensor::PackPtr< double *, 1 >, 3, 3 > DTensor2Ptr
Definition: EshelbianPlasticity.hpp:288
EshelbianPlasticity::PhysicalEquations::get_P_dh2
DTensor3Ptr get_P_dh2()
Definition: EshelbianPlasticity.hpp:409
EshelbianPlasticity::DataAtIntegrationPts::matInvD
MatrixDouble matInvD
Definition: EshelbianPlasticity.hpp:126
EshelbianPlasticity::TractionBc::blockName
std::string blockName
Definition: EshelbianPlasticity.hpp:439
MoFEM::BLOCK_MAT
@ BLOCK_MAT
Definition: FormsIntegrators.hpp:107
EshelbianPlasticity::DataAtIntegrationPts::getRotAxisDotAtPts
MatrixPtr getRotAxisDotAtPts()
Definition: EshelbianPlasticity.hpp:193
EshelbianPlasticity::DataAtIntegrationPts::stretchTensorAtPts
MatrixDouble stretchTensorAtPts
Definition: EshelbianPlasticity.hpp:70
EshelbianPlasticity::BcRot::blockName
std::string blockName
Definition: EshelbianPlasticity.hpp:428
EshelbianPlasticity::PhysicalEquations::returnOpSpatialPhysical
virtual VolUserDataOperator * returnOpSpatialPhysical(const std::string &field_name, boost::shared_ptr< DataAtIntegrationPts > data_ptr, const double alpha_u)
Definition: EshelbianADOL-C.cpp:99
MoFEM::Exceptions::MoFEMErrorCode
PetscErrorCode MoFEMErrorCode
MoFEM/PETSc error code.
Definition: Exceptions.hpp:56
MoFEM::Types::MatrixDouble
UBlasMatrix< double > MatrixDouble
Definition: Types.hpp:77
EshelbianPlasticity::DataAtIntegrationPts::matDeviatorD
MatrixDouble matDeviatorD
Definition: EshelbianPlasticity.hpp:125
EshelbianPlasticity::PhysicalEquations::~PhysicalEquations
virtual ~PhysicalEquations()=default
FaceSideEle
PipelineManager::ElementsAndOpsByDim< FE_DIM >::FaceSideEle FaceSideEle
Definition: level_set.cpp:41
EshelbianPlasticity::BcRotVec
std::vector< BcRot > BcRotVec
Definition: EshelbianPlasticity.hpp:433
EshelbianPlasticity::DataAtIntegrationPts::SigmaAtPts
MatrixDouble SigmaAtPts
Definition: EshelbianPlasticity.hpp:107
EshelbianPlasticity::SymmetrySelector
SymmetrySelector
Definition: EshelbianPlasticity.hpp:44
EshelbianPlasticity
Definition: CGGTonsorialBubbleBase.hpp:11
EshelbianPlasticity::DataAtIntegrationPts::W0AtPts
MatrixDouble W0AtPts
Definition: EshelbianPlasticity.hpp:84
EshelbianPlasticity::DataAtIntegrationPts::logStretchTotalTensorAtPts
MatrixDouble logStretchTotalTensorAtPts
Definition: EshelbianPlasticity.hpp:92
EshelbianPlasticity::DataAtIntegrationPts::getLeviKirchhoffAtPts
MatrixPtr getLeviKirchhoffAtPts()
Definition: EshelbianPlasticity.hpp:247
EshelbianPlasticity::DataAtIntegrationPts::flowL2AtPts
MatrixDouble flowL2AtPts
Definition: EshelbianPlasticity.hpp:109
EshelbianPlasticity::PhysicalEquations
Definition: EshelbianPlasticity.hpp:277
EshelbianPlasticity::DataAtIntegrationPts::getStretchTensorAtPts
MatrixPtr getStretchTensorAtPts()
Definition: EshelbianPlasticity.hpp:170
EshelbianPlasticity::DataAtIntegrationPts::varDivPiola
MatrixDouble varDivPiola
Definition: EshelbianPlasticity.hpp:114
EshelbianPlasticity::NO_H1_CONFIGURATION
@ NO_H1_CONFIGURATION
Definition: EshelbianPlasticity.hpp:45
EshelbianPlasticity::EleOnSide
PipelineManager::ElementsAndOpsByDim< SPACE_DIM >::FaceSideEle EleOnSide
Definition: EshelbianPlasticity.hpp:55
EshelbianPlasticity::PhysicalEquations::DTensor3
FTensor::Tensor3< double, 3, 3, 3 > DTensor3
Definition: EshelbianPlasticity.hpp:284
EshelbianPlasticity::DataAtIntegrationPts::getRotAxisAtPts
MatrixPtr getRotAxisAtPts()
Definition: EshelbianPlasticity.hpp:185
EshelbianPlasticity::DataAtIntegrationPts::getApproxSigmaAtPts
MatrixPtr getApproxSigmaAtPts()
Definition: EshelbianPlasticity.hpp:137
EshelbianPlasticity::DataAtIntegrationPts::getRotAxisGradDotAtPts
MatrixPtr getRotAxisGradDotAtPts()
Definition: EshelbianPlasticity.hpp:198
EshelbianPlasticity::DataAtIntegrationPts::wL2AtPts
MatrixDouble wL2AtPts
Definition: EshelbianPlasticity.hpp:66
EshelbianPlasticity::DataAtIntegrationPts::WAtPts
MatrixDouble WAtPts
Definition: EshelbianPlasticity.hpp:83
FTensor::Tensor2< adouble, 3, 3 >
EshelbianPlasticity::CGGUserPolynomialBase::shapeFun
MatrixDouble shapeFun
Definition: EshelbianPlasticity.hpp:36
EshelbianPlasticity::DataAtIntegrationPts::rotAxisAtPts
MatrixDouble rotAxisAtPts
Definition: EshelbianPlasticity.hpp:79
MoFEM::Types::VectorInt3
VectorBoundedArray< int, 3 > VectorInt3
Definition: Types.hpp:87
EshelbianPlasticity::MatrixPtr
boost::shared_ptr< MatrixDouble > MatrixPtr
Definition: EshelbianPlasticity.hpp:48
EshelbianPlasticity::DataAtIntegrationPts::contactL2AtPts
MatrixDouble contactL2AtPts
Definition: EshelbianPlasticity.hpp:89
EshelbianPlasticity::DataAtIntegrationPts::getVarPiolaPts
MatrixPtr getVarPiolaPts()
Definition: EshelbianPlasticity.hpp:260
SideEleOp
EshelbianPlasticity::DataAtIntegrationPts::adjointPdstretchAtPts
MatrixDouble adjointPdstretchAtPts
Definition: EshelbianPlasticity.hpp:101
EshelbianPlasticity::BcDisp::flags
VectorInt3 flags
Definition: EshelbianPlasticity.hpp:422
EshelbianPlasticity::BcDisp::faces
Range faces
Definition: EshelbianPlasticity.hpp:420
EshelbianPlasticity::DataAtIntegrationPts::eigenVecs
MatrixDouble eigenVecs
Definition: EshelbianPlasticity.hpp:120
EshelbianPlasticity::DataAtIntegrationPts::logStretchDotTensorAtPts
MatrixDouble logStretchDotTensorAtPts
Definition: EshelbianPlasticity.hpp:77
EshelbianPlasticity::DataAtIntegrationPts::getDivVarPiolaPts
MatrixPtr getDivVarPiolaPts()
Definition: EshelbianPlasticity.hpp:264
EshelbianPlasticity::EntData
EntitiesFieldData::EntData EntData
Definition: EshelbianPlasticity.hpp:51
EshelbianPlasticity::DataAtIntegrationPts::varRotAxis
MatrixDouble varRotAxis
Definition: EshelbianPlasticity.hpp:111
EshelbianPlasticity::DataAtIntegrationPts::piolaScale
double piolaScale
Definition: EshelbianPlasticity.hpp:130
EshelbianPlasticity::DataAtIntegrationPts::gradLogStretchDotTensorAtPts
MatrixDouble gradLogStretchDotTensorAtPts
Definition: EshelbianPlasticity.hpp:78
EshelbianPlasticity::DataAtIntegrationPts::rotAxis0AtPts
MatrixDouble rotAxis0AtPts
Definition: EshelbianPlasticity.hpp:82
EshelbianPlasticity::DataAtIntegrationPts::varLogStreach
MatrixDouble varLogStreach
Definition: EshelbianPlasticity.hpp:112
FTensor::Tensor3
Definition: Tensor3_value.hpp:12
EshelbianPlasticity::TractionBc::faces
Range faces
Definition: EshelbianPlasticity.hpp:440
EshelbianPlasticity::SYMMETRIC
@ SYMMETRIC
Definition: EshelbianPlasticity.hpp:44
EshelbianPlasticity::DataAtIntegrationPts::getVarLogStreachPts
MatrixPtr getVarLogStreachPts()
Definition: EshelbianPlasticity.hpp:256
EshelbianPlasticity::DataAtIntegrationPts::getMatInvDPtr
MatrixPtr getMatInvDPtr()
Definition: EshelbianPlasticity.hpp:215
EshelbianPlasticity::DataAtIntegrationPts::getDivPAtPts
MatrixPtr getDivPAtPts()
Definition: EshelbianPlasticity.hpp:145
EshelbianPlasticity::DataAtIntegrationPts::approxPAtPts
MatrixDouble approxPAtPts
Definition: EshelbianPlasticity.hpp:62
EshelbianPlasticity::DataAtIntegrationPts::getMatDPtr
MatrixPtr getMatDPtr()
Definition: EshelbianPlasticity.hpp:211
EshelbianPlasticity::DataAtIntegrationPts::leviKirchhoffdOmegaAtPts
MatrixDouble leviKirchhoffdOmegaAtPts
Definition: EshelbianPlasticity.hpp:98
EshelbianPlasticity::DataAtIntegrationPts::adjointPdUdOmegaAtPts
MatrixDouble adjointPdUdOmegaAtPts
Definition: EshelbianPlasticity.hpp:103
EshelbianPlasticity::DataAtIntegrationPts::divPAtPts
MatrixDouble divPAtPts
Definition: EshelbianPlasticity.hpp:64
EshelbianPlasticity::PhysicalEquations::returnOpSetScale
virtual VolUserDataOperator * returnOpSetScale(boost::shared_ptr< double > scale_ptr, boost::shared_ptr< PhysicalEquations > physics_ptr)
Definition: EshelbianADOL-C.cpp:300
EshelbianPlasticity::DataAtIntegrationPts::physicsPtr
boost::shared_ptr< PhysicalEquations > physicsPtr
Definition: EshelbianPlasticity.hpp:272
EshelbianPlasticity::BcRot::vals
VectorDouble3 vals
Definition: EshelbianPlasticity.hpp:430
EshelbianPlasticity::TractionFreeBc
std::vector< Range > TractionFreeBc
Definition: EshelbianPlasticity.hpp:435
EshelbianPlasticity::BcRot::faces
Range faces
Definition: EshelbianPlasticity.hpp:429
EshelbianPlasticity::DataAtIntegrationPts::matD
MatrixDouble matD
Definition: EshelbianPlasticity.hpp:123
OpJacobian
Definition: EshelbianOperators.hpp:14
EshelbianPlasticity::PhysicalEquations::ATensor2
FTensor::Tensor2< adouble, 3, 3 > ATensor2
Definition: EshelbianPlasticity.hpp:280
EshelbianPlasticity::CGGUserPolynomialBase::~CGGUserPolynomialBase
~CGGUserPolynomialBase()=default
EshelbianPlasticity::DataAtIntegrationPts::G0AtPts
MatrixDouble G0AtPts
Definition: EshelbianPlasticity.hpp:86
EshelbianPlasticity::DataAtIntegrationPts::leviKirchhoffAtPts
MatrixDouble leviKirchhoffAtPts
Definition: EshelbianPlasticity.hpp:97
EshelbianPlasticity::BcDisp::blockName
std::string blockName
Definition: EshelbianPlasticity.hpp:419
EshelbianPlasticity::DataAtIntegrationPts::faceEnergy
double faceEnergy
Definition: EshelbianPlasticity.hpp:131
EshelbianPlasticity::CGGUserPolynomialBase::query_interface
MoFEMErrorCode query_interface(boost::typeindex::type_index type_index, BaseFunctionUnknownInterface **iface) const
Definition: EshelbianPlasticity.cpp:1883
EshelbianPlasticity::DataAtIntegrationPts::logStretchTensorAtPts
MatrixDouble logStretchTensorAtPts
Definition: EshelbianPlasticity.hpp:69
EshelbianPlasticity::StretchSelector
StretchSelector
Definition: EshelbianPlasticity.hpp:46
EshelbianPlasticity::VectorPtr
boost::shared_ptr< VectorDouble > VectorPtr
Definition: EshelbianPlasticity.hpp:49
EshelbianPlasticity::PhysicalEquations::dependentVariablesPiolaDirevatives
std::vector< double > dependentVariablesPiolaDirevatives
Definition: EshelbianPlasticity.hpp:332
EshelbianPlasticity::DataAtIntegrationPts::matAxiatorD
MatrixDouble matAxiatorD
Definition: EshelbianPlasticity.hpp:124
EshelbianPlasticity::PhysicalEquations::get_P_dh1
DTensor3Ptr get_P_dh1()
Definition: EshelbianPlasticity.hpp:405
EshelbianPlasticity::PhysicalEquations::get_vecTensor3
static DTensor3Ptr get_vecTensor3(std::vector< double > &v, const int nba)
Definition: EshelbianPlasticity.hpp:350
EshelbianPlasticity::BcDisp::BcDisp
BcDisp(std::string name, std::vector< double > &attr, Range &faces)
Definition: EshelbianPlasticity.cpp:1751
EshelbianPlasticity::CGGUserPolynomialBase::getValueHdivForCGGBubble
MoFEMErrorCode getValueHdivForCGGBubble(MatrixDouble &pts)
Definition: EshelbianPlasticity.cpp:1934
EshelbianPlasticity::DataAtIntegrationPts::varPiola
MatrixDouble varPiola
Definition: EshelbianPlasticity.hpp:113
EshelbianPlasticity::DataAtIntegrationPts::tractionAtPts
MatrixDouble tractionAtPts
Definition: EshelbianPlasticity.hpp:72
EshelbianPlasticity::PhysicalEquations::get_VecTensor2
static DTensor2Ptr get_VecTensor2(std::vector< double > &v)
Definition: EshelbianPlasticity.hpp:339
EshelbianOperators.hpp
EshelbianPlasticity::PhysicalEquations::returnOpCalculateStretchFromStress
virtual VolUserDataOperator * returnOpCalculateStretchFromStress(boost::shared_ptr< DataAtIntegrationPts > data_ptr, boost::shared_ptr< PhysicalEquations > physics_ptr)
Definition: EshelbianADOL-C.cpp:272
EshelbianPlasticity::DataAtIntegrationPts::getMatAxiatorDPtr
MatrixPtr getMatAxiatorDPtr()
Definition: EshelbianPlasticity.hpp:219
EshelbianPlasticity::DataAtIntegrationPts::getLogStretchTensorAtPts
MatrixPtr getLogStretchTensorAtPts()
Definition: EshelbianPlasticity.hpp:165
EshelbianPlasticity::DataAtIntegrationPts::eigenVals
MatrixDouble eigenVals
Definition: EshelbianPlasticity.hpp:119
EshelbianPlasticity::DataAtIntegrationPts::getBigGAtPts
MatrixPtr getBigGAtPts()
Definition: EshelbianPlasticity.hpp:203
EshelbianPlasticity::DataAtIntegrationPts::getVarWL2Pts
MatrixPtr getVarWL2Pts()
Definition: EshelbianPlasticity.hpp:268
EshelbianPlasticity::FaceUserDataOperator
FaceElementForcesAndSourcesCore::UserDataOperator FaceUserDataOperator
Definition: EshelbianPlasticity.hpp:54
MoFEM::VolumeElementForcesAndSourcesCore::UserDataOperator
Definition: VolumeElementForcesAndSourcesCore.hpp:109
field_name
constexpr auto field_name
Definition: poisson_2d_homogeneous.cpp:13
EshelbianPlasticity::DataAtIntegrationPts::getLogStretchDotTensorAtPts
MatrixPtr getLogStretchDotTensorAtPts()
Definition: EshelbianPlasticity.hpp:175
EshelbianPlasticity::DataAtIntegrationPts::getMatDeviatorDPtr
MatrixPtr getMatDeviatorDPtr()
Definition: EshelbianPlasticity.hpp:223
EshelbianPlasticity::PhysicalEquations::ATensor1
FTensor::Tensor1< adouble, 3 > ATensor1
Definition: EshelbianPlasticity.hpp:279
UserDataOperator
A
constexpr auto A
Definition: EshelbianPlasticity.hpp:15
v
const double v
phase velocity of light in medium (cm/ns)
Definition: initial_diffusion.cpp:40
EshelbianPlasticity::DataAtIntegrationPts::wL2DotDotAtPts
MatrixDouble wL2DotDotAtPts
Definition: EshelbianPlasticity.hpp:68
Range
EshelbianPlasticity::CGGUserPolynomialBase::getValue
MoFEMErrorCode getValue(MatrixDouble &pts, boost::shared_ptr< BaseFunctionCtx > ctx_ptr)
Definition: EshelbianPlasticity.cpp:1891
EshelbianPlasticity::DataAtIntegrationPts::getRotAxis0AtPts
MatrixPtr getRotAxis0AtPts()
Definition: EshelbianPlasticity.hpp:189
EshelbianPlasticity::PhysicalEquations::get_P_dh0
DTensor3Ptr get_P_dh0()
Definition: EshelbianPlasticity.hpp:401
EshelbianPlasticity::SMALL_ROT
@ SMALL_ROT
Definition: EshelbianPlasticity.hpp:45
EshelbianPlasticity::DataAtIntegrationPts::rotMatAtPts
MatrixDouble rotMatAtPts
Definition: EshelbianPlasticity.hpp:105
EshelbianPlasticity::CGGUserPolynomialBase::cachePhiPtr
boost::shared_ptr< CachePhi > cachePhiPtr
Definition: EshelbianPlasticity.hpp:37
EshelbianPlasticity::LARGE_ROT
@ LARGE_ROT
Definition: EshelbianPlasticity.hpp:45
FTensor::Tensor0
Definition: Tensor0.hpp:16
EshelbianPlasticity::LOG
@ LOG
Definition: EshelbianPlasticity.hpp:46
EshelbianPlasticity::DataAtIntegrationPts::diffStretchTensorAtPts
MatrixDouble diffStretchTensorAtPts
Definition: EshelbianPlasticity.hpp:74
EshelbianPlasticity::DataAtIntegrationPts::hdOmegaAtPts
MatrixDouble hdOmegaAtPts
Definition: EshelbianPlasticity.hpp:95
EshelbianPlasticity::DataAtIntegrationPts::lambda
double lambda
Definition: EshelbianPlasticity.hpp:129
EshelbianPlasticity::TractionBc::TractionBc
TractionBc(std::string name, std::vector< double > &attr, Range &faces)
Definition: EshelbianPlasticity.cpp:1777
EshelbianPlasticity::DataAtIntegrationPts::rotAxisGradDotAtPts
MatrixDouble rotAxisGradDotAtPts
Definition: EshelbianPlasticity.hpp:81
UserDataOperator
ForcesAndSourcesCore::UserDataOperator UserDataOperator
Definition: HookeElement.hpp:75
MoFEM::Types::VectorInt
UBlasVector< int > VectorInt
Definition: Types.hpp:67
EshelbianPlasticity::PhysicalEquations::get_VecTensor0
static DTensor0Ptr get_VecTensor0(std::vector< double > &v)
Definition: EshelbianPlasticity.hpp:345
EshelbianPlasticity::DataAtIntegrationPts::divSigmaAtPts
MatrixDouble divSigmaAtPts
Definition: EshelbianPlasticity.hpp:65
EshelbianPlasticity::RotSelector
RotSelector
Definition: EshelbianPlasticity.hpp:45
EshelbianPlasticity::TractionBc::flags
VectorInt3 flags
Definition: EshelbianPlasticity.hpp:442
EshelbianPlasticity::DataAtIntegrationPts::getSmallWGradH1AtPts
MatrixPtr getSmallWGradH1AtPts()
Definition: EshelbianPlasticity.hpp:239
EshelbianPlasticity::DataAtIntegrationPts::leviKirchhoffPAtPts
MatrixDouble leviKirchhoffPAtPts
Definition: EshelbianPlasticity.hpp:100
EshelbianPlasticity::DataAtIntegrationPts::getSmallWL2DotAtPts
MatrixPtr getSmallWL2DotAtPts()
Definition: EshelbianPlasticity.hpp:157
EshelbianPlasticity::DataAtIntegrationPts::detStretchTensorAtPts
VectorDouble detStretchTensorAtPts
Definition: EshelbianPlasticity.hpp:75
EshelbianPlasticity::DataAtIntegrationPts::varWL2
MatrixDouble varWL2
Definition: EshelbianPlasticity.hpp:115
EshelbianPlasticity::PhysicalEquations::DTensor1
FTensor::Tensor1< double, 3 > DTensor1
Definition: EshelbianPlasticity.hpp:282
EshelbianCore.hpp
TetPolynomialBase
MoFEM::Types::VectorDouble
UBlasVector< double > VectorDouble
Definition: Types.hpp:68
EshelbianPlasticity::PhysicalEquations::returnOpCalculateEnergy
virtual VolUserDataOperator * returnOpCalculateEnergy(boost::shared_ptr< DataAtIntegrationPts > data_ptr, boost::shared_ptr< double > total_energy_ptr)
Definition: EshelbianADOL-C.cpp:266
EshelbianPlasticity::DataAtIntegrationPts::detStretchTensorAtPts_du
MatrixDouble detStretchTensorAtPts_du
Definition: EshelbianPlasticity.hpp:76
EshelbianPlasticity::DataAtIntegrationPts::nbUniq
VectorInt nbUniq
Definition: EshelbianPlasticity.hpp:121
EshelbianPlasticity::DataAtIntegrationPts::wGradH1AtPts
MatrixDouble wGradH1AtPts
Definition: EshelbianPlasticity.hpp:90
EshelbianPlasticity::DataAtIntegrationPts::mu
double mu
Definition: EshelbianPlasticity.hpp:128
EshelbianPlasticity::BcDisp
Definition: EshelbianPlasticity.hpp:417
EshelbianPlasticity::BcRot::theta
double theta
Definition: EshelbianPlasticity.hpp:431
EshelbianPlasticity::DataAtIntegrationPts::getVarRotAxisPts
MatrixPtr getVarRotAxisPts()
Definition: EshelbianPlasticity.hpp:252
EshelbianPlasticity::DataAtIntegrationPts::energyAtPts
VectorDouble energyAtPts
Definition: EshelbianPlasticity.hpp:108
EshelbianPlasticity::DataAtIntegrationPts::getApproxPAtPts
MatrixPtr getApproxPAtPts()
Definition: EshelbianPlasticity.hpp:141
EshelbianPlasticity::PhysicalEquations::returnOpCalculateVarStretchFromStress
virtual VolUserDataOperator * returnOpCalculateVarStretchFromStress(boost::shared_ptr< DataAtIntegrationPts > data_ptr, boost::shared_ptr< PhysicalEquations > physics_ptr)
Definition: EshelbianADOL-C.cpp:278
EshelbianPlasticity::DataAtIntegrationPts::getSmallWL2AtPts
MatrixPtr getSmallWL2AtPts()
Definition: EshelbianPlasticity.hpp:153
EshelbianPlasticity::BcDisp::vals
VectorDouble3 vals
Definition: EshelbianPlasticity.hpp:421
EshelbianPlasticity::NOT_SYMMETRIC
@ NOT_SYMMETRIC
Definition: EshelbianPlasticity.hpp:44
EshelbianPlasticity::ContactTree
Definition: EshelbianContact.hpp:34
EshelbianPlasticity::ANIT_SYMMETRIC
@ ANIT_SYMMETRIC
Definition: EshelbianPlasticity.hpp:44
EshelbianPlasticity::DataAtIntegrationPts::wL2DotAtPts
MatrixDouble wL2DotAtPts
Definition: EshelbianPlasticity.hpp:67
EshelbianPlasticity::PhysicalEquations::get_h
DTensor2Ptr get_h()
Definition: EshelbianPlasticity.hpp:383
EshelbianPlasticity::PhysicalEquations::ATensor3
FTensor::Tensor3< adouble, 3, 3, 3 > ATensor3
Definition: EshelbianPlasticity.hpp:281
EshelbianPlasticity::MODERATE_ROT
@ MODERATE_ROT
Definition: EshelbianPlasticity.hpp:45
EshelbianPlasticity::PhysicalEquations::dependentVariablesPiola
std::vector< double > dependentVariablesPiola
Definition: EshelbianPlasticity.hpp:331
EshelbianPlasticity::DataAtIntegrationPts::PAtPts
MatrixDouble PAtPts
Definition: EshelbianPlasticity.hpp:106
SPACE_DIM
constexpr int SPACE_DIM
Definition: EshelbianPlasticity.hpp:13
EshelbianPlasticity::DataAtIntegrationPts::P_du
MatrixDouble P_du
Definition: EshelbianPlasticity.hpp:117
EshelbianPlasticity::PhysicalEquations::PhysicalEquations
PhysicalEquations()=delete
EshelbianPlasticity::PhysicalEquations::recordTape
virtual MoFEMErrorCode recordTape(const int tag, DTensor2Ptr *t_h)=0
EshelbianPlasticity::DataAtIntegrationPts::adjointPdUdPAtPts
MatrixDouble adjointPdUdPAtPts
Definition: EshelbianPlasticity.hpp:104
EshelbianPlasticity::PhysicalEquations::get_P
DTensor2Ptr get_P()
Definition: EshelbianPlasticity.hpp:391
EshelbianPlasticity::DataAtIntegrationPts::GAtPts
MatrixDouble GAtPts
Definition: EshelbianPlasticity.hpp:85
EshelbianPlasticity::CGGUserPolynomialBase::CachePhi
boost::tuple< int, int, MatrixDouble > CachePhi
Definition: EshelbianPlasticity.hpp:24
EshelbianPlasticity::CGGUserPolynomialBase::CGGUserPolynomialBase
CGGUserPolynomialBase(boost::shared_ptr< CachePhi > cache_phi=nullptr)
Definition: EshelbianPlasticity.cpp:1879
EshelbianPlasticity::TractionBc::vals
VectorDouble3 vals
Definition: EshelbianPlasticity.hpp:441
EshelbianPlasticity::DataAtIntegrationPts::hdLogStretchAtPts
MatrixDouble hdLogStretchAtPts
Definition: EshelbianPlasticity.hpp:96
EshelbianPlasticity::DataAtIntegrationPts::getContactL2AtPts
MatrixPtr getContactL2AtPts()
Definition: EshelbianPlasticity.hpp:235
EshelbianPlasticity::DataAtIntegrationPts::adjointPdUAtPts
MatrixDouble adjointPdUAtPts
Definition: EshelbianPlasticity.hpp:102
EshelbianPlasticity::PhysicalEquations::DTensor3Ptr
FTensor::Tensor3< FTensor::PackPtr< double *, 1 >, 3, 3, 3 > DTensor3Ptr
Definition: EshelbianPlasticity.hpp:289