Lines Matching refs:fv

1755 PetscErrorCode PetscFVClone(PetscFV fv, PetscFV *fvNew)  in PetscFVClone()  argument
1763 PetscCall(PetscFVGetDualSpace(fv, &Q)); in PetscFVClone()
1764 PetscCall(PetscFVGetQuadrature(fv, &q)); in PetscFVClone()
1767 PetscCall(PetscFVCreate(PetscObjectComm((PetscObject)fv), fvNew)); in PetscFVClone()
1769 PetscCall(PetscFVGetNumComponents(fv, &Nc)); in PetscFVClone()
1771 PetscCall(PetscFVGetSpatialDimension(fv, &cdim)); in PetscFVClone()
1796 PetscErrorCode PetscFVRefine(PetscFV fv, PetscFV *fvRef) in PetscFVRefine() argument
1808 PetscCall(PetscFVGetDualSpace(fv, &Q)); in PetscFVRefine()
1809 PetscCall(PetscFVGetQuadrature(fv, &q)); in PetscFVRefine()
1813 PetscCall(DMRefine(K, PetscObjectComm((PetscObject)fv), &Kref)); in PetscFVRefine()
1818 PetscCall(PetscFVCreate(PetscObjectComm((PetscObject)fv), fvRef)); in PetscFVRefine()
1820 PetscCall(PetscFVGetNumComponents(fv, &numComp)); in PetscFVRefine()
1863 static PetscErrorCode PetscFVView_Upwind_Ascii(PetscFV fv, PetscViewer viewer) in PetscFVView_Upwind_Ascii() argument
1869 PetscCall(PetscFVGetNumComponents(fv, &Nc)); in PetscFVView_Upwind_Ascii()
1874 …if (fv->componentNames[c]) PetscCall(PetscViewerASCIIPrintf(viewer, " component %" PetscInt_FMT… in PetscFVView_Upwind_Ascii()
1879 static PetscErrorCode PetscFVView_Upwind(PetscFV fv, PetscViewer viewer) in PetscFVView_Upwind() argument
1884 PetscValidHeaderSpecific(fv, PETSCFV_CLASSID, 1); in PetscFVView_Upwind()
1887 if (isascii) PetscCall(PetscFVView_Upwind_Ascii(fv, viewer)); in PetscFVView_Upwind()
1891 static PetscErrorCode PetscFVComputeGradient_Upwind(PetscFV fv, PetscInt numFaces, const PetscScala… in PetscFVComputeGradient_Upwind() argument
1896 PetscCall(PetscFVGetSpatialDimension(fv, &dim)); in PetscFVComputeGradient_Upwind()
1979 static PetscErrorCode PetscFVView_LeastSquares_Ascii(PetscFV fv, PetscViewer viewer) in PetscFVView_LeastSquares_Ascii() argument
1985 PetscCall(PetscFVGetNumComponents(fv, &Nc)); in PetscFVView_LeastSquares_Ascii()
1990 …if (fv->componentNames[c]) PetscCall(PetscViewerASCIIPrintf(viewer, " component %" PetscInt_FMT… in PetscFVView_LeastSquares_Ascii()
1995 static PetscErrorCode PetscFVView_LeastSquares(PetscFV fv, PetscViewer viewer) in PetscFVView_LeastSquares() argument
2000 PetscValidHeaderSpecific(fv, PETSCFV_CLASSID, 1); in PetscFVView_LeastSquares()
2003 if (isascii) PetscCall(PetscFVView_LeastSquares_Ascii(fv, viewer)); in PetscFVView_LeastSquares()