Lines Matching refs:cellCounts
923 PetscSection cellCounts, pointCounts, intFacetCounts, extFacetCounts; in PCPatchCreateCellPatches() local
968 PetscCall(PetscSectionCreate(PETSC_COMM_SELF, &patch->cellCounts)); in PCPatchCreateCellPatches()
969 PetscCall(PetscObjectSetName((PetscObject)patch->cellCounts, "Patch Cell Layout")); in PCPatchCreateCellPatches()
970 cellCounts = patch->cellCounts; in PCPatchCreateCellPatches()
971 PetscCall(PetscSectionSetChart(cellCounts, vStart, vEnd)); in PCPatchCreateCellPatches()
1040 if (point >= cStart && point < cEnd) PetscCall(PetscSectionAddDof(cellCounts, v, 1)); in PCPatchCreateCellPatches()
1046 PetscCall(PetscSectionSetUp(cellCounts)); in PCPatchCreateCellPatches()
1047 PetscCall(PetscSectionGetStorageSize(cellCounts, &numCells)); in PCPatchCreateCellPatches()
1068 PetscCall(PetscSectionGetDof(cellCounts, v, &cdof)); in PCPatchCreateCellPatches()
1069 PetscCall(PetscSectionGetOffset(cellCounts, v, &coff)); in PCPatchCreateCellPatches()
1143 PetscCall(ObjectView((PetscObject)patch->cellCounts, patch->viewerCells, patch->formatCells)); in PCPatchCreateCellPatches()
1190 PetscSection cellCounts = patch->cellCounts; in PCPatchCreateCellPatchDiscretisationInfo() local
1236 PetscCall(PetscSectionGetStorageSize(cellCounts, &numCells)); in PCPatchCreateCellPatchDiscretisationInfo()
1243 PetscCall(PetscSectionGetChart(cellCounts, &vStart, &vEnd)); in PCPatchCreateCellPatchDiscretisationInfo()
1300 PetscCall(PetscSectionGetDof(cellCounts, v, &dof)); in PCPatchCreateCellPatchDiscretisationInfo()
1301 PetscCall(PetscSectionGetOffset(cellCounts, v, &off)); in PCPatchCreateCellPatchDiscretisationInfo()
1479 PetscCall(PetscSectionGetDof(cellCounts, v, &dof)); in PCPatchCreateCellPatchDiscretisationInfo()
1480 PetscCall(PetscSectionGetOffset(cellCounts, v, &off)); in PCPatchCreateCellPatchDiscretisationInfo()
1738 PetscCall(PetscSectionGetChart(patch->cellCounts, &pStart, &pEnd)); in PCPatchCreateMatrix_Private()
1741 PetscCall(PetscSectionGetDof(patch->cellCounts, point, &ncell)); in PCPatchCreateMatrix_Private()
1742 PetscCall(PetscSectionGetOffset(patch->cellCounts, point, &offset)); in PCPatchCreateMatrix_Private()
1943 PetscCall(PetscSectionGetChart(patch->cellCounts, &pStart, &pEnd)); in PCPatchComputeFunction_Internal()
1948 PetscCall(PetscSectionGetDof(patch->cellCounts, point, &ncell)); in PCPatchComputeFunction_Internal()
1949 PetscCall(PetscSectionGetOffset(patch->cellCounts, point, &offset)); in PCPatchComputeFunction_Internal()
2032 PetscCall(PetscSectionGetChart(patch->cellCounts, &pStart, &pEnd)); in PCPatchComputeOperator_Internal()
2037 PetscCall(PetscSectionGetDof(patch->cellCounts, point, &ncell)); in PCPatchComputeOperator_Internal()
2038 PetscCall(PetscSectionGetOffset(patch->cellCounts, point, &offset)); in PCPatchComputeOperator_Internal()
2235 PetscCall(PetscSectionGetChart(patch->cellCounts, &pStart, &pEnd)); in PCPatchPrecomputePatchTensors_Private()
2237 PetscCall(PetscSectionGetDof(patch->cellCounts, i, &ncell)); in PCPatchPrecomputePatchTensors_Private()
2238 PetscCall(PetscSectionGetOffset(patch->cellCounts, i, &offset)); in PCPatchPrecomputePatchTensors_Private()
2875 PetscCall(PetscSectionDestroy(&patch->cellCounts)); in PCReset_PATCH()