Home
last modified time | relevance | path

Searched refs:patchSection (Results 1 – 2 of 2) sorted by relevance

/petsc/src/ksp/pc/impls/patch/
H A Dpcpatch.c1634 PetscCall(PetscSectionCreate(PETSC_COMM_SELF, &patch->patchSection)); in PCPatchCreateCellPatchDiscretisationInfo()
1635 PetscCall(PetscSectionSetNumFields(patch->patchSection, patch->nsubspaces)); in PCPatchCreateCellPatchDiscretisationInfo()
1641 PetscCall(PetscSectionSetChart(patch->patchSection, pStart, pEnd)); in PCPatchCreateCellPatchDiscretisationInfo()
1646 PetscCall(PetscSectionSetDof(patch->patchSection, p, dof)); in PCPatchCreateCellPatchDiscretisationInfo()
1649 PetscCall(PetscSectionSetFieldDof(patch->patchSection, p, f, fdof)); in PCPatchCreateCellPatchDiscretisationInfo()
1661 PetscCall(PetscSectionSetChart(patch->patchSection, pStart, pEnd)); in PCPatchCreateCellPatchDiscretisationInfo()
1667 PetscCall(PetscSectionAddDof(patch->patchSection, p, fdof)); in PCPatchCreateCellPatchDiscretisationInfo()
1668 PetscCall(PetscSectionSetFieldDof(patch->patchSection, p, f, fdof)); in PCPatchCreateCellPatchDiscretisationInfo()
1672 PetscCall(PetscSectionSetUp(patch->patchSection)); in PCPatchCreateCellPatchDiscretisationInfo()
1673 PetscCall(PetscSectionSetUseFieldOffsets(patch->patchSection, PETSC_TRUE)); in PCPatchCreateCellPatchDiscretisationInfo()
[all …]
/petsc/include/petsc/private/
H A Dpcpatchimpl.h46 PetscSection patchSection; /* Maps points -> patch local dofs */ member