v0.16.0
Loading...
Searching...
No Matches
Public Member Functions | Private Attributes | List of all members
OpH1LhsSkeleton Struct Reference

Operator the left hand side matrix. More...

Inheritance diagram for OpH1LhsSkeleton:
[legend]
Collaboration diagram for OpH1LhsSkeleton:
[legend]

Public Member Functions

 OpH1LhsSkeleton (boost::shared_ptr< FaceSideEle > side_fe_ptr, boost::shared_ptr< MatrixDouble > d_mat_ptr)
 Construct a new OpH1LhsSkeleton.
 
MoFEMErrorCode doWork (int side, EntityType type, EntitiesFieldData::EntData &data)
 

Private Attributes

boost::shared_ptr< FaceSideElesideFEPtr
 pointer to element to get data on edge/face sides
 
MatrixDouble locMat
 local operator matrix
 
boost::shared_ptr< MatrixDoubledMatPtr
 

Detailed Description

Operator the left hand side matrix.

Examples
mofem/tutorials/vec-6_dg_kirchhoff_plate/plate.cpp.

Definition at line 120 of file plate.cpp.

Constructor & Destructor Documentation

◆ OpH1LhsSkeleton()

OpH1LhsSkeleton::OpH1LhsSkeleton ( boost::shared_ptr< FaceSideEle side_fe_ptr,
boost::shared_ptr< MatrixDouble mat_d_ptr 
)

Construct a new OpH1LhsSkeleton.

Parameters
side_fe_ptrpointer to FE to evaluate side elements
Examples
mofem/tutorials/vec-6_dg_kirchhoff_plate/plate.cpp.

Definition at line 500 of file plate.cpp.

502 : BoundaryEleOp(NOSPACE, BoundaryEleOp::OPSPACE), sideFEPtr(side_fe_ptr),
503 dMatPtr(mat_d_ptr) {}
@ NOSPACE
Definition definitions.h:83
BoundaryEle::UserDataOperator BoundaryEleOp
Definition plate.cpp:32
boost::shared_ptr< MatrixDouble > dMatPtr
Definition plate.cpp:137
boost::shared_ptr< FaceSideEle > sideFEPtr
pointer to element to get data on edge/face sides
Definition plate.cpp:135

Member Function Documentation

◆ doWork()

MoFEMErrorCode OpH1LhsSkeleton::doWork ( int  side,
EntityType  type,
EntitiesFieldData::EntData data 
)
Examples
mofem/tutorials/vec-6_dg_kirchhoff_plate/plate.cpp.

Definition at line 505 of file plate.cpp.

