const char help[] = "Test PETSCFEVECTOR"; #include static PetscErrorCode PetscFEVectorTest(PetscFE orig_fe, PetscInt n_copies, PetscBool interleave_basis, PetscBool interleave_components) { PetscFE vec_fe, dup_fe; PetscQuadrature quad; PetscInt num_points; const PetscReal *points; PetscViewer viewer = PETSC_VIEWER_STDOUT_(PetscObjectComm((PetscObject)orig_fe)); PetscTabulation orig_T, vec_T, dup_T; PetscSpace space; PetscInt Nb, vNb, vNb_s, vNb_d, Nc, vNc, cdim; PetscDualSpace dual_space, dup_dual_space; PetscBool ib_s, ic_s, ib_d, ic_d; PetscFunctionBegin; PetscCall(PetscFEGetQuadrature(orig_fe, &quad)); PetscCall(PetscQuadratureGetData(quad, NULL, NULL, &num_points, &points, NULL)); PetscCall(PetscFECreateVector(orig_fe, n_copies, interleave_basis, interleave_components, &vec_fe)); PetscCall(PetscFEGetBasisSpace(vec_fe, &space)); PetscCall(PetscFEGetDualSpace(vec_fe, &dual_space)); PetscCall(PetscObjectSetName((PetscObject)vec_fe, "vector fe")); PetscCall(PetscObjectSetName((PetscObject)space, "vector basis space")); PetscCall(PetscObjectSetName((PetscObject)dual_space, "vector dual space")); PetscCall(PetscFEView(vec_fe, viewer)); PetscCall(PetscFECreateTabulation(orig_fe, 1, num_points, points, 1, &orig_T)); PetscCall(PetscFECreateTabulation(vec_fe, 1, num_points, points, 1, &vec_T)); PetscCall(PetscFEGetDimension(orig_fe, &Nb)); PetscCall(PetscFEGetDimension(vec_fe, &vNb)); PetscCall(PetscFEGetNumComponents(orig_fe, &Nc)); PetscCall(PetscFEGetNumComponents(vec_fe, &vNc)); PetscCall(PetscFEGetSpatialDimension(orig_fe, &cdim)); { PetscInt *pre_image; PetscInt c_stride = interleave_components ? n_copies : 1; PetscInt c_incr = interleave_components ? 1 : Nc; PetscCall(PetscMalloc1(vNb, &pre_image)); for (PetscInt e = 0; e < vNb; e++) pre_image[e] = -1; for (PetscInt copy = 0, coffset = 0; copy < n_copies; copy++, coffset += c_incr) { for (PetscInt b = 0; b < Nb; b++) { for (PetscInt e = 0; e < vNb; e++) { PetscReal err = 0.0; for (PetscInt k = 0; k <= orig_T->K; k++) { const PetscReal *s_Tk = orig_T->T[k]; const PetscReal *v_Tk = vec_T->T[k]; PetscInt dblock = PetscPowInt(cdim, k); for (PetscInt p = 0; p < num_points; p++) { const PetscReal *s_Tp = &s_Tk[(p * Nb + b) * Nc * dblock]; const PetscReal *v_Tp = &v_Tk[(p * vNb + e) * vNc * dblock]; for (PetscInt c = 0; c < Nc; c++) { PetscInt vc = coffset + c * c_stride; const PetscReal *s_Tc = &s_Tp[c * dblock]; const PetscReal *v_Tc = &v_Tp[vc * dblock]; for (PetscInt d = 0; d < PetscPowInt(cdim, k); d++) err = PetscMax(err, PetscAbsReal(s_Tc[d] - v_Tc[d])); } } } if (err < PETSC_SMALL) { PetscCheck(pre_image[e] == -1, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Original basis %" PetscInt_FMT " and %" PetscInt_FMT " both match to vector basis %" PetscInt_FMT, pre_image[e], b, e); pre_image[e] = b; } } } } for (PetscInt e = 0; e < vNb; e++) PetscCheck(pre_image[e] >= 0, PETSC_COMM_SELF, PETSC_ERR_PLIB, "No original basis matched to %" PetscInt_FMT, e); PetscCall(PetscViewerASCIIPrintf(viewer, "Vector basis to original basis:")); for (PetscInt e = 0; e < vNb; e++) { if (!(e % 16)) PetscCall(PetscViewerASCIIPrintf(viewer, "\n")); PetscCall(PetscViewerASCIIPrintf(viewer, " %3" PetscInt_FMT, pre_image[e])); } PetscCall(PetscViewerASCIIPrintf(viewer, "\n")); PetscCall(PetscFree(pre_image)); } PetscCall(PetscSpaceSumGetInterleave(space, &ib_s, &ic_s)); PetscCall(PetscDualSpaceSumGetInterleave(dual_space, &ib_d, &ic_d)); PetscCheck(ib_s == interleave_basis, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Interleave basis of space does not match"); PetscCheck(ic_s == interleave_components, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Interleave components of space does not match"); PetscCheck(ib_d == interleave_basis, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Interleave basis of dual space does not match"); PetscCheck(ic_d == interleave_components, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Interleave components of dual space does not match"); PetscCall(PetscSpaceGetDimension(space, &vNb_s)); PetscCall(PetscDualSpaceGetDimension(dual_space, &vNb_d)); PetscCheck(vNb_s == vNb, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Dimension of space does not match"); PetscCheck(vNb_s == vNb, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Dimension of dual space does not match"); PetscCall(PetscObjectReference((PetscObject)space)); PetscCall(PetscDualSpaceDuplicate(dual_space, &dup_dual_space)); // not necessary just testing interface PetscCall(PetscDualSpaceSetUp(dup_dual_space)); PetscCall(PetscFECreateFromSpaces(space, dup_dual_space, NULL, NULL, &dup_fe)); PetscCall(PetscFECreateTabulation(dup_fe, 1, num_points, points, 1, &dup_T)); { PetscReal err = 0.0; for (PetscInt k = 0; k <= vec_T->K; k++) { PetscInt dblock = PetscPowInt(cdim, k); PetscInt size = num_points * vNb * vNc * dblock; for (PetscInt i = 0; i < size; i++) err = PetscMax(err, PetscAbsReal(vec_T->T[k][i] - dup_T->T[k][i])); } PetscCheck(err < PETSC_SMALL, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Error between direct tabulation and indirect tabulation: %g", (double)err); } PetscCall(PetscTabulationDestroy(&dup_T)); PetscCall(PetscTabulationDestroy(&vec_T)); PetscCall(PetscTabulationDestroy(&orig_T)); PetscCall(PetscFEDestroy(&dup_fe)); PetscCall(PetscFEDestroy(&vec_fe)); PetscFunctionReturn(PETSC_SUCCESS); } int main(int argc, char **argv) { PetscFE scalar, vector; PetscViewer viewer; PetscCall(PetscInitialize(&argc, &argv, NULL, help)); PetscCall(PetscFECreateLagrange(PETSC_COMM_SELF, 3, 1, PETSC_TRUE, 3, PETSC_DETERMINE, &scalar)); viewer = PETSC_VIEWER_STDOUT_SELF; PetscCall(PetscObjectSetName((PetscObject)scalar, "base FE (scalar)")); PetscCall(PetscFEView(scalar, viewer)); PetscCall(PetscViewerASCIIPushTab(viewer)); for (PetscInt n_copies = 1; n_copies <= 3; n_copies++) { PetscCall(PetscFEVectorTest(scalar, n_copies, PETSC_FALSE, PETSC_FALSE)); PetscCall(PetscFEVectorTest(scalar, n_copies, PETSC_FALSE, PETSC_TRUE)); PetscCall(PetscFEVectorTest(scalar, n_copies, PETSC_TRUE, PETSC_FALSE)); PetscCall(PetscFEVectorTest(scalar, n_copies, PETSC_TRUE, PETSC_TRUE)); } PetscCall(PetscViewerASCIIPopTab(viewer)); PetscCall(PetscFEDestroy(&scalar)); PetscCall(PetscFECreateLagrange(PETSC_COMM_SELF, 3, 3, PETSC_TRUE, 3, PETSC_DETERMINE, &vector)); PetscCall(PetscObjectSetName((PetscObject)vector, "base FE (vector)")); PetscCall(PetscFEView(vector, viewer)); PetscCall(PetscViewerASCIIPushTab(viewer)); for (PetscInt n_copies = 1; n_copies <= 3; n_copies++) { PetscCall(PetscFEVectorTest(vector, n_copies, PETSC_FALSE, PETSC_FALSE)); PetscCall(PetscFEVectorTest(vector, n_copies, PETSC_FALSE, PETSC_TRUE)); PetscCall(PetscFEVectorTest(vector, n_copies, PETSC_TRUE, PETSC_FALSE)); PetscCall(PetscFEVectorTest(vector, n_copies, PETSC_TRUE, PETSC_TRUE)); } PetscCall(PetscViewerASCIIPopTab(viewer)); PetscCall(PetscFEDestroy(&vector)); PetscCall(PetscFinalize()); return 0; } /*TEST test: suffix: 0 TEST*/