v0.15.0
Loading...
Searching...
No Matches
Public Member Functions | Protected Attributes | List of all members
OpBrokenPressureBc Struct Reference

#include "users_modules/eshelbian_plasticity/src/EshelbianOperators.hpp"

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

Public Member Functions

 OpBrokenPressureBc (const std::string row_field, boost::shared_ptr< PressureBcVec > bc_data, boost::shared_ptr< double > piola_scale_ptr, boost::shared_ptr< MatrixDouble > hybrid_grad_disp, std::map< std::string, boost::shared_ptr< ScalingMethod > > smv)
 
MoFEMErrorCode iNtegrate (EntData &data)
 

Protected Attributes

boost::shared_ptr< PressureBcVec > bcData
 
boost::shared_ptr< doublepiolaScalePtr
 
boost::shared_ptr< MatrixDouble > hybridGradDispPtr
 
std::map< std::string, boost::shared_ptr< ScalingMethod > > scalingMethodsMap
 

Detailed Description

Examples
mofem/users_modules/eshelbian_plasticity/src/impl/EshelbianPlasticity.cpp.

Definition at line 494 of file EshelbianOperators.hpp.

Constructor & Destructor Documentation

◆ OpBrokenPressureBc()

OpBrokenPressureBc::OpBrokenPressureBc ( const std::string  row_field,
boost::shared_ptr< PressureBcVec >  bc_data,
boost::shared_ptr< double piola_scale_ptr,
boost::shared_ptr< MatrixDouble >  hybrid_grad_disp,
std::map< std::string, boost::shared_ptr< ScalingMethod > >  smv 
)
inline

Definition at line 496 of file EshelbianOperators.hpp.

501 : FormsIntegrators<FaceUserDataOperator>::Assembly<PETSC>::OpBase(
502 row_field, row_field, FaceUserDataOperator::OPROW),
503 bcData(bc_data), piolaScalePtr(), hybridGradDispPtr(hybrid_grad_disp),
504 scalingMethodsMap(smv) {}
boost::shared_ptr< MatrixDouble > hybridGradDispPtr
boost::shared_ptr< double > piolaScalePtr
std::map< std::string, boost::shared_ptr< ScalingMethod > > scalingMethodsMap
boost::shared_ptr< PressureBcVec > bcData

Member Function Documentation

◆ iNtegrate()

MoFEMErrorCode OpBrokenPressureBc::iNtegrate ( EntData data)
Examples
mofem/users_modules/eshelbian_plasticity/src/impl/EshelbianOperators.cpp.

Definition at line 1959 of file EshelbianOperators.cpp.

