1f62f30faSMatthew G. Knepley /* 2f62f30faSMatthew G. Knepley Objects which encapsulate finite volume spaces and operations 3f62f30faSMatthew G. Knepley */ 4a4963045SJacob Faibussowitsch #pragma once 5ac09b921SBarry Smith 6f62f30faSMatthew G. Knepley #include <petscdm.h> 7f62f30faSMatthew G. Knepley #include <petscdt.h> 8660d4ad9SBarry Smith #include <petscspace.h> 9660d4ad9SBarry Smith #include <petscdualspace.h> 10f62f30faSMatthew G. Knepley #include <petscfvtypes.h> 11879707a1SMatthew G. Knepley #include <petscdstypes.h> 12f62f30faSMatthew G. Knepley 13ac09b921SBarry Smith /* SUBMANSEC = FV */ 14ac09b921SBarry Smith 15ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscClassId PETSCLIMITER_CLASSID; 16ab2453f0SMatthew G. Knepley 17ab2453f0SMatthew G. Knepley /*J 18ab2453f0SMatthew G. Knepley PetscLimiterType - String with the name of a PETSc finite volume slope limiter 19ab2453f0SMatthew G. Knepley 20ab2453f0SMatthew G. Knepley Level: beginner 21ab2453f0SMatthew G. Knepley 22db781477SPatrick Sanan .seealso: `PetscLimiterSetType()`, `PetscLimiter` 23ab2453f0SMatthew G. Knepley J*/ 24ab2453f0SMatthew G. Knepley typedef const char *PetscLimiterType; 25ab2453f0SMatthew G. Knepley #define PETSCLIMITERSIN "sin" 269347ee04SMatthew G. Knepley #define PETSCLIMITERZERO "zero" 279347ee04SMatthew G. Knepley #define PETSCLIMITERNONE "none" 289347ee04SMatthew G. Knepley #define PETSCLIMITERMINMOD "minmod" 299347ee04SMatthew G. Knepley #define PETSCLIMITERVANLEER "vanleer" 309347ee04SMatthew G. Knepley #define PETSCLIMITERVANALBADA "vanalbada" 319347ee04SMatthew G. Knepley #define PETSCLIMITERSUPERBEE "superbee" 329347ee04SMatthew G. Knepley #define PETSCLIMITERMC "mc" 33ab2453f0SMatthew G. Knepley 34ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscFunctionList PetscLimiterList; 35ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterCreate(MPI_Comm, PetscLimiter *); 36ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterDestroy(PetscLimiter *); 37ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterSetType(PetscLimiter, PetscLimiterType); 38ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterGetType(PetscLimiter, PetscLimiterType *); 39ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterSetUp(PetscLimiter); 40ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterSetFromOptions(PetscLimiter); 41fe2efc57SMark PETSC_EXTERN PetscErrorCode PetscLimiterViewFromOptions(PetscLimiter, PetscObject, const char[]); 42ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterView(PetscLimiter, PetscViewer); 43ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterRegister(const char[], PetscErrorCode (*)(PetscLimiter)); 44ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterRegisterDestroy(void); 45ab2453f0SMatthew G. Knepley 461475bf87SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscLimiterLimit(PetscLimiter, PetscReal, PetscReal *); 47ab2453f0SMatthew G. Knepley 48f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVInitializePackage(void); 494bf303faSJacob Faibussowitsch PETSC_EXTERN PetscErrorCode PetscFVFinalizePackage(void); 50f62f30faSMatthew G. Knepley 51f62f30faSMatthew G. Knepley PETSC_EXTERN PetscClassId PETSCFV_CLASSID; 52f62f30faSMatthew G. Knepley 53f62f30faSMatthew G. Knepley /*J 54f62f30faSMatthew G. Knepley PetscFVType - String with the name of a PETSc finite volume discretization 55f62f30faSMatthew G. Knepley 56f62f30faSMatthew G. Knepley Level: beginner 57f62f30faSMatthew G. Knepley 58db781477SPatrick Sanan .seealso: `PetscFVSetType()`, `PetscFV` 59f62f30faSMatthew G. Knepley J*/ 60f62f30faSMatthew G. Knepley typedef const char *PetscFVType; 61f62f30faSMatthew G. Knepley #define PETSCFVUPWIND "upwind" 62f62f30faSMatthew G. Knepley #define PETSCFVLEASTSQUARES "leastsquares" 63f62f30faSMatthew G. Knepley 64f62f30faSMatthew G. Knepley PETSC_EXTERN PetscFunctionList PetscFVList; 65f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVCreate(MPI_Comm, PetscFV *); 66f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVDestroy(PetscFV *); 67f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVSetType(PetscFV, PetscFVType); 68f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVGetType(PetscFV, PetscFVType *); 69f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVSetUp(PetscFV); 70f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVSetFromOptions(PetscFV); 71fe2efc57SMark PETSC_EXTERN PetscErrorCode PetscFVViewFromOptions(PetscFV, PetscObject, const char[]); 72f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVView(PetscFV, PetscViewer); 73f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVRegister(const char[], PetscErrorCode (*)(PetscFV)); 74f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVRegisterDestroy(void); 75a00cdb45SToby Isaac PETSC_EXTERN PetscErrorCode PetscFVSetComponentName(PetscFV, PetscInt, const char[]); 76a00cdb45SToby Isaac PETSC_EXTERN PetscErrorCode PetscFVGetComponentName(PetscFV, PetscInt, const char *[]); 77f62f30faSMatthew G. Knepley 78ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVSetLimiter(PetscFV, PetscLimiter); 79ab2453f0SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVGetLimiter(PetscFV, PetscLimiter *); 80f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVSetNumComponents(PetscFV, PetscInt); 81f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVGetNumComponents(PetscFV, PetscInt *); 82f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVSetSpatialDimension(PetscFV, PetscInt); 83f62f30faSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVGetSpatialDimension(PetscFV, PetscInt *); 84eb4d80e8SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVSetComputeGradients(PetscFV, PetscBool); 85eb4d80e8SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVGetComputeGradients(PetscFV, PetscBool *); 86ce379721SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVSetQuadrature(PetscFV, PetscQuadrature); 87ce379721SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVGetQuadrature(PetscFV, PetscQuadrature *); 88dd0f9b09SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVSetDualSpace(PetscFV, PetscDualSpace); 89dd0f9b09SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVGetDualSpace(PetscFV, PetscDualSpace *); 90f62f30faSMatthew G. Knepley 91*f6feae9bSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVClone(PetscFV, PetscFV *); 92a48af489SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVRefine(PetscFV, PetscFV *); 93a48af489SMatthew G. Knepley 94ef0bb6c7SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVGetCellTabulation(PetscFV, PetscTabulation *); 95ef0bb6c7SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVCreateTabulation(PetscFV, PetscInt, PetscInt, const PetscReal[], PetscInt, PetscTabulation *); 966c1a3d01SMatthew G. Knepley 97c5148223SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVComputeGradient(PetscFV, PetscInt, PetscScalar[], PetscScalar[]); 98879707a1SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVIntegrateRHSFunction(PetscFV, PetscDS, PetscInt, PetscInt, PetscFVFaceGeom *, PetscReal *, PetscScalar[], PetscScalar[], PetscScalar[], PetscScalar[]); 99f62f30faSMatthew G. Knepley 100c5148223SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscFVLeastSquaresSetMaxFaces(PetscFV, PetscInt); 101c5148223SMatthew G. Knepley 102af092e56SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscDualSpaceApplyFVM(PetscDualSpace, PetscInt, PetscReal, PetscFVCellGeom *, PetscInt, PetscErrorCode (*)(PetscInt, PetscReal, const PetscReal[], PetscInt, PetscScalar *, void *), void *, PetscScalar *); 103