Home
last modified time | relevance | path

Searched refs:parentSection (Results 1 – 7 of 7) sorted by relevance

/petsc/src/dm/impls/plex/
H A Dplextree.c211 PetscErrorCode DMPlexCreateReferenceTree_SetTree(DM dm, PetscSection parentSection, PetscInt parent… in DMPlexCreateReferenceTree_SetTree() argument
214 PetscCall(DMPlexSetTree_Internal(dm, parentSection, parents, childIDs, PETSC_TRUE, PETSC_FALSE)); in DMPlexCreateReferenceTree_SetTree()
224 PetscSection unionSection, unionConeSection, parentSection; in DMPlexCreateReferenceTree_Union() local
384 PetscCall(PetscSectionCreate(comm, &parentSection)); in DMPlexCreateReferenceTree_Union()
385 PetscCall(PetscSectionSetChart(parentSection, 0, numUnionPoints)); in DMPlexCreateReferenceTree_Union()
391 if (uDof) PetscCall(PetscSectionSetDof(parentSection, uOff, 1)); in DMPlexCreateReferenceTree_Union()
393 PetscCall(PetscSectionSetUp(parentSection)); in DMPlexCreateReferenceTree_Union()
394 PetscCall(PetscSectionGetStorageSize(parentSection, &parentSize)); in DMPlexCreateReferenceTree_Union()
403 PetscCall(PetscSectionGetOffset(parentSection, uOff, &pOff)); in DMPlexCreateReferenceTree_Union()
410 PetscCall(DMPlexCreateReferenceTree_SetTree(*ref, parentSection, parents, childIDs)); in DMPlexCreateReferenceTree_Union()
[all …]
H A Dplexglvis.c453 PetscSection coordSection, coordSectionCell, parentSection, hoSection = NULL; in DMPlexView_GLVis_ASCII() local
610 parentSection = NULL; in DMPlexView_GLVis_ASCII()
612 PetscCall(DMPlexGetTree(dm, &parentSection, NULL, NULL, NULL, NULL)); in DMPlexView_GLVis_ASCII()
613 enable_ncmesh = (PetscBool)(enable_ncmesh && parentSection); in DMPlexView_GLVis_ASCII()
1010 if (parentSection) { in DMPlexView_GLVis_ASCII()
H A Dplexgeometry.c3400 PetscSection sectionGrad, parentSection; in DMPlexComputeGradientFVM() local
3413 PetscCall(DMPlexGetTree(dm, &parentSection, NULL, NULL, NULL, NULL)); in DMPlexComputeGradientFVM()
3414 if (!parentSection) { in DMPlexComputeGradientFVM()
H A Dplexpartition.c1054 const PetscBool hasTree = (mesh->parentSection || mesh->childSection) ? PETSC_TRUE : PETSC_FALSE; in DMPlexClosurePoints_Private()
H A Dplex.c2874 PetscCall(PetscSectionDestroy(&mesh->parentSection)); in DMDestroy_Plex()
/petsc/src/dm/impls/forest/p4est/
H A Dpforest.h4119 PetscSection parentSection; in DMConvert_pforest_plex() local
4200 PetscCall(PetscSectionCreate(comm, &parentSection)); in DMConvert_pforest_plex()
4202 PetscCall(PetscSectionSetChart(parentSection, pStart, pEnd)); in DMConvert_pforest_plex()
4207 PetscCall(PetscSectionSetDof(parentSection, child, 1)); in DMConvert_pforest_plex()
4209 PetscCall(PetscSectionSetUp(parentSection)); in DMConvert_pforest_plex()
4210 …PetscCall(DMPlexSetTree(newPlex, parentSection, (PetscInt *)parents->array, (PetscInt *)childids->… in DMConvert_pforest_plex()
4211 PetscCall(PetscSectionDestroy(&parentSection)); in DMConvert_pforest_plex()
/petsc/include/petsc/private/
H A Ddmpleximpl.h192 PetscSection parentSection; /* dof == 1 if point has parent */ member