v0.16.0
Loading...
Searching...
No Matches
Public Member Functions | Private Attributes | List of all members
ContactOps::OpEvaluateSDFImpl< DIM, GAUSS, BoundaryEleOp > Struct Template Reference

#include "tutorials/adv-1_contact/src/ContactOps.hpp"

Inheritance diagram for ContactOps::OpEvaluateSDFImpl< DIM, GAUSS, BoundaryEleOp >:
[legend]
Collaboration diagram for ContactOps::OpEvaluateSDFImpl< DIM, GAUSS, BoundaryEleOp >:
[legend]

Public Member Functions

 OpEvaluateSDFImpl (boost::shared_ptr< CommonData > common_data_ptr)
 
MoFEMErrorCode doWork (int side, EntityType type, EntData &data)
 
 OpEvaluateSDFImpl (boost::shared_ptr< CommonData > common_data_ptr)
 
MoFEMErrorCode doWork (int side, EntityType type, EntData &data)
 

Private Attributes

boost::shared_ptr< CommonDatacommonDataPtr
 
SurfaceDistanceFunction surfaceDistanceFunction = surface_distance_function
 
GradSurfaceDistanceFunction gradSurfaceDistanceFunction
 
HessSurfaceDistanceFunction hessSurfaceDistanceFunction
 

Detailed Description

template<int DIM, typename BoundaryEleOp>
struct ContactOps::OpEvaluateSDFImpl< DIM, GAUSS, BoundaryEleOp >

Definition at line 510 of file ContactOps.hpp.

Constructor & Destructor Documentation

◆ OpEvaluateSDFImpl() [1/2]

template<int DIM, typename BoundaryEleOp >
ContactOps::OpEvaluateSDFImpl< DIM, GAUSS, BoundaryEleOp >::OpEvaluateSDFImpl ( boost::shared_ptr< CommonData common_data_ptr)

Definition at line 775 of file ContactOps.hpp.

777 : BoundaryEleOp(NOSPACE, BoundaryEleOp::OPSPACE),
778 commonDataPtr(common_data_ptr) {}
@ NOSPACE
Definition definitions.h:83
BoundaryEle::UserDataOperator BoundaryEleOp

◆ OpEvaluateSDFImpl() [2/2]

template<int DIM, typename BoundaryEleOp >
ContactOps::OpEvaluateSDFImpl< DIM, GAUSS, BoundaryEleOp >::OpEvaluateSDFImpl ( boost::shared_ptr< CommonData common_data_ptr)

Member Function Documentation

◆ doWork() [1/2]

template<int DIM, typename BoundaryEleOp >
MoFEMErrorCode ContactOps::OpEvaluateSDFImpl< DIM, GAUSS, BoundaryEleOp >::doWork ( int  side,
EntityType  type,
EntData data 
)

Definition at line 782 of file ContactOps.hpp.

