Home
last modified time | relevance | path

Searched refs:jetDegree (Results 1 – 5 of 5) sorted by relevance

/petsc/src/dm/dt/tests/
H A Dex13.c7 …ctTabulationAndMass(PetscInt dim, PetscInt deg, PetscInt form, PetscInt jetDegree, PetscInt npoint… in constructTabulationAndMass() argument
17 PetscCall(PetscDTBinomialInt(dim + jetDegree, dim, &Nk)); in constructTabulationAndMass()
19 PetscCall(PetscDTPTrimmedEvalJet(dim, npoints, points, deg, form, jetDegree, p_trimmed)); in constructTabulationAndMass()
45 static PetscErrorCode test(PetscInt dim, PetscInt deg, PetscInt form, PetscInt jetDegree, PetscBool… in test() argument
74 …PetscCall(constructTabulationAndMass(dim, deg, form, jetDegree, npoints, points, weights, &Nbpt, &… in test()
78 PetscCall(PetscDTPKDEvalJet(dim, npoints, points, deg, jetDegree, p_scalar)); in test()
/petsc/include/petsc/private/
H A Dpetscdsimpl.h107 …PetscInt *jetDegree; // The highest derivative for each field equation, or the k… member
/petsc/src/dm/dt/interface/
H A Ddtds.c152 PetscCall(PetscViewerASCIIPrintf(viewer, " %" PetscInt_FMT "-jet", ds->jetDegree[f])); in PetscDSView_Ascii()
452 if (prob->jetDegree[f] > 1) hasH = PETSC_TRUE; in PetscDSSetUp()
481 PetscCall(PetscFEGetCellTabulation(fe, prob->jetDegree[f], &prob->T[f])); in PetscDSSetUp()
482 PetscCall(PetscFEGetFaceTabulation(fe, prob->jetDegree[f], &prob->Tf[f])); in PetscDSSetUp()
559 tmpk[f] = prob->jetDegree[f]; in PetscDSEnlarge_Static()
566 PetscCall(PetscFree4(prob->disc, prob->implicit, prob->cohesive, prob->jetDegree)); in PetscDSEnlarge_Static()
572 prob->jetDegree = tmpk; in PetscDSEnlarge_Static()
646 PetscCall(PetscFree4((*ds)->disc, (*ds)->implicit, (*ds)->cohesive, (*ds)->jetDegree)); in PetscDSDestroy()
1244 *k = ds->jetDegree[f]; in PetscDSGetJetDegree()
1267 ds->jetDegree[f] = k; in PetscDSSetJetDegree()
H A Ddt.c1264 … const PetscReal points[], PetscInt degree, PetscInt formDegree, PetscInt jetDegree, PetscReal p[]) in PetscDTPTrimmedEvalJet_Internal() argument
1272 PetscCall(PetscDTPKDEvalJet(dim, npoints, points, degree, jetDegree, p)); in PetscDTPTrimmedEvalJet_Internal()
1276 PetscCall(PetscDTPKDEvalJet(dim, npoints, points, degree - 1, jetDegree, p)); in PetscDTPTrimmedEvalJet_Internal()
1284 PetscCall(PetscDTBinomialInt(dim + jetDegree, dim, &Nk)); in PetscDTPTrimmedEvalJet_Internal()
1291 PetscCall(PetscDTPKDEvalJet(dim, npoints, points, degree - 1, jetDegree, p_scalar)); in PetscDTPTrimmedEvalJet_Internal()
1409 … const PetscReal points[], PetscInt degree, PetscInt formDegree, PetscInt jetDegree, PetscReal p[]) in PetscDTPTrimmedEvalJet() argument
1412 …PetscCall(PetscDTPTrimmedEvalJet_Internal(dim, npoints, points, degree, formDegree, jetDegree, p)); in PetscDTPTrimmedEvalJet()
/petsc/src/dm/dt/fe/interface/
H A Dfe.c2365 const PetscInt k = ds->jetDegree[f]; in PetscFEEvaluateFieldJets_Internal()