506 {
508
509 // Collect data from side domian elements
510 CHKERR loopSideFaces("dFE", *sideFEPtr);
511 const auto in_the_loop =
512 sideFEPtr->nInTheLoop; // return number of elements on the side
513
514 // calculate penalty
515 const double s = getMeasure() / (areaMap[0] + areaMap[1]);
516 const double p = penalty * s;
517
518 // get normal of the face or edge
519 auto t_normal = getFTensor1Normal();
520 t_normal.normalize();
521
522 // Elastic stiffness tensor (4th rank tensor with minor and major
523 // symmetry)
524 auto t_D = getFTensor4DdgFromMat<SPACE_DIM, SPACE_DIM, 0>(*dMatPtr);
525
526 // get number of integration points on face
527 const size_t nb_integration_pts = getGaussPts().size2();
528
529 // beta paramter is zero, when penalty method is used, also, takes value 1,
530 // when boundary edge/face is evaluated, and 2 when is skeleton edge/face.
531 const double beta = static_cast<double>(nitsche) / (in_the_loop + 1);
532
533 auto integrate = [&](auto sense_row, auto &row_ind, auto &row_diff,
534 auto &row_diff2, auto sense_col, auto &col_ind,
535 auto &col_diff, auto &col_diff2) {
537
538 // number of dofs, for homogenous approximation this value is
539 // constant.
540 const auto nb_rows = row_ind.size();
541 const auto nb_cols = col_ind.size();
542
543 const auto nb_row_base_functions = row_diff.size2() / SPACE_DIM;
544
545 if (nb_cols) {
546
547 // resize local element matrix
548 locMat.resize(nb_rows, nb_cols, false);
549 locMat.clear();
550
551 // get base functions, and integration weights
552 auto t_diff_row_base = get_diff_ntensor(row_diff);
553 auto t_diff2_row_base = get_diff2_ntensor(row_diff2);
554
555 auto t_w = getFTensor0IntegrationWeight();
556
557 // iterate integration points on face/edge
558 for (size_t gg = 0; gg != nb_integration_pts; ++gg) {
559
560 // t_w is integration weight, and measure is element area, or
561 // volume, depending if problem is in 2d/3d.
562 const double alpha = getMeasure() * t_w;
563 auto t_mat = locMat.data().begin();
564
565 // iterate rows
566 size_t rr = 0;
567 for (; rr != nb_rows; ++rr) {
568
570 t_mv(i, j) = t_D(i, j, k, l) * t_diff2_row_base(k, l);
571
572 // calculate tetting function
574 t_vn_plus(i, j) = beta * (phi * t_mv(i, j) / p);
576 t_vn(i, j) = (t_diff_row_base(j) * (t_normal(i) * sense_row)) -
577 t_vn_plus(i, j);
578
579 // get base functions on columns
580 auto t_diff_col_base = get_diff_ntensor(col_diff, gg, 0);
581 auto t_diff2_col_base = get_diff2_ntensor(col_diff2, gg, 0);
582
583 // iterate columns
584 for (size_t cc = 0; cc != nb_cols; ++cc) {
585
587 t_mu(i, j) = t_D(i, j, k, l) * t_diff2_col_base(k, l);
588
589 // // calculate variance of tested function
591 t_un(i, j) = -p * ((t_diff_col_base(j) * (t_normal(i) * sense_col) -
592 beta * t_mu(i, j) / p));
593
594 // assemble matrix
595 *t_mat -= alpha * (t_vn(i, j) * t_un(i, j));
596 *t_mat -= alpha * (t_vn_plus(i, j) * (beta * t_mu(i, j)));
597
598 // move to next column base and element of matrix
599 ++t_diff_col_base;
600 ++t_diff2_col_base;
601 ++t_mat;
602 }
603
604 // move to next row base
605 ++t_diff_row_base;
606 ++t_diff2_row_base;
607 }
608
609 // this is obsolete for this particular example, we keep it for
610 // generality. in case of multi-physcis problems diffrent fields
611 // can chare hierarchical base but use diffrent approx. order,
612 // so is possible to have more base functions than DOFs on
613 // element.
614 for (; rr < nb_row_base_functions; ++rr) {
615 ++t_diff_row_base;
616 ++t_diff2_row_base;
617 }
618
619 ++t_w;
620 }
621
622 // assemble system
623 CHKERR ::MatSetValues(getKSPB(), nb_rows, &*row_ind.begin(),
624 col_ind.size(), &*col_ind.begin(),
625 &*locMat.data().begin(), ADD_VALUES);
626 }
627
629 };
630
631 // iterate the sides rows
632 for (auto s0 : {LEFT_SIDE, RIGHT_SIDE}) {
633
634 const auto sense_row = senseMap[s0];
635
636 for (auto x0 = 0; x0 != indicesSideMap[s0].size(); ++x0) {
637
638 for (auto s1 : {LEFT_SIDE, RIGHT_SIDE}) {
639 const auto sense_col = senseMap[s1];
640
641 for (auto x1 = 0; x1 != indicesSideMap[s1].size(); ++x1) {
642
643 CHKERR integrate(sense_row, indicesSideMap[s0][x0],
644 diffBaseSideMap[s0][x0], diff2BaseSideMap[s0][x0],
645
646 sense_col, indicesSideMap[s1][x1],
647 diffBaseSideMap[s1][x1], diff2BaseSideMap[s1][x1]
648
649 );
650 }
651 }
652 }
653 }
654
656}
#define MoFEMFunctionReturnHot(a)
Last executable line of each PETSc function used for error handling. Replaces return()
#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 CHKERR
Inline error check.
#define MoFEMFunctionBeginHot
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
auto get_diff_ntensor(T &base_mat)
Definition plate.cpp:473
@ LEFT_SIDE
Definition plate.cpp:92
@ RIGHT_SIDE
Definition plate.cpp:92
std::array< std::vector< MatrixDouble >, 2 > diff2BaseSideMap
Definition plate.cpp:100
FTensor::Index< 'j', SPACE_DIM > j
Definition plate.cpp:61
std::array< std::vector< MatrixDouble >, 2 > diffBaseSideMap
Definition plate.cpp:98
FTensor::Index< 'k', SPACE_DIM > k
Definition plate.cpp:62
FTensor::Index< 'i', SPACE_DIM > i
Definition plate.cpp:60
constexpr int SPACE_DIM
dimension of space
Definition plate.cpp:17
FTensor::Index< 'l', SPACE_DIM > l
Definition plate.cpp:63
static double nitsche
Definition plate.cpp:68
std::array< double, 2 > areaMap
Definition plate.cpp:101
std::array< std::vector< VectorInt >, 2 > indicesSideMap
indices on rows for left hand-side
Definition plate.cpp:96
std::array< int, 2 > senseMap
Definition plate.cpp:102
static double penalty
Definition plate.cpp:65
static double phi
Definition plate.cpp:66
auto get_diff2_ntensor(T &base_mat)
Definition plate.cpp:484
MatrixDouble locMat
local operator matrix
Definition plate.cpp:136

Member Data Documentation

◆ dMatPtr

boost::shared_ptr<MatrixDouble> OpH1LhsSkeleton::dMatPtr
private

◆ locMat

MatrixDouble OpH1LhsSkeleton::locMat
private

local operator matrix

Examples
mofem/tutorials/vec-6_dg_kirchhoff_plate/plate.cpp.

Definition at line 136 of file plate.cpp.

◆ sideFEPtr

boost::shared_ptr<FaceSideEle> OpH1LhsSkeleton::sideFEPtr
private

pointer to element to get data on edge/face sides

Examples
mofem/tutorials/vec-6_dg_kirchhoff_plate/plate.cpp.

Definition at line 135 of file plate.cpp.


The documentation for this struct was generated from the following file: