|
| OpHMHH (const int tag, const bool eval_rhs, const bool eval_lhs, boost::shared_ptr< DataAtIntegrationPts > data_ptr, boost::shared_ptr< PhysicalEquations > physics_ptr) |
|
MoFEMErrorCode | evaluateRhs (EntData &data) |
|
MoFEMErrorCode | evaluateLhs (EntData &data) |
|
| OpJacobian (const int tag, const bool eval_rhs, const bool eval_lhs, boost::shared_ptr< DataAtIntegrationPts > data_ptr, boost::shared_ptr< PhysicalEquations > physics_ptr) |
|
MoFEMErrorCode | doWork (int side, EntityType type, EntData &data) |
|
Definition at line 306 of file EshelbianADOL-C.cpp.
◆ OpHMHH()
◆ evaluateLhs()
Implements OpJacobian.
Definition at line 390 of file EshelbianADOL-C.cpp.
401 const int number_of_active_variables =
physicsPtr->activeVariables.size();
402 const int number_of_dependent_variables =
404 std::vector<double *> jac_ptr(number_of_dependent_variables);
405 for (
unsigned int n = 0;
n != number_of_dependent_variables; ++
n) {
408 ->dependentVariablesPiolaDirevatives[
n *
409 number_of_active_variables]);
412 const auto nb_integration_pts = getGaussPts().size2();
414 auto create_data_mat = [nb_integration_pts](
auto &
m) {
415 m.resize(9, nb_integration_pts,
false);
418 dataAtPts->P_du.resize(81, nb_integration_pts,
false);
420 auto iu = getFTensor2SymmetricFromMat<3>(
dataAtPts->stretchTensorAtPts);
421 auto t_grad_h1 = getFTensor2FromMat<3, 3>(
dataAtPts->wGradH1AtPts);
422 auto r_P_du = getFTensor4FromMat<3, 3, 3, 3>(
dataAtPts->P_du);
430 for (
unsigned int gg = 0; gg != nb_integration_pts; ++gg) {
450 int r = ::jacobian(
tAg, number_of_dependent_variables,
451 number_of_active_variables,
452 &
physicsPtr->activeVariables[0], &jac_ptr[0]);
455 "ADOL-C function evaluation with error");
468 (t_P_dh_tmp(
i,
j, o, p) * t_h1_du(o, p,
m,
n)) * t_h1_du(
i,
j,
k,
l);
474 (t_P_dh_tmp(
i,
j, o, p) * t_h1_du(o, p,
m,
n)) * t_h1_du(
i,
j,
k,
l);
478 r_P_du(
i,
j,
m,
n) = t_P_dh_tmp(
i,
j,
m,
n);
◆ evaluateRhs()
Implements OpJacobian.
Definition at line 316 of file EshelbianADOL-C.cpp.
325 const auto nb_integration_pts = getGaussPts().size2();
326 auto iu = getFTensor2SymmetricFromMat<3>(
dataAtPts->stretchTensorAtPts);
327 auto t_grad_h1 = getFTensor2FromMat<3, 3>(
dataAtPts->wGradH1AtPts);
329 auto create_data_vec = [nb_integration_pts](
auto &
v) {
330 v.resize(nb_integration_pts,
false);
332 auto create_data_mat = [nb_integration_pts](
auto &
m) {
333 m.resize(9, nb_integration_pts,
false);
339 auto r_P = getFTensor2FromMat<3, 3>(
dataAtPts->PAtPts);
340 for (
unsigned int gg = 0; gg != nb_integration_pts; ++gg) {
359 int r = ::function(
tAg,
physicsPtr->dependentVariablesPiola.size(),
365 "ADOL-C function evaluation with error r = %d",
r);
The documentation for this struct was generated from the following file: