xref: /petsc/src/dm/dt/interface/dtds.c (revision bc4ae4be45252dad504b8b3e7deec94c6a3e69ac)
12764a2aaSMatthew G. Knepley #include <petsc-private/petscdsimpl.h> /*I "petscds.h" I*/
22764a2aaSMatthew G. Knepley 
32764a2aaSMatthew G. Knepley PetscClassId PETSCDS_CLASSID = 0;
42764a2aaSMatthew G. Knepley 
52764a2aaSMatthew G. Knepley PetscFunctionList PetscDSList              = NULL;
62764a2aaSMatthew G. Knepley PetscBool         PetscDSRegisterAllCalled = PETSC_FALSE;
72764a2aaSMatthew G. Knepley 
82764a2aaSMatthew G. Knepley #undef __FUNCT__
92764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSRegister"
102764a2aaSMatthew G. Knepley /*@C
112764a2aaSMatthew G. Knepley   PetscDSRegister - Adds a new PetscDS implementation
122764a2aaSMatthew G. Knepley 
132764a2aaSMatthew G. Knepley   Not Collective
142764a2aaSMatthew G. Knepley 
152764a2aaSMatthew G. Knepley   Input Parameters:
162764a2aaSMatthew G. Knepley + name        - The name of a new user-defined creation routine
172764a2aaSMatthew G. Knepley - create_func - The creation routine itself
182764a2aaSMatthew G. Knepley 
192764a2aaSMatthew G. Knepley   Notes:
202764a2aaSMatthew G. Knepley   PetscDSRegister() may be called multiple times to add several user-defined PetscDSs
212764a2aaSMatthew G. Knepley 
222764a2aaSMatthew G. Knepley   Sample usage:
232764a2aaSMatthew G. Knepley .vb
242764a2aaSMatthew G. Knepley     PetscDSRegister("my_ds", MyPetscDSCreate);
252764a2aaSMatthew G. Knepley .ve
262764a2aaSMatthew G. Knepley 
272764a2aaSMatthew G. Knepley   Then, your PetscDS type can be chosen with the procedural interface via
282764a2aaSMatthew G. Knepley .vb
292764a2aaSMatthew G. Knepley     PetscDSCreate(MPI_Comm, PetscDS *);
302764a2aaSMatthew G. Knepley     PetscDSSetType(PetscDS, "my_ds");
312764a2aaSMatthew G. Knepley .ve
322764a2aaSMatthew G. Knepley    or at runtime via the option
332764a2aaSMatthew G. Knepley .vb
342764a2aaSMatthew G. Knepley     -petscds_type my_ds
352764a2aaSMatthew G. Knepley .ve
362764a2aaSMatthew G. Knepley 
372764a2aaSMatthew G. Knepley   Level: advanced
382764a2aaSMatthew G. Knepley 
392764a2aaSMatthew G. Knepley .keywords: PetscDS, register
402764a2aaSMatthew G. Knepley .seealso: PetscDSRegisterAll(), PetscDSRegisterDestroy()
412764a2aaSMatthew G. Knepley 
422764a2aaSMatthew G. Knepley @*/
432764a2aaSMatthew G. Knepley PetscErrorCode PetscDSRegister(const char sname[], PetscErrorCode (*function)(PetscDS))
442764a2aaSMatthew G. Knepley {
452764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
462764a2aaSMatthew G. Knepley 
472764a2aaSMatthew G. Knepley   PetscFunctionBegin;
482764a2aaSMatthew G. Knepley   ierr = PetscFunctionListAdd(&PetscDSList, sname, function);CHKERRQ(ierr);
492764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
502764a2aaSMatthew G. Knepley }
512764a2aaSMatthew G. Knepley 
522764a2aaSMatthew G. Knepley #undef __FUNCT__
532764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSSetType"
542764a2aaSMatthew G. Knepley /*@C
552764a2aaSMatthew G. Knepley   PetscDSSetType - Builds a particular PetscDS
562764a2aaSMatthew G. Knepley 
572764a2aaSMatthew G. Knepley   Collective on PetscDS
582764a2aaSMatthew G. Knepley 
592764a2aaSMatthew G. Knepley   Input Parameters:
602764a2aaSMatthew G. Knepley + prob - The PetscDS object
612764a2aaSMatthew G. Knepley - name - The kind of system
622764a2aaSMatthew G. Knepley 
632764a2aaSMatthew G. Knepley   Options Database Key:
642764a2aaSMatthew G. Knepley . -petscds_type <type> - Sets the PetscDS type; use -help for a list of available types
652764a2aaSMatthew G. Knepley 
662764a2aaSMatthew G. Knepley   Level: intermediate
672764a2aaSMatthew G. Knepley 
682764a2aaSMatthew G. Knepley .keywords: PetscDS, set, type
692764a2aaSMatthew G. Knepley .seealso: PetscDSGetType(), PetscDSCreate()
702764a2aaSMatthew G. Knepley @*/
712764a2aaSMatthew G. Knepley PetscErrorCode PetscDSSetType(PetscDS prob, PetscDSType name)
722764a2aaSMatthew G. Knepley {
732764a2aaSMatthew G. Knepley   PetscErrorCode (*r)(PetscDS);
742764a2aaSMatthew G. Knepley   PetscBool      match;
752764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
762764a2aaSMatthew G. Knepley 
772764a2aaSMatthew G. Knepley   PetscFunctionBegin;
782764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
792764a2aaSMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) prob, name, &match);CHKERRQ(ierr);
802764a2aaSMatthew G. Knepley   if (match) PetscFunctionReturn(0);
812764a2aaSMatthew G. Knepley 
822764a2aaSMatthew G. Knepley   if (!PetscDSRegisterAllCalled) {ierr = PetscDSRegisterAll();CHKERRQ(ierr);}
832764a2aaSMatthew G. Knepley   ierr = PetscFunctionListFind(PetscDSList, name, &r);CHKERRQ(ierr);
842764a2aaSMatthew G. Knepley   if (!r) SETERRQ1(PetscObjectComm((PetscObject) prob), PETSC_ERR_ARG_UNKNOWN_TYPE, "Unknown PetscDS type: %s", name);
852764a2aaSMatthew G. Knepley 
862764a2aaSMatthew G. Knepley   if (prob->ops->destroy) {
872764a2aaSMatthew G. Knepley     ierr             = (*prob->ops->destroy)(prob);CHKERRQ(ierr);
882764a2aaSMatthew G. Knepley     prob->ops->destroy = NULL;
892764a2aaSMatthew G. Knepley   }
902764a2aaSMatthew G. Knepley   ierr = (*r)(prob);CHKERRQ(ierr);
912764a2aaSMatthew G. Knepley   ierr = PetscObjectChangeTypeName((PetscObject) prob, name);CHKERRQ(ierr);
922764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
932764a2aaSMatthew G. Knepley }
942764a2aaSMatthew G. Knepley 
952764a2aaSMatthew G. Knepley #undef __FUNCT__
962764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetType"
972764a2aaSMatthew G. Knepley /*@C
982764a2aaSMatthew G. Knepley   PetscDSGetType - Gets the PetscDS type name (as a string) from the object.
992764a2aaSMatthew G. Knepley 
1002764a2aaSMatthew G. Knepley   Not Collective
1012764a2aaSMatthew G. Knepley 
1022764a2aaSMatthew G. Knepley   Input Parameter:
1032764a2aaSMatthew G. Knepley . prob  - The PetscDS
1042764a2aaSMatthew G. Knepley 
1052764a2aaSMatthew G. Knepley   Output Parameter:
1062764a2aaSMatthew G. Knepley . name - The PetscDS type name
1072764a2aaSMatthew G. Knepley 
1082764a2aaSMatthew G. Knepley   Level: intermediate
1092764a2aaSMatthew G. Knepley 
1102764a2aaSMatthew G. Knepley .keywords: PetscDS, get, type, name
1112764a2aaSMatthew G. Knepley .seealso: PetscDSSetType(), PetscDSCreate()
1122764a2aaSMatthew G. Knepley @*/
1132764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetType(PetscDS prob, PetscDSType *name)
1142764a2aaSMatthew G. Knepley {
1152764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
1162764a2aaSMatthew G. Knepley 
1172764a2aaSMatthew G. Knepley   PetscFunctionBegin;
1182764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
119c959eef4SJed Brown   PetscValidPointer(name, 2);
1202764a2aaSMatthew G. Knepley   if (!PetscDSRegisterAllCalled) {ierr = PetscDSRegisterAll();CHKERRQ(ierr);}
1212764a2aaSMatthew G. Knepley   *name = ((PetscObject) prob)->type_name;
1222764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
1232764a2aaSMatthew G. Knepley }
1242764a2aaSMatthew G. Knepley 
1252764a2aaSMatthew G. Knepley #undef __FUNCT__
1262764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSView"
1272764a2aaSMatthew G. Knepley /*@C
1282764a2aaSMatthew G. Knepley   PetscDSView - Views a PetscDS
1292764a2aaSMatthew G. Knepley 
1302764a2aaSMatthew G. Knepley   Collective on PetscDS
1312764a2aaSMatthew G. Knepley 
1322764a2aaSMatthew G. Knepley   Input Parameter:
1332764a2aaSMatthew G. Knepley + prob - the PetscDS object to view
1342764a2aaSMatthew G. Knepley - v  - the viewer
1352764a2aaSMatthew G. Knepley 
1362764a2aaSMatthew G. Knepley   Level: developer
1372764a2aaSMatthew G. Knepley 
1382764a2aaSMatthew G. Knepley .seealso PetscDSDestroy()
1392764a2aaSMatthew G. Knepley @*/
1402764a2aaSMatthew G. Knepley PetscErrorCode PetscDSView(PetscDS prob, PetscViewer v)
1412764a2aaSMatthew G. Knepley {
1422764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
1432764a2aaSMatthew G. Knepley 
1442764a2aaSMatthew G. Knepley   PetscFunctionBegin;
1452764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
1462764a2aaSMatthew G. Knepley   if (!v) {ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject) prob), &v);CHKERRQ(ierr);}
1472764a2aaSMatthew G. Knepley   if (prob->ops->view) {ierr = (*prob->ops->view)(prob, v);CHKERRQ(ierr);}
1482764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
1492764a2aaSMatthew G. Knepley }
1502764a2aaSMatthew G. Knepley 
1512764a2aaSMatthew G. Knepley #undef __FUNCT__
1522764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSViewFromOptions"
1532764a2aaSMatthew G. Knepley /*
1542764a2aaSMatthew G. Knepley   PetscDSViewFromOptions - Processes command line options to determine if/how a PetscDS is to be viewed.
1552764a2aaSMatthew G. Knepley 
1562764a2aaSMatthew G. Knepley   Collective on PetscDS
1572764a2aaSMatthew G. Knepley 
1582764a2aaSMatthew G. Knepley   Input Parameters:
1592764a2aaSMatthew G. Knepley + prob   - the PetscDS
1602764a2aaSMatthew G. Knepley . prefix - prefix to use for viewing, or NULL to use prefix of 'rnd'
1612764a2aaSMatthew G. Knepley - optionname - option to activate viewing
1622764a2aaSMatthew G. Knepley 
1632764a2aaSMatthew G. Knepley   Level: intermediate
1642764a2aaSMatthew G. Knepley 
1652764a2aaSMatthew G. Knepley .keywords: PetscDS, view, options, database
1662764a2aaSMatthew G. Knepley .seealso: VecViewFromOptions(), MatViewFromOptions()
1672764a2aaSMatthew G. Knepley */
1682764a2aaSMatthew G. Knepley PetscErrorCode PetscDSViewFromOptions(PetscDS prob, const char prefix[], const char optionname[])
1692764a2aaSMatthew G. Knepley {
1702764a2aaSMatthew G. Knepley   PetscViewer       viewer;
1712764a2aaSMatthew G. Knepley   PetscViewerFormat format;
1722764a2aaSMatthew G. Knepley   PetscBool         flg;
1732764a2aaSMatthew G. Knepley   PetscErrorCode    ierr;
1742764a2aaSMatthew G. Knepley 
1752764a2aaSMatthew G. Knepley   PetscFunctionBegin;
1762764a2aaSMatthew G. Knepley   if (prefix) {ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject) prob), prefix, optionname, &viewer, &format, &flg);CHKERRQ(ierr);}
1772764a2aaSMatthew G. Knepley   else        {ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject) prob), ((PetscObject) prob)->prefix, optionname, &viewer, &format, &flg);CHKERRQ(ierr);}
1782764a2aaSMatthew G. Knepley   if (flg) {
1792764a2aaSMatthew G. Knepley     ierr = PetscViewerPushFormat(viewer, format);CHKERRQ(ierr);
1802764a2aaSMatthew G. Knepley     ierr = PetscDSView(prob, viewer);CHKERRQ(ierr);
1812764a2aaSMatthew G. Knepley     ierr = PetscViewerPopFormat(viewer);CHKERRQ(ierr);
1822764a2aaSMatthew G. Knepley     ierr = PetscViewerDestroy(&viewer);CHKERRQ(ierr);
1832764a2aaSMatthew G. Knepley   }
1842764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
1852764a2aaSMatthew G. Knepley }
1862764a2aaSMatthew G. Knepley 
1872764a2aaSMatthew G. Knepley #undef __FUNCT__
1882764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSSetFromOptions"
1892764a2aaSMatthew G. Knepley /*@
1902764a2aaSMatthew G. Knepley   PetscDSSetFromOptions - sets parameters in a PetscDS from the options database
1912764a2aaSMatthew G. Knepley 
1922764a2aaSMatthew G. Knepley   Collective on PetscDS
1932764a2aaSMatthew G. Knepley 
1942764a2aaSMatthew G. Knepley   Input Parameter:
1952764a2aaSMatthew G. Knepley . prob - the PetscDS object to set options for
1962764a2aaSMatthew G. Knepley 
1972764a2aaSMatthew G. Knepley   Options Database:
1982764a2aaSMatthew G. Knepley 
1992764a2aaSMatthew G. Knepley   Level: developer
2002764a2aaSMatthew G. Knepley 
2012764a2aaSMatthew G. Knepley .seealso PetscDSView()
2022764a2aaSMatthew G. Knepley @*/
2032764a2aaSMatthew G. Knepley PetscErrorCode PetscDSSetFromOptions(PetscDS prob)
2042764a2aaSMatthew G. Knepley {
2052764a2aaSMatthew G. Knepley   const char    *defaultType;
2062764a2aaSMatthew G. Knepley   char           name[256];
2072764a2aaSMatthew G. Knepley   PetscBool      flg;
2082764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
2092764a2aaSMatthew G. Knepley 
2102764a2aaSMatthew G. Knepley   PetscFunctionBegin;
2112764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
2122764a2aaSMatthew G. Knepley   if (!((PetscObject) prob)->type_name) {
2132764a2aaSMatthew G. Knepley     defaultType = PETSCDSBASIC;
2142764a2aaSMatthew G. Knepley   } else {
2152764a2aaSMatthew G. Knepley     defaultType = ((PetscObject) prob)->type_name;
2162764a2aaSMatthew G. Knepley   }
2172764a2aaSMatthew G. Knepley   if (!PetscDSRegisterAllCalled) {ierr = PetscDSRegisterAll();CHKERRQ(ierr);}
2182764a2aaSMatthew G. Knepley 
2192764a2aaSMatthew G. Knepley   ierr = PetscObjectOptionsBegin((PetscObject) prob);CHKERRQ(ierr);
2202764a2aaSMatthew G. Knepley   ierr = PetscOptionsFList("-petscds_type", "Discrete System", "PetscDSSetType", PetscDSList, defaultType, name, 256, &flg);CHKERRQ(ierr);
2212764a2aaSMatthew G. Knepley   if (flg) {
2222764a2aaSMatthew G. Knepley     ierr = PetscDSSetType(prob, name);CHKERRQ(ierr);
2232764a2aaSMatthew G. Knepley   } else if (!((PetscObject) prob)->type_name) {
2242764a2aaSMatthew G. Knepley     ierr = PetscDSSetType(prob, defaultType);CHKERRQ(ierr);
2252764a2aaSMatthew G. Knepley   }
2262764a2aaSMatthew G. Knepley   if (prob->ops->setfromoptions) {ierr = (*prob->ops->setfromoptions)(prob);CHKERRQ(ierr);}
2272764a2aaSMatthew G. Knepley   /* process any options handlers added with PetscObjectAddOptionsHandler() */
2282764a2aaSMatthew G. Knepley   ierr = PetscObjectProcessOptionsHandlers((PetscObject) prob);CHKERRQ(ierr);
2292764a2aaSMatthew G. Knepley   ierr = PetscOptionsEnd();CHKERRQ(ierr);
2302764a2aaSMatthew G. Knepley   ierr = PetscDSViewFromOptions(prob, NULL, "-petscds_view");CHKERRQ(ierr);
2312764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
2322764a2aaSMatthew G. Knepley }
2332764a2aaSMatthew G. Knepley 
2342764a2aaSMatthew G. Knepley #undef __FUNCT__
2352764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSSetUp"
2362764a2aaSMatthew G. Knepley /*@C
2372764a2aaSMatthew G. Knepley   PetscDSSetUp - Construct data structures for the PetscDS
2382764a2aaSMatthew G. Knepley 
2392764a2aaSMatthew G. Knepley   Collective on PetscDS
2402764a2aaSMatthew G. Knepley 
2412764a2aaSMatthew G. Knepley   Input Parameter:
2422764a2aaSMatthew G. Knepley . prob - the PetscDS object to setup
2432764a2aaSMatthew G. Knepley 
2442764a2aaSMatthew G. Knepley   Level: developer
2452764a2aaSMatthew G. Knepley 
2462764a2aaSMatthew G. Knepley .seealso PetscDSView(), PetscDSDestroy()
2472764a2aaSMatthew G. Knepley @*/
2482764a2aaSMatthew G. Knepley PetscErrorCode PetscDSSetUp(PetscDS prob)
2492764a2aaSMatthew G. Knepley {
2502764a2aaSMatthew G. Knepley   const PetscInt Nf = prob->Nf;
2512764a2aaSMatthew G. Knepley   PetscInt       dim, work, NcMax = 0, NqMax = 0, f;
2522764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
2532764a2aaSMatthew G. Knepley 
2542764a2aaSMatthew G. Knepley   PetscFunctionBegin;
2552764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
2562764a2aaSMatthew G. Knepley   if (prob->setup) PetscFunctionReturn(0);
2572764a2aaSMatthew G. Knepley   /* Calculate sizes */
2582764a2aaSMatthew G. Knepley   ierr = PetscDSGetSpatialDimension(prob, &dim);CHKERRQ(ierr);
2592764a2aaSMatthew G. Knepley   prob->totDim = prob->totDimBd = prob->totComp = 0;
2602764a2aaSMatthew G. Knepley   ierr = PetscMalloc4(Nf,&prob->basis,Nf,&prob->basisDer,Nf,&prob->basisBd,Nf,&prob->basisDerBd);CHKERRQ(ierr);
2612764a2aaSMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
2622764a2aaSMatthew G. Knepley     PetscFE         fe   = (PetscFE) prob->disc[f];
2632764a2aaSMatthew G. Knepley     PetscFE         feBd = (PetscFE) prob->discBd[f];
2642764a2aaSMatthew G. Knepley     PetscQuadrature q;
2652764a2aaSMatthew G. Knepley     PetscInt        Nq, Nb, Nc;
2662764a2aaSMatthew G. Knepley 
2672764a2aaSMatthew G. Knepley     /* TODO Dispatch on discretization type*/
2682764a2aaSMatthew G. Knepley     ierr = PetscFEGetQuadrature(fe, &q);CHKERRQ(ierr);
2692764a2aaSMatthew G. Knepley     ierr = PetscQuadratureGetData(q, NULL, &Nq, NULL, NULL);CHKERRQ(ierr);
2702764a2aaSMatthew G. Knepley     ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
2712764a2aaSMatthew G. Knepley     ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
2722764a2aaSMatthew G. Knepley     ierr = PetscFEGetDefaultTabulation(fe, &prob->basis[f], &prob->basisDer[f], NULL);CHKERRQ(ierr);
2732764a2aaSMatthew G. Knepley     NqMax          = PetscMax(NqMax, Nq);
2742764a2aaSMatthew G. Knepley     NcMax          = PetscMax(NcMax, Nc);
2752764a2aaSMatthew G. Knepley     prob->totDim  += Nb*Nc;
2762764a2aaSMatthew G. Knepley     prob->totComp += Nc;
2772764a2aaSMatthew G. Knepley     if (feBd) {
2782764a2aaSMatthew G. Knepley       ierr = PetscFEGetDimension(feBd, &Nb);CHKERRQ(ierr);
2792764a2aaSMatthew G. Knepley       ierr = PetscFEGetNumComponents(feBd, &Nc);CHKERRQ(ierr);
2802764a2aaSMatthew G. Knepley       ierr = PetscFEGetDefaultTabulation(feBd, &prob->basisBd[f], &prob->basisDerBd[f], NULL);CHKERRQ(ierr);
2812764a2aaSMatthew G. Knepley       prob->totDimBd += Nb*Nc;
2822764a2aaSMatthew G. Knepley     }
2832764a2aaSMatthew G. Knepley   }
2842764a2aaSMatthew G. Knepley   work = PetscMax(prob->totComp*dim, PetscSqr(NcMax*dim));
2852764a2aaSMatthew G. Knepley   /* Allocate works space */
2862764a2aaSMatthew G. Knepley   ierr = PetscMalloc5(prob->totComp,&prob->u,prob->totComp,&prob->u_t,prob->totComp*dim,&prob->u_x,dim,&prob->x,work,&prob->refSpaceDer);CHKERRQ(ierr);
2872764a2aaSMatthew G. Knepley   ierr = PetscMalloc6(NqMax*NcMax,&prob->f0,NqMax*NcMax*dim,&prob->f1,NqMax*NcMax*NcMax,&prob->g0,NqMax*NcMax*NcMax*dim,&prob->g1,NqMax*NcMax*NcMax*dim,&prob->g2,NqMax*NcMax*NcMax*dim*dim,&prob->g3);CHKERRQ(ierr);
2882764a2aaSMatthew G. Knepley   if (prob->ops->setup) {ierr = (*prob->ops->setup)(prob);CHKERRQ(ierr);}
2892764a2aaSMatthew G. Knepley   prob->setup = PETSC_TRUE;
2902764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
2912764a2aaSMatthew G. Knepley }
2922764a2aaSMatthew G. Knepley 
2932764a2aaSMatthew G. Knepley #undef __FUNCT__
2942764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSDestroyStructs_Static"
2952764a2aaSMatthew G. Knepley static PetscErrorCode PetscDSDestroyStructs_Static(PetscDS prob)
2962764a2aaSMatthew G. Knepley {
2972764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
2982764a2aaSMatthew G. Knepley 
2992764a2aaSMatthew G. Knepley   PetscFunctionBegin;
3002764a2aaSMatthew G. Knepley   ierr = PetscFree4(prob->basis,prob->basisDer,prob->basisBd,prob->basisDerBd);CHKERRQ(ierr);
3012764a2aaSMatthew G. Knepley   ierr = PetscFree5(prob->u,prob->u_t,prob->u_x,prob->x,prob->refSpaceDer);CHKERRQ(ierr);
3022764a2aaSMatthew G. Knepley   ierr = PetscFree6(prob->f0,prob->f1,prob->g0,prob->g1,prob->g2,prob->g3);CHKERRQ(ierr);
3032764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
3042764a2aaSMatthew G. Knepley }
3052764a2aaSMatthew G. Knepley 
3062764a2aaSMatthew G. Knepley #undef __FUNCT__
3072764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSEnlarge_Static"
3082764a2aaSMatthew G. Knepley static PetscErrorCode PetscDSEnlarge_Static(PetscDS prob, PetscInt NfNew)
3092764a2aaSMatthew G. Knepley {
3102764a2aaSMatthew G. Knepley   PetscObject   *tmpd, *tmpdbd;
3112764a2aaSMatthew G. Knepley   PointFunc     *tmpobj, *tmpf, *tmpg;
3122764a2aaSMatthew G. Knepley   BdPointFunc   *tmpfbd, *tmpgbd;
3130c2f2876SMatthew G. Knepley   RiemannFunc   *tmpr;
3140c2f2876SMatthew G. Knepley   void         **tmpctx;
3152764a2aaSMatthew G. Knepley   PetscInt       Nf = prob->Nf, f;
3162764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
3172764a2aaSMatthew G. Knepley 
3182764a2aaSMatthew G. Knepley   PetscFunctionBegin;
3192764a2aaSMatthew G. Knepley   if (Nf >= NfNew) PetscFunctionReturn(0);
3202764a2aaSMatthew G. Knepley   prob->setup = PETSC_FALSE;
3212764a2aaSMatthew G. Knepley   ierr = PetscDSDestroyStructs_Static(prob);CHKERRQ(ierr);
3222764a2aaSMatthew G. Knepley   ierr = PetscMalloc1(NfNew, &tmpd);CHKERRQ(ierr);
3232764a2aaSMatthew G. Knepley   for (f = 0; f < Nf; ++f) tmpd[f] = prob->disc[f];
3242764a2aaSMatthew G. Knepley   for (f = Nf; f < NfNew; ++f) {ierr = PetscContainerCreate(PetscObjectComm((PetscObject) prob), (PetscContainer *) &tmpd[f]);CHKERRQ(ierr);}
3252764a2aaSMatthew G. Knepley   ierr = PetscFree(prob->disc);CHKERRQ(ierr);
3262764a2aaSMatthew G. Knepley   prob->Nf   = NfNew;
3272764a2aaSMatthew G. Knepley   prob->disc = tmpd;
3280c2f2876SMatthew G. Knepley   ierr = PetscCalloc5(NfNew, &tmpobj, NfNew*2, &tmpf, NfNew*NfNew*4, &tmpg, NfNew, &tmpr, NfNew, &tmpctx);CHKERRQ(ierr);
3292764a2aaSMatthew G. Knepley   for (f = 0; f < Nf; ++f) tmpobj[f] = prob->obj[f];
3302764a2aaSMatthew G. Knepley   for (f = 0; f < Nf*2; ++f) tmpf[f] = prob->f[f];
3312764a2aaSMatthew G. Knepley   for (f = 0; f < Nf*Nf*4; ++f) tmpg[f] = prob->g[f];
3320c2f2876SMatthew G. Knepley   for (f = 0; f < Nf; ++f) tmpr[f] = prob->r[f];
3330c2f2876SMatthew G. Knepley   for (f = 0; f < Nf; ++f) tmpctx[f] = prob->ctx[f];
3342764a2aaSMatthew G. Knepley   for (f = Nf; f < NfNew; ++f) tmpobj[f] = NULL;
3352764a2aaSMatthew G. Knepley   for (f = Nf*2; f < NfNew*2; ++f) tmpf[f] = NULL;
3362764a2aaSMatthew G. Knepley   for (f = Nf*Nf*4; f < NfNew*NfNew*4; ++f) tmpg[f] = NULL;
3370c2f2876SMatthew G. Knepley   for (f = Nf; f < NfNew; ++f) tmpr[f] = NULL;
3380c2f2876SMatthew G. Knepley   for (f = Nf; f < NfNew; ++f) tmpctx[f] = NULL;
3390c2f2876SMatthew G. Knepley   ierr = PetscFree5(prob->obj, prob->f, prob->g, prob->r, prob->ctx);CHKERRQ(ierr);
3402764a2aaSMatthew G. Knepley   prob->obj = tmpobj;
3412764a2aaSMatthew G. Knepley   prob->f   = tmpf;
3422764a2aaSMatthew G. Knepley   prob->g   = tmpg;
3430c2f2876SMatthew G. Knepley   prob->r   = tmpr;
3440c2f2876SMatthew G. Knepley   prob->ctx = tmpctx;
3452764a2aaSMatthew G. Knepley   ierr = PetscMalloc1(NfNew, &tmpdbd);CHKERRQ(ierr);
3462764a2aaSMatthew G. Knepley   for (f = 0; f < Nf; ++f) tmpdbd[f] = prob->discBd[f];
3472764a2aaSMatthew G. Knepley   for (f = Nf; f < NfNew; ++f) tmpdbd[f] = NULL;
3482764a2aaSMatthew G. Knepley   ierr = PetscFree(prob->discBd);CHKERRQ(ierr);
3492764a2aaSMatthew G. Knepley   prob->discBd = tmpdbd;
3502764a2aaSMatthew G. Knepley   ierr = PetscCalloc2(NfNew*2, &tmpfbd, NfNew*NfNew*4, &tmpgbd);CHKERRQ(ierr);
3512764a2aaSMatthew G. Knepley   for (f = 0; f < Nf*2; ++f) tmpfbd[f] = prob->fBd[f];
3522764a2aaSMatthew G. Knepley   for (f = 0; f < Nf*Nf*4; ++f) tmpgbd[f] = prob->gBd[f];
3532764a2aaSMatthew G. Knepley   for (f = Nf*2; f < NfNew*2; ++f) tmpfbd[f] = NULL;
3542764a2aaSMatthew G. Knepley   for (f = Nf*Nf*4; f < NfNew*NfNew*4; ++f) tmpgbd[f] = NULL;
3552764a2aaSMatthew G. Knepley   ierr = PetscFree2(prob->fBd, prob->gBd);CHKERRQ(ierr);
3562764a2aaSMatthew G. Knepley   prob->fBd = tmpfbd;
3572764a2aaSMatthew G. Knepley   prob->gBd = tmpgbd;
3582764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
3592764a2aaSMatthew G. Knepley }
3602764a2aaSMatthew G. Knepley 
3612764a2aaSMatthew G. Knepley #undef __FUNCT__
3622764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSDestroy"
3632764a2aaSMatthew G. Knepley /*@
3642764a2aaSMatthew G. Knepley   PetscDSDestroy - Destroys a PetscDS object
3652764a2aaSMatthew G. Knepley 
3662764a2aaSMatthew G. Knepley   Collective on PetscDS
3672764a2aaSMatthew G. Knepley 
3682764a2aaSMatthew G. Knepley   Input Parameter:
3692764a2aaSMatthew G. Knepley . prob - the PetscDS object to destroy
3702764a2aaSMatthew G. Knepley 
3712764a2aaSMatthew G. Knepley   Level: developer
3722764a2aaSMatthew G. Knepley 
3732764a2aaSMatthew G. Knepley .seealso PetscDSView()
3742764a2aaSMatthew G. Knepley @*/
3752764a2aaSMatthew G. Knepley PetscErrorCode PetscDSDestroy(PetscDS *prob)
3762764a2aaSMatthew G. Knepley {
3772764a2aaSMatthew G. Knepley   PetscInt       f;
3782764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
3792764a2aaSMatthew G. Knepley 
3802764a2aaSMatthew G. Knepley   PetscFunctionBegin;
3812764a2aaSMatthew G. Knepley   if (!*prob) PetscFunctionReturn(0);
3822764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific((*prob), PETSCDS_CLASSID, 1);
3832764a2aaSMatthew G. Knepley 
3842764a2aaSMatthew G. Knepley   if (--((PetscObject)(*prob))->refct > 0) {*prob = 0; PetscFunctionReturn(0);}
3852764a2aaSMatthew G. Knepley   ((PetscObject) (*prob))->refct = 0;
3862764a2aaSMatthew G. Knepley   ierr = PetscDSDestroyStructs_Static(*prob);CHKERRQ(ierr);
3872764a2aaSMatthew G. Knepley   for (f = 0; f < (*prob)->Nf; ++f) {
3882764a2aaSMatthew G. Knepley     ierr = PetscObjectDereference((*prob)->disc[f]);CHKERRQ(ierr);
3892764a2aaSMatthew G. Knepley     ierr = PetscObjectDereference((*prob)->discBd[f]);CHKERRQ(ierr);
3902764a2aaSMatthew G. Knepley   }
3912764a2aaSMatthew G. Knepley   ierr = PetscFree((*prob)->disc);CHKERRQ(ierr);
3922764a2aaSMatthew G. Knepley   ierr = PetscFree((*prob)->discBd);CHKERRQ(ierr);
3930c2f2876SMatthew G. Knepley   ierr = PetscFree5((*prob)->obj,(*prob)->f,(*prob)->g,(*prob)->r,(*prob)->ctx);CHKERRQ(ierr);
3942764a2aaSMatthew G. Knepley   ierr = PetscFree2((*prob)->fBd,(*prob)->gBd);CHKERRQ(ierr);
3952764a2aaSMatthew G. Knepley   if ((*prob)->ops->destroy) {ierr = (*(*prob)->ops->destroy)(*prob);CHKERRQ(ierr);}
3962764a2aaSMatthew G. Knepley   ierr = PetscHeaderDestroy(prob);CHKERRQ(ierr);
3972764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
3982764a2aaSMatthew G. Knepley }
3992764a2aaSMatthew G. Knepley 
4002764a2aaSMatthew G. Knepley #undef __FUNCT__
4012764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSCreate"
4022764a2aaSMatthew G. Knepley /*@
4032764a2aaSMatthew G. Knepley   PetscDSCreate - Creates an empty PetscDS object. The type can then be set with PetscDSSetType().
4042764a2aaSMatthew G. Knepley 
4052764a2aaSMatthew G. Knepley   Collective on MPI_Comm
4062764a2aaSMatthew G. Knepley 
4072764a2aaSMatthew G. Knepley   Input Parameter:
4082764a2aaSMatthew G. Knepley . comm - The communicator for the PetscDS object
4092764a2aaSMatthew G. Knepley 
4102764a2aaSMatthew G. Knepley   Output Parameter:
4112764a2aaSMatthew G. Knepley . prob - The PetscDS object
4122764a2aaSMatthew G. Knepley 
4132764a2aaSMatthew G. Knepley   Level: beginner
4142764a2aaSMatthew G. Knepley 
4152764a2aaSMatthew G. Knepley .seealso: PetscDSSetType(), PETSCDSBASIC
4162764a2aaSMatthew G. Knepley @*/
4172764a2aaSMatthew G. Knepley PetscErrorCode PetscDSCreate(MPI_Comm comm, PetscDS *prob)
4182764a2aaSMatthew G. Knepley {
4192764a2aaSMatthew G. Knepley   PetscDS   p;
4202764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
4212764a2aaSMatthew G. Knepley 
4222764a2aaSMatthew G. Knepley   PetscFunctionBegin;
4232764a2aaSMatthew G. Knepley   PetscValidPointer(prob, 2);
4242764a2aaSMatthew G. Knepley   *prob  = NULL;
4252764a2aaSMatthew G. Knepley   ierr = PetscDSInitializePackage();CHKERRQ(ierr);
4262764a2aaSMatthew G. Knepley 
4272764a2aaSMatthew G. Knepley   ierr = PetscHeaderCreate(p, _p_PetscDS, struct _PetscDSOps, PETSCDS_CLASSID, "PetscDS", "Discrete System", "PetscDS", comm, PetscDSDestroy, PetscDSView);CHKERRQ(ierr);
4282764a2aaSMatthew G. Knepley   ierr = PetscMemzero(p->ops, sizeof(struct _PetscDSOps));CHKERRQ(ierr);
4292764a2aaSMatthew G. Knepley 
4302764a2aaSMatthew G. Knepley   p->Nf    = 0;
4312764a2aaSMatthew G. Knepley   p->setup = PETSC_FALSE;
4322764a2aaSMatthew G. Knepley 
4332764a2aaSMatthew G. Knepley   *prob = p;
4342764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
4352764a2aaSMatthew G. Knepley }
4362764a2aaSMatthew G. Knepley 
4372764a2aaSMatthew G. Knepley #undef __FUNCT__
4382764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetNumFields"
439*bc4ae4beSMatthew G. Knepley /*@
440*bc4ae4beSMatthew G. Knepley   PetscDSGetNumFields - Returns the number of fields in the DS
441*bc4ae4beSMatthew G. Knepley 
442*bc4ae4beSMatthew G. Knepley   Not collective
443*bc4ae4beSMatthew G. Knepley 
444*bc4ae4beSMatthew G. Knepley   Input Parameter:
445*bc4ae4beSMatthew G. Knepley . prob - The PetscDS object
446*bc4ae4beSMatthew G. Knepley 
447*bc4ae4beSMatthew G. Knepley   Output Parameter:
448*bc4ae4beSMatthew G. Knepley . Nf - The number of fields
449*bc4ae4beSMatthew G. Knepley 
450*bc4ae4beSMatthew G. Knepley   Level: beginner
451*bc4ae4beSMatthew G. Knepley 
452*bc4ae4beSMatthew G. Knepley .seealso: PetscDSGetSpatialDimension(), PetscDSCreate()
453*bc4ae4beSMatthew G. Knepley @*/
4542764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetNumFields(PetscDS prob, PetscInt *Nf)
4552764a2aaSMatthew G. Knepley {
4562764a2aaSMatthew G. Knepley   PetscFunctionBegin;
4572764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
4582764a2aaSMatthew G. Knepley   PetscValidPointer(Nf, 2);
4592764a2aaSMatthew G. Knepley   *Nf = prob->Nf;
4602764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
4612764a2aaSMatthew G. Knepley }
4622764a2aaSMatthew G. Knepley 
4632764a2aaSMatthew G. Knepley #undef __FUNCT__
4642764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetSpatialDimension"
465*bc4ae4beSMatthew G. Knepley /*@
466*bc4ae4beSMatthew G. Knepley   PetscDSGetSpatialDimension - Returns the spatial dimension of the DS
467*bc4ae4beSMatthew G. Knepley 
468*bc4ae4beSMatthew G. Knepley   Not collective
469*bc4ae4beSMatthew G. Knepley 
470*bc4ae4beSMatthew G. Knepley   Input Parameter:
471*bc4ae4beSMatthew G. Knepley . prob - The PetscDS object
472*bc4ae4beSMatthew G. Knepley 
473*bc4ae4beSMatthew G. Knepley   Output Parameter:
474*bc4ae4beSMatthew G. Knepley . dim - The spatial dimension
475*bc4ae4beSMatthew G. Knepley 
476*bc4ae4beSMatthew G. Knepley   Level: beginner
477*bc4ae4beSMatthew G. Knepley 
478*bc4ae4beSMatthew G. Knepley .seealso: PetscDSGetNumFields(), PetscDSCreate()
479*bc4ae4beSMatthew G. Knepley @*/
4802764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetSpatialDimension(PetscDS prob, PetscInt *dim)
4812764a2aaSMatthew G. Knepley {
4822764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
4832764a2aaSMatthew G. Knepley 
4842764a2aaSMatthew G. Knepley   PetscFunctionBegin;
4852764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
4862764a2aaSMatthew G. Knepley   PetscValidPointer(dim, 2);
4872764a2aaSMatthew G. Knepley   *dim = 0;
4882764a2aaSMatthew G. Knepley   if (prob->Nf) {ierr = PetscFEGetSpatialDimension((PetscFE) prob->disc[0], dim);CHKERRQ(ierr);}
4892764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
4902764a2aaSMatthew G. Knepley }
4912764a2aaSMatthew G. Knepley 
4922764a2aaSMatthew G. Knepley #undef __FUNCT__
4932764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetTotalDimension"
494*bc4ae4beSMatthew G. Knepley /*@
495*bc4ae4beSMatthew G. Knepley   PetscDSGetTotalDimension - Returns the total size of the approximation space for this system
496*bc4ae4beSMatthew G. Knepley 
497*bc4ae4beSMatthew G. Knepley   Not collective
498*bc4ae4beSMatthew G. Knepley 
499*bc4ae4beSMatthew G. Knepley   Input Parameter:
500*bc4ae4beSMatthew G. Knepley . prob - The PetscDS object
501*bc4ae4beSMatthew G. Knepley 
502*bc4ae4beSMatthew G. Knepley   Output Parameter:
503*bc4ae4beSMatthew G. Knepley . dim - The total problem dimension
504*bc4ae4beSMatthew G. Knepley 
505*bc4ae4beSMatthew G. Knepley   Level: beginner
506*bc4ae4beSMatthew G. Knepley 
507*bc4ae4beSMatthew G. Knepley .seealso: PetscDSGetNumFields(), PetscDSCreate()
508*bc4ae4beSMatthew G. Knepley @*/
5092764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetTotalDimension(PetscDS prob, PetscInt *dim)
5102764a2aaSMatthew G. Knepley {
5112764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
5122764a2aaSMatthew G. Knepley 
5132764a2aaSMatthew G. Knepley   PetscFunctionBegin;
5142764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
5152764a2aaSMatthew G. Knepley   ierr = PetscDSSetUp(prob);CHKERRQ(ierr);
5162764a2aaSMatthew G. Knepley   PetscValidPointer(dim, 2);
5172764a2aaSMatthew G. Knepley   *dim = prob->totDim;
5182764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
5192764a2aaSMatthew G. Knepley }
5202764a2aaSMatthew G. Knepley 
5212764a2aaSMatthew G. Knepley #undef __FUNCT__
5222764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetTotalBdDimension"
523*bc4ae4beSMatthew G. Knepley /*@
524*bc4ae4beSMatthew G. Knepley   PetscDSGetTotalDimension - Returns the total size of the boundary approximation space for this system
525*bc4ae4beSMatthew G. Knepley 
526*bc4ae4beSMatthew G. Knepley   Not collective
527*bc4ae4beSMatthew G. Knepley 
528*bc4ae4beSMatthew G. Knepley   Input Parameter:
529*bc4ae4beSMatthew G. Knepley . prob - The PetscDS object
530*bc4ae4beSMatthew G. Knepley 
531*bc4ae4beSMatthew G. Knepley   Output Parameter:
532*bc4ae4beSMatthew G. Knepley . dim - The total boundary problem dimension
533*bc4ae4beSMatthew G. Knepley 
534*bc4ae4beSMatthew G. Knepley   Level: beginner
535*bc4ae4beSMatthew G. Knepley 
536*bc4ae4beSMatthew G. Knepley .seealso: PetscDSGetNumFields(), PetscDSCreate()
537*bc4ae4beSMatthew G. Knepley @*/
5382764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetTotalBdDimension(PetscDS prob, PetscInt *dim)
5392764a2aaSMatthew G. Knepley {
5402764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
5412764a2aaSMatthew G. Knepley 
5422764a2aaSMatthew G. Knepley   PetscFunctionBegin;
5432764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
5442764a2aaSMatthew G. Knepley   ierr = PetscDSSetUp(prob);CHKERRQ(ierr);
5452764a2aaSMatthew G. Knepley   PetscValidPointer(dim, 2);
5462764a2aaSMatthew G. Knepley   *dim = prob->totDimBd;
5472764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
5482764a2aaSMatthew G. Knepley }
5492764a2aaSMatthew G. Knepley 
5502764a2aaSMatthew G. Knepley #undef __FUNCT__
5512764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetTotalComponents"
552*bc4ae4beSMatthew G. Knepley /*@
553*bc4ae4beSMatthew G. Knepley   PetscDSGetTotalComponents - Returns the total number of components in this system
554*bc4ae4beSMatthew G. Knepley 
555*bc4ae4beSMatthew G. Knepley   Not collective
556*bc4ae4beSMatthew G. Knepley 
557*bc4ae4beSMatthew G. Knepley   Input Parameter:
558*bc4ae4beSMatthew G. Knepley . prob - The PetscDS object
559*bc4ae4beSMatthew G. Knepley 
560*bc4ae4beSMatthew G. Knepley   Output Parameter:
561*bc4ae4beSMatthew G. Knepley . dim - The total number of components
562*bc4ae4beSMatthew G. Knepley 
563*bc4ae4beSMatthew G. Knepley   Level: beginner
564*bc4ae4beSMatthew G. Knepley 
565*bc4ae4beSMatthew G. Knepley .seealso: PetscDSGetNumFields(), PetscDSCreate()
566*bc4ae4beSMatthew G. Knepley @*/
5672764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetTotalComponents(PetscDS prob, PetscInt *Nc)
5682764a2aaSMatthew G. Knepley {
5692764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
5702764a2aaSMatthew G. Knepley 
5712764a2aaSMatthew G. Knepley   PetscFunctionBegin;
5722764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
5732764a2aaSMatthew G. Knepley   ierr = PetscDSSetUp(prob);CHKERRQ(ierr);
5742764a2aaSMatthew G. Knepley   PetscValidPointer(Nc, 2);
5752764a2aaSMatthew G. Knepley   *Nc = prob->totComp;
5762764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
5772764a2aaSMatthew G. Knepley }
5782764a2aaSMatthew G. Knepley 
5792764a2aaSMatthew G. Knepley #undef __FUNCT__
5802764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetDiscretization"
581*bc4ae4beSMatthew G. Knepley /*@
582*bc4ae4beSMatthew G. Knepley   PetscDSGetDiscretization - Returns the discretization object for the given field
583*bc4ae4beSMatthew G. Knepley 
584*bc4ae4beSMatthew G. Knepley   Not collective
585*bc4ae4beSMatthew G. Knepley 
586*bc4ae4beSMatthew G. Knepley   Input Parameters:
587*bc4ae4beSMatthew G. Knepley + prob - The PetscDS object
588*bc4ae4beSMatthew G. Knepley - f - The field number
589*bc4ae4beSMatthew G. Knepley 
590*bc4ae4beSMatthew G. Knepley   Output Parameter:
591*bc4ae4beSMatthew G. Knepley . disc - The discretization object
592*bc4ae4beSMatthew G. Knepley 
593*bc4ae4beSMatthew G. Knepley   Level: beginner
594*bc4ae4beSMatthew G. Knepley 
595*bc4ae4beSMatthew G. Knepley .seealso: PetscDSSetDiscretization(), PetscDSAddDiscretization(), PetscDSGetBdDiscretization(), PetscDSGetNumFields(), PetscDSCreate()
596*bc4ae4beSMatthew G. Knepley @*/
5972764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetDiscretization(PetscDS prob, PetscInt f, PetscObject *disc)
5982764a2aaSMatthew G. Knepley {
5992764a2aaSMatthew G. Knepley   PetscFunctionBegin;
6002764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
6012764a2aaSMatthew G. Knepley   PetscValidPointer(disc, 3);
6022764a2aaSMatthew G. Knepley   if ((f < 0) || (f >= prob->Nf)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, prob->Nf);
6032764a2aaSMatthew G. Knepley   *disc = prob->disc[f];
6042764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
6052764a2aaSMatthew G. Knepley }
6062764a2aaSMatthew G. Knepley 
6072764a2aaSMatthew G. Knepley #undef __FUNCT__
6082764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetBdDiscretization"
609*bc4ae4beSMatthew G. Knepley /*@
610*bc4ae4beSMatthew G. Knepley   PetscDSGetBdDiscretization - Returns the boundary discretization object for the given field
611*bc4ae4beSMatthew G. Knepley 
612*bc4ae4beSMatthew G. Knepley   Not collective
613*bc4ae4beSMatthew G. Knepley 
614*bc4ae4beSMatthew G. Knepley   Input Parameters:
615*bc4ae4beSMatthew G. Knepley + prob - The PetscDS object
616*bc4ae4beSMatthew G. Knepley - f - The field number
617*bc4ae4beSMatthew G. Knepley 
618*bc4ae4beSMatthew G. Knepley   Output Parameter:
619*bc4ae4beSMatthew G. Knepley . disc - The boundary discretization object
620*bc4ae4beSMatthew G. Knepley 
621*bc4ae4beSMatthew G. Knepley   Level: beginner
622*bc4ae4beSMatthew G. Knepley 
623*bc4ae4beSMatthew G. Knepley .seealso: PetscDSSetBdDiscretization(), PetscDSAddBdDiscretization(), PetscDSGetDiscretization(), PetscDSGetNumFields(), PetscDSCreate()
624*bc4ae4beSMatthew G. Knepley @*/
6252764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetBdDiscretization(PetscDS prob, PetscInt f, PetscObject *disc)
6262764a2aaSMatthew G. Knepley {
6272764a2aaSMatthew G. Knepley   PetscFunctionBegin;
6282764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
6292764a2aaSMatthew G. Knepley   PetscValidPointer(disc, 3);
6302764a2aaSMatthew G. Knepley   if ((f < 0) || (f >= prob->Nf)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, prob->Nf);
6312764a2aaSMatthew G. Knepley   *disc = prob->discBd[f];
6322764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
6332764a2aaSMatthew G. Knepley }
6342764a2aaSMatthew G. Knepley 
6352764a2aaSMatthew G. Knepley #undef __FUNCT__
6362764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSSetDiscretization"
637*bc4ae4beSMatthew G. Knepley /*@
638*bc4ae4beSMatthew G. Knepley   PetscDSSetDiscretization - Sets the discretization object for the given field
639*bc4ae4beSMatthew G. Knepley 
640*bc4ae4beSMatthew G. Knepley   Not collective
641*bc4ae4beSMatthew G. Knepley 
642*bc4ae4beSMatthew G. Knepley   Input Parameters:
643*bc4ae4beSMatthew G. Knepley + prob - The PetscDS object
644*bc4ae4beSMatthew G. Knepley . f - The field number
645*bc4ae4beSMatthew G. Knepley - disc - The discretization object
646*bc4ae4beSMatthew G. Knepley 
647*bc4ae4beSMatthew G. Knepley   Level: beginner
648*bc4ae4beSMatthew G. Knepley 
649*bc4ae4beSMatthew G. Knepley .seealso: PetscDSGetDiscretization(), PetscDSAddDiscretization(), PetscDSGetNumFields(), PetscDSCreate()
650*bc4ae4beSMatthew G. Knepley @*/
6512764a2aaSMatthew G. Knepley PetscErrorCode PetscDSSetDiscretization(PetscDS prob, PetscInt f, PetscObject disc)
6522764a2aaSMatthew G. Knepley {
6532764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
6542764a2aaSMatthew G. Knepley 
6552764a2aaSMatthew G. Knepley   PetscFunctionBegin;
6562764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
6572764a2aaSMatthew G. Knepley   PetscValidPointer(disc, 3);
6582764a2aaSMatthew G. Knepley   if (f < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be non-negative", f);
6592764a2aaSMatthew G. Knepley   ierr = PetscDSEnlarge_Static(prob, f+1);CHKERRQ(ierr);
6602764a2aaSMatthew G. Knepley   if (prob->disc[f]) {ierr = PetscObjectDereference(prob->disc[f]);CHKERRQ(ierr);}
6612764a2aaSMatthew G. Knepley   prob->disc[f] = disc;
6622764a2aaSMatthew G. Knepley   ierr = PetscObjectReference(disc);CHKERRQ(ierr);
6632764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
6642764a2aaSMatthew G. Knepley }
6652764a2aaSMatthew G. Knepley 
6662764a2aaSMatthew G. Knepley #undef __FUNCT__
6672764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSSetBdDiscretization"
668*bc4ae4beSMatthew G. Knepley /*@
669*bc4ae4beSMatthew G. Knepley   PetscDSSetBdDiscretization - Sets the boundary discretization object for the given field
670*bc4ae4beSMatthew G. Knepley 
671*bc4ae4beSMatthew G. Knepley   Not collective
672*bc4ae4beSMatthew G. Knepley 
673*bc4ae4beSMatthew G. Knepley   Input Parameters:
674*bc4ae4beSMatthew G. Knepley + prob - The PetscDS object
675*bc4ae4beSMatthew G. Knepley . f - The field number
676*bc4ae4beSMatthew G. Knepley - disc - The boundary discretization object
677*bc4ae4beSMatthew G. Knepley 
678*bc4ae4beSMatthew G. Knepley   Level: beginner
679*bc4ae4beSMatthew G. Knepley 
680*bc4ae4beSMatthew G. Knepley .seealso: PetscDSGetBdDiscretization(), PetscDSAddBdDiscretization(), PetscDSGetNumFields(), PetscDSCreate()
681*bc4ae4beSMatthew G. Knepley @*/
6822764a2aaSMatthew G. Knepley PetscErrorCode PetscDSSetBdDiscretization(PetscDS prob, PetscInt f, PetscObject disc)
6832764a2aaSMatthew G. Knepley {
6842764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
6852764a2aaSMatthew G. Knepley 
6862764a2aaSMatthew G. Knepley   PetscFunctionBegin;
6872764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
6882764a2aaSMatthew G. Knepley   if (disc) PetscValidPointer(disc, 3);
6892764a2aaSMatthew G. Knepley   if (f < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be non-negative", f);
6902764a2aaSMatthew G. Knepley   ierr = PetscDSEnlarge_Static(prob, f+1);CHKERRQ(ierr);
6912764a2aaSMatthew G. Knepley   if (prob->discBd[f]) {ierr = PetscObjectDereference(prob->discBd[f]);CHKERRQ(ierr);}
6922764a2aaSMatthew G. Knepley   prob->discBd[f] = disc;
6932764a2aaSMatthew G. Knepley   ierr = PetscObjectReference(disc);CHKERRQ(ierr);
6942764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
6952764a2aaSMatthew G. Knepley }
6962764a2aaSMatthew G. Knepley 
6972764a2aaSMatthew G. Knepley #undef __FUNCT__
6982764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSAddDiscretization"
699*bc4ae4beSMatthew G. Knepley /*@
700*bc4ae4beSMatthew G. Knepley   PetscDSAddDiscretization - Adds a discretization object
701*bc4ae4beSMatthew G. Knepley 
702*bc4ae4beSMatthew G. Knepley   Not collective
703*bc4ae4beSMatthew G. Knepley 
704*bc4ae4beSMatthew G. Knepley   Input Parameters:
705*bc4ae4beSMatthew G. Knepley + prob - The PetscDS object
706*bc4ae4beSMatthew G. Knepley - disc - The boundary discretization object
707*bc4ae4beSMatthew G. Knepley 
708*bc4ae4beSMatthew G. Knepley   Level: beginner
709*bc4ae4beSMatthew G. Knepley 
710*bc4ae4beSMatthew G. Knepley .seealso: PetscDSGetDiscretization(), PetscDSSetDiscretization(), PetscDSGetNumFields(), PetscDSCreate()
711*bc4ae4beSMatthew G. Knepley @*/
7122764a2aaSMatthew G. Knepley PetscErrorCode PetscDSAddDiscretization(PetscDS prob, PetscObject disc)
7132764a2aaSMatthew G. Knepley {
7142764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
7152764a2aaSMatthew G. Knepley 
7162764a2aaSMatthew G. Knepley   PetscFunctionBegin;
7172764a2aaSMatthew G. Knepley   ierr = PetscDSSetDiscretization(prob, prob->Nf, disc);CHKERRQ(ierr);
7182764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
7192764a2aaSMatthew G. Knepley }
7202764a2aaSMatthew G. Knepley 
7212764a2aaSMatthew G. Knepley #undef __FUNCT__
7222764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSAddBdDiscretization"
723*bc4ae4beSMatthew G. Knepley /*@
724*bc4ae4beSMatthew G. Knepley   PetscDSAddBdDiscretization - Adds a boundary discretization object
725*bc4ae4beSMatthew G. Knepley 
726*bc4ae4beSMatthew G. Knepley   Not collective
727*bc4ae4beSMatthew G. Knepley 
728*bc4ae4beSMatthew G. Knepley   Input Parameters:
729*bc4ae4beSMatthew G. Knepley + prob - The PetscDS object
730*bc4ae4beSMatthew G. Knepley - disc - The boundary discretization object
731*bc4ae4beSMatthew G. Knepley 
732*bc4ae4beSMatthew G. Knepley   Level: beginner
733*bc4ae4beSMatthew G. Knepley 
734*bc4ae4beSMatthew G. Knepley .seealso: PetscDSGetBdDiscretization(), PetscDSSetBdDiscretization(), PetscDSGetNumFields(), PetscDSCreate()
735*bc4ae4beSMatthew G. Knepley @*/
7362764a2aaSMatthew G. Knepley PetscErrorCode PetscDSAddBdDiscretization(PetscDS prob, PetscObject disc)
7372764a2aaSMatthew G. Knepley {
7382764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
7392764a2aaSMatthew G. Knepley 
7402764a2aaSMatthew G. Knepley   PetscFunctionBegin;
7412764a2aaSMatthew G. Knepley   ierr = PetscDSSetBdDiscretization(prob, prob->Nf, disc);CHKERRQ(ierr);
7422764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
7432764a2aaSMatthew G. Knepley }
7442764a2aaSMatthew G. Knepley 
7452764a2aaSMatthew G. Knepley #undef __FUNCT__
7462764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetObjective"
7472764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetObjective(PetscDS prob, PetscInt f,
7482764a2aaSMatthew G. Knepley                                         void (**obj)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], PetscScalar obj[]))
7492764a2aaSMatthew G. Knepley {
7502764a2aaSMatthew G. Knepley   PetscFunctionBegin;
7512764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
7522764a2aaSMatthew G. Knepley   PetscValidPointer(obj, 2);
7532764a2aaSMatthew G. Knepley   if ((f < 0) || (f >= prob->Nf)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, prob->Nf);
7542764a2aaSMatthew G. Knepley   *obj = prob->obj[f];
7552764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
7562764a2aaSMatthew G. Knepley }
7572764a2aaSMatthew G. Knepley 
7582764a2aaSMatthew G. Knepley #undef __FUNCT__
7592764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSSetObjective"
7602764a2aaSMatthew G. Knepley PetscErrorCode PetscDSSetObjective(PetscDS prob, PetscInt f,
7612764a2aaSMatthew G. Knepley                                         void (*obj)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], PetscScalar obj[]))
7622764a2aaSMatthew G. Knepley {
7632764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
7642764a2aaSMatthew G. Knepley 
7652764a2aaSMatthew G. Knepley   PetscFunctionBegin;
7662764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
7672764a2aaSMatthew G. Knepley   PetscValidFunction(obj, 2);
7682764a2aaSMatthew G. Knepley   if (f < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be non-negative", f);
7692764a2aaSMatthew G. Knepley   ierr = PetscDSEnlarge_Static(prob, f+1);CHKERRQ(ierr);
7702764a2aaSMatthew G. Knepley   prob->obj[f] = obj;
7712764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
7722764a2aaSMatthew G. Knepley }
7732764a2aaSMatthew G. Knepley 
7742764a2aaSMatthew G. Knepley #undef __FUNCT__
7752764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetResidual"
7762764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetResidual(PetscDS prob, PetscInt f,
7772764a2aaSMatthew G. Knepley                                        void (**f0)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], PetscScalar f0[]),
7782764a2aaSMatthew G. Knepley                                        void (**f1)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], PetscScalar f1[]))
7792764a2aaSMatthew G. Knepley {
7802764a2aaSMatthew G. Knepley   PetscFunctionBegin;
7812764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
7822764a2aaSMatthew G. Knepley   if ((f < 0) || (f >= prob->Nf)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, prob->Nf);
7832764a2aaSMatthew G. Knepley   if (f0) {PetscValidPointer(f0, 3); *f0 = prob->f[f*2+0];}
7842764a2aaSMatthew G. Knepley   if (f1) {PetscValidPointer(f1, 4); *f1 = prob->f[f*2+1];}
7852764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
7862764a2aaSMatthew G. Knepley }
7872764a2aaSMatthew G. Knepley 
7882764a2aaSMatthew G. Knepley #undef __FUNCT__
7892764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSSetResidual"
7902764a2aaSMatthew G. Knepley PetscErrorCode PetscDSSetResidual(PetscDS prob, PetscInt f,
7912764a2aaSMatthew G. Knepley                                        void (*f0)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], PetscScalar f0[]),
7922764a2aaSMatthew G. Knepley                                        void (*f1)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], PetscScalar f1[]))
7932764a2aaSMatthew G. Knepley {
7942764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
7952764a2aaSMatthew G. Knepley 
7962764a2aaSMatthew G. Knepley   PetscFunctionBegin;
7972764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
7982764a2aaSMatthew G. Knepley   PetscValidFunction(f0, 3);
7992764a2aaSMatthew G. Knepley   PetscValidFunction(f1, 4);
8002764a2aaSMatthew G. Knepley   if (f < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be non-negative", f);
8012764a2aaSMatthew G. Knepley   ierr = PetscDSEnlarge_Static(prob, f+1);CHKERRQ(ierr);
8022764a2aaSMatthew G. Knepley   prob->f[f*2+0] = f0;
8032764a2aaSMatthew G. Knepley   prob->f[f*2+1] = f1;
8042764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
8052764a2aaSMatthew G. Knepley }
8062764a2aaSMatthew G. Knepley 
8072764a2aaSMatthew G. Knepley #undef __FUNCT__
8082764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetJacobian"
8092764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetJacobian(PetscDS prob, PetscInt f, PetscInt g,
8102764a2aaSMatthew G. Knepley                                        void (**g0)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], PetscScalar g0[]),
8112764a2aaSMatthew G. Knepley                                        void (**g1)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], PetscScalar g1[]),
8122764a2aaSMatthew G. Knepley                                        void (**g2)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], PetscScalar g2[]),
8132764a2aaSMatthew G. Knepley                                        void (**g3)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], PetscScalar g3[]))
8142764a2aaSMatthew G. Knepley {
8152764a2aaSMatthew G. Knepley   PetscFunctionBegin;
8162764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
8172764a2aaSMatthew G. Knepley   if ((f < 0) || (f >= prob->Nf)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, prob->Nf);
8182764a2aaSMatthew G. Knepley   if ((g < 0) || (g >= prob->Nf)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", g, prob->Nf);
8192764a2aaSMatthew G. Knepley   if (g0) {PetscValidPointer(g0, 4); *g0 = prob->g[(f*prob->Nf + g)*4+0];}
8202764a2aaSMatthew G. Knepley   if (g1) {PetscValidPointer(g1, 5); *g1 = prob->g[(f*prob->Nf + g)*4+1];}
8212764a2aaSMatthew G. Knepley   if (g2) {PetscValidPointer(g2, 6); *g2 = prob->g[(f*prob->Nf + g)*4+2];}
8222764a2aaSMatthew G. Knepley   if (g3) {PetscValidPointer(g3, 7); *g3 = prob->g[(f*prob->Nf + g)*4+3];}
8232764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
8242764a2aaSMatthew G. Knepley }
8252764a2aaSMatthew G. Knepley 
8262764a2aaSMatthew G. Knepley #undef __FUNCT__
8272764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSSetJacobian"
8282764a2aaSMatthew G. Knepley PetscErrorCode PetscDSSetJacobian(PetscDS prob, PetscInt f, PetscInt g,
8292764a2aaSMatthew G. Knepley                                        void (*g0)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], PetscScalar g0[]),
8302764a2aaSMatthew G. Knepley                                        void (*g1)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], PetscScalar g1[]),
8312764a2aaSMatthew G. Knepley                                        void (*g2)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], PetscScalar g2[]),
8322764a2aaSMatthew G. Knepley                                        void (*g3)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], PetscScalar g3[]))
8332764a2aaSMatthew G. Knepley {
8342764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
8352764a2aaSMatthew G. Knepley 
8362764a2aaSMatthew G. Knepley   PetscFunctionBegin;
8372764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
8382764a2aaSMatthew G. Knepley   if (g0) PetscValidFunction(g0, 4);
8392764a2aaSMatthew G. Knepley   if (g1) PetscValidFunction(g1, 5);
8402764a2aaSMatthew G. Knepley   if (g2) PetscValidFunction(g2, 6);
8412764a2aaSMatthew G. Knepley   if (g3) PetscValidFunction(g3, 7);
8422764a2aaSMatthew G. Knepley   if (f < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be non-negative", f);
8432764a2aaSMatthew G. Knepley   if (g < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be non-negative", g);
8442764a2aaSMatthew G. Knepley   ierr = PetscDSEnlarge_Static(prob, PetscMax(f, g)+1);CHKERRQ(ierr);
8452764a2aaSMatthew G. Knepley   prob->g[(f*prob->Nf + g)*4+0] = g0;
8462764a2aaSMatthew G. Knepley   prob->g[(f*prob->Nf + g)*4+1] = g1;
8472764a2aaSMatthew G. Knepley   prob->g[(f*prob->Nf + g)*4+2] = g2;
8482764a2aaSMatthew G. Knepley   prob->g[(f*prob->Nf + g)*4+3] = g3;
8492764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
8502764a2aaSMatthew G. Knepley }
8512764a2aaSMatthew G. Knepley 
8522764a2aaSMatthew G. Knepley #undef __FUNCT__
8530c2f2876SMatthew G. Knepley #define __FUNCT__ "PetscDSGetRiemannSolver"
8540c2f2876SMatthew G. Knepley /*@C
8550c2f2876SMatthew G. Knepley   PetscDSGetRiemannSolver - Returns the Riemann solver for the given field
8560c2f2876SMatthew G. Knepley 
8570c2f2876SMatthew G. Knepley   Not collective
8580c2f2876SMatthew G. Knepley 
8590c2f2876SMatthew G. Knepley   Input Arguments:
8600c2f2876SMatthew G. Knepley + prob - The PetscDS object
8610c2f2876SMatthew G. Knepley - f    - The field number
8620c2f2876SMatthew G. Knepley 
8630c2f2876SMatthew G. Knepley   Output Argument:
8640c2f2876SMatthew G. Knepley . r    - Riemann solver
8650c2f2876SMatthew G. Knepley 
8660c2f2876SMatthew G. Knepley   Calling sequence for r:
8670c2f2876SMatthew G. Knepley 
8680c2f2876SMatthew G. Knepley $ r(const PetscReal x[], const PetscReal n[], const PetscScalar uL[], const PetscScalar uR[], PetscScalar flux[], void *ctx)
8690c2f2876SMatthew G. Knepley 
8700c2f2876SMatthew G. Knepley + x    - The coordinates at a point on the interface
8710c2f2876SMatthew G. Knepley . n    - The normal vector to the interface
8720c2f2876SMatthew G. Knepley . uL   - The state vector to the left of the interface
8730c2f2876SMatthew G. Knepley . uR   - The state vector to the right of the interface
8740c2f2876SMatthew G. Knepley . flux - output array of flux through the interface
8750c2f2876SMatthew G. Knepley - ctx  - optional user context
8760c2f2876SMatthew G. Knepley 
8770c2f2876SMatthew G. Knepley   Level: intermediate
8780c2f2876SMatthew G. Knepley 
8790c2f2876SMatthew G. Knepley .seealso: PetscDSSetRiemannSolver()
8800c2f2876SMatthew G. Knepley @*/
8810c2f2876SMatthew G. Knepley PetscErrorCode PetscDSGetRiemannSolver(PetscDS prob, PetscInt f,
8820c2f2876SMatthew G. Knepley                                        void (**r)(const PetscReal x[], const PetscReal n[], const PetscScalar uL[], const PetscScalar uR[], PetscScalar flux[], void *ctx))
8830c2f2876SMatthew G. Knepley {
8840c2f2876SMatthew G. Knepley   PetscFunctionBegin;
8850c2f2876SMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
8860c2f2876SMatthew G. Knepley   if ((f < 0) || (f >= prob->Nf)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, prob->Nf);
8870c2f2876SMatthew G. Knepley   PetscValidPointer(r, 3);
8880c2f2876SMatthew G. Knepley   *r = prob->r[f];
8890c2f2876SMatthew G. Knepley   PetscFunctionReturn(0);
8900c2f2876SMatthew G. Knepley }
8910c2f2876SMatthew G. Knepley 
8920c2f2876SMatthew G. Knepley #undef __FUNCT__
8930c2f2876SMatthew G. Knepley #define __FUNCT__ "PetscDSSetRiemannSolver"
8940c2f2876SMatthew G. Knepley /*@C
8950c2f2876SMatthew G. Knepley   PetscDSSetRiemannSolver - Sets the Riemann solver for the given field
8960c2f2876SMatthew G. Knepley 
8970c2f2876SMatthew G. Knepley   Not collective
8980c2f2876SMatthew G. Knepley 
8990c2f2876SMatthew G. Knepley   Input Arguments:
9000c2f2876SMatthew G. Knepley + prob - The PetscDS object
9010c2f2876SMatthew G. Knepley . f    - The field number
9020c2f2876SMatthew G. Knepley - r    - Riemann solver
9030c2f2876SMatthew G. Knepley 
9040c2f2876SMatthew G. Knepley   Calling sequence for r:
9050c2f2876SMatthew G. Knepley 
9060c2f2876SMatthew G. Knepley $ r(const PetscReal x[], const PetscReal n[], const PetscScalar uL[], const PetscScalar uR[], PetscScalar flux[], void *ctx)
9070c2f2876SMatthew G. Knepley 
9080c2f2876SMatthew G. Knepley + x    - The coordinates at a point on the interface
9090c2f2876SMatthew G. Knepley . n    - The normal vector to the interface
9100c2f2876SMatthew G. Knepley . uL   - The state vector to the left of the interface
9110c2f2876SMatthew G. Knepley . uR   - The state vector to the right of the interface
9120c2f2876SMatthew G. Knepley . flux - output array of flux through the interface
9130c2f2876SMatthew G. Knepley - ctx  - optional user context
9140c2f2876SMatthew G. Knepley 
9150c2f2876SMatthew G. Knepley   Level: intermediate
9160c2f2876SMatthew G. Knepley 
9170c2f2876SMatthew G. Knepley .seealso: PetscDSGetRiemannSolver()
9180c2f2876SMatthew G. Knepley @*/
9190c2f2876SMatthew G. Knepley PetscErrorCode PetscDSSetRiemannSolver(PetscDS prob, PetscInt f,
9200c2f2876SMatthew G. Knepley                                        void (*r)(const PetscReal x[], const PetscReal n[], const PetscScalar uL[], const PetscScalar uR[], PetscScalar flux[], void *ctx))
9210c2f2876SMatthew G. Knepley {
9220c2f2876SMatthew G. Knepley   PetscErrorCode ierr;
9230c2f2876SMatthew G. Knepley 
9240c2f2876SMatthew G. Knepley   PetscFunctionBegin;
9250c2f2876SMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
9260c2f2876SMatthew G. Knepley   PetscValidFunction(r, 3);
9270c2f2876SMatthew G. Knepley   if (f < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be non-negative", f);
9280c2f2876SMatthew G. Knepley   ierr = PetscDSEnlarge_Static(prob, f+1);CHKERRQ(ierr);
9290c2f2876SMatthew G. Knepley   prob->r[f] = r;
9300c2f2876SMatthew G. Knepley   PetscFunctionReturn(0);
9310c2f2876SMatthew G. Knepley }
9320c2f2876SMatthew G. Knepley 
9330c2f2876SMatthew G. Knepley #undef __FUNCT__
9340c2f2876SMatthew G. Knepley #define __FUNCT__ "PetscDSGetContext"
9350c2f2876SMatthew G. Knepley PetscErrorCode PetscDSGetContext(PetscDS prob, PetscInt f, void **ctx)
9360c2f2876SMatthew G. Knepley {
9370c2f2876SMatthew G. Knepley   PetscFunctionBegin;
9380c2f2876SMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
9390c2f2876SMatthew G. Knepley   if ((f < 0) || (f >= prob->Nf)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, prob->Nf);
9400c2f2876SMatthew G. Knepley   PetscValidPointer(ctx, 3);
9410c2f2876SMatthew G. Knepley   *ctx = prob->ctx[f];
9420c2f2876SMatthew G. Knepley   PetscFunctionReturn(0);
9430c2f2876SMatthew G. Knepley }
9440c2f2876SMatthew G. Knepley 
9450c2f2876SMatthew G. Knepley #undef __FUNCT__
9460c2f2876SMatthew G. Knepley #define __FUNCT__ "PetscDSSetContext"
9470c2f2876SMatthew G. Knepley PetscErrorCode PetscDSSetContext(PetscDS prob, PetscInt f, void *ctx)
9480c2f2876SMatthew G. Knepley {
9490c2f2876SMatthew G. Knepley   PetscErrorCode ierr;
9500c2f2876SMatthew G. Knepley 
9510c2f2876SMatthew G. Knepley   PetscFunctionBegin;
9520c2f2876SMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
9530c2f2876SMatthew G. Knepley   if (f < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be non-negative", f);
9540c2f2876SMatthew G. Knepley   ierr = PetscDSEnlarge_Static(prob, f+1);CHKERRQ(ierr);
9550c2f2876SMatthew G. Knepley   prob->ctx[f] = ctx;
9560c2f2876SMatthew G. Knepley   PetscFunctionReturn(0);
9570c2f2876SMatthew G. Knepley }
9580c2f2876SMatthew G. Knepley 
9590c2f2876SMatthew G. Knepley #undef __FUNCT__
9602764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetBdResidual"
9612764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetBdResidual(PetscDS prob, PetscInt f,
9622764a2aaSMatthew G. Knepley                                          void (**f0)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], const PetscReal n[], PetscScalar f0[]),
9632764a2aaSMatthew G. Knepley                                          void (**f1)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], const PetscReal n[], PetscScalar f1[]))
9642764a2aaSMatthew G. Knepley {
9652764a2aaSMatthew G. Knepley   PetscFunctionBegin;
9662764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
9672764a2aaSMatthew G. Knepley   if ((f < 0) || (f >= prob->Nf)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, prob->Nf);
9682764a2aaSMatthew G. Knepley   if (f0) {PetscValidPointer(f0, 3); *f0 = prob->fBd[f*2+0];}
9692764a2aaSMatthew G. Knepley   if (f1) {PetscValidPointer(f1, 4); *f1 = prob->fBd[f*2+1];}
9702764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
9712764a2aaSMatthew G. Knepley }
9722764a2aaSMatthew G. Knepley 
9732764a2aaSMatthew G. Knepley #undef __FUNCT__
9742764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSSetBdResidual"
9752764a2aaSMatthew G. Knepley PetscErrorCode PetscDSSetBdResidual(PetscDS prob, PetscInt f,
9762764a2aaSMatthew G. Knepley                                          void (*f0)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], const PetscReal n[], PetscScalar f0[]),
9772764a2aaSMatthew G. Knepley                                          void (*f1)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], const PetscReal n[], PetscScalar f1[]))
9782764a2aaSMatthew G. Knepley {
9792764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
9802764a2aaSMatthew G. Knepley 
9812764a2aaSMatthew G. Knepley   PetscFunctionBegin;
9822764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
9832764a2aaSMatthew G. Knepley   if (f < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be non-negative", f);
9842764a2aaSMatthew G. Knepley   ierr = PetscDSEnlarge_Static(prob, f+1);CHKERRQ(ierr);
9852764a2aaSMatthew G. Knepley   if (f0) {PetscValidFunction(f0, 3); prob->fBd[f*2+0] = f0;}
9862764a2aaSMatthew G. Knepley   if (f1) {PetscValidFunction(f1, 4); prob->fBd[f*2+1] = f1;}
9872764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
9882764a2aaSMatthew G. Knepley }
9892764a2aaSMatthew G. Knepley 
9902764a2aaSMatthew G. Knepley #undef __FUNCT__
9912764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetBdJacobian"
9922764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetBdJacobian(PetscDS prob, PetscInt f, PetscInt g,
9932764a2aaSMatthew G. Knepley                                          void (**g0)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], const PetscReal n[], PetscScalar g0[]),
9942764a2aaSMatthew G. Knepley                                          void (**g1)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], const PetscReal n[], PetscScalar g1[]),
9952764a2aaSMatthew G. Knepley                                          void (**g2)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], const PetscReal n[], PetscScalar g2[]),
9962764a2aaSMatthew G. Knepley                                          void (**g3)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], const PetscReal n[], PetscScalar g3[]))
9972764a2aaSMatthew G. Knepley {
9982764a2aaSMatthew G. Knepley   PetscFunctionBegin;
9992764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
10002764a2aaSMatthew G. Knepley   if ((f < 0) || (f >= prob->Nf)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, prob->Nf);
10012764a2aaSMatthew G. Knepley   if ((g < 0) || (g >= prob->Nf)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", g, prob->Nf);
10022764a2aaSMatthew G. Knepley   if (g0) {PetscValidPointer(g0, 4); *g0 = prob->gBd[(f*prob->Nf + g)*4+0];}
10032764a2aaSMatthew G. Knepley   if (g1) {PetscValidPointer(g1, 5); *g1 = prob->gBd[(f*prob->Nf + g)*4+1];}
10042764a2aaSMatthew G. Knepley   if (g2) {PetscValidPointer(g2, 6); *g2 = prob->gBd[(f*prob->Nf + g)*4+2];}
10052764a2aaSMatthew G. Knepley   if (g3) {PetscValidPointer(g3, 7); *g3 = prob->gBd[(f*prob->Nf + g)*4+3];}
10062764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
10072764a2aaSMatthew G. Knepley }
10082764a2aaSMatthew G. Knepley 
10092764a2aaSMatthew G. Knepley #undef __FUNCT__
10102764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSSetBdJacobian"
10112764a2aaSMatthew G. Knepley PetscErrorCode PetscDSSetBdJacobian(PetscDS prob, PetscInt f, PetscInt g,
10122764a2aaSMatthew G. Knepley                                          void (*g0)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], const PetscReal n[], PetscScalar g0[]),
10132764a2aaSMatthew G. Knepley                                          void (*g1)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], const PetscReal n[], PetscScalar g1[]),
10142764a2aaSMatthew G. Knepley                                          void (*g2)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], const PetscReal n[], PetscScalar g2[]),
10152764a2aaSMatthew G. Knepley                                          void (*g3)(const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], const PetscReal x[], const PetscReal n[], PetscScalar g3[]))
10162764a2aaSMatthew G. Knepley {
10172764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
10182764a2aaSMatthew G. Knepley 
10192764a2aaSMatthew G. Knepley   PetscFunctionBegin;
10202764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
10212764a2aaSMatthew G. Knepley   if (g0) PetscValidFunction(g0, 4);
10222764a2aaSMatthew G. Knepley   if (g1) PetscValidFunction(g1, 5);
10232764a2aaSMatthew G. Knepley   if (g2) PetscValidFunction(g2, 6);
10242764a2aaSMatthew G. Knepley   if (g3) PetscValidFunction(g3, 7);
10252764a2aaSMatthew G. Knepley   if (f < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be non-negative", f);
10262764a2aaSMatthew G. Knepley   if (g < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be non-negative", g);
10272764a2aaSMatthew G. Knepley   ierr = PetscDSEnlarge_Static(prob, PetscMax(f, g)+1);CHKERRQ(ierr);
10282764a2aaSMatthew G. Knepley   prob->gBd[(f*prob->Nf + g)*4+0] = g0;
10292764a2aaSMatthew G. Knepley   prob->gBd[(f*prob->Nf + g)*4+1] = g1;
10302764a2aaSMatthew G. Knepley   prob->gBd[(f*prob->Nf + g)*4+2] = g2;
10312764a2aaSMatthew G. Knepley   prob->gBd[(f*prob->Nf + g)*4+3] = g3;
10322764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
10332764a2aaSMatthew G. Knepley }
10342764a2aaSMatthew G. Knepley 
10352764a2aaSMatthew G. Knepley #undef __FUNCT__
10362764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetFieldOffset"
1037*bc4ae4beSMatthew G. Knepley /*@
1038*bc4ae4beSMatthew G. Knepley   PetscDSGetFieldOffset - Returns the offset of the given field in the full space basis
1039*bc4ae4beSMatthew G. Knepley 
1040*bc4ae4beSMatthew G. Knepley   Not collective
1041*bc4ae4beSMatthew G. Knepley 
1042*bc4ae4beSMatthew G. Knepley   Input Parameters:
1043*bc4ae4beSMatthew G. Knepley + prob - The PetscDS object
1044*bc4ae4beSMatthew G. Knepley - f - The field number
1045*bc4ae4beSMatthew G. Knepley 
1046*bc4ae4beSMatthew G. Knepley   Output Parameter:
1047*bc4ae4beSMatthew G. Knepley . off - The offset
1048*bc4ae4beSMatthew G. Knepley 
1049*bc4ae4beSMatthew G. Knepley   Level: beginner
1050*bc4ae4beSMatthew G. Knepley 
1051*bc4ae4beSMatthew G. Knepley .seealso: PetscDSGetBdFieldOffset(), PetscDSGetNumFields(), PetscDSCreate()
1052*bc4ae4beSMatthew G. Knepley @*/
10532764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetFieldOffset(PetscDS prob, PetscInt f, PetscInt *off)
10542764a2aaSMatthew G. Knepley {
10552764a2aaSMatthew G. Knepley   PetscInt       g;
10562764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
10572764a2aaSMatthew G. Knepley 
10582764a2aaSMatthew G. Knepley   PetscFunctionBegin;
10592764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
10602764a2aaSMatthew G. Knepley   PetscValidPointer(off, 3);
10612764a2aaSMatthew G. Knepley   if ((f < 0) || (f >= prob->Nf)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, prob->Nf);
10622764a2aaSMatthew G. Knepley   *off = 0;
10632764a2aaSMatthew G. Knepley   for (g = 0; g < f; ++g) {
10642764a2aaSMatthew G. Knepley     PetscFE  fe = (PetscFE) prob->disc[g];
10652764a2aaSMatthew G. Knepley     PetscInt Nb, Nc;
10662764a2aaSMatthew G. Knepley 
10672764a2aaSMatthew G. Knepley     ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
10682764a2aaSMatthew G. Knepley     ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
10692764a2aaSMatthew G. Knepley     *off += Nb*Nc;
10702764a2aaSMatthew G. Knepley   }
10712764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
10722764a2aaSMatthew G. Knepley }
10732764a2aaSMatthew G. Knepley 
10742764a2aaSMatthew G. Knepley #undef __FUNCT__
10752764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetBdFieldOffset"
1076*bc4ae4beSMatthew G. Knepley /*@
1077*bc4ae4beSMatthew G. Knepley   PetscDSGetFieldOffset - Returns the offset of the given field in the full space boundary basis
1078*bc4ae4beSMatthew G. Knepley 
1079*bc4ae4beSMatthew G. Knepley   Not collective
1080*bc4ae4beSMatthew G. Knepley 
1081*bc4ae4beSMatthew G. Knepley   Input Parameters:
1082*bc4ae4beSMatthew G. Knepley + prob - The PetscDS object
1083*bc4ae4beSMatthew G. Knepley - f - The field number
1084*bc4ae4beSMatthew G. Knepley 
1085*bc4ae4beSMatthew G. Knepley   Output Parameter:
1086*bc4ae4beSMatthew G. Knepley . off - The boundary offset
1087*bc4ae4beSMatthew G. Knepley 
1088*bc4ae4beSMatthew G. Knepley   Level: beginner
1089*bc4ae4beSMatthew G. Knepley 
1090*bc4ae4beSMatthew G. Knepley .seealso: PetscDSGetFieldOffset(), PetscDSGetNumFields(), PetscDSCreate()
1091*bc4ae4beSMatthew G. Knepley @*/
10922764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetBdFieldOffset(PetscDS prob, PetscInt f, PetscInt *off)
10932764a2aaSMatthew G. Knepley {
10942764a2aaSMatthew G. Knepley   PetscInt       g;
10952764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
10962764a2aaSMatthew G. Knepley 
10972764a2aaSMatthew G. Knepley   PetscFunctionBegin;
10982764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
10992764a2aaSMatthew G. Knepley   PetscValidPointer(off, 3);
11002764a2aaSMatthew G. Knepley   if ((f < 0) || (f >= prob->Nf)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, prob->Nf);
11012764a2aaSMatthew G. Knepley   *off = 0;
11022764a2aaSMatthew G. Knepley   for (g = 0; g < f; ++g) {
11032764a2aaSMatthew G. Knepley     PetscFE  fe = (PetscFE) prob->discBd[g];
11042764a2aaSMatthew G. Knepley     PetscInt Nb, Nc;
11052764a2aaSMatthew G. Knepley 
11062764a2aaSMatthew G. Knepley     ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
11072764a2aaSMatthew G. Knepley     ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
11082764a2aaSMatthew G. Knepley     *off += Nb*Nc;
11092764a2aaSMatthew G. Knepley   }
11102764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
11112764a2aaSMatthew G. Knepley }
11122764a2aaSMatthew G. Knepley 
11132764a2aaSMatthew G. Knepley #undef __FUNCT__
11142764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetTabulation"
11152764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetTabulation(PetscDS prob, PetscReal ***basis, PetscReal ***basisDer)
11162764a2aaSMatthew G. Knepley {
11172764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
11182764a2aaSMatthew G. Knepley 
11192764a2aaSMatthew G. Knepley   PetscFunctionBegin;
11202764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
11212764a2aaSMatthew G. Knepley   ierr = PetscDSSetUp(prob);CHKERRQ(ierr);
11222764a2aaSMatthew G. Knepley   if (basis)    {PetscValidPointer(basis, 2);    *basis    = prob->basis;}
11232764a2aaSMatthew G. Knepley   if (basisDer) {PetscValidPointer(basisDer, 3); *basisDer = prob->basisDer;}
11242764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
11252764a2aaSMatthew G. Knepley }
11262764a2aaSMatthew G. Knepley 
11272764a2aaSMatthew G. Knepley #undef __FUNCT__
11282764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetBdTabulation"
11292764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetBdTabulation(PetscDS prob, PetscReal ***basis, PetscReal ***basisDer)
11302764a2aaSMatthew G. Knepley {
11312764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
11322764a2aaSMatthew G. Knepley 
11332764a2aaSMatthew G. Knepley   PetscFunctionBegin;
11342764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
11352764a2aaSMatthew G. Knepley   ierr = PetscDSSetUp(prob);CHKERRQ(ierr);
11362764a2aaSMatthew G. Knepley   if (basis)    {PetscValidPointer(basis, 2);    *basis    = prob->basisBd;}
11372764a2aaSMatthew G. Knepley   if (basisDer) {PetscValidPointer(basisDer, 3); *basisDer = prob->basisDerBd;}
11382764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
11392764a2aaSMatthew G. Knepley }
11402764a2aaSMatthew G. Knepley 
11412764a2aaSMatthew G. Knepley #undef __FUNCT__
11422764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetEvaluationArrays"
11432764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetEvaluationArrays(PetscDS prob, PetscScalar **u, PetscScalar **u_t, PetscScalar **u_x)
11442764a2aaSMatthew G. Knepley {
11452764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
11462764a2aaSMatthew G. Knepley 
11472764a2aaSMatthew G. Knepley   PetscFunctionBegin;
11482764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
11492764a2aaSMatthew G. Knepley   ierr = PetscDSSetUp(prob);CHKERRQ(ierr);
11502764a2aaSMatthew G. Knepley   if (u)   {PetscValidPointer(u, 2);   *u   = prob->u;}
11512764a2aaSMatthew G. Knepley   if (u_t) {PetscValidPointer(u_t, 3); *u_t = prob->u_t;}
11522764a2aaSMatthew G. Knepley   if (u_x) {PetscValidPointer(u_x, 4); *u_x = prob->u_x;}
11532764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
11542764a2aaSMatthew G. Knepley }
11552764a2aaSMatthew G. Knepley 
11562764a2aaSMatthew G. Knepley #undef __FUNCT__
11572764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetWeakFormArrays"
11582764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetWeakFormArrays(PetscDS prob, PetscScalar **f0, PetscScalar **f1, PetscScalar **g0, PetscScalar **g1, PetscScalar **g2, PetscScalar **g3)
11592764a2aaSMatthew G. Knepley {
11602764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
11612764a2aaSMatthew G. Knepley 
11622764a2aaSMatthew G. Knepley   PetscFunctionBegin;
11632764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
11642764a2aaSMatthew G. Knepley   ierr = PetscDSSetUp(prob);CHKERRQ(ierr);
11652764a2aaSMatthew G. Knepley   if (f0) {PetscValidPointer(f0, 2); *f0 = prob->f0;}
11662764a2aaSMatthew G. Knepley   if (f1) {PetscValidPointer(f1, 3); *f1 = prob->f1;}
11672764a2aaSMatthew G. Knepley   if (g0) {PetscValidPointer(g0, 4); *g0 = prob->g0;}
11682764a2aaSMatthew G. Knepley   if (g1) {PetscValidPointer(g1, 5); *g1 = prob->g1;}
11692764a2aaSMatthew G. Knepley   if (g2) {PetscValidPointer(g2, 6); *g2 = prob->g2;}
11702764a2aaSMatthew G. Knepley   if (g3) {PetscValidPointer(g3, 7); *g3 = prob->g3;}
11712764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
11722764a2aaSMatthew G. Knepley }
11732764a2aaSMatthew G. Knepley 
11742764a2aaSMatthew G. Knepley #undef __FUNCT__
11752764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSGetRefCoordArrays"
11762764a2aaSMatthew G. Knepley PetscErrorCode PetscDSGetRefCoordArrays(PetscDS prob, PetscReal **x, PetscScalar **refSpaceDer)
11772764a2aaSMatthew G. Knepley {
11782764a2aaSMatthew G. Knepley   PetscErrorCode ierr;
11792764a2aaSMatthew G. Knepley 
11802764a2aaSMatthew G. Knepley   PetscFunctionBegin;
11812764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 1);
11822764a2aaSMatthew G. Knepley   ierr = PetscDSSetUp(prob);CHKERRQ(ierr);
11832764a2aaSMatthew G. Knepley   if (x)           {PetscValidPointer(x, 2);           *x           = prob->x;}
11842764a2aaSMatthew G. Knepley   if (refSpaceDer) {PetscValidPointer(refSpaceDer, 3); *refSpaceDer = prob->refSpaceDer;}
11852764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
11862764a2aaSMatthew G. Knepley }
11872764a2aaSMatthew G. Knepley 
11882764a2aaSMatthew G. Knepley #undef __FUNCT__
11892764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSDestroy_Basic"
1190*bc4ae4beSMatthew G. Knepley static PetscErrorCode PetscDSDestroy_Basic(PetscDS prob)
11912764a2aaSMatthew G. Knepley {
11922764a2aaSMatthew G. Knepley   PetscFunctionBegin;
11932764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
11942764a2aaSMatthew G. Knepley }
11952764a2aaSMatthew G. Knepley 
11962764a2aaSMatthew G. Knepley #undef __FUNCT__
11972764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSInitialize_Basic"
1198*bc4ae4beSMatthew G. Knepley static PetscErrorCode PetscDSInitialize_Basic(PetscDS prob)
11992764a2aaSMatthew G. Knepley {
12002764a2aaSMatthew G. Knepley   PetscFunctionBegin;
12012764a2aaSMatthew G. Knepley   prob->ops->setfromoptions = NULL;
12022764a2aaSMatthew G. Knepley   prob->ops->setup          = NULL;
12032764a2aaSMatthew G. Knepley   prob->ops->view           = NULL;
12042764a2aaSMatthew G. Knepley   prob->ops->destroy        = PetscDSDestroy_Basic;
12052764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
12062764a2aaSMatthew G. Knepley }
12072764a2aaSMatthew G. Knepley 
12082764a2aaSMatthew G. Knepley /*MC
12092764a2aaSMatthew G. Knepley   PETSCDSBASIC = "basic" - A discrete system with pointwise residual and boundary residual functions
12102764a2aaSMatthew G. Knepley 
12112764a2aaSMatthew G. Knepley   Level: intermediate
12122764a2aaSMatthew G. Knepley 
12132764a2aaSMatthew G. Knepley .seealso: PetscDSType, PetscDSCreate(), PetscDSSetType()
12142764a2aaSMatthew G. Knepley M*/
12152764a2aaSMatthew G. Knepley 
12162764a2aaSMatthew G. Knepley #undef __FUNCT__
12172764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSCreate_Basic"
12182764a2aaSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscDSCreate_Basic(PetscDS prob)
12192764a2aaSMatthew G. Knepley {
12202764a2aaSMatthew G. Knepley   PetscDS_Basic *b;
12212764a2aaSMatthew G. Knepley   PetscErrorCode      ierr;
12222764a2aaSMatthew G. Knepley 
12232764a2aaSMatthew G. Knepley   PetscFunctionBegin;
12242764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCSPACE_CLASSID, 1);
12252764a2aaSMatthew G. Knepley   ierr       = PetscNewLog(prob, &b);CHKERRQ(ierr);
12262764a2aaSMatthew G. Knepley   prob->data = b;
12272764a2aaSMatthew G. Knepley 
12282764a2aaSMatthew G. Knepley   ierr = PetscDSInitialize_Basic(prob);CHKERRQ(ierr);
12292764a2aaSMatthew G. Knepley   PetscFunctionReturn(0);
12302764a2aaSMatthew G. Knepley }
1231