783 {
785
786 const auto nb_gauss_pts = BoundaryEleOp::getGaussPts().size2();
787 auto &sdf_vec = commonDataPtr->sdfVals;
788 auto &grad_mat = commonDataPtr->gradsSdf;
789 auto &hess_mat = commonDataPtr->hessSdf;
790 auto &constraint_vec = commonDataPtr->constraintVals;
791 auto &contactTraction_mat = commonDataPtr->contactTraction;
792
793 sdf_vec.resize(nb_gauss_pts, false);
794 grad_mat.resize(nb_gauss_pts, DIM, false);
795 hess_mat.resize(nb_gauss_pts, (DIM * (DIM + 1)) / 2, false);
796 constraint_vec.resize(nb_gauss_pts, false);
797
798 auto t_traction = getFTensor1FromMat<DIM>(contactTraction_mat);
799
800 auto t_sdf = getFTensor0FromVec(sdf_vec);
801 auto t_grad_sdf = getFTensor1FromMat<DIM>(grad_mat);
802 auto t_hess_sdf = getFTensor2SymmetricFromMat<DIM>(hess_mat);
803 auto t_constraint = getFTensor0FromVec(constraint_vec);
804
805 auto t_disp = getFTensor1FromMat<DIM>(commonDataPtr->contactDisp);
806 FTensor::Index<'i', DIM> i;
807 FTensor::Index<'j', DIM> j;
808
809 auto ts_time = BoundaryEleOp::getTStime();
810 auto ts_time_step = BoundaryEleOp::getTStimeStep();
811
812 auto m_spatial_coords = get_spatial_coords(
813 BoundaryEleOp::getFTensor1CoordsAtGaussPts(),
814 getFTensor1FromMat<DIM>(commonDataPtr->contactDisp), nb_gauss_pts);
815 auto m_normals_at_pts = get_normalize_normals(
816 BoundaryEleOp::getFTensor1NormalsAtGaussPts(), nb_gauss_pts);
817
818 // placeholder to pass boundary block id to python
819 int block_id = 0;
820
821 auto v_sdf =
822 surfaceDistanceFunction(ts_time_step, ts_time, nb_gauss_pts,
823 m_spatial_coords, m_normals_at_pts, block_id);
824
825 auto m_grad_sdf =
826 gradSurfaceDistanceFunction(ts_time_step, ts_time, nb_gauss_pts,
827 m_spatial_coords, m_normals_at_pts, block_id);
828
829 auto m_hess_sdf =
830 hessSurfaceDistanceFunction(ts_time_step, ts_time, nb_gauss_pts,
831 m_spatial_coords, m_normals_at_pts, block_id);
832
833 auto t_sdf_v = getFTensor0FromVec(v_sdf);
834 auto t_grad_sdf_v = getFTensor1FromMat<3>(m_grad_sdf);
835 auto t_hess_sdf_v = getFTensor2SymmetricFromMat<3>(m_hess_sdf);
836
837 auto next = [&]() {
838 ++t_sdf;
839 ++t_sdf_v;
840 ++t_grad_sdf;
841 ++t_grad_sdf_v;
842 ++t_hess_sdf;
843 ++t_hess_sdf_v;
844 ++t_disp;
845 ++t_traction;
846 ++t_constraint;
847 };
848
849 for (auto gg = 0; gg != nb_gauss_pts; ++gg) {
850
851 auto tn = -t_traction(i) * t_grad_sdf_v(i);
852 auto c = constrain(t_sdf_v, tn);
853
854 t_sdf = t_sdf_v;
855 t_grad_sdf(i) = t_grad_sdf_v(i);
856 t_hess_sdf(i, j) = t_hess_sdf_v(i, j);
857 t_constraint = c;
858
859 next();
860 }
861
863}
#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()
FTensor::Index< 'i', SPACE_DIM > i
const double c
speed of light (cm/ns)
FTensor::Index< 'j', 3 > j
auto get_normalize_normals(FTensor::Tensor1< T1, DIM1 > &&t_normal_at_pts, size_t nb_gauss_pts)
auto get_spatial_coords(FTensor::Tensor1< T1, DIM1 > &&t_coords, FTensor::Tensor1< T2, DIM2 > &&t_disp, size_t nb_gauss_pts)
double constrain(double sdf, double tn)
constrain function

◆ doWork() [2/2]

template<int DIM, typename BoundaryEleOp >
MoFEMErrorCode ContactOps::OpEvaluateSDFImpl< DIM, GAUSS, BoundaryEleOp >::doWork ( int  side,
EntityType  type,
EntData data 
)

Member Data Documentation

◆ commonDataPtr

template<int DIM, typename BoundaryEleOp >
boost::shared_ptr< CommonData > ContactOps::OpEvaluateSDFImpl< DIM, GAUSS, BoundaryEleOp >::commonDataPtr
private

Definition at line 515 of file ContactOps.hpp.

◆ gradSurfaceDistanceFunction

template<int DIM, typename BoundaryEleOp >
GradSurfaceDistanceFunction ContactOps::OpEvaluateSDFImpl< DIM, GAUSS, BoundaryEleOp >::gradSurfaceDistanceFunction
private
Initial value:
=
MatrixDouble grad_surface_distance_function(double delta_t, double t, int nb_gauss_pts, MatrixDouble &m_spatial_coords, MatrixDouble &m_normals_at_pts, int block_id)

Definition at line 518 of file ContactOps.hpp.

◆ hessSurfaceDistanceFunction

template<int DIM, typename BoundaryEleOp >
HessSurfaceDistanceFunction ContactOps::OpEvaluateSDFImpl< DIM, GAUSS, BoundaryEleOp >::hessSurfaceDistanceFunction
private
Initial value:
=
MatrixDouble hess_surface_distance_function(double delta_t, double t, int nb_gauss_pts, MatrixDouble &m_spatial_coords, MatrixDouble &m_normals_at_pts, int block_id)

Definition at line 520 of file ContactOps.hpp.

◆ surfaceDistanceFunction

template<int DIM, typename BoundaryEleOp >
SurfaceDistanceFunction ContactOps::OpEvaluateSDFImpl< DIM, GAUSS, BoundaryEleOp >::surfaceDistanceFunction = surface_distance_function
private

Definition at line 517 of file ContactOps.hpp.


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