1959 {
1961
1962 FTENSOR_INDEX(3, i);
1963
1964 int nb_dofs = data.getFieldData().size();
1965 int nb_integration_pts = getGaussPts().size2();
1966 int nb_base_functions = data.getN().size2();
1967
1968 double time = getFEMethod()->ts_t;
1971 }
1972
1973#ifndef NDEBUG
1974 if (this->locF.size() != nb_dofs)
1975 SETERRQ(PETSC_COMM_SELF, MOFEM_DATA_INCONSISTENCY,
1976 "Size of locF %ld != nb_dofs %d", this->locF.size(), nb_dofs);
1977#endif // NDEBUG
1978
1979 auto integrate_rhs = [&](auto &bc, auto calc_tau, double time_scale) {
1981
1982 auto val = bc.val;
1983 auto t_row_base = data.getFTensor0N();
1984 auto t_w = getFTensor0IntegrationWeight();
1985 auto t_coords = getFTensor1CoordsAtGaussPts();
1986 auto t_tangent1 = getFTensor1Tangent1AtGaussPts();
1987 auto t_tangent2 = getFTensor1Tangent2AtGaussPts();
1988
1989 auto t_grad_gamma_u = getFTensor2FromMat<3, 2>(*hybridGradDispPtr);
1990
1991 double scale = (piolaScalePtr) ? 1. / (*piolaScalePtr) : 1.0;
1992
1993 for (int gg = 0; gg != nb_integration_pts; ++gg) {
1994
2000
2002 if (EshelbianCore::stretchSelector == LINEAR &&
2003 EshelbianCore::gradApproximator < MODERATE_ROT) {
2004
2005 t_normal(i) = (FTensor::levi_civita<double>(i, j, k) * t_tangent1(j)) *
2006 t_tangent2(k);
2007 } else {
2008 t_normal(i) = (FTensor::levi_civita<double>(i, j, k) *
2009 (t_tangent1(j) + t_grad_gamma_u(j, N0))) *
2010 (t_tangent2(k) + t_grad_gamma_u(k, N1));
2011 }
2012 auto tau = calc_tau(t_coords(0), t_coords(1), t_coords(2));
2013 auto t_val = FTensor::Tensor1<double, 3>();
2014 t_val(i) = (time_scale * t_w * tau * scale * val) * t_normal(i);
2015
2016 auto t_f = getFTensor1FromPtr<3>(&*this->locF.begin());
2017 int rr = 0;
2018 for (; rr != nb_dofs / SPACE_DIM; ++rr) {
2019 t_f(i) += t_row_base * t_val(i);
2020 ++t_row_base;
2021 ++t_f;
2022 }
2023
2024 for (; rr != nb_base_functions; ++rr)
2025 ++t_row_base;
2026 ++t_w;
2027 ++t_coords;
2028 ++t_tangent1;
2029 ++t_tangent2;
2030 ++t_grad_gamma_u;
2031 }
2032 this->locF /= 2.;
2033
2035 };
2036
2037 // get entity of face
2038 EntityHandle fe_ent = getFEEntityHandle();
2039 for (auto &bc : *(bcData)) {
2040 if (bc.faces.find(fe_ent) != bc.faces.end()) {
2041
2042 double time_scale = 1;
2043 if (scalingMethodsMap.find(bc.blockName) != scalingMethodsMap.end()) {
2044 time_scale *= scalingMethodsMap.at(bc.blockName)->getScale(time);
2045 }
2046
2047 int nb_dofs = data.getFieldData().size();
2048 if (nb_dofs) {
2049 CHKERR integrate_rhs(
2050 bc, [](double, double, double) { return 1; }, time_scale);
2051 }
2052 }
2053 }
2055}
#define FTENSOR_INDEX(DIM, I)
constexpr int SPACE_DIM
[Define dimension]
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
@ MOFEM_DATA_INCONSISTENCY
Definition definitions.h:31
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
#define CHKERR
Inline error check.
FTensor::Index< 'i', SPACE_DIM > i
FTensor::Index< 'j', 3 > j
FTensor::Index< 'k', 3 > k
static enum StretchSelector stretchSelector
static double dynamicTime
static enum RotSelector gradApproximator
static PetscBool dynamicRelaxation
FTensor::Tensor0< FTensor::PackPtr< double *, 1 > > getFTensor0N(const FieldApproximationBase base)
Get base function as Tensor0.
MatrixDouble & getN(const FieldApproximationBase base)
get base functions this return matrix (nb. of rows is equal to nb. of Gauss pts, nb....
const VectorDouble & getFieldData() const
Get DOF values on entity.
double scale
Definition plastic.cpp:123

Member Data Documentation

◆ bcData

boost::shared_ptr<PressureBcVec> OpBrokenPressureBc::bcData
protected

Definition at line 509 of file EshelbianOperators.hpp.

◆ hybridGradDispPtr

boost::shared_ptr<MatrixDouble> OpBrokenPressureBc::hybridGradDispPtr
protected

Definition at line 511 of file EshelbianOperators.hpp.

◆ piolaScalePtr

boost::shared_ptr<double> OpBrokenPressureBc::piolaScalePtr
protected

Definition at line 510 of file EshelbianOperators.hpp.

◆ scalingMethodsMap

std::map<std::string, boost::shared_ptr<ScalingMethod> > OpBrokenPressureBc::scalingMethodsMap
protected

Definition at line 512 of file EshelbianOperators.hpp.


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