784 {
786
787 const auto nb_gauss_pts = BoundaryEleOp::getGaussPts().size2();
793
794 sdf_vec.resize(nb_gauss_pts, false);
795 grad_mat.resize(nb_gauss_pts, DIM, false);
796 hess_mat.resize(nb_gauss_pts, (DIM * (DIM + 1)) / 2, false);
797 constraint_vec.resize(nb_gauss_pts, false);
798
799 auto t_traction = getFTensor1FromMat<DIM>(contactTraction_mat);
800
801 auto t_sdf = getFTensor0FromVec(sdf_vec);
802 auto t_grad_sdf = getFTensor1FromMat<DIM>(grad_mat);
803 auto t_hess_sdf = getFTensor2SymmetricFromMat<DIM>(hess_mat);
804 auto t_constraint = getFTensor0FromVec(constraint_vec);
805
806 auto t_disp = getFTensor1FromMat<DIM>(
commonDataPtr->contactDisp);
807 auto t_coords = BoundaryEleOp::getFTensor1CoordsAtGaussPts();
808 auto t_normal_at_pts = BoundaryEleOp::getFTensor1NormalsAtGaussPts();
809
812
813 auto ts_time = BoundaryEleOp::getTStime();
814 auto ts_time_step = BoundaryEleOp::getTStimeStep();
815
817 BoundaryEleOp::getFTensor1CoordsAtGaussPts(),
818 getFTensor1FromMat<DIM>(
commonDataPtr->contactDisp), nb_gauss_pts);
820 BoundaryEleOp::getFTensor1NormalsAtGaussPts(), nb_gauss_pts);
821
822
823 int block_id = 0;
824
825 auto v_sdf =
827 m_spatial_coords, m_normals_at_pts, block_id);
828
829 auto m_grad_sdf =
831 m_spatial_coords, m_normals_at_pts, block_id);
832
833 auto m_hess_sdf =
835 m_spatial_coords, m_normals_at_pts, block_id);
836
837 auto t_sdf_v = getFTensor0FromVec(v_sdf);
838 auto t_grad_sdf_v = getFTensor1FromMat<3>(m_grad_sdf);
839 auto t_hess_sdf_v = getFTensor2SymmetricFromMat<3>(m_hess_sdf);
840
841 auto next = [&]() {
842 ++t_sdf;
843 ++t_sdf_v;
844 ++t_grad_sdf;
845 ++t_grad_sdf_v;
846 ++t_hess_sdf;
847 ++t_hess_sdf_v;
848 ++t_disp;
849 ++t_traction;
850 ++t_constraint;
851 };
852
853 for (auto gg = 0; gg != nb_gauss_pts; ++gg) {
854
855 auto tn = -t_traction(
i) * t_grad_sdf_v(
i);
857
858 t_sdf = t_sdf_v;
859 t_grad_sdf(
i) = t_grad_sdf_v(
i);
860 t_hess_sdf(
i,
j) = t_hess_sdf_v(
i,
j);
862
863 next();
864 }
865
867}
#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