Caluclate face material force and normal pressure at gauss points.
Reconstruct the full gradient \(U=\nabla u\) on a surface from the symmetric part and the surface gradient.
Procedure (pointwise on S): 1) Normalize the normal \(\mathbf n=\mathbf N/\|\mathbf N\|\). 2) Form the residual \(R=\varepsilon-\operatorname{sym}(u^\Gamma)\), where \(\operatorname{sym}(A)=\tfrac12(A+A^\top)\). 3) Recover the normal directional derivative (a vector) \(\mathbf v=\partial_{\mathbf n}u=2R\mathbf n-(\mathbf n^\top R\,\mathbf n)\,\mathbf n\). 4) Assemble the full gradient \(U = u^\Gamma + \mathbf v\otimes \mathbf n\).
3353 {
3355
3368
3369 dataAtPts->faceMaterialForceAtPts.resize(3, getGaussPts().size2(),
false);
3370 dataAtPts->normalPressureAtPts.resize(getGaussPts().size2(),
false);
3371 if (getNinTheLoop() == 0) {
3372 dataAtPts->faceMaterialForceAtPts.clear();
3374 }
3375 auto loop_size = getLoopSize();
3376 if (loop_size == 1) {
3377 auto numebered_fe_ptr = getSidePtrFE()->numeredEntFiniteElementPtr;
3378 auto pstatus = numebered_fe_ptr->getPStatus();
3379 if (pstatus & (PSTATUS_SHARED | PSTATUS_MULTISHARED)) {
3380 loop_size = 2;
3381 }
3382 }
3383
3385
3386 auto t_normal = getFTensor1NormalsAtGaussPts();
3387 auto t_T = getFTensor1FromMat<SPACE_DIM>(
3389 auto t_p =
3391 auto t_P = getFTensor2FromMat<SPACE_DIM, SPACE_DIM>(
dataAtPts->approxPAtPts);
3392
3393
3394 auto t_u_gamma =
3395 getFTensor1FromMat<SPACE_DIM>(
dataAtPts->hybridDispAtPts);
3396 auto t_grad_u_gamma =
3397 getFTensor2FromMat<SPACE_DIM, SPACE_DIM>(
dataAtPts->gradHybridDispAtPts);
3398 auto t_strain =
3399 getFTensor2SymmetricFromMat<SPACE_DIM>(
dataAtPts->logStretchTensorAtPts);
3400 auto t_omega = getFTensor1FromMat<3>(
dataAtPts->rotAxisAtPts);
3401
3407
3408 auto next = [&]() {
3409 ++t_normal;
3410 ++t_P;
3411
3412 ++t_omega;
3413 ++t_u_gamma;
3414 ++t_grad_u_gamma;
3415 ++t_strain;
3416 ++t_T;
3417 ++t_p;
3418 };
3419
3422 for (auto gg = 0; gg != getGaussPts().size2(); ++gg) {
3423 t_N(
I) = t_normal(
I);
3425
3428 t_grad_u(
i,
j) = t_R(
i,
j) + t_strain(
i,
j);
3429
3431 t_N(
J) * (t_grad_u(
i,
I) * t_P(
i,
J)) / loop_size;
3432
3433
3434 t_T(
I) -= t_N(
I) * ((t_strain(
i,
K) * t_P(
i,
K)) / 2.) / loop_size;
3435
3436 t_p += t_N(
I) * (t_N(
J) * (t_grad_u_gamma(
i,
I) * t_P(
i,
J))) / loop_size;
3437
3438 next();
3439 }
3440 break;
3442 for (auto gg = 0; gg != getGaussPts().size2(); ++gg) {
3443
3444
3445 t_N(
I) = t_normal(
I);
3447
3448
3450 t_strain(
i,
j) - 0.5 * (t_grad_u_gamma(
i,
j) + t_grad_u_gamma(
j,
i));
3451
3452
3453 t_grad_u(
i,
J) = t_grad_u_gamma(
i,
J) + (2 * t_R(
i,
K) * t_N(
K) -
3454 (t_R(
k,
L) * t_N(
k) * t_N(
L)) * t_N(
i)) *
3456
3457 t_T(
I) += t_N(
J) * (t_grad_u(
i,
I) * t_P(
i,
J)) / loop_size;
3458
3459
3460 t_T(
I) -= t_N(
I) * ((t_strain(
i,
K) * t_P(
i,
K)) / 2.) / loop_size;
3461
3462
3463 t_p += t_N(
I) * (t_N(
J) * (t_grad_u_gamma(
i,
I) * t_P(
i,
J))) / loop_size;
3464
3465 next();
3466 }
3467 break;
3468
3469 default:
3471 "Grffith energy release "
3472 "selector not implemented");
3473 };
3474
3475#ifndef NDEBUG
3476 auto side_fe_ptr = getSidePtrFE();
3477 auto side_fe_mi_ptr = side_fe_ptr->numeredEntFiniteElementPtr;
3478 auto pstatus = side_fe_mi_ptr->getPStatus();
3479 if (pstatus) {
3480 auto owner = side_fe_mi_ptr->getOwnerProc();
3482 << "OpFaceSideMaterialForce: owner proc is not 0, owner proc: " << owner
3483 << " " << getPtrFE()->mField.get_comm_rank() << " n in the loop "
3484 << getNinTheLoop() << " loop size " << getLoopSize();
3485 }
3486#endif
3487
3489}
#define FTENSOR_INDEX(DIM, I)
Kronecker Delta class symmetric.
Tensor1< T, Tensor_Dim > normalize()
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
#define MOFEM_LOG(channel, severity)
Log.
FTensor::Index< 'i', SPACE_DIM > i
const double n
refractive index of diffusive medium
FTensor::Index< 'J', DIM1 > J
FTensor::Index< 'l', 3 > l
FTensor::Index< 'j', 3 > j
FTensor::Index< 'k', 3 > k
constexpr std::enable_if<(Dim0<=2 &&Dim1<=2), Tensor2_Expr< Levi_Civita< T >, T, Dim0, Dim1, i, j > >::type levi_civita(const Index< i, Dim0 > &, const Index< j, Dim1 > &)
levi_civita functions to make for easy adhoc use
static auto getFTensor0FromVec(ublas::vector< T, A > &data)
Get tensor rank 0 (scalar) form data vector.
constexpr IntegrationType I
FTensor::Index< 'm', 3 > m
static enum EnergyReleaseSelector energyReleaseSelector