xref: /petsc/include/petscts.h (revision 6e2e232b796ca97c80a46af38996e334030786f4)
1818ad0c1SBarry Smith /*
2316643e7SJed Brown    User interface for the timestepping package. This package
3f64a0f93SLois Curfman McInnes    is for use in solving time-dependent PDEs.
4818ad0c1SBarry Smith */
50a835dfdSSatish Balay #if !defined(__PETSCTS_H)
60a835dfdSSatish Balay #define __PETSCTS_H
72c8e378dSBarry Smith #include <petscsnes.h>
8818ad0c1SBarry Smith 
9435da068SBarry Smith /*S
10435da068SBarry Smith      TS - Abstract PETSc object that manages all time-steppers (ODE integrators)
11435da068SBarry Smith 
12435da068SBarry Smith    Level: beginner
13435da068SBarry Smith 
14435da068SBarry Smith   Concepts: ODE solvers
15435da068SBarry Smith 
168f6c3df8SBarry Smith .seealso:  TSCreate(), TSSetType(), TSType, SNES, KSP, PC, TSDestroy()
17435da068SBarry Smith S*/
18f09e8eb9SSatish Balay typedef struct _p_TS* TS;
19435da068SBarry Smith 
2076bdecfbSBarry Smith /*J
218f6c3df8SBarry Smith     TSType - String with the name of a PETSc TS method.
22435da068SBarry Smith 
23435da068SBarry Smith    Level: beginner
24435da068SBarry Smith 
258f6c3df8SBarry Smith .seealso: TSSetType(), TS, TSRegister()
2676bdecfbSBarry Smith J*/
2719fd82e9SBarry Smith typedef const char* TSType;
289596e0b4SJed Brown #define TSEULER           "euler"
299596e0b4SJed Brown #define TSBEULER          "beuler"
309596e0b4SJed Brown #define TSPSEUDO          "pseudo"
314d91e141SJed Brown #define TSCN              "cn"
329596e0b4SJed Brown #define TSSUNDIALS        "sundials"
334d91e141SJed Brown #define TSRK              "rk"
349596e0b4SJed Brown #define TSPYTHON          "python"
359596e0b4SJed Brown #define TSTHETA           "theta"
3688df8a41SLisandro Dalcin #define TSALPHA           "alpha"
37818efac9SLisandro Dalcin #define TSALPHA2          "alpha2"
3826d28e4eSEmil Constantinescu #define TSGLLE            "glle"
39b6a60446SDebojyoti Ghosh #define TSGLEE            "glee"
40ef7bb5aaSJed Brown #define TSSSP             "ssp"
418a381b04SJed Brown #define TSARKIMEX         "arkimex"
42e27a552bSJed Brown #define TSROSW            "rosw"
437d5697caSHong Zhang #define TSEIMEX           "eimex"
44abadfa0fSMatthew G. Knepley #define TSMIMEX           "mimex"
45211a84d6SLisandro Dalcin #define TSBDF             "bdf"
46211a84d6SLisandro Dalcin 
47435da068SBarry Smith /*E
48435da068SBarry Smith     TSProblemType - Determines the type of problem this TS object is to be used to solve
49435da068SBarry Smith 
50435da068SBarry Smith    Level: beginner
51435da068SBarry Smith 
52435da068SBarry Smith .seealso: TSCreate()
53435da068SBarry Smith E*/
5419bcc07fSBarry Smith typedef enum {TS_LINEAR,TS_NONLINEAR} TSProblemType;
55818ad0c1SBarry Smith 
56b93fea0eSJed Brown /*E
57e817cc15SEmil Constantinescu    TSEquationType - type of TS problem that is solved
58e817cc15SEmil Constantinescu 
59e817cc15SEmil Constantinescu    Level: beginner
60e817cc15SEmil Constantinescu 
61af0996ceSBarry Smith    Developer Notes: this must match petsc/finclude/petscts.h
62e817cc15SEmil Constantinescu 
63e817cc15SEmil Constantinescu    Supported types are:
64e817cc15SEmil Constantinescu      TS_EQ_UNSPECIFIED (default)
65e817cc15SEmil Constantinescu      TS_EQ_EXPLICIT {ODE and DAE index 1, 2, 3, HI}: F(t,U,U_t) := M(t) U_t - G(U,t) = 0
66e817cc15SEmil Constantinescu      TS_EQ_IMPLICIT {ODE and DAE index 1, 2, 3, HI}: F(t,U,U_t) = 0
67e817cc15SEmil Constantinescu 
68e817cc15SEmil Constantinescu .seealso: TSGetEquationType(), TSSetEquationType()
69e817cc15SEmil Constantinescu E*/
70e817cc15SEmil Constantinescu typedef enum {
71e817cc15SEmil Constantinescu   TS_EQ_UNSPECIFIED               = -1,
72e817cc15SEmil Constantinescu   TS_EQ_EXPLICIT                  = 0,
73e817cc15SEmil Constantinescu   TS_EQ_ODE_EXPLICIT              = 1,
74e817cc15SEmil Constantinescu   TS_EQ_DAE_SEMI_EXPLICIT_INDEX1  = 100,
75e817cc15SEmil Constantinescu   TS_EQ_DAE_SEMI_EXPLICIT_INDEX2  = 200,
76e817cc15SEmil Constantinescu   TS_EQ_DAE_SEMI_EXPLICIT_INDEX3  = 300,
77e817cc15SEmil Constantinescu   TS_EQ_DAE_SEMI_EXPLICIT_INDEXHI = 500,
78e817cc15SEmil Constantinescu   TS_EQ_IMPLICIT                  = 1000,
79e817cc15SEmil Constantinescu   TS_EQ_ODE_IMPLICIT              = 1001,
80e817cc15SEmil Constantinescu   TS_EQ_DAE_IMPLICIT_INDEX1       = 1100,
81e817cc15SEmil Constantinescu   TS_EQ_DAE_IMPLICIT_INDEX2       = 1200,
82e817cc15SEmil Constantinescu   TS_EQ_DAE_IMPLICIT_INDEX3       = 1300,
8319436ca2SJed Brown   TS_EQ_DAE_IMPLICIT_INDEXHI      = 1500
84e817cc15SEmil Constantinescu } TSEquationType;
85e817cc15SEmil Constantinescu PETSC_EXTERN const char *const*TSEquationTypes;
86e817cc15SEmil Constantinescu 
87e817cc15SEmil Constantinescu /*E
88b93fea0eSJed Brown    TSConvergedReason - reason a TS method has converged or not
89b93fea0eSJed Brown 
90b93fea0eSJed Brown    Level: beginner
91b93fea0eSJed Brown 
92af0996ceSBarry Smith    Developer Notes: this must match petsc/finclude/petscts.h
93b93fea0eSJed Brown 
94b93fea0eSJed Brown    Each reason has its own manual page.
95b93fea0eSJed Brown 
96b93fea0eSJed Brown .seealso: TSGetConvergedReason()
97b93fea0eSJed Brown E*/
98193ac0bcSJed Brown typedef enum {
99193ac0bcSJed Brown   TS_CONVERGED_ITERATING      = 0,
100193ac0bcSJed Brown   TS_CONVERGED_TIME           = 1,
101193ac0bcSJed Brown   TS_CONVERGED_ITS            = 2,
102d6ad946cSShri Abhyankar   TS_CONVERGED_USER           = 3,
1032b7db910SShri Abhyankar   TS_CONVERGED_EVENT          = 4,
1043118ae5eSBarry Smith   TS_CONVERGED_PSEUDO_FATOL   = 5,
1053118ae5eSBarry Smith   TS_CONVERGED_PSEUDO_FRTOL   = 6,
106193ac0bcSJed Brown   TS_DIVERGED_NONLINEAR_SOLVE = -1,
107193ac0bcSJed Brown   TS_DIVERGED_STEP_REJECTED   = -2
108193ac0bcSJed Brown } TSConvergedReason;
109014dd563SJed Brown PETSC_EXTERN const char *const*TSConvergedReasons;
1101957e957SBarry Smith 
111b93fea0eSJed Brown /*MC
112b93fea0eSJed Brown    TS_CONVERGED_ITERATING - this only occurs if TSGetConvergedReason() is called during the TSSolve()
113b93fea0eSJed Brown 
114b93fea0eSJed Brown    Level: beginner
115b93fea0eSJed Brown 
116552698daSJed Brown .seealso: TSSolve(), TSGetConvergedReason(), TSGetAdapt()
117b93fea0eSJed Brown M*/
118b93fea0eSJed Brown 
119b93fea0eSJed Brown /*MC
120b93fea0eSJed Brown    TS_CONVERGED_TIME - the final time was reached
121b93fea0eSJed Brown 
122b93fea0eSJed Brown    Level: beginner
123b93fea0eSJed Brown 
124552698daSJed Brown .seealso: TSSolve(), TSGetConvergedReason(), TSGetAdapt(), TSSetDuration(), TSGetSolveTime()
125b93fea0eSJed Brown M*/
126b93fea0eSJed Brown 
127b93fea0eSJed Brown /*MC
1281957e957SBarry Smith    TS_CONVERGED_ITS - the maximum number of iterations (time-steps) was reached prior to the final time
129b93fea0eSJed Brown 
130b93fea0eSJed Brown    Level: beginner
131b93fea0eSJed Brown 
132552698daSJed Brown .seealso: TSSolve(), TSGetConvergedReason(), TSGetAdapt(), TSSetDuration()
133b93fea0eSJed Brown M*/
1341957e957SBarry Smith 
135d6ad946cSShri Abhyankar /*MC
136d6ad946cSShri Abhyankar    TS_CONVERGED_USER - user requested termination
137d6ad946cSShri Abhyankar 
138d6ad946cSShri Abhyankar    Level: beginner
139d6ad946cSShri Abhyankar 
140d6ad946cSShri Abhyankar .seealso: TSSolve(), TSGetConvergedReason(), TSSetConvergedReason(), TSSetDuration()
141b93fea0eSJed Brown M*/
142b93fea0eSJed Brown 
143b93fea0eSJed Brown /*MC
144d76fc68cSShri Abhyankar    TS_CONVERGED_EVENT - user requested termination on event detection
145d76fc68cSShri Abhyankar 
146d76fc68cSShri Abhyankar    Level: beginner
147d76fc68cSShri Abhyankar 
148d76fc68cSShri Abhyankar .seealso: TSSolve(), TSGetConvergedReason(), TSSetConvergedReason(), TSSetDuration()
149d76fc68cSShri Abhyankar M*/
150d76fc68cSShri Abhyankar 
151d76fc68cSShri Abhyankar /*MC
1523118ae5eSBarry Smith    TS_CONVERGED_PSEUDO_FRTOL - stops when function norm decreased by a set amount, used only for TSPSEUDO
1533118ae5eSBarry Smith 
1543118ae5eSBarry Smith    Level: beginner
1553118ae5eSBarry Smith 
1563118ae5eSBarry Smith    Options Database:
1573118ae5eSBarry Smith .   -ts_pseudo_frtol <rtol>
1583118ae5eSBarry Smith 
1593118ae5eSBarry Smith .seealso: TSSolve(), TSGetConvergedReason(), TSSetConvergedReason(), TSSetDuration(), TS_CONVERGED_PSEUDO_FATOL
1603118ae5eSBarry Smith M*/
1613118ae5eSBarry Smith 
1623118ae5eSBarry Smith /*MC
1633118ae5eSBarry Smith    TS_CONVERGED_PSEUDO_FATOL - stops when function norm decreases below a set amount, used only for TSPSEUDO
1643118ae5eSBarry Smith 
1653118ae5eSBarry Smith    Level: beginner
1663118ae5eSBarry Smith 
1673118ae5eSBarry Smith    Options Database:
1683118ae5eSBarry Smith .   -ts_pseudo_fatol <atol>
1693118ae5eSBarry Smith 
1703118ae5eSBarry Smith .seealso: TSSolve(), TSGetConvergedReason(), TSSetConvergedReason(), TSSetDuration(), TS_CONVERGED_PSEUDO_FRTOL
1713118ae5eSBarry Smith M*/
1723118ae5eSBarry Smith 
1733118ae5eSBarry Smith /*MC
174b93fea0eSJed Brown    TS_DIVERGED_NONLINEAR_SOLVE - too many nonlinear solves failed
175b93fea0eSJed Brown 
176b93fea0eSJed Brown    Level: beginner
177b93fea0eSJed Brown 
1781957e957SBarry Smith    Notes: See TSSetMaxSNESFailures() for how to allow more nonlinear solver failures.
1791957e957SBarry Smith 
1801957e957SBarry Smith .seealso: TSSolve(), TSGetConvergedReason(), TSGetAdapt(), TSGetSNES(), SNESGetConvergedReason(), TSSetMaxSNESFailures()
181b93fea0eSJed Brown M*/
182b93fea0eSJed Brown 
183b93fea0eSJed Brown /*MC
184b93fea0eSJed Brown    TS_DIVERGED_STEP_REJECTED - too many steps were rejected
185b93fea0eSJed Brown 
186b93fea0eSJed Brown    Level: beginner
187b93fea0eSJed Brown 
1881957e957SBarry Smith    Notes: See TSSetMaxStepRejections() for how to allow more step rejections.
1891957e957SBarry Smith 
1901957e957SBarry Smith .seealso: TSSolve(), TSGetConvergedReason(), TSGetAdapt(), TSSetMaxStepRejections()
191b93fea0eSJed Brown M*/
192b93fea0eSJed Brown 
193d6ad946cSShri Abhyankar /*E
194d6ad946cSShri Abhyankar    TSExactFinalTimeOption - option for handling of final time step
195d6ad946cSShri Abhyankar 
196d6ad946cSShri Abhyankar    Level: beginner
197d6ad946cSShri Abhyankar 
198af0996ceSBarry Smith    Developer Notes: this must match petsc/finclude/petscts.h
199d6ad946cSShri Abhyankar 
200d6ad946cSShri Abhyankar $  TS_EXACTFINALTIME_STEPOVER    - Don't do anything if final time is exceeded
201d6ad946cSShri Abhyankar $  TS_EXACTFINALTIME_INTERPOLATE - Interpolate back to final time
202d6ad946cSShri Abhyankar $  TS_EXACTFINALTIME_MATCHSTEP - Adapt final time step to match the final time
203feed9e9dSBarry Smith 
2044ceb6c04SBarry Smith .seealso: TSGetConvergedReason(), TSSetExactFinalTime()
2054ceb6c04SBarry Smith 
206d6ad946cSShri Abhyankar E*/
207feed9e9dSBarry Smith typedef enum {TS_EXACTFINALTIME_UNSPECIFIED=0,TS_EXACTFINALTIME_STEPOVER=1,TS_EXACTFINALTIME_INTERPOLATE=2,TS_EXACTFINALTIME_MATCHSTEP=3} TSExactFinalTimeOption;
208d6ad946cSShri Abhyankar PETSC_EXTERN const char *const TSExactFinalTimeOptions[];
209d6ad946cSShri Abhyankar 
210d6ad946cSShri Abhyankar 
211000e7ae3SMatthew Knepley /* Logging support */
212014dd563SJed Brown PETSC_EXTERN PetscClassId TS_CLASSID;
213d74926cbSBarry Smith PETSC_EXTERN PetscClassId DMTS_CLASSID;
2141b9b13dfSLisandro Dalcin PETSC_EXTERN PetscClassId TSADAPT_CLASSID;
215000e7ae3SMatthew Knepley 
216607a6623SBarry Smith PETSC_EXTERN PetscErrorCode TSInitializePackage(void);
217560360afSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSFinalizePackage(void);
2188ba1e511SMatthew Knepley 
219014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSCreate(MPI_Comm,TS*);
220baa10174SEmil Constantinescu PETSC_EXTERN PetscErrorCode TSClone(TS,TS*);
221014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSDestroy(TS*);
222818ad0c1SBarry Smith 
223014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetProblemType(TS,TSProblemType);
224014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetProblemType(TS,TSProblemType*);
225014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSMonitor(TS,PetscInt,PetscReal,Vec);
226014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSMonitorSet(TS,PetscErrorCode(*)(TS,PetscInt,PetscReal,Vec,void*),void *,PetscErrorCode (*)(void**));
227721cd6eeSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorSetFromOptions(TS,const char[],const char[],const char[],PetscErrorCode (*)(TS,PetscInt,PetscReal,Vec,PetscViewerAndFormat*),PetscErrorCode (*)(TS,PetscViewerAndFormat*));
228014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSMonitorCancel(TS);
229818ad0c1SBarry Smith 
2309110b2e7SHong Zhang PETSC_EXTERN PetscErrorCode TSAdjointMonitor(TS,PetscInt,PetscReal,Vec,PetscInt,Vec*,Vec*);
2319110b2e7SHong Zhang PETSC_EXTERN PetscErrorCode TSAdjointMonitorSet(TS,PetscErrorCode(*)(TS,PetscInt,PetscReal,Vec,PetscInt,Vec*,Vec*,void*),void *,PetscErrorCode (*)(void**));
2329110b2e7SHong Zhang PETSC_EXTERN PetscErrorCode TSAdjointMonitorCancel(TS);
233d12e167eSBarry Smith PETSC_EXTERN PetscErrorCode TSAdjointMonitorSetFromOptions(TS,const char[],const char[],const char[],PetscErrorCode (*)(TS,PetscInt,PetscReal,Vec,PetscInt,Vec*,Vec*,PetscViewerAndFormat*),PetscErrorCode (*)(TS,PetscViewerAndFormat*));
2349110b2e7SHong Zhang 
235014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetOptionsPrefix(TS,const char[]);
236014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAppendOptionsPrefix(TS,const char[]);
237014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetOptionsPrefix(TS,const char *[]);
238014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetFromOptions(TS);
239014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetUp(TS);
240014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSReset(TS);
241818ad0c1SBarry Smith 
242014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetSolution(TS,Vec);
243014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetSolution(TS,Vec*);
244818ad0c1SBarry Smith 
245efe9872eSLisandro Dalcin PETSC_EXTERN PetscErrorCode TS2SetSolution(TS,Vec,Vec);
246efe9872eSLisandro Dalcin PETSC_EXTERN PetscErrorCode TS2GetSolution(TS,Vec*,Vec*);
247*6e2e232bSDebojyoti Ghosh PETSC_EXTERN PetscErrorCode TSGetAuxSolution(TS,PetscInt*,Vec*);
248*6e2e232bSDebojyoti Ghosh 
249efe9872eSLisandro Dalcin 
250bc952696SBarry Smith /*S
2513c0fce88SHong Zhang      TSTrajectory - Abstract PETSc object that storing the trajectory (solution of ODE/ADE at each time step)
252bc952696SBarry Smith 
253bc952696SBarry Smith    Level: advanced
254bc952696SBarry Smith 
2553c0fce88SHong Zhang   Concepts: ODE solvers, trajectory
256bc952696SBarry Smith 
2573c0fce88SHong Zhang .seealso:  TSSetSaveTrajectory(), TSTrajectoryCreate(), TSTrajectorySetType(), TSTrajectoryDestroy()
258bc952696SBarry Smith S*/
259bc952696SBarry Smith typedef struct _p_TSTrajectory* TSTrajectory;
260bc952696SBarry Smith 
261bc952696SBarry Smith /*J
2623c0fce88SHong Zhang     TSTrajectorySetType - String with the name of a PETSc TS trajectory storage method
263bc952696SBarry Smith 
264bc952696SBarry Smith    Level: intermediate
265bc952696SBarry Smith 
2663c0fce88SHong Zhang .seealso:  TSSetSaveTrajectory(), TSTrajectoryCreate(), TSTrajectoryDestroy()
267bc952696SBarry Smith J*/
268bc952696SBarry Smith typedef const char* TSTrajectoryType;
269bc952696SBarry Smith #define TSTRAJECTORYBASIC         "basic"
2701c8c567eSBarry Smith #define TSTRAJECTORYSINGLEFILE    "singlefile"
2719a53571cSHong Zhang #define TSTRAJECTORYMEMORY        "memory"
2722b043167SHong Zhang #define TSTRAJECTORYVISUALIZATION "visualization"
273bc952696SBarry Smith 
274bc952696SBarry Smith PETSC_EXTERN PetscFunctionList TSTrajectoryList;
275bc952696SBarry Smith PETSC_EXTERN PetscClassId      TSTRAJECTORY_CLASSID;
276bc952696SBarry Smith PETSC_EXTERN PetscBool         TSTrajectoryRegisterAllCalled;
277bc952696SBarry Smith 
278bc952696SBarry Smith PETSC_EXTERN PetscErrorCode TSSetSaveTrajectory(TS);
279bc952696SBarry Smith 
280bc952696SBarry Smith PETSC_EXTERN PetscErrorCode TSTrajectoryCreate(MPI_Comm,TSTrajectory*);
281bc952696SBarry Smith PETSC_EXTERN PetscErrorCode TSTrajectoryDestroy(TSTrajectory*);
282560360afSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSTrajectoryView(TSTrajectory,PetscViewer);
283972caf09SHong Zhang PETSC_EXTERN PetscErrorCode TSTrajectorySetType(TSTrajectory,TS,const TSTrajectoryType);
284bc952696SBarry Smith PETSC_EXTERN PetscErrorCode TSTrajectorySet(TSTrajectory,TS,PetscInt,PetscReal,Vec);
285c679fc15SHong Zhang PETSC_EXTERN PetscErrorCode TSTrajectoryGet(TSTrajectory,TS,PetscInt,PetscReal*);
286972caf09SHong Zhang PETSC_EXTERN PetscErrorCode TSTrajectorySetFromOptions(TSTrajectory,TS);
287560360afSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSTrajectoryRegister(const char[],PetscErrorCode (*)(TSTrajectory,TS));
288bc952696SBarry Smith PETSC_EXTERN PetscErrorCode TSTrajectoryRegisterAll(void);
28968bece0bSHong Zhang PETSC_EXTERN PetscErrorCode TSTrajectorySetUp(TSTrajectory,TS);
2902bee684fSHong Zhang PETSC_EXTERN PetscErrorCode TSTrajectorySetMonitor(TSTrajectory,PetscBool);
291bc952696SBarry Smith 
292dfb21088SHong Zhang PETSC_EXTERN PetscErrorCode TSSetCostGradients(TS,PetscInt,Vec*,Vec*);
293dfb21088SHong Zhang PETSC_EXTERN PetscErrorCode TSGetCostGradients(TS,PetscInt*,Vec**,Vec**);
294b1cb36f3SHong Zhang PETSC_EXTERN PetscErrorCode TSSetCostIntegrand(TS,PetscInt,PetscErrorCode (*)(TS,PetscReal,Vec,Vec,void*),PetscErrorCode (*)(TS,PetscReal,Vec,Vec*,void*),PetscErrorCode (*)(TS,PetscReal,Vec,Vec*,void*),PetscBool,void*);
295dfb21088SHong Zhang PETSC_EXTERN PetscErrorCode TSGetCostIntegral(TS,Vec*);
296d4aa0a58SBarry Smith 
2975bf8c567SBarry Smith PETSC_EXTERN PetscErrorCode TSAdjointSetRHSJacobian(TS,Mat,PetscErrorCode(*)(TS,PetscReal,Vec,Mat,void*),void*);
2982c39e106SBarry Smith PETSC_EXTERN PetscErrorCode TSAdjointSolve(TS);
29973b18844SBarry Smith PETSC_EXTERN PetscErrorCode TSAdjointSetSteps(TS,PetscInt);
300d4aa0a58SBarry Smith 
3015bf8c567SBarry Smith PETSC_EXTERN PetscErrorCode TSAdjointComputeRHSJacobian(TS,PetscReal,Vec,Mat);
30273b18844SBarry Smith PETSC_EXTERN PetscErrorCode TSAdjointStep(TS);
303f6a906c0SBarry Smith PETSC_EXTERN PetscErrorCode TSAdjointSetUp(TS);
304d4aa0a58SBarry Smith PETSC_EXTERN PetscErrorCode TSAdjointComputeDRDPFunction(TS,PetscReal,Vec,Vec*);
305d4aa0a58SBarry Smith PETSC_EXTERN PetscErrorCode TSAdjointComputeDRDYFunction(TS,PetscReal,Vec,Vec*);
306d4aa0a58SBarry Smith PETSC_EXTERN PetscErrorCode TSAdjointComputeCostIntegrand(TS,PetscReal,Vec,Vec);
307999a3721SHong Zhang PETSC_EXTERN PetscErrorCode TSAdjointCostIntegral(TS);
308999a3721SHong Zhang PETSC_EXTERN PetscErrorCode TSForwardCostIntegral(TS);
309c235aa8dSHong Zhang 
310014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetDuration(TS,PetscInt,PetscReal);
311014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetDuration(TS,PetscInt*,PetscReal*);
31249354f04SShri Abhyankar PETSC_EXTERN PetscErrorCode TSSetExactFinalTime(TS,TSExactFinalTimeOption);
313818ad0c1SBarry Smith 
314721cd6eeSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorDefault(TS,PetscInt,PetscReal,Vec,PetscViewerAndFormat*);
31583a4ac43SBarry Smith 
31683a4ac43SBarry Smith typedef struct _n_TSMonitorDrawCtx*  TSMonitorDrawCtx;
31783a4ac43SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorDrawCtxCreate(MPI_Comm,const char[],const char[],int,int,int,int,PetscInt,TSMonitorDrawCtx *);
31883a4ac43SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorDrawCtxDestroy(TSMonitorDrawCtx*);
31983a4ac43SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorDrawSolution(TS,PetscInt,PetscReal,Vec,void*);
3202d5ee99bSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorDrawSolutionPhase(TS,PetscInt,PetscReal,Vec,void*);
32183a4ac43SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorDrawError(TS,PetscInt,PetscReal,Vec,void*);
32283a4ac43SBarry Smith 
323721cd6eeSBarry Smith PETSC_EXTERN PetscErrorCode TSAdjointMonitorDefault(TS,PetscInt,PetscReal,Vec,PetscInt,Vec*,Vec*,PetscViewerAndFormat *);
3249110b2e7SHong Zhang PETSC_EXTERN PetscErrorCode TSAdjointMonitorDrawSensi(TS,PetscInt,PetscReal,Vec,PetscInt,Vec*,Vec*,void*);
3259110b2e7SHong Zhang 
326721cd6eeSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorSolution(TS,PetscInt,PetscReal,Vec,PetscViewerAndFormat*);
327014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSMonitorSolutionVTK(TS,PetscInt,PetscReal,Vec,void*);
328014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSMonitorSolutionVTKDestroy(void*);
329fb1732b5SBarry Smith 
330014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSStep(TS);
3317cbde773SLisandro Dalcin PETSC_EXTERN PetscErrorCode TSEvaluateWLTE(TS,NormType,PetscInt*,PetscReal*);
332014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSEvaluateStep(TS,PetscInt,Vec,PetscBool*);
333cc708dedSBarry Smith PETSC_EXTERN PetscErrorCode TSSolve(TS,Vec);
334e817cc15SEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGetEquationType(TS,TSEquationType*);
335e817cc15SEmil Constantinescu PETSC_EXTERN PetscErrorCode TSSetEquationType(TS,TSEquationType);
336014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetConvergedReason(TS,TSConvergedReason*);
337d6ad946cSShri Abhyankar PETSC_EXTERN PetscErrorCode TSSetConvergedReason(TS,TSConvergedReason);
338487e0bb9SJed Brown PETSC_EXTERN PetscErrorCode TSGetSolveTime(TS,PetscReal*);
3395ef26d82SJed Brown PETSC_EXTERN PetscErrorCode TSGetSNESIterations(TS,PetscInt*);
3405ef26d82SJed Brown PETSC_EXTERN PetscErrorCode TSGetKSPIterations(TS,PetscInt*);
341cef5090cSJed Brown PETSC_EXTERN PetscErrorCode TSGetStepRejections(TS,PetscInt*);
342cef5090cSJed Brown PETSC_EXTERN PetscErrorCode TSSetMaxStepRejections(TS,PetscInt);
343cef5090cSJed Brown PETSC_EXTERN PetscErrorCode TSGetSNESFailures(TS,PetscInt*);
344cef5090cSJed Brown PETSC_EXTERN PetscErrorCode TSSetMaxSNESFailures(TS,PetscInt);
345cef5090cSJed Brown PETSC_EXTERN PetscErrorCode TSSetErrorIfStepFails(TS,PetscBool);
34624655328SShri PETSC_EXTERN PetscErrorCode TSRollBack(TS);
3472c18e0fdSBarry Smith PETSC_EXTERN PetscErrorCode TSGetTotalSteps(TS,PetscInt*);
348d2daff3dSHong Zhang 
349ff22ae23SHong Zhang PETSC_EXTERN PetscErrorCode TSGetStages(TS,PetscInt*,Vec**);
350818ad0c1SBarry Smith 
351014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetInitialTimeStep(TS,PetscReal,PetscReal);
352014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetTimeStep(TS,PetscReal*);
353014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetTime(TS,PetscReal*);
354014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetTime(TS,PetscReal);
355014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetTimeStepNumber(TS,PetscInt*);
356014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetTimeStep(TS,PetscReal);
357e5e524a1SHong Zhang PETSC_EXTERN PetscErrorCode TSGetPrevTime(TS,PetscReal*);
358818ad0c1SBarry Smith 
359638cfed1SJed Brown PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*TSRHSFunction)(TS,PetscReal,Vec,Vec,void*);
360d1e9a80fSBarry Smith PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*TSRHSJacobian)(TS,PetscReal,Vec,Mat,Mat,void*);
361014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetRHSFunction(TS,Vec,TSRHSFunction,void*);
362014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetRHSFunction(TS,Vec*,TSRHSFunction*,void**);
363014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetRHSJacobian(TS,Mat,Mat,TSRHSJacobian,void*);
364014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetRHSJacobian(TS,Mat*,Mat*,TSRHSJacobian*,void**);
365e1244c69SJed Brown PETSC_EXTERN PetscErrorCode TSRHSJacobianSetReuse(TS,PetscBool);
366818ad0c1SBarry Smith 
367ef20d060SBarry Smith PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*TSSolutionFunction)(TS,PetscReal,Vec,void*);
368ef20d060SBarry Smith PETSC_EXTERN PetscErrorCode TSSetSolutionFunction(TS,TSSolutionFunction,void*);
369d56366bfSLisandro Dalcin PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*TSForcingFunction)(TS,PetscReal,Vec,void*);
370d56366bfSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSSetForcingFunction(TS,TSForcingFunction,void*);
371ef20d060SBarry Smith 
372638cfed1SJed Brown PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*TSIFunction)(TS,PetscReal,Vec,Vec,Vec,void*);
373d1e9a80fSBarry Smith PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*TSIJacobian)(TS,PetscReal,Vec,Vec,PetscReal,Mat,Mat,void*);
374014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetIFunction(TS,Vec,TSIFunction,void*);
375014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetIFunction(TS,Vec*,TSIFunction*,void**);
376014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetIJacobian(TS,Mat,Mat,TSIJacobian,void*);
377014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetIJacobian(TS,Mat*,Mat*,TSIJacobian*,void**);
378316643e7SJed Brown 
379efe9872eSLisandro Dalcin PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*TSI2Function)(TS,PetscReal,Vec,Vec,Vec,Vec,void*);
380efe9872eSLisandro Dalcin PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*TSI2Jacobian)(TS,PetscReal,Vec,Vec,Vec,PetscReal,PetscReal,Mat,Mat,void*);
381efe9872eSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSSetI2Function(TS,Vec,TSI2Function,void*);
382efe9872eSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSGetI2Function(TS,Vec*,TSI2Function*,void**);
383efe9872eSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSSetI2Jacobian(TS,Mat,Mat,TSI2Jacobian,void*);
384efe9872eSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSGetI2Jacobian(TS,Mat*,Mat*,TSI2Jacobian*,void**);
385efe9872eSLisandro Dalcin 
386014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSComputeRHSFunctionLinear(TS,PetscReal,Vec,Vec,void*);
387d1e9a80fSBarry Smith PETSC_EXTERN PetscErrorCode TSComputeRHSJacobianConstant(TS,PetscReal,Vec,Mat,Mat,void*);
388014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSComputeIFunctionLinear(TS,PetscReal,Vec,Vec,Vec,void*);
389d1e9a80fSBarry Smith PETSC_EXTERN PetscErrorCode TSComputeIJacobianConstant(TS,PetscReal,Vec,Vec,PetscReal,Mat,Mat,void*);
3901c8a10a0SJed Brown PETSC_EXTERN PetscErrorCode TSComputeSolutionFunction(TS,PetscReal,Vec);
3919b7cd975SBarry Smith PETSC_EXTERN PetscErrorCode TSComputeForcingFunction(TS,PetscReal,Vec);
392847ff0e1SMatthew G. Knepley PETSC_EXTERN PetscErrorCode TSComputeIJacobianDefaultColor(TS,PetscReal,Vec,Vec,PetscReal,Mat,Mat,void*);
393e34be4c2SBarry Smith 
394014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetPreStep(TS, PetscErrorCode (*)(TS));
395b8123daeSJed Brown PETSC_EXTERN PetscErrorCode TSSetPreStage(TS, PetscErrorCode (*)(TS,PetscReal));
3969be3e283SDebojyoti Ghosh PETSC_EXTERN PetscErrorCode TSSetPostStage(TS, PetscErrorCode (*)(TS,PetscReal,PetscInt,Vec*));
397c688d042SShri Abhyankar PETSC_EXTERN PetscErrorCode TSSetPostEvaluate(TS, PetscErrorCode(*)(TS));
398014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetPostStep(TS, PetscErrorCode (*)(TS));
399014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSPreStep(TS);
400b8123daeSJed Brown PETSC_EXTERN PetscErrorCode TSPreStage(TS,PetscReal);
4019be3e283SDebojyoti Ghosh PETSC_EXTERN PetscErrorCode TSPostStage(TS,PetscReal,PetscInt,Vec*);
402c688d042SShri Abhyankar PETSC_EXTERN PetscErrorCode TSPostEvaluate(TS);
403014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSPostStep(TS);
404014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSInterpolate(TS,PetscReal,Vec);
405014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetTolerances(TS,PetscReal,Vec,PetscReal,Vec);
406c5033834SJed Brown PETSC_EXTERN PetscErrorCode TSGetTolerances(TS,PetscReal*,Vec*,PetscReal*,Vec*);
407a4868fbcSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSErrorWeightedNormInfinity(TS,Vec,Vec,PetscReal*);
408a4868fbcSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSErrorWeightedNorm2(TS,Vec,Vec,PetscReal*);
409a4868fbcSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSErrorWeightedNorm(TS,Vec,Vec,NormType,PetscReal*);
410014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetCFLTimeLocal(TS,PetscReal);
411014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetCFLTime(TS,PetscReal*);
412d183316bSPierre Barbier de Reuille PETSC_EXTERN PetscErrorCode TSSetFunctionDomainError(TS, PetscErrorCode (*)(TS,PetscReal,Vec,PetscBool*));
413d183316bSPierre Barbier de Reuille PETSC_EXTERN PetscErrorCode TSFunctionDomainError(TS,PetscReal,Vec,PetscBool*);
414000e7ae3SMatthew Knepley 
415014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSPseudoSetTimeStep(TS,PetscErrorCode(*)(TS,PetscReal*,void*),void*);
4168d359177SBarry Smith PETSC_EXTERN PetscErrorCode TSPseudoTimeStepDefault(TS,PetscReal*,void*);
417014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSPseudoComputeTimeStep(TS,PetscReal *);
418014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSPseudoSetMaxTimeStep(TS,PetscReal);
419014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSPseudoSetVerifyTimeStep(TS,PetscErrorCode(*)(TS,Vec,void*,PetscReal*,PetscBool *),void*);
4208d359177SBarry Smith PETSC_EXTERN PetscErrorCode TSPseudoVerifyTimeStepDefault(TS,Vec,void*,PetscReal*,PetscBool *);
421014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSPseudoVerifyTimeStep(TS,Vec,PetscReal*,PetscBool *);
422014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSPseudoSetTimeStepIncrement(TS,PetscReal);
423014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSPseudoIncrementDtFromInitialDt(TS);
42421c89e3eSBarry Smith 
425014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSPythonSetType(TS,const char[]);
4261d6018f0SLisandro Dalcin 
427014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSComputeRHSFunction(TS,PetscReal,Vec,Vec);
428d1e9a80fSBarry Smith PETSC_EXTERN PetscErrorCode TSComputeRHSJacobian(TS,PetscReal,Vec,Mat,Mat);
429014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSComputeIFunction(TS,PetscReal,Vec,Vec,Vec,PetscBool);
430d1e9a80fSBarry Smith PETSC_EXTERN PetscErrorCode TSComputeIJacobian(TS,PetscReal,Vec,Vec,PetscReal,Mat,Mat,PetscBool);
431efe9872eSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSComputeI2Function(TS,PetscReal,Vec,Vec,Vec,Vec);
432efe9872eSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSComputeI2Jacobian(TS,PetscReal,Vec,Vec,Vec,PetscReal,PetscReal,Mat,Mat);
433f9c1d6abSBarry Smith PETSC_EXTERN PetscErrorCode TSComputeLinearStability(TS,PetscReal,PetscReal,PetscReal*,PetscReal*);
434818ad0c1SBarry Smith 
435014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSVISetVariableBounds(TS,Vec,Vec);
436d6ebe24aSShri Abhyankar 
437967bb25aSMatthew G. Knepley PETSC_EXTERN PetscErrorCode DMTSSetBoundaryLocal(DM, PetscErrorCode (*)(DM, PetscReal, Vec, Vec, void *), void *);
43824989b8cSPeter Brune PETSC_EXTERN PetscErrorCode DMTSSetRHSFunction(DM,TSRHSFunction,void*);
43924989b8cSPeter Brune PETSC_EXTERN PetscErrorCode DMTSGetRHSFunction(DM,TSRHSFunction*,void**);
44024989b8cSPeter Brune PETSC_EXTERN PetscErrorCode DMTSSetRHSJacobian(DM,TSRHSJacobian,void*);
44124989b8cSPeter Brune PETSC_EXTERN PetscErrorCode DMTSGetRHSJacobian(DM,TSRHSJacobian*,void**);
44224989b8cSPeter Brune PETSC_EXTERN PetscErrorCode DMTSSetIFunction(DM,TSIFunction,void*);
44324989b8cSPeter Brune PETSC_EXTERN PetscErrorCode DMTSGetIFunction(DM,TSIFunction*,void**);
44424989b8cSPeter Brune PETSC_EXTERN PetscErrorCode DMTSSetIJacobian(DM,TSIJacobian,void*);
44524989b8cSPeter Brune PETSC_EXTERN PetscErrorCode DMTSGetIJacobian(DM,TSIJacobian*,void**);
446efe9872eSLisandro Dalcin PETSC_EXTERN PetscErrorCode DMTSSetI2Function(DM,TSI2Function,void*);
447efe9872eSLisandro Dalcin PETSC_EXTERN PetscErrorCode DMTSGetI2Function(DM,TSI2Function*,void**);
448efe9872eSLisandro Dalcin PETSC_EXTERN PetscErrorCode DMTSSetI2Jacobian(DM,TSI2Jacobian,void*);
449efe9872eSLisandro Dalcin PETSC_EXTERN PetscErrorCode DMTSGetI2Jacobian(DM,TSI2Jacobian*,void**);
450efe9872eSLisandro Dalcin 
451ef20d060SBarry Smith PETSC_EXTERN PetscErrorCode DMTSSetSolutionFunction(DM,TSSolutionFunction,void*);
452ef20d060SBarry Smith PETSC_EXTERN PetscErrorCode DMTSGetSolutionFunction(DM,TSSolutionFunction*,void**);
453d56366bfSLisandro Dalcin PETSC_EXTERN PetscErrorCode DMTSSetForcingFunction(DM,TSForcingFunction,void*);
454d56366bfSLisandro Dalcin PETSC_EXTERN PetscErrorCode DMTSGetForcingFunction(DM,TSForcingFunction*,void**);
455924a1b8fSMatthew G. Knepley PETSC_EXTERN PetscErrorCode DMTSGetMinRadius(DM,PetscReal*);
456924a1b8fSMatthew G. Knepley PETSC_EXTERN PetscErrorCode DMTSSetMinRadius(DM,PetscReal);
4570163fd50SMatthew G. Knepley PETSC_EXTERN PetscErrorCode DMTSCheckFromOptions(TS, Vec, PetscErrorCode (**)(PetscInt, PetscReal, const PetscReal[], PetscInt, PetscScalar *, void *), void **);
4589b7cd975SBarry Smith 
459d433e6cbSMatthew G. Knepley PETSC_EXTERN PetscErrorCode DMTSSetIFunctionLocal(DM,PetscErrorCode (*)(DM,PetscReal,Vec,Vec,Vec,void*),void*);
460d433e6cbSMatthew G. Knepley PETSC_EXTERN PetscErrorCode DMTSSetIJacobianLocal(DM,PetscErrorCode (*)(DM,PetscReal,Vec,Vec,PetscReal,Mat,Mat,void*),void*);
461d433e6cbSMatthew G. Knepley PETSC_EXTERN PetscErrorCode DMTSSetRHSFunctionLocal(DM,PetscErrorCode (*)(DM,PetscReal,Vec,Vec,void*),void*);
4626c6b9e74SPeter Brune 
4636c6b9e74SPeter Brune PETSC_EXTERN PetscErrorCode DMTSSetIFunctionSerialize(DM,PetscErrorCode (*)(void*,PetscViewer),PetscErrorCode (*)(void**,PetscViewer));
4646c6b9e74SPeter Brune PETSC_EXTERN PetscErrorCode DMTSSetIJacobianSerialize(DM,PetscErrorCode (*)(void*,PetscViewer),PetscErrorCode (*)(void**,PetscViewer));
4656c6b9e74SPeter Brune 
4666c6b9e74SPeter Brune PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*DMDATSRHSFunctionLocal)(DMDALocalInfo*,PetscReal,void*,void*,void*);
467d1e9a80fSBarry Smith PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*DMDATSRHSJacobianLocal)(DMDALocalInfo*,PetscReal,void*,Mat,Mat,void*);
4686c6b9e74SPeter Brune PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*DMDATSIFunctionLocal)(DMDALocalInfo*,PetscReal,void*,void*,void*,void*);
469d1e9a80fSBarry Smith PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*DMDATSIJacobianLocal)(DMDALocalInfo*,PetscReal,void*,void*,PetscReal,Mat,Mat,void*);
4706c6b9e74SPeter Brune 
4716c6b9e74SPeter Brune PETSC_EXTERN PetscErrorCode DMDATSSetRHSFunctionLocal(DM,InsertMode,PetscErrorCode (*)(DMDALocalInfo*,PetscReal,void*,void*,void*),void *);
472d1e9a80fSBarry Smith PETSC_EXTERN PetscErrorCode DMDATSSetRHSJacobianLocal(DM,PetscErrorCode (*)(DMDALocalInfo*,PetscReal,void*,Mat,Mat,void*),void *);
4736c6b9e74SPeter Brune PETSC_EXTERN PetscErrorCode DMDATSSetIFunctionLocal(DM,InsertMode,PetscErrorCode (*)(DMDALocalInfo*,PetscReal,void*,void*,void*,void*),void *);
474d1e9a80fSBarry Smith PETSC_EXTERN PetscErrorCode DMDATSSetIJacobianLocal(DM,PetscErrorCode (*)(DMDALocalInfo*,PetscReal,void*,void*,PetscReal,Mat,Mat,void*),void *);
4756c6b9e74SPeter Brune 
476b6aca0f9SMatthew G. Knepley PETSC_EXTERN PetscErrorCode DMPlexTSGetGeometryFVM(DM,Vec*,Vec*,PetscReal*);
477560360afSLisandro Dalcin PETSC_EXTERN PetscErrorCode DMPlexTSGetGradientDM(DM,PetscFV,DM*);
4786dbbd306SMatthew G. Knepley 
479be1b0d75SMatthew G. Knepley typedef struct _n_TSMonitorLGCtx*  TSMonitorLGCtx;
480d1212d36SBarry Smith typedef struct {
481d1212d36SBarry Smith   Vec            ray;
482d1212d36SBarry Smith   VecScatter     scatter;
483d1212d36SBarry Smith   PetscViewer    viewer;
48451b4a12fSMatthew G. Knepley   TSMonitorLGCtx lgctx;
485d1212d36SBarry Smith } TSMonitorDMDARayCtx;
486d1212d36SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorDMDARayDestroy(void**);
487d1212d36SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorDMDARay(TS,PetscInt,PetscReal,Vec,void*);
48851b4a12fSMatthew G. Knepley PETSC_EXTERN PetscErrorCode TSMonitorLGDMDARay(TS,PetscInt,PetscReal,Vec,void*);
489d1212d36SBarry Smith 
490d1212d36SBarry Smith 
491bdad233fSMatthew Knepley /* Dynamic creation and loading functions */
492140e18c1SBarry Smith PETSC_EXTERN PetscFunctionList TSList;
49319fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode TSGetType(TS,TSType*);
49419fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode TSSetType(TS,TSType);
495bdf89e91SBarry Smith PETSC_EXTERN PetscErrorCode TSRegister(const char[], PetscErrorCode (*)(TS));
49630de9b25SBarry Smith 
497014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetSNES(TS,SNES*);
498deb2cd25SJed Brown PETSC_EXTERN PetscErrorCode TSSetSNES(TS,SNES);
499014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetKSP(TS,KSP*);
500818ad0c1SBarry Smith 
501014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSView(TS,PetscViewer);
50255849f57SBarry Smith PETSC_EXTERN PetscErrorCode TSLoad(TS,PetscViewer);
503685405a1SBarry Smith PETSC_STATIC_INLINE PetscErrorCode TSViewFromOptions(TS A,PetscObject obj,const char name[]) {return PetscObjectViewFromOptions((PetscObject)A,obj,name);}
50439c6b90dSHong Zhang PETSC_STATIC_INLINE PetscErrorCode TSTrajectoryViewFromOptions(TSTrajectory A,PetscObject obj,const char name[]) {return PetscObjectViewFromOptions((PetscObject)A,obj,name);}
50555849f57SBarry Smith 
50655849f57SBarry Smith #define TS_FILE_CLASSID 1211225
50721c89e3eSBarry Smith 
508014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetApplicationContext(TS,void *);
509014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetApplicationContext(TS,void *);
51021c89e3eSBarry Smith 
511a9f9c1f6SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorLGCtxCreate(MPI_Comm,const char[],const char[],int,int,int,int,PetscInt,TSMonitorLGCtx *);
512a9f9c1f6SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorLGCtxDestroy(TSMonitorLGCtx*);
5134f09c107SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorLGTimeStep(TS,PetscInt,PetscReal,Vec,void *);
5144f09c107SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorLGSolution(TS,PetscInt,PetscReal,Vec,void *);
51531152f8aSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorLGSetVariableNames(TS,const char * const*);
516b3d3934dSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorLGGetVariableNames(TS,const char *const **);
517e673d494SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorLGCtxSetVariableNames(TSMonitorLGCtx,const char * const *);
518a66092f1SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorLGSetDisplayVariables(TS,const char * const*);
519a66092f1SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorLGCtxSetDisplayVariables(TSMonitorLGCtx,const char * const*);
5207684fa3eSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorLGSetTransform(TS,PetscErrorCode (*)(void*,Vec,Vec*),PetscErrorCode (*)(void*),void*);
5217684fa3eSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorLGCtxSetTransform(TSMonitorLGCtx,PetscErrorCode (*)(void*,Vec,Vec*),PetscErrorCode (*)(void*),void *);
5224f09c107SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorLGError(TS,PetscInt,PetscReal,Vec,void *);
523201da799SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorLGSNESIterations(TS,PetscInt,PetscReal,Vec,void *);
524201da799SBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorLGKSPIterations(TS,PetscInt,PetscReal,Vec,void *);
525ef20d060SBarry Smith 
526b3d3934dSBarry Smith typedef struct _n_TSMonitorEnvelopeCtx*  TSMonitorEnvelopeCtx;
527b3d3934dSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorEnvelopeCtxCreate(TS,TSMonitorEnvelopeCtx*);
528b3d3934dSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorEnvelope(TS,PetscInt,PetscReal,Vec,void*);
529b3d3934dSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorEnvelopeGetBounds(TS,Vec*,Vec*);
530b3d3934dSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorEnvelopeCtxDestroy(TSMonitorEnvelopeCtx*);
531b3d3934dSBarry Smith 
5328189c53fSBarry Smith typedef struct _n_TSMonitorSPEigCtx*  TSMonitorSPEigCtx;
5338189c53fSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorSPEigCtxCreate(MPI_Comm,const char[],const char[],int,int,int,int,PetscInt,TSMonitorSPEigCtx *);
5348189c53fSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorSPEigCtxDestroy(TSMonitorSPEigCtx*);
5358189c53fSBarry Smith PETSC_EXTERN PetscErrorCode TSMonitorSPEig(TS,PetscInt,PetscReal,Vec,void *);
5363914022bSBarry Smith 
5372589fa24SLisandro Dalcin PETSC_EXTERN PetscErrorCode TSSetEventHandler(TS,PetscInt,PetscInt[],PetscBool[],PetscErrorCode (*)(TS,PetscReal,Vec,PetscScalar[],void*),PetscErrorCode (*)(TS,PetscInt,PetscInt[],PetscReal,Vec,PetscBool,void*),void*);
5386427ac75SLisandro Dalcin PETSC_EXTERN PetscErrorCode TSSetEventTolerances(TS,PetscReal,PetscReal[]);
53976bdecfbSBarry Smith /*J
540815f1ad5SJed Brown    TSSSPType - string with the name of TSSSP scheme.
541815f1ad5SJed Brown 
542815f1ad5SJed Brown    Level: beginner
543815f1ad5SJed Brown 
544815f1ad5SJed Brown .seealso: TSSSPSetType(), TS
54576bdecfbSBarry Smith J*/
54619fd82e9SBarry Smith typedef const char* TSSSPType;
547815f1ad5SJed Brown #define TSSSPRKS2  "rks2"
548815f1ad5SJed Brown #define TSSSPRKS3  "rks3"
549815f1ad5SJed Brown #define TSSSPRK104 "rk104"
550815f1ad5SJed Brown 
55119fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode TSSSPSetType(TS,TSSSPType);
55219fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode TSSSPGetType(TS,TSSSPType*);
553014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSSPSetNumStages(TS,PetscInt);
554014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSSPGetNumStages(TS,PetscInt*);
555787849ffSJed Brown PETSC_EXTERN PetscErrorCode TSSSPInitializePackage(void);
556560360afSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSSSPFinalizePackage(void);
557013797aaSBarry Smith PETSC_EXTERN PetscFunctionList TSSSPList;
558815f1ad5SJed Brown 
559ed657a08SJed Brown /*S
56084df9cb4SJed Brown    TSAdapt - Abstract object that manages time-step adaptivity
56184df9cb4SJed Brown 
56284df9cb4SJed Brown    Level: beginner
56384df9cb4SJed Brown 
56484df9cb4SJed Brown .seealso: TS, TSAdaptCreate(), TSAdaptType
56584df9cb4SJed Brown S*/
56684df9cb4SJed Brown typedef struct _p_TSAdapt *TSAdapt;
56784df9cb4SJed Brown 
56884df9cb4SJed Brown /*E
5698f6c3df8SBarry Smith     TSAdaptType - String with the name of TSAdapt scheme.
57084df9cb4SJed Brown 
57184df9cb4SJed Brown    Level: beginner
57284df9cb4SJed Brown 
57384df9cb4SJed Brown .seealso: TSAdaptSetType(), TS
57484df9cb4SJed Brown E*/
575f8963224SJed Brown typedef const char *TSAdaptType;
57684df9cb4SJed Brown #define TSADAPTBASIC "basic"
577b0f836d7SJed Brown #define TSADAPTNONE  "none"
5788d59e960SJed Brown #define TSADAPTCFL   "cfl"
57984df9cb4SJed Brown 
580552698daSJed Brown PETSC_EXTERN PetscErrorCode TSGetAdapt(TS,TSAdapt*);
581bdf89e91SBarry Smith PETSC_EXTERN PetscErrorCode TSAdaptRegister(const char[],PetscErrorCode (*)(TSAdapt));
582607a6623SBarry Smith PETSC_EXTERN PetscErrorCode TSAdaptInitializePackage(void);
583014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAdaptFinalizePackage(void);
584014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAdaptCreate(MPI_Comm,TSAdapt*);
58519fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode TSAdaptSetType(TSAdapt,TSAdaptType);
586014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAdaptSetOptionsPrefix(TSAdapt,const char[]);
587014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAdaptCandidatesClear(TSAdapt);
588014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAdaptCandidateAdd(TSAdapt,const char[],PetscInt,PetscInt,PetscReal,PetscReal,PetscBool);
589014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAdaptCandidatesGet(TSAdapt,PetscInt*,const PetscInt**,const PetscInt**,const PetscReal**,const PetscReal**);
590014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAdaptChoose(TSAdapt,TS,PetscReal,PetscInt*,PetscReal*,PetscBool*);
591b295832fSPierre Barbier de Reuille PETSC_EXTERN PetscErrorCode TSAdaptCheckStage(TSAdapt,TS,PetscReal,Vec,PetscBool*);
592014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAdaptView(TSAdapt,PetscViewer);
593ad6bc421SBarry Smith PETSC_EXTERN PetscErrorCode TSAdaptLoad(TSAdapt,PetscViewer);
5944416b707SBarry Smith PETSC_EXTERN PetscErrorCode TSAdaptSetFromOptions(PetscOptionItems*,TSAdapt);
595099af0a3SLisandro Dalcin PETSC_EXTERN PetscErrorCode TSAdaptReset(TSAdapt);
596014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAdaptDestroy(TSAdapt*);
597014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAdaptSetMonitor(TSAdapt,PetscBool);
598014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAdaptSetStepLimits(TSAdapt,PetscReal,PetscReal);
599b295832fSPierre Barbier de Reuille PETSC_EXTERN PetscErrorCode TSAdaptSetCheckStage(TSAdapt,PetscErrorCode(*)(TSAdapt,TS,PetscReal,Vec,PetscBool*));
60084df9cb4SJed Brown 
6011b9b13dfSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSAdaptBasicSetClip(TSAdapt,PetscReal,PetscReal);
6021b9b13dfSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSAdaptBasicGetClip(TSAdapt,PetscReal*,PetscReal*);
6031b9b13dfSLisandro Dalcin 
60484df9cb4SJed Brown /*S
60526d28e4eSEmil Constantinescu    TSGLLEAdapt - Abstract object that manages time-step adaptivity
606ed657a08SJed Brown 
607ed657a08SJed Brown    Level: beginner
608ed657a08SJed Brown 
60984df9cb4SJed Brown    Developer Notes:
61084df9cb4SJed Brown    This functionality should be replaced by the TSAdapt.
61184df9cb4SJed Brown 
61226d28e4eSEmil Constantinescu .seealso: TSGLLE, TSGLLEAdaptCreate(), TSGLLEAdaptType
613ed657a08SJed Brown S*/
61426d28e4eSEmil Constantinescu typedef struct _p_TSGLLEAdapt *TSGLLEAdapt;
615ed657a08SJed Brown 
61676bdecfbSBarry Smith /*J
61726d28e4eSEmil Constantinescu     TSGLLEAdaptType - String with the name of TSGLLEAdapt scheme
618ed657a08SJed Brown 
619ed657a08SJed Brown    Level: beginner
620ed657a08SJed Brown 
62126d28e4eSEmil Constantinescu .seealso: TSGLLEAdaptSetType(), TS
62276bdecfbSBarry Smith J*/
62326d28e4eSEmil Constantinescu typedef const char *TSGLLEAdaptType;
62426d28e4eSEmil Constantinescu #define TSGLLEADAPT_NONE "none"
62526d28e4eSEmil Constantinescu #define TSGLLEADAPT_SIZE "size"
62626d28e4eSEmil Constantinescu #define TSGLLEADAPT_BOTH "both"
627ed657a08SJed Brown 
62826d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLEAdaptRegister(const char[],PetscErrorCode (*)(TSGLLEAdapt));
62926d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLEAdaptInitializePackage(void);
63026d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLEAdaptFinalizePackage(void);
63126d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLEAdaptCreate(MPI_Comm,TSGLLEAdapt*);
63226d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLEAdaptSetType(TSGLLEAdapt,TSGLLEAdaptType);
63326d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLEAdaptSetOptionsPrefix(TSGLLEAdapt,const char[]);
63426d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLEAdaptChoose(TSGLLEAdapt,PetscInt,const PetscInt[],const PetscReal[],const PetscReal[],PetscInt,PetscReal,PetscReal,PetscInt*,PetscReal*,PetscBool *);
63526d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLEAdaptView(TSGLLEAdapt,PetscViewer);
63626d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLEAdaptSetFromOptions(PetscOptionItems*,TSGLLEAdapt);
63726d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLEAdaptDestroy(TSGLLEAdapt*);
638ed657a08SJed Brown 
63976bdecfbSBarry Smith /*J
64026d28e4eSEmil Constantinescu     TSGLLEAcceptType - String with the name of TSGLLEAccept scheme
641ed657a08SJed Brown 
642ed657a08SJed Brown    Level: beginner
643ed657a08SJed Brown 
64426d28e4eSEmil Constantinescu .seealso: TSGLLESetAcceptType(), TS
64576bdecfbSBarry Smith J*/
64626d28e4eSEmil Constantinescu typedef const char *TSGLLEAcceptType;
64726d28e4eSEmil Constantinescu #define TSGLLEACCEPT_ALWAYS "always"
648ed657a08SJed Brown 
64926d28e4eSEmil Constantinescu PETSC_EXTERN_TYPEDEF typedef PetscErrorCode (*TSGLLEAcceptFunction)(TS,PetscReal,PetscReal,const PetscReal[],PetscBool *);
65026d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLEAcceptRegister(const char[],TSGLLEAcceptFunction);
651ed657a08SJed Brown 
65276bdecfbSBarry Smith /*J
65326d28e4eSEmil Constantinescu   TSGLLEType - family of time integration method within the General Linear class
65418b56cb9SJed Brown 
65518b56cb9SJed Brown   Level: beginner
65618b56cb9SJed Brown 
65726d28e4eSEmil Constantinescu .seealso: TSGLLESetType(), TSGLLERegister()
65876bdecfbSBarry Smith J*/
65926d28e4eSEmil Constantinescu typedef const char* TSGLLEType;
66026d28e4eSEmil Constantinescu #define TSGLLE_IRKS   "irks"
66118b56cb9SJed Brown 
66226d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLERegister(const char[],PetscErrorCode(*)(TS));
66326d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLEInitializePackage(void);
66426d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLEFinalizePackage(void);
66526d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLESetType(TS,TSGLLEType);
66626d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLEGetAdapt(TS,TSGLLEAdapt*);
66726d28e4eSEmil Constantinescu PETSC_EXTERN PetscErrorCode TSGLLESetAcceptType(TS,TSGLLEAcceptType);
66818b56cb9SJed Brown 
669020d8f30SJed Brown /*J
6707d5697caSHong Zhang     TSEIMEXType - String with the name of an Extrapolated IMEX method.
6717d5697caSHong Zhang 
6727d5697caSHong Zhang    Level: beginner
6737d5697caSHong Zhang 
6747d5697caSHong Zhang .seealso: TSEIMEXSetType(), TS, TSEIMEX, TSEIMEXRegister()
6757d5697caSHong Zhang J*/
6767d5697caSHong Zhang #define TSEIMEXType   char*
6777d5697caSHong Zhang 
6787d5697caSHong Zhang PETSC_EXTERN PetscErrorCode TSEIMEXSetMaxRows(TS ts,PetscInt);
6797d5697caSHong Zhang PETSC_EXTERN PetscErrorCode TSEIMEXSetRowCol(TS ts,PetscInt,PetscInt);
6807d5697caSHong Zhang PETSC_EXTERN PetscErrorCode TSEIMEXSetOrdAdapt(TS,PetscBool);
6817d5697caSHong Zhang 
6827d5697caSHong Zhang /*J
683f68a32c8SEmil Constantinescu     TSRKType - String with the name of a Runge-Kutta method.
684f68a32c8SEmil Constantinescu 
685f68a32c8SEmil Constantinescu    Level: beginner
686f68a32c8SEmil Constantinescu 
687f68a32c8SEmil Constantinescu .seealso: TSRKSetType(), TS, TSRK, TSRKRegister()
688f68a32c8SEmil Constantinescu J*/
689f68a32c8SEmil Constantinescu typedef const char* TSRKType;
690f68a32c8SEmil Constantinescu #define TSRK1FE   "1fe"
691fdefd5e5SDebojyoti Ghosh #define TSRK2A    "2a"
692f68a32c8SEmil Constantinescu #define TSRK3     "3"
693fdefd5e5SDebojyoti Ghosh #define TSRK3BS   "3bs"
694f68a32c8SEmil Constantinescu #define TSRK4     "4"
695fdefd5e5SDebojyoti Ghosh #define TSRK5F    "5f"
696fdefd5e5SDebojyoti Ghosh #define TSRK5DP   "5dp"
697f68a32c8SEmil Constantinescu PETSC_EXTERN PetscErrorCode TSRKGetType(TS ts,TSRKType*);
698f68a32c8SEmil Constantinescu PETSC_EXTERN PetscErrorCode TSRKSetType(TS ts,TSRKType);
699f68a32c8SEmil Constantinescu PETSC_EXTERN PetscErrorCode TSRKSetFullyImplicit(TS,PetscBool);
700f68a32c8SEmil Constantinescu PETSC_EXTERN PetscErrorCode TSRKRegister(TSRKType,PetscInt,PetscInt,const PetscReal[],const PetscReal[],const PetscReal[],const PetscReal[],PetscInt,const PetscReal[]);
701f68a32c8SEmil Constantinescu PETSC_EXTERN PetscErrorCode TSRKInitializePackage(void);
702560360afSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSRKFinalizePackage(void);
703f68a32c8SEmil Constantinescu PETSC_EXTERN PetscErrorCode TSRKRegisterDestroy(void);
704f68a32c8SEmil Constantinescu 
705f68a32c8SEmil Constantinescu /*J
706b6a60446SDebojyoti Ghosh     TSGLEEType - String with the name of a General Linear with Error Estimation method.
707b6a60446SDebojyoti Ghosh 
708b6a60446SDebojyoti Ghosh    Level: beginner
709b6a60446SDebojyoti Ghosh 
710b6a60446SDebojyoti Ghosh .seealso: TSGLEESetType(), TS, TSGLEE, TSGLEERegister()
711b6a60446SDebojyoti Ghosh J*/
712b6a60446SDebojyoti Ghosh typedef const char* TSGLEEType;
713b6a60446SDebojyoti Ghosh #define TSGLEE23      "23"
714b6a60446SDebojyoti Ghosh #define TSGLEE24      "24"
715b6a60446SDebojyoti Ghosh #define TSGLEE25I     "25i"
716b6a60446SDebojyoti Ghosh #define TSGLEE35      "35"
717b6a60446SDebojyoti Ghosh #define TSGLEEEXRK2A  "exrk2a"
718b6a60446SDebojyoti Ghosh #define TSGLEERK32G1  "rk32g1"
719b6a60446SDebojyoti Ghosh #define TSGLEERK285EX "rk285ex"
720b6a60446SDebojyoti Ghosh /*J
721b6a60446SDebojyoti Ghosh     TSGLEEMode - String with the mode of error estimation for a General Linear with Error Estimation method.
722b6a60446SDebojyoti Ghosh 
723b6a60446SDebojyoti Ghosh    Level: beginner
724b6a60446SDebojyoti Ghosh 
725b6a60446SDebojyoti Ghosh .seealso: TSGLEESetMode(), TS, TSGLEE, TSGLEERegister()
726b6a60446SDebojyoti Ghosh J*/
727b6a60446SDebojyoti Ghosh PETSC_EXTERN PetscErrorCode TSGLEEGetType(TS ts,TSGLEEType*);
728b6a60446SDebojyoti Ghosh PETSC_EXTERN PetscErrorCode TSGLEESetType(TS ts,TSGLEEType);
729b6a60446SDebojyoti Ghosh PETSC_EXTERN PetscErrorCode TSGLEERegister(TSGLEEType,PetscInt,PetscInt,PetscInt,PetscReal,const PetscReal[],const PetscReal[],const PetscReal[],const PetscReal[],const PetscReal[],const PetscReal[],const PetscReal[],const PetscReal[],PetscInt,const PetscReal[]);
730b6a60446SDebojyoti Ghosh PETSC_EXTERN PetscErrorCode TSGLEEFinalizePackage(void);
731b6a60446SDebojyoti Ghosh PETSC_EXTERN PetscErrorCode TSGLEEInitializePackage(void);
732b6a60446SDebojyoti Ghosh PETSC_EXTERN PetscErrorCode TSGLEERegisterDestroy(void);
733b6a60446SDebojyoti Ghosh 
734b6a60446SDebojyoti Ghosh /*J
735020d8f30SJed Brown     TSARKIMEXType - String with the name of an Additive Runge-Kutta IMEX method.
736020d8f30SJed Brown 
737020d8f30SJed Brown    Level: beginner
738020d8f30SJed Brown 
739020d8f30SJed Brown .seealso: TSARKIMEXSetType(), TS, TSARKIMEX, TSARKIMEXRegister()
740020d8f30SJed Brown J*/
74119fd82e9SBarry Smith typedef const char* TSARKIMEXType;
742e817cc15SEmil Constantinescu #define TSARKIMEX1BEE   "1bee"
7431f80e275SEmil Constantinescu #define TSARKIMEXA2     "a2"
7441f80e275SEmil Constantinescu #define TSARKIMEXL2     "l2"
7451f80e275SEmil Constantinescu #define TSARKIMEXARS122 "ars122"
7461f80e275SEmil Constantinescu #define TSARKIMEX2C     "2c"
7478a381b04SJed Brown #define TSARKIMEX2D     "2d"
748a3a57f36SJed Brown #define TSARKIMEX2E     "2e"
7496cf0794eSJed Brown #define TSARKIMEXPRSSP2 "prssp2"
7508a381b04SJed Brown #define TSARKIMEX3      "3"
7516cf0794eSJed Brown #define TSARKIMEXBPR3   "bpr3"
7526cf0794eSJed Brown #define TSARKIMEXARS443 "ars443"
7538a381b04SJed Brown #define TSARKIMEX4      "4"
7548a381b04SJed Brown #define TSARKIMEX5      "5"
75519fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode TSARKIMEXGetType(TS ts,TSARKIMEXType*);
75619fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode TSARKIMEXSetType(TS ts,TSARKIMEXType);
757014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSARKIMEXSetFullyImplicit(TS,PetscBool);
75819fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode TSARKIMEXRegister(TSARKIMEXType,PetscInt,PetscInt,const PetscReal[],const PetscReal[],const PetscReal[],const PetscReal[],const PetscReal[],const PetscReal[],const PetscReal[],const PetscReal[],PetscInt,const PetscReal[],const PetscReal[]);
759607a6623SBarry Smith PETSC_EXTERN PetscErrorCode TSARKIMEXInitializePackage(void);
760560360afSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSARKIMEXFinalizePackage(void);
761014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSARKIMEXRegisterDestroy(void);
7628a381b04SJed Brown 
763020d8f30SJed Brown /*J
764020d8f30SJed Brown     TSRosWType - String with the name of a Rosenbrock-W method.
765020d8f30SJed Brown 
766020d8f30SJed Brown    Level: beginner
767020d8f30SJed Brown 
768020d8f30SJed Brown .seealso: TSRosWSetType(), TS, TSROSW, TSRosWRegister()
769020d8f30SJed Brown J*/
77019fd82e9SBarry Smith typedef const char* TSRosWType;
77161692a83SJed Brown #define TSROSW2M          "2m"
77261692a83SJed Brown #define TSROSW2P          "2p"
773fe7e6d57SJed Brown #define TSROSWRA3PW       "ra3pw"
774fe7e6d57SJed Brown #define TSROSWRA34PW2     "ra34pw2"
775ef3c5b88SJed Brown #define TSROSWRODAS3      "rodas3"
776ef3c5b88SJed Brown #define TSROSWSANDU3      "sandu3"
777961f28d0SJed Brown #define TSROSWASSP3P3S1C  "assp3p3s1c"
778961f28d0SJed Brown #define TSROSWLASSP3P4S2C "lassp3p4s2c"
77943b21953SEmil Constantinescu #define TSROSWLLSSP3P4S2C "llssp3p4s2c"
780753f8adbSEmil Constantinescu #define TSROSWARK3        "ark3"
7813606a31eSEmil Constantinescu #define TSROSWTHETA1      "theta1"
7823606a31eSEmil Constantinescu #define TSROSWTHETA2      "theta2"
78342faf41dSJed Brown #define TSROSWGRK4T       "grk4t"
78442faf41dSJed Brown #define TSROSWSHAMP4      "shamp4"
78542faf41dSJed Brown #define TSROSWVELDD4      "veldd4"
78642faf41dSJed Brown #define TSROSW4L          "4l"
787b1c69cc3SEmil Constantinescu 
78819fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode TSRosWGetType(TS ts,TSRosWType*);
78919fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode TSRosWSetType(TS ts,TSRosWType);
790014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSRosWSetRecomputeJacobian(TS,PetscBool);
79119fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode TSRosWRegister(TSRosWType,PetscInt,PetscInt,const PetscReal[],const PetscReal[],const PetscReal[],const PetscReal[],PetscInt,const PetscReal[]);
79219fd82e9SBarry Smith PETSC_EXTERN PetscErrorCode TSRosWRegisterRos4(TSRosWType,PetscReal,PetscReal,PetscReal,PetscReal,PetscReal);
793607a6623SBarry Smith PETSC_EXTERN PetscErrorCode TSRosWInitializePackage(void);
794560360afSLisandro Dalcin PETSC_EXTERN PetscErrorCode TSRosWFinalizePackage(void);
795014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSRosWRegisterDestroy(void);
796e27a552bSJed Brown 
797211a84d6SLisandro Dalcin PETSC_EXTERN PetscErrorCode TSBDFSetOrder(TS,PetscInt);
798211a84d6SLisandro Dalcin PETSC_EXTERN PetscErrorCode TSBDFGetOrder(TS,PetscInt*);
799211a84d6SLisandro Dalcin PETSC_EXTERN PetscErrorCode TSBDFUseAdapt(TS,PetscBool);
800211a84d6SLisandro Dalcin 
80183e2fdc7SBarry Smith /*
8020f3b3ca1SHong Zhang        PETSc interface to Sundials
80383e2fdc7SBarry Smith */
8046dc17ff5SMatthew Knepley #ifdef PETSC_HAVE_SUNDIALS
8056fadb2cdSHong Zhang typedef enum { SUNDIALS_ADAMS=1,SUNDIALS_BDF=2} TSSundialsLmmType;
8066a6fc655SJed Brown PETSC_EXTERN const char *const TSSundialsLmmTypes[];
8076fadb2cdSHong Zhang typedef enum { SUNDIALS_MODIFIED_GS = 1,SUNDIALS_CLASSICAL_GS = 2 } TSSundialsGramSchmidtType;
8086a6fc655SJed Brown PETSC_EXTERN const char *const TSSundialsGramSchmidtTypes[];
809014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSundialsSetType(TS,TSSundialsLmmType);
810014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSundialsGetPC(TS,PC*);
811014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSundialsSetTolerance(TS,PetscReal,PetscReal);
812014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSundialsSetMinTimeStep(TS,PetscReal);
813014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSundialsSetMaxTimeStep(TS,PetscReal);
814014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSundialsGetIterations(TS,PetscInt *,PetscInt *);
815014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSundialsSetGramSchmidtType(TS,TSSundialsGramSchmidtType);
816014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSundialsSetGMRESRestart(TS,PetscInt);
817014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSundialsSetLinearTolerance(TS,PetscReal);
818014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSundialsMonitorInternalSteps(TS,PetscBool );
819014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSundialsGetParameters(TS,PetscInt *,long*[],double*[]);
820014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSundialsSetMaxl(TS,PetscInt);
8216dc17ff5SMatthew Knepley #endif
82283e2fdc7SBarry Smith 
823014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSThetaSetTheta(TS,PetscReal);
824014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSThetaGetTheta(TS,PetscReal*);
825014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSThetaGetEndpoint(TS,PetscBool*);
826014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSThetaSetEndpoint(TS,PetscBool);
8270de4c49aSJed Brown 
828b07a2398SLisandro Dalcin PETSC_EXTERN PetscErrorCode TSAlphaUseAdapt(TS,PetscBool);
829014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAlphaSetRadius(TS,PetscReal);
830014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAlphaSetParams(TS,PetscReal,PetscReal,PetscReal);
831014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSAlphaGetParams(TS,PetscReal*,PetscReal*,PetscReal*);
83288df8a41SLisandro Dalcin 
833818efac9SLisandro Dalcin PETSC_EXTERN PetscErrorCode TSAlpha2UseAdapt(TS,PetscBool);
834818efac9SLisandro Dalcin PETSC_EXTERN PetscErrorCode TSAlpha2SetRadius(TS,PetscReal);
835818efac9SLisandro Dalcin PETSC_EXTERN PetscErrorCode TSAlpha2SetParams(TS,PetscReal,PetscReal,PetscReal,PetscReal);
836818efac9SLisandro Dalcin PETSC_EXTERN PetscErrorCode TSAlpha2GetParams(TS,PetscReal*,PetscReal*,PetscReal*,PetscReal*);
837818efac9SLisandro Dalcin 
838014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSSetDM(TS,DM);
839014dd563SJed Brown PETSC_EXTERN PetscErrorCode TSGetDM(TS,DM*);
8406c699258SBarry Smith 
841014dd563SJed Brown PETSC_EXTERN PetscErrorCode SNESTSFormFunction(SNES,Vec,Vec,void*);
842d1e9a80fSBarry Smith PETSC_EXTERN PetscErrorCode SNESTSFormJacobian(SNES,Vec,Mat,Mat,void*);
8430f5c6efeSJed Brown 
844818ad0c1SBarry Smith #endif
845