2897 {
2899
2901
2903 int nb_integration_pts = getGaussPts().size2();
2904 int nb_base_functions = data.
getN().size2();
2905
2906 double time = getFEMethod()->ts_t;
2909 }
2910
2911#ifndef NDEBUG
2912 if (this->locF.size() != nb_dofs)
2914 "Size of locF %ld != nb_dofs %d", this->locF.size(), nb_dofs);
2915#endif
2916
2917
2918 EntityHandle fe_ent = getFEEntityHandle();
2919 for (
auto &bc : *(
bcData)) {
2920 if (bc.faces.find(fe_ent) != bc.faces.end()) {
2921
2923
2924 auto [block_name, v_analytical_expr] =
2928 auto t_w = getFTensor0IntegrationWeight();
2929 auto t_coords = getFTensor1CoordsAtGaussPts();
2930
2932
2933 for (int gg = 0; gg != nb_integration_pts; ++gg) {
2934
2935 auto t_f = getFTensor1FromPtr<3>(&*this->locF.begin());
2936 int rr = 0;
2937 for (; rr != nb_dofs /
SPACE_DIM; ++rr) {
2938 t_f(
i) -= t_w * t_row_base * (t_val(
i) *
scale);
2939 ++t_row_base;
2940 ++t_f;
2941 }
2942
2943 for (; rr != nb_base_functions; ++rr)
2944 ++t_row_base;
2945 ++t_w;
2946 ++t_coords;
2947 ++t_val;
2948 }
2949 this->locF *= getMeasure();
2950 }
2951 }
2953}
#define FTENSOR_INDEX(DIM, I)
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
@ MOFEM_DATA_INCONSISTENCY
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
FTensor::Index< 'i', SPACE_DIM > i
std::tuple< std::string, MatrixDouble > getAnalyticalExpr(OP_PTR op_ptr, MatrixDouble &analytical_expr, const std::string block_name)
DataLayoutTraits< DataLayout::GaussByCoeffs > DL
auto getFTensor1FromMat(M &data, int rr=0, int cc=0)
Get tensor rank 1 (vector) form data matrix.
static PetscBool physicalTimeFlg
static double currentPhysicalTime
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.