Lines Matching refs:fieldNum
10 PetscInt fieldNum; /* Number in DS of field which we evaluate */ member
45 … PetscCall(PetscViewerASCIIPrintf(viewer, "PetscDS field %" PetscInt_FMT "\n", dsfield->fieldNum)); in DMFieldView_DS()
122 PetscCall(PetscSectionGetField(s, dsfield->fieldNum, &s)); in DMFieldGetClosure_Internal()
167 PetscCall(PetscSectionGetField(section, dsfield->fieldNum, §ion)); in DMFieldEvaluateFE_DS()
1157 PetscErrorCode DMFieldCreateDSWithDG(DM dm, DM dmDG, PetscInt fieldNum, Vec vec, Vec vecDG, DMField… in DMFieldCreateDSWithDG() argument
1169 PetscCall(PetscSectionGetFieldComponents(section, fieldNum, &numComponents)); in DMFieldCreateDSWithDG()
1171 if (dsNumFields) PetscCall(DMGetField(dm, fieldNum, NULL, &disc)); in DMFieldCreateDSWithDG()
1173 PetscCall(DMGetField(dmDG, fieldNum, NULL, &discDG)); in DMFieldCreateDSWithDG()
1201 dsfield->fieldNum = fieldNum; in DMFieldCreateDSWithDG()
1219 PetscErrorCode DMFieldCreateDS(DM dm, PetscInt fieldNum, Vec vec, DMField *field) in DMFieldCreateDS() argument
1222 PetscCall(DMFieldCreateDSWithDG(dm, NULL, fieldNum, vec, NULL, field)); in DMFieldCreateDS()