xref: /petsc/src/ts/interface/ts.c (revision 8a2f769d1ef6e6764824b8d6277c08f0120a1d76)
163dd3a1aSKris Buschelman 
2b45d2f2cSJed Brown #include <petsc-private/tsimpl.h>        /*I "petscts.h"  I*/
3496e6a7aSJed Brown #include <petscdmshell.h>
41e25c274SJed Brown #include <petscdmda.h>
52d5ee99bSBarry Smith #include <petscviewer.h>
62d5ee99bSBarry Smith #include <petscdraw.h>
7d763cef2SBarry Smith 
8d5ba7fb7SMatthew Knepley /* Logging support */
9d74926cbSBarry Smith PetscClassId  TS_CLASSID, DMTS_CLASSID;
10166c7f25SBarry Smith PetscLogEvent TS_Step, TS_PseudoComputeTimeStep, TS_FunctionEval, TS_JacobianEval;
11d405a339SMatthew Knepley 
1249354f04SShri Abhyankar const char *const TSExactFinalTimeOptions[] = {"STEPOVER","INTERPOLATE","MATCHSTEP","TSExactFinalTimeOption","TS_EXACTFINALTIME_",0};
1349354f04SShri Abhyankar 
144a2ae208SSatish Balay #undef __FUNCT__
15e55864a3SBarry Smith #define __FUNCT__ "TSSetTypeFromOptions_Private"
16bdad233fSMatthew Knepley /*
17bdad233fSMatthew Knepley   TSSetTypeFromOptions - Sets the type of ts from user options.
18bdad233fSMatthew Knepley 
19bdad233fSMatthew Knepley   Collective on TS
20bdad233fSMatthew Knepley 
21bdad233fSMatthew Knepley   Input Parameter:
22bdad233fSMatthew Knepley . ts - The ts
23bdad233fSMatthew Knepley 
24bdad233fSMatthew Knepley   Level: intermediate
25bdad233fSMatthew Knepley 
26bdad233fSMatthew Knepley .keywords: TS, set, options, database, type
27bdad233fSMatthew Knepley .seealso: TSSetFromOptions(), TSSetType()
28bdad233fSMatthew Knepley */
298c34d3f5SBarry Smith static PetscErrorCode TSSetTypeFromOptions_Private(PetscOptions *PetscOptionsObject,TS ts)
30bdad233fSMatthew Knepley {
31ace3abfcSBarry Smith   PetscBool      opt;
322fc52814SBarry Smith   const char     *defaultType;
33bdad233fSMatthew Knepley   char           typeName[256];
34dfbe8321SBarry Smith   PetscErrorCode ierr;
35bdad233fSMatthew Knepley 
36bdad233fSMatthew Knepley   PetscFunctionBegin;
37bbd56ea5SKarl Rupp   if (((PetscObject)ts)->type_name) defaultType = ((PetscObject)ts)->type_name;
38bbd56ea5SKarl Rupp   else defaultType = TSEULER;
39bdad233fSMatthew Knepley 
40607a6623SBarry Smith   if (!TSRegisterAllCalled) {ierr = TSRegisterAll();CHKERRQ(ierr);}
41a264d7a6SBarry Smith   ierr = PetscOptionsFList("-ts_type", "TS method"," TSSetType", TSList, defaultType, typeName, 256, &opt);CHKERRQ(ierr);
42a7cc72afSBarry Smith   if (opt) {
43bdad233fSMatthew Knepley     ierr = TSSetType(ts, typeName);CHKERRQ(ierr);
44bdad233fSMatthew Knepley   } else {
45bdad233fSMatthew Knepley     ierr = TSSetType(ts, defaultType);CHKERRQ(ierr);
46bdad233fSMatthew Knepley   }
47bdad233fSMatthew Knepley   PetscFunctionReturn(0);
48bdad233fSMatthew Knepley }
49bdad233fSMatthew Knepley 
502d5ee99bSBarry Smith struct _n_TSMonitorDrawCtx {
512d5ee99bSBarry Smith   PetscViewer   viewer;
524b363babSBarry Smith   PetscDrawAxis axis;
532d5ee99bSBarry Smith   Vec           initialsolution;
542d5ee99bSBarry Smith   PetscBool     showinitial;
552d5ee99bSBarry Smith   PetscInt      howoften;  /* when > 0 uses step % howoften, when negative only final solution plotted */
562d5ee99bSBarry Smith   PetscBool     showtimestepandtime;
572d5ee99bSBarry Smith   int           color;
582d5ee99bSBarry Smith };
592d5ee99bSBarry Smith 
60bdad233fSMatthew Knepley #undef __FUNCT__
61bdad233fSMatthew Knepley #define __FUNCT__ "TSSetFromOptions"
62bdad233fSMatthew Knepley /*@
63bdad233fSMatthew Knepley    TSSetFromOptions - Sets various TS parameters from user options.
64bdad233fSMatthew Knepley 
65bdad233fSMatthew Knepley    Collective on TS
66bdad233fSMatthew Knepley 
67bdad233fSMatthew Knepley    Input Parameter:
68bdad233fSMatthew Knepley .  ts - the TS context obtained from TSCreate()
69bdad233fSMatthew Knepley 
70bdad233fSMatthew Knepley    Options Database Keys:
714d91e141SJed Brown +  -ts_type <type> - TSEULER, TSBEULER, TSSUNDIALS, TSPSEUDO, TSCN, TSRK, TSTHETA, TSGL, TSSSP
72d2daff3dSHong Zhang .  -ts_checkpoint - checkpoint for adjoint sensitivity analysis
73bdad233fSMatthew Knepley .  -ts_max_steps maxsteps - maximum number of time-steps to take
743bca7d26SBarry Smith .  -ts_final_time time - maximum time to compute to
75bdad233fSMatthew Knepley .  -ts_dt dt - initial time step
76a3cdaa26SBarry Smith .  -ts_exact_final_time <stepover,interpolate,matchstep> whether to stop at the exact given final time and how to compute the solution at that ti,e
77a3cdaa26SBarry Smith .  -ts_max_snes_failures <maxfailures> - Maximum number of nonlinear solve failures allowed
78a3cdaa26SBarry Smith .  -ts_max_reject <maxrejects> - Maximum number of step rejections before step fails
79a3cdaa26SBarry Smith .  -ts_error_if_step_fails <true,false> - Error if no step succeeds
80a3cdaa26SBarry Smith .  -ts_rtol <rtol> - relative tolerance for local truncation error
81a3cdaa26SBarry Smith .  -ts_atol <atol> Absolute tolerance for local truncation error
82bdad233fSMatthew Knepley .  -ts_monitor - print information at each timestep
83de06c3feSJed Brown .  -ts_monitor_lg_timestep - Monitor timestep size graphically
84de06c3feSJed Brown .  -ts_monitor_lg_solution - Monitor solution graphically
85de06c3feSJed Brown .  -ts_monitor_lg_error - Monitor error graphically
86de06c3feSJed Brown .  -ts_monitor_lg_snes_iterations - Monitor number nonlinear iterations for each timestep graphically
87de06c3feSJed Brown .  -ts_monitor_lg_ksp_iterations - Monitor number nonlinear iterations for each timestep graphically
88de06c3feSJed Brown .  -ts_monitor_sp_eig - Monitor eigenvalues of linearized operator graphically
89de06c3feSJed Brown .  -ts_monitor_draw_solution - Monitor solution graphically
902d5ee99bSBarry Smith .  -ts_monitor_draw_solution_phase - Monitor solution graphically with phase diagram
91de06c3feSJed Brown .  -ts_monitor_draw_error - Monitor error graphically
9291b97e58SBarry Smith .  -ts_monitor_solution_binary <filename> - Save each solution to a binary file
9391b97e58SBarry Smith -  -ts_monitor_solution_vtk <filename.vts> - Save each time step to a binary file, use filename-%%03D.vts
9491b97e58SBarry Smith 
9591b97e58SBarry Smith    Developer Note: We should unify all the -ts_monitor options in the way that -xxx_view has been unified
96bdad233fSMatthew Knepley 
97bdad233fSMatthew Knepley    Level: beginner
98bdad233fSMatthew Knepley 
99bdad233fSMatthew Knepley .keywords: TS, timestep, set, options, database
100bdad233fSMatthew Knepley 
101a313700dSBarry Smith .seealso: TSGetType()
102bdad233fSMatthew Knepley @*/
1037087cfbeSBarry Smith PetscErrorCode  TSSetFromOptions(TS ts)
104bdad233fSMatthew Knepley {
105bc952696SBarry Smith   PetscBool              opt,flg,tflg;
106dfbe8321SBarry Smith   PetscErrorCode         ierr;
107649052a6SBarry Smith   PetscViewer            monviewer;
108eabae89aSBarry Smith   char                   monfilename[PETSC_MAX_PATH_LEN];
109089b2837SJed Brown   SNES                   snes;
1101c3436cfSJed Brown   TSAdapt                adapt;
11131748224SBarry Smith   PetscReal              time_step;
11249354f04SShri Abhyankar   TSExactFinalTimeOption eftopt;
113d1212d36SBarry Smith   char                   dir[16];
114bdad233fSMatthew Knepley 
115bdad233fSMatthew Knepley   PetscFunctionBegin;
1160700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
1173194b578SJed Brown   ierr = PetscObjectOptionsBegin((PetscObject)ts);CHKERRQ(ierr);
118a43b19c4SJed Brown   /* Handle TS type options */
119e55864a3SBarry Smith   ierr = TSSetTypeFromOptions_Private(PetscOptionsObject,ts);CHKERRQ(ierr);
120bdad233fSMatthew Knepley 
121bdad233fSMatthew Knepley   /* Handle generic TS options */
122bc952696SBarry Smith   if (ts->trajectory) flg = PETSC_TRUE;
123bc952696SBarry Smith   else flg = PETSC_FALSE;
124bc952696SBarry Smith   ierr = PetscOptionsBool("-ts_save_trajectories","Checkpoint for adjoint sensitivity analysis","TSSetSaveTrajectories",tflg,&tflg,NULL);CHKERRQ(ierr);
125bc952696SBarry Smith   if (tflg) {ierr = TSSetSaveTrajectory(ts);CHKERRQ(ierr);}
1260298fd71SBarry Smith   ierr = PetscOptionsInt("-ts_max_steps","Maximum number of time steps","TSSetDuration",ts->max_steps,&ts->max_steps,NULL);CHKERRQ(ierr);
1270298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_final_time","Time to run to","TSSetDuration",ts->max_time,&ts->max_time,NULL);CHKERRQ(ierr);
1280298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_init_time","Initial time","TSSetTime",ts->ptime,&ts->ptime,NULL);CHKERRQ(ierr);
12931748224SBarry Smith   ierr = PetscOptionsReal("-ts_dt","Initial time step","TSSetTimeStep",ts->time_step,&time_step,&flg);CHKERRQ(ierr);
13031748224SBarry Smith   if (flg) {
13131748224SBarry Smith     ierr = TSSetTimeStep(ts,time_step);CHKERRQ(ierr);
13231748224SBarry Smith   }
13349354f04SShri Abhyankar   ierr = PetscOptionsEnum("-ts_exact_final_time","Option for handling of final time step","TSSetExactFinalTime",TSExactFinalTimeOptions,(PetscEnum)ts->exact_final_time,(PetscEnum*)&eftopt,&flg);CHKERRQ(ierr);
13449354f04SShri Abhyankar   if (flg) {ierr = TSSetExactFinalTime(ts,eftopt);CHKERRQ(ierr);}
1350298fd71SBarry Smith   ierr = PetscOptionsInt("-ts_max_snes_failures","Maximum number of nonlinear solve failures","TSSetMaxSNESFailures",ts->max_snes_failures,&ts->max_snes_failures,NULL);CHKERRQ(ierr);
1360298fd71SBarry Smith   ierr = PetscOptionsInt("-ts_max_reject","Maximum number of step rejections before step fails","TSSetMaxStepRejections",ts->max_reject,&ts->max_reject,NULL);CHKERRQ(ierr);
1370298fd71SBarry Smith   ierr = PetscOptionsBool("-ts_error_if_step_fails","Error if no step succeeds","TSSetErrorIfStepFails",ts->errorifstepfailed,&ts->errorifstepfailed,NULL);CHKERRQ(ierr);
1380298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_rtol","Relative tolerance for local truncation error","TSSetTolerances",ts->rtol,&ts->rtol,NULL);CHKERRQ(ierr);
1390298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_atol","Absolute tolerance for local truncation error","TSSetTolerances",ts->atol,&ts->atol,NULL);CHKERRQ(ierr);
140bdad233fSMatthew Knepley 
14156f85f32SBarry Smith #if defined(PETSC_HAVE_SAWS)
14256f85f32SBarry Smith   {
14356f85f32SBarry Smith   PetscBool set;
14456f85f32SBarry Smith   flg  = PETSC_FALSE;
14556f85f32SBarry Smith   ierr = PetscOptionsBool("-ts_saws_block","Block for SAWs memory snooper at end of TSSolve","PetscObjectSAWsBlock",((PetscObject)ts)->amspublishblock,&flg,&set);CHKERRQ(ierr);
14656f85f32SBarry Smith   if (set) {
14756f85f32SBarry Smith     ierr = PetscObjectSAWsSetBlock((PetscObject)ts,flg);CHKERRQ(ierr);
14856f85f32SBarry Smith   }
14956f85f32SBarry Smith   }
15056f85f32SBarry Smith #endif
15156f85f32SBarry Smith 
152bdad233fSMatthew Knepley   /* Monitor options */
153a6570f20SBarry Smith   ierr = PetscOptionsString("-ts_monitor","Monitor timestep size","TSMonitorDefault","stdout",monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr);
154eabae89aSBarry Smith   if (flg) {
155ce94432eSBarry Smith     ierr = PetscViewerASCIIOpen(PetscObjectComm((PetscObject)ts),monfilename,&monviewer);CHKERRQ(ierr);
156649052a6SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDefault,monviewer,(PetscErrorCode (*)(void**))PetscViewerDestroy);CHKERRQ(ierr);
157bdad233fSMatthew Knepley   }
1585180491cSLisandro Dalcin   ierr = PetscOptionsString("-ts_monitor_python","Use Python function","TSMonitorSet",0,monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr);
1595180491cSLisandro Dalcin   if (flg) {ierr = PetscPythonMonitorSet((PetscObject)ts,monfilename);CHKERRQ(ierr);}
1605180491cSLisandro Dalcin 
1614f09c107SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_timestep","Monitor timestep size graphically","TSMonitorLGTimeStep",&opt);CHKERRQ(ierr);
162a7cc72afSBarry Smith   if (opt) {
1630b039ecaSBarry Smith     TSMonitorLGCtx ctx;
1643923b477SBarry Smith     PetscInt       howoften = 1;
165a80ad3e0SBarry Smith 
1660298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_timestep","Monitor timestep size graphically","TSMonitorLGTimeStep",howoften,&howoften,NULL);CHKERRQ(ierr);
167ce94432eSBarry Smith     ierr = TSMonitorLGCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,howoften,&ctx);CHKERRQ(ierr);
1684f09c107SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGTimeStep,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
169b3603a34SBarry Smith   }
1704f09c107SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_solution","Monitor solution graphically","TSMonitorLGSolution",&opt);CHKERRQ(ierr);
171b3603a34SBarry Smith   if (opt) {
1720b039ecaSBarry Smith     TSMonitorLGCtx ctx;
1733923b477SBarry Smith     PetscInt       howoften = 1;
174b3603a34SBarry Smith 
1750298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_solution","Monitor solution graphically","TSMonitorLGSolution",howoften,&howoften,NULL);CHKERRQ(ierr);
17622d28d08SBarry Smith     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,howoften,&ctx);CHKERRQ(ierr);
1774f09c107SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGSolution,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
178bdad233fSMatthew Knepley   }
1794f09c107SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_error","Monitor error graphically","TSMonitorLGError",&opt);CHKERRQ(ierr);
180ef20d060SBarry Smith   if (opt) {
1810b039ecaSBarry Smith     TSMonitorLGCtx ctx;
1823923b477SBarry Smith     PetscInt       howoften = 1;
183ef20d060SBarry Smith 
1840298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_error","Monitor error graphically","TSMonitorLGError",howoften,&howoften,NULL);CHKERRQ(ierr);
18522d28d08SBarry Smith     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,howoften,&ctx);CHKERRQ(ierr);
1864f09c107SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGError,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
187ef20d060SBarry Smith   }
188201da799SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_snes_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGSNESIterations",&opt);CHKERRQ(ierr);
189201da799SBarry Smith   if (opt) {
190201da799SBarry Smith     TSMonitorLGCtx ctx;
191201da799SBarry Smith     PetscInt       howoften = 1;
192201da799SBarry Smith 
1930298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_snes_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGSNESIterations",howoften,&howoften,NULL);CHKERRQ(ierr);
19422d28d08SBarry Smith     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,howoften,&ctx);CHKERRQ(ierr);
195201da799SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGSNESIterations,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
196201da799SBarry Smith   }
197201da799SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_ksp_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGKSPIterations",&opt);CHKERRQ(ierr);
198201da799SBarry Smith   if (opt) {
199201da799SBarry Smith     TSMonitorLGCtx ctx;
200201da799SBarry Smith     PetscInt       howoften = 1;
201201da799SBarry Smith 
2020298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_ksp_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGKSPIterations",howoften,&howoften,NULL);CHKERRQ(ierr);
20322d28d08SBarry Smith     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,howoften,&ctx);CHKERRQ(ierr);
204201da799SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGKSPIterations,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
205201da799SBarry Smith   }
2068189c53fSBarry Smith   ierr = PetscOptionsName("-ts_monitor_sp_eig","Monitor eigenvalues of linearized operator graphically","TSMonitorSPEig",&opt);CHKERRQ(ierr);
2078189c53fSBarry Smith   if (opt) {
2088189c53fSBarry Smith     TSMonitorSPEigCtx ctx;
2098189c53fSBarry Smith     PetscInt          howoften = 1;
2108189c53fSBarry Smith 
2110298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_sp_eig","Monitor eigenvalues of linearized operator graphically","TSMonitorSPEig",howoften,&howoften,NULL);CHKERRQ(ierr);
21222d28d08SBarry Smith     ierr = TSMonitorSPEigCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,howoften,&ctx);CHKERRQ(ierr);
2138189c53fSBarry Smith     ierr = TSMonitorSet(ts,TSMonitorSPEig,ctx,(PetscErrorCode (*)(void**))TSMonitorSPEigCtxDestroy);CHKERRQ(ierr);
2148189c53fSBarry Smith   }
215ef20d060SBarry Smith   opt  = PETSC_FALSE;
2160dcf80beSBarry Smith   ierr = PetscOptionsName("-ts_monitor_draw_solution","Monitor solution graphically","TSMonitorDrawSolution",&opt);CHKERRQ(ierr);
217a7cc72afSBarry Smith   if (opt) {
21883a4ac43SBarry Smith     TSMonitorDrawCtx ctx;
21983a4ac43SBarry Smith     PetscInt         howoften = 1;
220a80ad3e0SBarry Smith 
2210298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_draw_solution","Monitor solution graphically","TSMonitorDrawSolution",howoften,&howoften,NULL);CHKERRQ(ierr);
222ce94432eSBarry Smith     ierr = TSMonitorDrawCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,howoften,&ctx);CHKERRQ(ierr);
22383a4ac43SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDrawSolution,ctx,(PetscErrorCode (*)(void**))TSMonitorDrawCtxDestroy);CHKERRQ(ierr);
224bdad233fSMatthew Knepley   }
225fb1732b5SBarry Smith   opt  = PETSC_FALSE;
2262d5ee99bSBarry Smith   ierr = PetscOptionsName("-ts_monitor_draw_solution_phase","Monitor solution graphically","TSMonitorDrawSolutionPhase",&opt);CHKERRQ(ierr);
2272d5ee99bSBarry Smith   if (opt) {
2282d5ee99bSBarry Smith     TSMonitorDrawCtx ctx;
2292d5ee99bSBarry Smith     PetscReal        bounds[4];
2302d5ee99bSBarry Smith     PetscInt         n = 4;
2312d5ee99bSBarry Smith     PetscDraw        draw;
2322d5ee99bSBarry Smith 
2332d5ee99bSBarry Smith     ierr = PetscOptionsRealArray("-ts_monitor_draw_solution_phase","Monitor solution graphically","TSMonitorDrawSolutionPhase",bounds,&n,NULL);CHKERRQ(ierr);
2342d5ee99bSBarry Smith     if (n != 4) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Must provide bounding box of phase field");
2352d5ee99bSBarry Smith     ierr = TSMonitorDrawCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,1,&ctx);CHKERRQ(ierr);
2362d5ee99bSBarry Smith     ierr = PetscViewerDrawGetDraw(ctx->viewer,0,&draw);CHKERRQ(ierr);
2372d5ee99bSBarry Smith     ierr = PetscDrawClear(draw);CHKERRQ(ierr);
2384b363babSBarry Smith     ierr = PetscDrawAxisCreate(draw,&ctx->axis);CHKERRQ(ierr);
2394b363babSBarry Smith     ierr = PetscDrawAxisSetLimits(ctx->axis,bounds[0],bounds[2],bounds[1],bounds[3]);CHKERRQ(ierr);
240f54adfc0SBarry Smith     ierr = PetscDrawAxisSetLabels(ctx->axis,"Phase Diagram","Variable 1","Variable 2");CHKERRQ(ierr);
2414b363babSBarry Smith     ierr = PetscDrawAxisDraw(ctx->axis);CHKERRQ(ierr);
24207995780SPeter Brune     /* ierr = PetscDrawSetCoordinates(draw,bounds[0],bounds[1],bounds[2],bounds[3]);CHKERRQ(ierr); */
2432d5ee99bSBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDrawSolutionPhase,ctx,(PetscErrorCode (*)(void**))TSMonitorDrawCtxDestroy);CHKERRQ(ierr);
2442d5ee99bSBarry Smith   }
2452d5ee99bSBarry Smith   opt  = PETSC_FALSE;
2460dcf80beSBarry Smith   ierr = PetscOptionsName("-ts_monitor_draw_error","Monitor error graphically","TSMonitorDrawError",&opt);CHKERRQ(ierr);
2473a471f94SBarry Smith   if (opt) {
24883a4ac43SBarry Smith     TSMonitorDrawCtx ctx;
24983a4ac43SBarry Smith     PetscInt         howoften = 1;
2503a471f94SBarry Smith 
2510298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_draw_error","Monitor error graphically","TSMonitorDrawError",howoften,&howoften,NULL);CHKERRQ(ierr);
252ce94432eSBarry Smith     ierr = TSMonitorDrawCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,howoften,&ctx);CHKERRQ(ierr);
25383a4ac43SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDrawError,ctx,(PetscErrorCode (*)(void**))TSMonitorDrawCtxDestroy);CHKERRQ(ierr);
2543a471f94SBarry Smith   }
2553a471f94SBarry Smith   opt  = PETSC_FALSE;
25691b97e58SBarry Smith   ierr = PetscOptionsString("-ts_monitor_solution_binary","Save each solution to a binary file","TSMonitorSolutionBinary",0,monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr);
257fb1732b5SBarry Smith   if (flg) {
258fb1732b5SBarry Smith     PetscViewer ctx;
259fb1732b5SBarry Smith     if (monfilename[0]) {
260ce94432eSBarry Smith       ierr = PetscViewerBinaryOpen(PetscObjectComm((PetscObject)ts),monfilename,FILE_MODE_WRITE,&ctx);CHKERRQ(ierr);
261c2fbc07fSBarry Smith       ierr = TSMonitorSet(ts,TSMonitorSolutionBinary,ctx,(PetscErrorCode (*)(void**))PetscViewerDestroy);CHKERRQ(ierr);
262fb1732b5SBarry Smith     } else {
263ce94432eSBarry Smith       ctx = PETSC_VIEWER_BINARY_(PetscObjectComm((PetscObject)ts));
2640298fd71SBarry Smith       ierr = TSMonitorSet(ts,TSMonitorSolutionBinary,ctx,(PetscErrorCode (*)(void**))NULL);CHKERRQ(ierr);
265fb1732b5SBarry Smith     }
266fb1732b5SBarry Smith   }
267ed81e22dSJed Brown   opt  = PETSC_FALSE;
26891b97e58SBarry Smith   ierr = PetscOptionsString("-ts_monitor_solution_vtk","Save each time step to a binary file, use filename-%%03D.vts","TSMonitorSolutionVTK",0,monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr);
269ed81e22dSJed Brown   if (flg) {
270ed81e22dSJed Brown     const char *ptr,*ptr2;
271ed81e22dSJed Brown     char       *filetemplate;
272ce94432eSBarry Smith     if (!monfilename[0]) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"-ts_monitor_solution_vtk requires a file template, e.g. filename-%%03D.vts");
273ed81e22dSJed Brown     /* Do some cursory validation of the input. */
274ed81e22dSJed Brown     ierr = PetscStrstr(monfilename,"%",(char**)&ptr);CHKERRQ(ierr);
275ce94432eSBarry Smith     if (!ptr) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"-ts_monitor_solution_vtk requires a file template, e.g. filename-%%03D.vts");
276ed81e22dSJed Brown     for (ptr++; ptr && *ptr; ptr++) {
277ed81e22dSJed Brown       ierr = PetscStrchr("DdiouxX",*ptr,(char**)&ptr2);CHKERRQ(ierr);
278ce94432eSBarry Smith       if (!ptr2 && (*ptr < '0' || '9' < *ptr)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Invalid file template argument to -ts_monitor_solution_vtk, should look like filename-%%03D.vts");
279ed81e22dSJed Brown       if (ptr2) break;
280ed81e22dSJed Brown     }
281ed81e22dSJed Brown     ierr = PetscStrallocpy(monfilename,&filetemplate);CHKERRQ(ierr);
282ed81e22dSJed Brown     ierr = TSMonitorSet(ts,TSMonitorSolutionVTK,filetemplate,(PetscErrorCode (*)(void**))TSMonitorSolutionVTKDestroy);CHKERRQ(ierr);
283ed81e22dSJed Brown   }
284bdad233fSMatthew Knepley 
285d1212d36SBarry Smith   ierr = PetscOptionsString("-ts_monitor_dmda_ray","Display a ray of the solution","None","y=0",dir,16,&flg);CHKERRQ(ierr);
286d1212d36SBarry Smith   if (flg) {
287d1212d36SBarry Smith     TSMonitorDMDARayCtx *rayctx;
288d1212d36SBarry Smith     int                  ray = 0;
289d1212d36SBarry Smith     DMDADirection        ddir;
290d1212d36SBarry Smith     DM                   da;
291d1212d36SBarry Smith     PetscMPIInt          rank;
292d1212d36SBarry Smith 
293ce94432eSBarry Smith     if (dir[1] != '=') SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Unknown ray %s",dir);
294d1212d36SBarry Smith     if (dir[0] == 'x') ddir = DMDA_X;
295d1212d36SBarry Smith     else if (dir[0] == 'y') ddir = DMDA_Y;
296ce94432eSBarry Smith     else SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Unknown ray %s",dir);
297d1212d36SBarry Smith     sscanf(dir+2,"%d",&ray);
298d1212d36SBarry Smith 
299d1212d36SBarry Smith     ierr = PetscInfo2(((PetscObject)ts),"Displaying DMDA ray %c = %D\n",dir[0],ray);CHKERRQ(ierr);
300b00a9115SJed Brown     ierr = PetscNew(&rayctx);CHKERRQ(ierr);
301d1212d36SBarry Smith     ierr = TSGetDM(ts,&da);CHKERRQ(ierr);
302d1212d36SBarry Smith     ierr = DMDAGetRay(da,ddir,ray,&rayctx->ray,&rayctx->scatter);CHKERRQ(ierr);
303ce94432eSBarry Smith     ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)ts),&rank);CHKERRQ(ierr);
304d1212d36SBarry Smith     if (!rank) {
305d1212d36SBarry Smith       ierr = PetscViewerDrawOpen(PETSC_COMM_SELF,0,0,0,0,600,300,&rayctx->viewer);CHKERRQ(ierr);
306d1212d36SBarry Smith     }
30751b4a12fSMatthew G. Knepley     rayctx->lgctx = NULL;
308d1212d36SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDMDARay,rayctx,TSMonitorDMDARayDestroy);CHKERRQ(ierr);
309d1212d36SBarry Smith   }
31051b4a12fSMatthew G. Knepley   ierr = PetscOptionsString("-ts_monitor_lg_dmda_ray","Display a ray of the solution","None","x=0",dir,16,&flg);CHKERRQ(ierr);
31151b4a12fSMatthew G. Knepley   if (flg) {
31251b4a12fSMatthew G. Knepley     TSMonitorDMDARayCtx *rayctx;
31351b4a12fSMatthew G. Knepley     int                 ray = 0;
31451b4a12fSMatthew G. Knepley     DMDADirection       ddir;
31551b4a12fSMatthew G. Knepley     DM                  da;
31651b4a12fSMatthew G. Knepley     PetscInt            howoften = 1;
317d1212d36SBarry Smith 
31851b4a12fSMatthew G. Knepley     if (dir[1] != '=') SETERRQ1(PetscObjectComm((PetscObject) ts), PETSC_ERR_ARG_WRONG, "Malformed ray %s", dir);
31951b4a12fSMatthew G. Knepley     if      (dir[0] == 'x') ddir = DMDA_X;
32051b4a12fSMatthew G. Knepley     else if (dir[0] == 'y') ddir = DMDA_Y;
32151b4a12fSMatthew G. Knepley     else SETERRQ1(PetscObjectComm((PetscObject) ts), PETSC_ERR_ARG_WRONG, "Unknown ray direction %s", dir);
32251b4a12fSMatthew G. Knepley     sscanf(dir+2, "%d", &ray);
32351b4a12fSMatthew G. Knepley 
32451b4a12fSMatthew G. Knepley     ierr = PetscInfo2(((PetscObject) ts),"Displaying LG DMDA ray %c = %D\n", dir[0], ray);CHKERRQ(ierr);
325b00a9115SJed Brown     ierr = PetscNew(&rayctx);CHKERRQ(ierr);
32651b4a12fSMatthew G. Knepley     ierr = TSGetDM(ts, &da);CHKERRQ(ierr);
32751b4a12fSMatthew G. Knepley     ierr = DMDAGetRay(da, ddir, ray, &rayctx->ray, &rayctx->scatter);CHKERRQ(ierr);
32851b4a12fSMatthew G. Knepley     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,howoften,&rayctx->lgctx);CHKERRQ(ierr);
32951b4a12fSMatthew G. Knepley     ierr = TSMonitorSet(ts, TSMonitorLGDMDARay, rayctx, TSMonitorDMDARayDestroy);CHKERRQ(ierr);
33051b4a12fSMatthew G. Knepley   }
331a7a1495cSBarry Smith 
3327781c08eSBarry Smith   /*
3337781c08eSBarry Smith      This code is all wrong. One is creating objects inside the TSSetFromOptions() so if run with the options gui
3347781c08eSBarry Smith      will bleed memory. Also one is using a PetscOptionsBegin() inside a PetscOptionsBegin()
3357781c08eSBarry Smith   */
336552698daSJed Brown   ierr = TSGetAdapt(ts,&adapt);CHKERRQ(ierr);
337e55864a3SBarry Smith   ierr = TSAdaptSetFromOptions(PetscOptionsObject,adapt);CHKERRQ(ierr);
338d763cef2SBarry Smith 
339d763cef2SBarry Smith   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
340d763cef2SBarry Smith   if (ts->problem_type == TS_LINEAR) {ierr = SNESSetType(snes,SNESKSPONLY);CHKERRQ(ierr);}
341d763cef2SBarry Smith 
342bc952696SBarry Smith   if (ts->trajectory) {
343bc952696SBarry Smith     ierr = TSTrajectorySetFromOptions(ts->trajectory);CHKERRQ(ierr);
344bc952696SBarry Smith   }
345bc952696SBarry Smith 
346d763cef2SBarry Smith   /* Handle specific TS options */
347d763cef2SBarry Smith   if (ts->ops->setfromoptions) {
348e55864a3SBarry Smith     ierr = (*ts->ops->setfromoptions)(PetscOptionsObject,ts);CHKERRQ(ierr);
349d763cef2SBarry Smith   }
350d763cef2SBarry Smith 
351d763cef2SBarry Smith   /* process any options handlers added with PetscObjectAddOptionsHandler() */
352d763cef2SBarry Smith   ierr = PetscObjectProcessOptionsHandlers((PetscObject)ts);CHKERRQ(ierr);
353d763cef2SBarry Smith   ierr = PetscOptionsEnd();CHKERRQ(ierr);
354d763cef2SBarry Smith   PetscFunctionReturn(0);
355d763cef2SBarry Smith }
356d763cef2SBarry Smith 
357d763cef2SBarry Smith #undef __FUNCT__
358bc952696SBarry Smith #define __FUNCT__ "TSSetSaveTrajectory"
359d2daff3dSHong Zhang /*@
360bc952696SBarry Smith    TSSetSaveTrajectory - Causes the TS to save its solutions as it iterates forward in time in a TSTrajectory object
361d2daff3dSHong Zhang 
362d2daff3dSHong Zhang    Collective on TS
363d2daff3dSHong Zhang 
364d2daff3dSHong Zhang    Input Parameters:
365bc952696SBarry Smith .  ts - the TS context obtained from TSCreate()
366bc952696SBarry Smith 
367d2daff3dSHong Zhang 
368d2daff3dSHong Zhang    Level: intermediate
369d2daff3dSHong Zhang 
370bc952696SBarry Smith .seealso: TSGetTrajectory(), TSAdjointSolve()
371d2daff3dSHong Zhang 
372bc952696SBarry Smith .keywords: TS, set, checkpoint,
373d2daff3dSHong Zhang @*/
374bc952696SBarry Smith PetscErrorCode  TSSetSaveTrajectory(TS ts)
375d2daff3dSHong Zhang {
376bc952696SBarry Smith   PetscErrorCode ierr;
377bc952696SBarry Smith 
378d2daff3dSHong Zhang   PetscFunctionBegin;
379d2daff3dSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
380bc952696SBarry Smith   if (!ts->trajectory) {
381bc952696SBarry Smith     ierr = TSTrajectoryCreate(PetscObjectComm((PetscObject)ts),&ts->trajectory);CHKERRQ(ierr);
382bc952696SBarry Smith     /* should it set a default trajectory? */
383bc952696SBarry Smith   }
384d2daff3dSHong Zhang   PetscFunctionReturn(0);
385d2daff3dSHong Zhang }
386d2daff3dSHong Zhang 
387d2daff3dSHong Zhang #undef __FUNCT__
388a7a1495cSBarry Smith #define __FUNCT__ "TSComputeRHSJacobian"
389a7a1495cSBarry Smith /*@
390a7a1495cSBarry Smith    TSComputeRHSJacobian - Computes the Jacobian matrix that has been
391a7a1495cSBarry Smith       set with TSSetRHSJacobian().
392a7a1495cSBarry Smith 
393a7a1495cSBarry Smith    Collective on TS and Vec
394a7a1495cSBarry Smith 
395a7a1495cSBarry Smith    Input Parameters:
396316643e7SJed Brown +  ts - the TS context
397a7a1495cSBarry Smith .  t - current timestep
3980910c330SBarry Smith -  U - input vector
399a7a1495cSBarry Smith 
400a7a1495cSBarry Smith    Output Parameters:
401a7a1495cSBarry Smith +  A - Jacobian matrix
402a7a1495cSBarry Smith .  B - optional preconditioning matrix
403a7a1495cSBarry Smith -  flag - flag indicating matrix structure
404a7a1495cSBarry Smith 
405a7a1495cSBarry Smith    Notes:
406a7a1495cSBarry Smith    Most users should not need to explicitly call this routine, as it
407a7a1495cSBarry Smith    is used internally within the nonlinear solvers.
408a7a1495cSBarry Smith 
40994b7f48cSBarry Smith    See KSPSetOperators() for important information about setting the
410a7a1495cSBarry Smith    flag parameter.
411a7a1495cSBarry Smith 
412a7a1495cSBarry Smith    Level: developer
413a7a1495cSBarry Smith 
414a7a1495cSBarry Smith .keywords: SNES, compute, Jacobian, matrix
415a7a1495cSBarry Smith 
41694b7f48cSBarry Smith .seealso:  TSSetRHSJacobian(), KSPSetOperators()
417a7a1495cSBarry Smith @*/
418d1e9a80fSBarry Smith PetscErrorCode  TSComputeRHSJacobian(TS ts,PetscReal t,Vec U,Mat A,Mat B)
419a7a1495cSBarry Smith {
420dfbe8321SBarry Smith   PetscErrorCode ierr;
421270bf2e7SJed Brown   PetscObjectState Ustate;
42224989b8cSPeter Brune   DM             dm;
423942e3340SBarry Smith   DMTS           tsdm;
42424989b8cSPeter Brune   TSRHSJacobian  rhsjacobianfunc;
42524989b8cSPeter Brune   void           *ctx;
42624989b8cSPeter Brune   TSIJacobian    ijacobianfunc;
427a7a1495cSBarry Smith 
428a7a1495cSBarry Smith   PetscFunctionBegin;
4290700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4300910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
4310910c330SBarry Smith   PetscCheckSameComm(ts,1,U,3);
43224989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
433942e3340SBarry Smith   ierr = DMGetDMTS(dm,&tsdm);CHKERRQ(ierr);
43424989b8cSPeter Brune   ierr = DMTSGetRHSJacobian(dm,&rhsjacobianfunc,&ctx);CHKERRQ(ierr);
4350298fd71SBarry Smith   ierr = DMTSGetIJacobian(dm,&ijacobianfunc,NULL);CHKERRQ(ierr);
43659e4f3c8SBarry Smith   ierr = PetscObjectStateGet((PetscObject)U,&Ustate);CHKERRQ(ierr);
4370910c330SBarry Smith   if (ts->rhsjacobian.time == t && (ts->problem_type == TS_LINEAR || (ts->rhsjacobian.X == U && ts->rhsjacobian.Xstate == Ustate))) {
4380e4ef248SJed Brown     PetscFunctionReturn(0);
439f8ede8e7SJed Brown   }
440d90be118SSean Farley 
441ce94432eSBarry Smith   if (!rhsjacobianfunc && !ijacobianfunc) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSJacobian() and / or TSSetIJacobian()");
442d90be118SSean Farley 
443e1244c69SJed Brown   if (ts->rhsjacobian.reuse) {
44494ab13aaSBarry Smith     ierr = MatShift(A,-ts->rhsjacobian.shift);CHKERRQ(ierr);
44594ab13aaSBarry Smith     ierr = MatScale(A,1./ts->rhsjacobian.scale);CHKERRQ(ierr);
44694ab13aaSBarry Smith     if (A != B) {
44794ab13aaSBarry Smith       ierr = MatShift(B,-ts->rhsjacobian.shift);CHKERRQ(ierr);
44894ab13aaSBarry Smith       ierr = MatScale(B,1./ts->rhsjacobian.scale);CHKERRQ(ierr);
449e1244c69SJed Brown     }
450e1244c69SJed Brown     ts->rhsjacobian.shift = 0;
451e1244c69SJed Brown     ts->rhsjacobian.scale = 1.;
452e1244c69SJed Brown   }
453e1244c69SJed Brown 
45424989b8cSPeter Brune   if (rhsjacobianfunc) {
45594ab13aaSBarry Smith     ierr = PetscLogEventBegin(TS_JacobianEval,ts,U,A,B);CHKERRQ(ierr);
456a7a1495cSBarry Smith     PetscStackPush("TS user Jacobian function");
457d1e9a80fSBarry Smith     ierr = (*rhsjacobianfunc)(ts,t,U,A,B,ctx);CHKERRQ(ierr);
458a7a1495cSBarry Smith     PetscStackPop;
45994ab13aaSBarry Smith     ierr = PetscLogEventEnd(TS_JacobianEval,ts,U,A,B);CHKERRQ(ierr);
460a7a1495cSBarry Smith     /* make sure user returned a correct Jacobian and preconditioner */
46194ab13aaSBarry Smith     PetscValidHeaderSpecific(A,MAT_CLASSID,4);
46294ab13aaSBarry Smith     PetscValidHeaderSpecific(B,MAT_CLASSID,5);
463ef66eb69SBarry Smith   } else {
46494ab13aaSBarry Smith     ierr = MatZeroEntries(A);CHKERRQ(ierr);
46594ab13aaSBarry Smith     if (A != B) {ierr = MatZeroEntries(B);CHKERRQ(ierr);}
466ef66eb69SBarry Smith   }
4670e4ef248SJed Brown   ts->rhsjacobian.time       = t;
4680910c330SBarry Smith   ts->rhsjacobian.X          = U;
46959e4f3c8SBarry Smith   ierr                       = PetscObjectStateGet((PetscObject)U,&ts->rhsjacobian.Xstate);CHKERRQ(ierr);
470a7a1495cSBarry Smith   PetscFunctionReturn(0);
471a7a1495cSBarry Smith }
472a7a1495cSBarry Smith 
4734a2ae208SSatish Balay #undef __FUNCT__
4744a2ae208SSatish Balay #define __FUNCT__ "TSComputeRHSFunction"
475316643e7SJed Brown /*@
476d763cef2SBarry Smith    TSComputeRHSFunction - Evaluates the right-hand-side function.
477d763cef2SBarry Smith 
478316643e7SJed Brown    Collective on TS and Vec
479316643e7SJed Brown 
480316643e7SJed Brown    Input Parameters:
481316643e7SJed Brown +  ts - the TS context
482316643e7SJed Brown .  t - current time
4830910c330SBarry Smith -  U - state vector
484316643e7SJed Brown 
485316643e7SJed Brown    Output Parameter:
486316643e7SJed Brown .  y - right hand side
487316643e7SJed Brown 
488316643e7SJed Brown    Note:
489316643e7SJed Brown    Most users should not need to explicitly call this routine, as it
490316643e7SJed Brown    is used internally within the nonlinear solvers.
491316643e7SJed Brown 
492316643e7SJed Brown    Level: developer
493316643e7SJed Brown 
494316643e7SJed Brown .keywords: TS, compute
495316643e7SJed Brown 
496316643e7SJed Brown .seealso: TSSetRHSFunction(), TSComputeIFunction()
497316643e7SJed Brown @*/
4980910c330SBarry Smith PetscErrorCode TSComputeRHSFunction(TS ts,PetscReal t,Vec U,Vec y)
499d763cef2SBarry Smith {
500dfbe8321SBarry Smith   PetscErrorCode ierr;
50124989b8cSPeter Brune   TSRHSFunction  rhsfunction;
50224989b8cSPeter Brune   TSIFunction    ifunction;
50324989b8cSPeter Brune   void           *ctx;
50424989b8cSPeter Brune   DM             dm;
50524989b8cSPeter Brune 
506d763cef2SBarry Smith   PetscFunctionBegin;
5070700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5080910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
5090700a824SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,4);
51024989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
51124989b8cSPeter Brune   ierr = DMTSGetRHSFunction(dm,&rhsfunction,&ctx);CHKERRQ(ierr);
5120298fd71SBarry Smith   ierr = DMTSGetIFunction(dm,&ifunction,NULL);CHKERRQ(ierr);
513d763cef2SBarry Smith 
514ce94432eSBarry Smith   if (!rhsfunction && !ifunction) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSFunction() and / or TSSetIFunction()");
515d763cef2SBarry Smith 
5160910c330SBarry Smith   ierr = PetscLogEventBegin(TS_FunctionEval,ts,U,y,0);CHKERRQ(ierr);
51724989b8cSPeter Brune   if (rhsfunction) {
518d763cef2SBarry Smith     PetscStackPush("TS user right-hand-side function");
5190910c330SBarry Smith     ierr = (*rhsfunction)(ts,t,U,y,ctx);CHKERRQ(ierr);
520d763cef2SBarry Smith     PetscStackPop;
521214bc6a2SJed Brown   } else {
522214bc6a2SJed Brown     ierr = VecZeroEntries(y);CHKERRQ(ierr);
523b2cd27e8SJed Brown   }
52444a41b28SSean Farley 
5250910c330SBarry Smith   ierr = PetscLogEventEnd(TS_FunctionEval,ts,U,y,0);CHKERRQ(ierr);
526d763cef2SBarry Smith   PetscFunctionReturn(0);
527d763cef2SBarry Smith }
528d763cef2SBarry Smith 
5294a2ae208SSatish Balay #undef __FUNCT__
530ef20d060SBarry Smith #define __FUNCT__ "TSComputeSolutionFunction"
531ef20d060SBarry Smith /*@
532ef20d060SBarry Smith    TSComputeSolutionFunction - Evaluates the solution function.
533ef20d060SBarry Smith 
534ef20d060SBarry Smith    Collective on TS and Vec
535ef20d060SBarry Smith 
536ef20d060SBarry Smith    Input Parameters:
537ef20d060SBarry Smith +  ts - the TS context
538ef20d060SBarry Smith -  t - current time
539ef20d060SBarry Smith 
540ef20d060SBarry Smith    Output Parameter:
5410910c330SBarry Smith .  U - the solution
542ef20d060SBarry Smith 
543ef20d060SBarry Smith    Note:
544ef20d060SBarry Smith    Most users should not need to explicitly call this routine, as it
545ef20d060SBarry Smith    is used internally within the nonlinear solvers.
546ef20d060SBarry Smith 
547ef20d060SBarry Smith    Level: developer
548ef20d060SBarry Smith 
549ef20d060SBarry Smith .keywords: TS, compute
550ef20d060SBarry Smith 
551abd5a294SJed Brown .seealso: TSSetSolutionFunction(), TSSetRHSFunction(), TSComputeIFunction()
552ef20d060SBarry Smith @*/
5530910c330SBarry Smith PetscErrorCode TSComputeSolutionFunction(TS ts,PetscReal t,Vec U)
554ef20d060SBarry Smith {
555ef20d060SBarry Smith   PetscErrorCode     ierr;
556ef20d060SBarry Smith   TSSolutionFunction solutionfunction;
557ef20d060SBarry Smith   void               *ctx;
558ef20d060SBarry Smith   DM                 dm;
559ef20d060SBarry Smith 
560ef20d060SBarry Smith   PetscFunctionBegin;
561ef20d060SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5620910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
563ef20d060SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
564ef20d060SBarry Smith   ierr = DMTSGetSolutionFunction(dm,&solutionfunction,&ctx);CHKERRQ(ierr);
565ef20d060SBarry Smith 
566ef20d060SBarry Smith   if (solutionfunction) {
5679b7cd975SBarry Smith     PetscStackPush("TS user solution function");
5680910c330SBarry Smith     ierr = (*solutionfunction)(ts,t,U,ctx);CHKERRQ(ierr);
569ef20d060SBarry Smith     PetscStackPop;
570ef20d060SBarry Smith   }
571ef20d060SBarry Smith   PetscFunctionReturn(0);
572ef20d060SBarry Smith }
5739b7cd975SBarry Smith #undef __FUNCT__
5749b7cd975SBarry Smith #define __FUNCT__ "TSComputeForcingFunction"
5759b7cd975SBarry Smith /*@
5769b7cd975SBarry Smith    TSComputeForcingFunction - Evaluates the forcing function.
5779b7cd975SBarry Smith 
5789b7cd975SBarry Smith    Collective on TS and Vec
5799b7cd975SBarry Smith 
5809b7cd975SBarry Smith    Input Parameters:
5819b7cd975SBarry Smith +  ts - the TS context
5829b7cd975SBarry Smith -  t - current time
5839b7cd975SBarry Smith 
5849b7cd975SBarry Smith    Output Parameter:
5859b7cd975SBarry Smith .  U - the function value
5869b7cd975SBarry Smith 
5879b7cd975SBarry Smith    Note:
5889b7cd975SBarry Smith    Most users should not need to explicitly call this routine, as it
5899b7cd975SBarry Smith    is used internally within the nonlinear solvers.
5909b7cd975SBarry Smith 
5919b7cd975SBarry Smith    Level: developer
5929b7cd975SBarry Smith 
5939b7cd975SBarry Smith .keywords: TS, compute
5949b7cd975SBarry Smith 
5959b7cd975SBarry Smith .seealso: TSSetSolutionFunction(), TSSetRHSFunction(), TSComputeIFunction()
5969b7cd975SBarry Smith @*/
5979b7cd975SBarry Smith PetscErrorCode TSComputeForcingFunction(TS ts,PetscReal t,Vec U)
5989b7cd975SBarry Smith {
5999b7cd975SBarry Smith   PetscErrorCode     ierr, (*forcing)(TS,PetscReal,Vec,void*);
6009b7cd975SBarry Smith   void               *ctx;
6019b7cd975SBarry Smith   DM                 dm;
6029b7cd975SBarry Smith 
6039b7cd975SBarry Smith   PetscFunctionBegin;
6049b7cd975SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
6059b7cd975SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
6069b7cd975SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
6079b7cd975SBarry Smith   ierr = DMTSGetForcingFunction(dm,&forcing,&ctx);CHKERRQ(ierr);
6089b7cd975SBarry Smith 
6099b7cd975SBarry Smith   if (forcing) {
6109b7cd975SBarry Smith     PetscStackPush("TS user forcing function");
6119b7cd975SBarry Smith     ierr = (*forcing)(ts,t,U,ctx);CHKERRQ(ierr);
6129b7cd975SBarry Smith     PetscStackPop;
6139b7cd975SBarry Smith   }
6149b7cd975SBarry Smith   PetscFunctionReturn(0);
6159b7cd975SBarry Smith }
616ef20d060SBarry Smith 
617ef20d060SBarry Smith #undef __FUNCT__
618214bc6a2SJed Brown #define __FUNCT__ "TSGetRHSVec_Private"
619214bc6a2SJed Brown static PetscErrorCode TSGetRHSVec_Private(TS ts,Vec *Frhs)
620214bc6a2SJed Brown {
6212dd45cf8SJed Brown   Vec            F;
622214bc6a2SJed Brown   PetscErrorCode ierr;
623214bc6a2SJed Brown 
624214bc6a2SJed Brown   PetscFunctionBegin;
6250298fd71SBarry Smith   *Frhs = NULL;
6260298fd71SBarry Smith   ierr  = TSGetIFunction(ts,&F,NULL,NULL);CHKERRQ(ierr);
627214bc6a2SJed Brown   if (!ts->Frhs) {
6282dd45cf8SJed Brown     ierr = VecDuplicate(F,&ts->Frhs);CHKERRQ(ierr);
629214bc6a2SJed Brown   }
630214bc6a2SJed Brown   *Frhs = ts->Frhs;
631214bc6a2SJed Brown   PetscFunctionReturn(0);
632214bc6a2SJed Brown }
633214bc6a2SJed Brown 
634214bc6a2SJed Brown #undef __FUNCT__
635214bc6a2SJed Brown #define __FUNCT__ "TSGetRHSMats_Private"
636214bc6a2SJed Brown static PetscErrorCode TSGetRHSMats_Private(TS ts,Mat *Arhs,Mat *Brhs)
637214bc6a2SJed Brown {
638214bc6a2SJed Brown   Mat            A,B;
6392dd45cf8SJed Brown   PetscErrorCode ierr;
640214bc6a2SJed Brown 
641214bc6a2SJed Brown   PetscFunctionBegin;
642c0cd0301SJed Brown   if (Arhs) *Arhs = NULL;
643c0cd0301SJed Brown   if (Brhs) *Brhs = NULL;
6440298fd71SBarry Smith   ierr = TSGetIJacobian(ts,&A,&B,NULL,NULL);CHKERRQ(ierr);
645214bc6a2SJed Brown   if (Arhs) {
646214bc6a2SJed Brown     if (!ts->Arhs) {
647214bc6a2SJed Brown       ierr = MatDuplicate(A,MAT_DO_NOT_COPY_VALUES,&ts->Arhs);CHKERRQ(ierr);
648214bc6a2SJed Brown     }
649214bc6a2SJed Brown     *Arhs = ts->Arhs;
650214bc6a2SJed Brown   }
651214bc6a2SJed Brown   if (Brhs) {
652214bc6a2SJed Brown     if (!ts->Brhs) {
653bdb70873SJed Brown       if (A != B) {
654214bc6a2SJed Brown         ierr = MatDuplicate(B,MAT_DO_NOT_COPY_VALUES,&ts->Brhs);CHKERRQ(ierr);
655bdb70873SJed Brown       } else {
656bdb70873SJed Brown         ts->Brhs = ts->Arhs;
657bdb70873SJed Brown         ierr = PetscObjectReference((PetscObject)ts->Arhs);CHKERRQ(ierr);
658bdb70873SJed Brown       }
659214bc6a2SJed Brown     }
660214bc6a2SJed Brown     *Brhs = ts->Brhs;
661214bc6a2SJed Brown   }
662214bc6a2SJed Brown   PetscFunctionReturn(0);
663214bc6a2SJed Brown }
664214bc6a2SJed Brown 
665214bc6a2SJed Brown #undef __FUNCT__
666316643e7SJed Brown #define __FUNCT__ "TSComputeIFunction"
667316643e7SJed Brown /*@
6680910c330SBarry Smith    TSComputeIFunction - Evaluates the DAE residual written in implicit form F(t,U,Udot)=0
669316643e7SJed Brown 
670316643e7SJed Brown    Collective on TS and Vec
671316643e7SJed Brown 
672316643e7SJed Brown    Input Parameters:
673316643e7SJed Brown +  ts - the TS context
674316643e7SJed Brown .  t - current time
6750910c330SBarry Smith .  U - state vector
6760910c330SBarry Smith .  Udot - time derivative of state vector
677214bc6a2SJed Brown -  imex - flag indicates if the method is IMEX so that the RHSFunction should be kept separate
678316643e7SJed Brown 
679316643e7SJed Brown    Output Parameter:
680316643e7SJed Brown .  Y - right hand side
681316643e7SJed Brown 
682316643e7SJed Brown    Note:
683316643e7SJed Brown    Most users should not need to explicitly call this routine, as it
684316643e7SJed Brown    is used internally within the nonlinear solvers.
685316643e7SJed Brown 
686316643e7SJed Brown    If the user did did not write their equations in implicit form, this
687316643e7SJed Brown    function recasts them in implicit form.
688316643e7SJed Brown 
689316643e7SJed Brown    Level: developer
690316643e7SJed Brown 
691316643e7SJed Brown .keywords: TS, compute
692316643e7SJed Brown 
693316643e7SJed Brown .seealso: TSSetIFunction(), TSComputeRHSFunction()
694316643e7SJed Brown @*/
6950910c330SBarry Smith PetscErrorCode TSComputeIFunction(TS ts,PetscReal t,Vec U,Vec Udot,Vec Y,PetscBool imex)
696316643e7SJed Brown {
697316643e7SJed Brown   PetscErrorCode ierr;
69824989b8cSPeter Brune   TSIFunction    ifunction;
69924989b8cSPeter Brune   TSRHSFunction  rhsfunction;
70024989b8cSPeter Brune   void           *ctx;
70124989b8cSPeter Brune   DM             dm;
702316643e7SJed Brown 
703316643e7SJed Brown   PetscFunctionBegin;
7040700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
7050910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
7060910c330SBarry Smith   PetscValidHeaderSpecific(Udot,VEC_CLASSID,4);
7070700a824SBarry Smith   PetscValidHeaderSpecific(Y,VEC_CLASSID,5);
708316643e7SJed Brown 
70924989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
71024989b8cSPeter Brune   ierr = DMTSGetIFunction(dm,&ifunction,&ctx);CHKERRQ(ierr);
7110298fd71SBarry Smith   ierr = DMTSGetRHSFunction(dm,&rhsfunction,NULL);CHKERRQ(ierr);
71224989b8cSPeter Brune 
713ce94432eSBarry Smith   if (!rhsfunction && !ifunction) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSFunction() and / or TSSetIFunction()");
714d90be118SSean Farley 
7150910c330SBarry Smith   ierr = PetscLogEventBegin(TS_FunctionEval,ts,U,Udot,Y);CHKERRQ(ierr);
71624989b8cSPeter Brune   if (ifunction) {
717316643e7SJed Brown     PetscStackPush("TS user implicit function");
7180910c330SBarry Smith     ierr = (*ifunction)(ts,t,U,Udot,Y,ctx);CHKERRQ(ierr);
719316643e7SJed Brown     PetscStackPop;
720214bc6a2SJed Brown   }
721214bc6a2SJed Brown   if (imex) {
72224989b8cSPeter Brune     if (!ifunction) {
7230910c330SBarry Smith       ierr = VecCopy(Udot,Y);CHKERRQ(ierr);
7242dd45cf8SJed Brown     }
72524989b8cSPeter Brune   } else if (rhsfunction) {
72624989b8cSPeter Brune     if (ifunction) {
727214bc6a2SJed Brown       Vec Frhs;
728214bc6a2SJed Brown       ierr = TSGetRHSVec_Private(ts,&Frhs);CHKERRQ(ierr);
7290910c330SBarry Smith       ierr = TSComputeRHSFunction(ts,t,U,Frhs);CHKERRQ(ierr);
730214bc6a2SJed Brown       ierr = VecAXPY(Y,-1,Frhs);CHKERRQ(ierr);
7312dd45cf8SJed Brown     } else {
7320910c330SBarry Smith       ierr = TSComputeRHSFunction(ts,t,U,Y);CHKERRQ(ierr);
7330910c330SBarry Smith       ierr = VecAYPX(Y,-1,Udot);CHKERRQ(ierr);
734316643e7SJed Brown     }
7354a6899ffSJed Brown   }
7360910c330SBarry Smith   ierr = PetscLogEventEnd(TS_FunctionEval,ts,U,Udot,Y);CHKERRQ(ierr);
737316643e7SJed Brown   PetscFunctionReturn(0);
738316643e7SJed Brown }
739316643e7SJed Brown 
740316643e7SJed Brown #undef __FUNCT__
741316643e7SJed Brown #define __FUNCT__ "TSComputeIJacobian"
742316643e7SJed Brown /*@
743316643e7SJed Brown    TSComputeIJacobian - Evaluates the Jacobian of the DAE
744316643e7SJed Brown 
745316643e7SJed Brown    Collective on TS and Vec
746316643e7SJed Brown 
747316643e7SJed Brown    Input
748316643e7SJed Brown       Input Parameters:
749316643e7SJed Brown +  ts - the TS context
750316643e7SJed Brown .  t - current timestep
7510910c330SBarry Smith .  U - state vector
7520910c330SBarry Smith .  Udot - time derivative of state vector
753214bc6a2SJed Brown .  shift - shift to apply, see note below
754214bc6a2SJed Brown -  imex - flag indicates if the method is IMEX so that the RHSJacobian should be kept separate
755316643e7SJed Brown 
756316643e7SJed Brown    Output Parameters:
757316643e7SJed Brown +  A - Jacobian matrix
758316643e7SJed Brown .  B - optional preconditioning matrix
759316643e7SJed Brown -  flag - flag indicating matrix structure
760316643e7SJed Brown 
761316643e7SJed Brown    Notes:
7620910c330SBarry Smith    If F(t,U,Udot)=0 is the DAE, the required Jacobian is
763316643e7SJed Brown 
7640910c330SBarry Smith    dF/dU + shift*dF/dUdot
765316643e7SJed Brown 
766316643e7SJed Brown    Most users should not need to explicitly call this routine, as it
767316643e7SJed Brown    is used internally within the nonlinear solvers.
768316643e7SJed Brown 
769316643e7SJed Brown    Level: developer
770316643e7SJed Brown 
771316643e7SJed Brown .keywords: TS, compute, Jacobian, matrix
772316643e7SJed Brown 
773316643e7SJed Brown .seealso:  TSSetIJacobian()
77463495f91SJed Brown @*/
775d1e9a80fSBarry Smith PetscErrorCode TSComputeIJacobian(TS ts,PetscReal t,Vec U,Vec Udot,PetscReal shift,Mat A,Mat B,PetscBool imex)
776316643e7SJed Brown {
777316643e7SJed Brown   PetscErrorCode ierr;
77824989b8cSPeter Brune   TSIJacobian    ijacobian;
77924989b8cSPeter Brune   TSRHSJacobian  rhsjacobian;
78024989b8cSPeter Brune   DM             dm;
78124989b8cSPeter Brune   void           *ctx;
782316643e7SJed Brown 
783316643e7SJed Brown   PetscFunctionBegin;
7840700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
7850910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
7860910c330SBarry Smith   PetscValidHeaderSpecific(Udot,VEC_CLASSID,4);
787316643e7SJed Brown   PetscValidPointer(A,6);
78894ab13aaSBarry Smith   PetscValidHeaderSpecific(A,MAT_CLASSID,6);
789316643e7SJed Brown   PetscValidPointer(B,7);
79094ab13aaSBarry Smith   PetscValidHeaderSpecific(B,MAT_CLASSID,7);
79124989b8cSPeter Brune 
79224989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
79324989b8cSPeter Brune   ierr = DMTSGetIJacobian(dm,&ijacobian,&ctx);CHKERRQ(ierr);
7940298fd71SBarry Smith   ierr = DMTSGetRHSJacobian(dm,&rhsjacobian,NULL);CHKERRQ(ierr);
79524989b8cSPeter Brune 
796ce94432eSBarry Smith   if (!rhsjacobian && !ijacobian) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSJacobian() and / or TSSetIJacobian()");
797316643e7SJed Brown 
79894ab13aaSBarry Smith   ierr = PetscLogEventBegin(TS_JacobianEval,ts,U,A,B);CHKERRQ(ierr);
79924989b8cSPeter Brune   if (ijacobian) {
800316643e7SJed Brown     PetscStackPush("TS user implicit Jacobian");
801d1e9a80fSBarry Smith     ierr = (*ijacobian)(ts,t,U,Udot,shift,A,B,ctx);CHKERRQ(ierr);
802316643e7SJed Brown     PetscStackPop;
803214bc6a2SJed Brown     /* make sure user returned a correct Jacobian and preconditioner */
80494ab13aaSBarry Smith     PetscValidHeaderSpecific(A,MAT_CLASSID,4);
80594ab13aaSBarry Smith     PetscValidHeaderSpecific(B,MAT_CLASSID,5);
8064a6899ffSJed Brown   }
807214bc6a2SJed Brown   if (imex) {
808b5abc632SBarry Smith     if (!ijacobian) {  /* system was written as Udot = G(t,U) */
80994ab13aaSBarry Smith       ierr = MatZeroEntries(A);CHKERRQ(ierr);
81094ab13aaSBarry Smith       ierr = MatShift(A,shift);CHKERRQ(ierr);
81194ab13aaSBarry Smith       if (A != B) {
81294ab13aaSBarry Smith         ierr = MatZeroEntries(B);CHKERRQ(ierr);
81394ab13aaSBarry Smith         ierr = MatShift(B,shift);CHKERRQ(ierr);
814214bc6a2SJed Brown       }
815214bc6a2SJed Brown     }
816214bc6a2SJed Brown   } else {
817e1244c69SJed Brown     Mat Arhs = NULL,Brhs = NULL;
818e1244c69SJed Brown     if (rhsjacobian) {
819bd373395SBarry Smith       if (ijacobian) {
820e1244c69SJed Brown         ierr = TSGetRHSMats_Private(ts,&Arhs,&Brhs);CHKERRQ(ierr);
821bd373395SBarry Smith       } else {
822bd373395SBarry Smith         ierr = TSGetIJacobian(ts,&Arhs,&Brhs,NULL,NULL);CHKERRQ(ierr);
823e1244c69SJed Brown       }
824d1e9a80fSBarry Smith       ierr = TSComputeRHSJacobian(ts,t,U,Arhs,Brhs);CHKERRQ(ierr);
825e1244c69SJed Brown     }
82694ab13aaSBarry Smith     if (Arhs == A) {           /* No IJacobian, so we only have the RHS matrix */
827e1244c69SJed Brown       ts->rhsjacobian.scale = -1;
828e1244c69SJed Brown       ts->rhsjacobian.shift = shift;
82994ab13aaSBarry Smith       ierr = MatScale(A,-1);CHKERRQ(ierr);
83094ab13aaSBarry Smith       ierr = MatShift(A,shift);CHKERRQ(ierr);
83194ab13aaSBarry Smith       if (A != B) {
83294ab13aaSBarry Smith         ierr = MatScale(B,-1);CHKERRQ(ierr);
83394ab13aaSBarry Smith         ierr = MatShift(B,shift);CHKERRQ(ierr);
834316643e7SJed Brown       }
835e1244c69SJed Brown     } else if (Arhs) {          /* Both IJacobian and RHSJacobian */
836e1244c69SJed Brown       MatStructure axpy = DIFFERENT_NONZERO_PATTERN;
837e1244c69SJed Brown       if (!ijacobian) {         /* No IJacobian provided, but we have a separate RHS matrix */
83894ab13aaSBarry Smith         ierr = MatZeroEntries(A);CHKERRQ(ierr);
83994ab13aaSBarry Smith         ierr = MatShift(A,shift);CHKERRQ(ierr);
84094ab13aaSBarry Smith         if (A != B) {
84194ab13aaSBarry Smith           ierr = MatZeroEntries(B);CHKERRQ(ierr);
84294ab13aaSBarry Smith           ierr = MatShift(B,shift);CHKERRQ(ierr);
843e1244c69SJed Brown         }
844e1244c69SJed Brown       }
84594ab13aaSBarry Smith       ierr = MatAXPY(A,-1,Arhs,axpy);CHKERRQ(ierr);
84694ab13aaSBarry Smith       if (A != B) {
84794ab13aaSBarry Smith         ierr = MatAXPY(B,-1,Brhs,axpy);CHKERRQ(ierr);
848214bc6a2SJed Brown       }
849316643e7SJed Brown     }
850316643e7SJed Brown   }
85194ab13aaSBarry Smith   ierr = PetscLogEventEnd(TS_JacobianEval,ts,U,A,B);CHKERRQ(ierr);
852316643e7SJed Brown   PetscFunctionReturn(0);
853316643e7SJed Brown }
854316643e7SJed Brown 
855316643e7SJed Brown #undef __FUNCT__
8564a2ae208SSatish Balay #define __FUNCT__ "TSSetRHSFunction"
857d763cef2SBarry Smith /*@C
858d763cef2SBarry Smith     TSSetRHSFunction - Sets the routine for evaluating the function,
859b5abc632SBarry Smith     where U_t = G(t,u).
860d763cef2SBarry Smith 
8613f9fe445SBarry Smith     Logically Collective on TS
862d763cef2SBarry Smith 
863d763cef2SBarry Smith     Input Parameters:
864d763cef2SBarry Smith +   ts - the TS context obtained from TSCreate()
8650298fd71SBarry Smith .   r - vector to put the computed right hand side (or NULL to have it created)
866d763cef2SBarry Smith .   f - routine for evaluating the right-hand-side function
867d763cef2SBarry Smith -   ctx - [optional] user-defined context for private data for the
8680298fd71SBarry Smith           function evaluation routine (may be NULL)
869d763cef2SBarry Smith 
870d763cef2SBarry Smith     Calling sequence of func:
87187828ca2SBarry Smith $     func (TS ts,PetscReal t,Vec u,Vec F,void *ctx);
872d763cef2SBarry Smith 
873d763cef2SBarry Smith +   t - current timestep
874d763cef2SBarry Smith .   u - input vector
875d763cef2SBarry Smith .   F - function vector
876d763cef2SBarry Smith -   ctx - [optional] user-defined function context
877d763cef2SBarry Smith 
878d763cef2SBarry Smith     Level: beginner
879d763cef2SBarry Smith 
880d763cef2SBarry Smith .keywords: TS, timestep, set, right-hand-side, function
881d763cef2SBarry Smith 
882ae8867d6SBarry Smith .seealso: TSSetRHSJacobian(), TSSetIJacobian(), TSSetIFunction()
883d763cef2SBarry Smith @*/
884089b2837SJed Brown PetscErrorCode  TSSetRHSFunction(TS ts,Vec r,PetscErrorCode (*f)(TS,PetscReal,Vec,Vec,void*),void *ctx)
885d763cef2SBarry Smith {
886089b2837SJed Brown   PetscErrorCode ierr;
887089b2837SJed Brown   SNES           snes;
8880298fd71SBarry Smith   Vec            ralloc = NULL;
88924989b8cSPeter Brune   DM             dm;
890d763cef2SBarry Smith 
891089b2837SJed Brown   PetscFunctionBegin;
8920700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
893ca94891dSJed Brown   if (r) PetscValidHeaderSpecific(r,VEC_CLASSID,2);
89424989b8cSPeter Brune 
89524989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
89624989b8cSPeter Brune   ierr = DMTSSetRHSFunction(dm,f,ctx);CHKERRQ(ierr);
897089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
898e856ceecSJed Brown   if (!r && !ts->dm && ts->vec_sol) {
899e856ceecSJed Brown     ierr = VecDuplicate(ts->vec_sol,&ralloc);CHKERRQ(ierr);
900e856ceecSJed Brown     r    = ralloc;
901e856ceecSJed Brown   }
902089b2837SJed Brown   ierr = SNESSetFunction(snes,r,SNESTSFormFunction,ts);CHKERRQ(ierr);
903e856ceecSJed Brown   ierr = VecDestroy(&ralloc);CHKERRQ(ierr);
904d763cef2SBarry Smith   PetscFunctionReturn(0);
905d763cef2SBarry Smith }
906d763cef2SBarry Smith 
9074a2ae208SSatish Balay #undef __FUNCT__
908ef20d060SBarry Smith #define __FUNCT__ "TSSetSolutionFunction"
909ef20d060SBarry Smith /*@C
910abd5a294SJed Brown     TSSetSolutionFunction - Provide a function that computes the solution of the ODE or DAE
911ef20d060SBarry Smith 
912ef20d060SBarry Smith     Logically Collective on TS
913ef20d060SBarry Smith 
914ef20d060SBarry Smith     Input Parameters:
915ef20d060SBarry Smith +   ts - the TS context obtained from TSCreate()
916ef20d060SBarry Smith .   f - routine for evaluating the solution
917ef20d060SBarry Smith -   ctx - [optional] user-defined context for private data for the
9180298fd71SBarry Smith           function evaluation routine (may be NULL)
919ef20d060SBarry Smith 
920ef20d060SBarry Smith     Calling sequence of func:
921ef20d060SBarry Smith $     func (TS ts,PetscReal t,Vec u,void *ctx);
922ef20d060SBarry Smith 
923ef20d060SBarry Smith +   t - current timestep
924ef20d060SBarry Smith .   u - output vector
925ef20d060SBarry Smith -   ctx - [optional] user-defined function context
926ef20d060SBarry Smith 
927abd5a294SJed Brown     Notes:
928abd5a294SJed Brown     This routine is used for testing accuracy of time integration schemes when you already know the solution.
929abd5a294SJed Brown     If analytic solutions are not known for your system, consider using the Method of Manufactured Solutions to
930abd5a294SJed Brown     create closed-form solutions with non-physical forcing terms.
931abd5a294SJed Brown 
9324f09c107SBarry Smith     For low-dimensional problems solved in serial, such as small discrete systems, TSMonitorLGError() can be used to monitor the error history.
933abd5a294SJed Brown 
934ef20d060SBarry Smith     Level: beginner
935ef20d060SBarry Smith 
936ef20d060SBarry Smith .keywords: TS, timestep, set, right-hand-side, function
937ef20d060SBarry Smith 
9389b7cd975SBarry Smith .seealso: TSSetRHSJacobian(), TSSetIJacobian(), TSComputeSolutionFunction(), TSSetForcingFunction()
939ef20d060SBarry Smith @*/
940ef20d060SBarry Smith PetscErrorCode  TSSetSolutionFunction(TS ts,PetscErrorCode (*f)(TS,PetscReal,Vec,void*),void *ctx)
941ef20d060SBarry Smith {
942ef20d060SBarry Smith   PetscErrorCode ierr;
943ef20d060SBarry Smith   DM             dm;
944ef20d060SBarry Smith 
945ef20d060SBarry Smith   PetscFunctionBegin;
946ef20d060SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
947ef20d060SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
948ef20d060SBarry Smith   ierr = DMTSSetSolutionFunction(dm,f,ctx);CHKERRQ(ierr);
949ef20d060SBarry Smith   PetscFunctionReturn(0);
950ef20d060SBarry Smith }
951ef20d060SBarry Smith 
952ef20d060SBarry Smith #undef __FUNCT__
9539b7cd975SBarry Smith #define __FUNCT__ "TSSetForcingFunction"
9549b7cd975SBarry Smith /*@C
9559b7cd975SBarry Smith     TSSetForcingFunction - Provide a function that computes a forcing term for a ODE or PDE
9569b7cd975SBarry Smith 
9579b7cd975SBarry Smith     Logically Collective on TS
9589b7cd975SBarry Smith 
9599b7cd975SBarry Smith     Input Parameters:
9609b7cd975SBarry Smith +   ts - the TS context obtained from TSCreate()
9619b7cd975SBarry Smith .   f - routine for evaluating the forcing function
9629b7cd975SBarry Smith -   ctx - [optional] user-defined context for private data for the
9630298fd71SBarry Smith           function evaluation routine (may be NULL)
9649b7cd975SBarry Smith 
9659b7cd975SBarry Smith     Calling sequence of func:
9669b7cd975SBarry Smith $     func (TS ts,PetscReal t,Vec u,void *ctx);
9679b7cd975SBarry Smith 
9689b7cd975SBarry Smith +   t - current timestep
9699b7cd975SBarry Smith .   u - output vector
9709b7cd975SBarry Smith -   ctx - [optional] user-defined function context
9719b7cd975SBarry Smith 
9729b7cd975SBarry Smith     Notes:
9739b7cd975SBarry Smith     This routine is useful for testing accuracy of time integration schemes when using the Method of Manufactured Solutions to
9749b7cd975SBarry Smith     create closed-form solutions with a non-physical forcing term.
9759b7cd975SBarry Smith 
9769b7cd975SBarry Smith     For low-dimensional problems solved in serial, such as small discrete systems, TSMonitorLGError() can be used to monitor the error history.
9779b7cd975SBarry Smith 
9789b7cd975SBarry Smith     Level: beginner
9799b7cd975SBarry Smith 
9809b7cd975SBarry Smith .keywords: TS, timestep, set, right-hand-side, function
9819b7cd975SBarry Smith 
9829b7cd975SBarry Smith .seealso: TSSetRHSJacobian(), TSSetIJacobian(), TSComputeSolutionFunction(), TSSetSolutionFunction()
9839b7cd975SBarry Smith @*/
9849b7cd975SBarry Smith PetscErrorCode  TSSetForcingFunction(TS ts,PetscErrorCode (*f)(TS,PetscReal,Vec,void*),void *ctx)
9859b7cd975SBarry Smith {
9869b7cd975SBarry Smith   PetscErrorCode ierr;
9879b7cd975SBarry Smith   DM             dm;
9889b7cd975SBarry Smith 
9899b7cd975SBarry Smith   PetscFunctionBegin;
9909b7cd975SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
9919b7cd975SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
9929b7cd975SBarry Smith   ierr = DMTSSetForcingFunction(dm,f,ctx);CHKERRQ(ierr);
9939b7cd975SBarry Smith   PetscFunctionReturn(0);
9949b7cd975SBarry Smith }
9959b7cd975SBarry Smith 
9969b7cd975SBarry Smith #undef __FUNCT__
9974a2ae208SSatish Balay #define __FUNCT__ "TSSetRHSJacobian"
998d763cef2SBarry Smith /*@C
999d763cef2SBarry Smith    TSSetRHSJacobian - Sets the function to compute the Jacobian of F,
1000b5abc632SBarry Smith    where U_t = G(U,t), as well as the location to store the matrix.
1001d763cef2SBarry Smith 
10023f9fe445SBarry Smith    Logically Collective on TS
1003d763cef2SBarry Smith 
1004d763cef2SBarry Smith    Input Parameters:
1005d763cef2SBarry Smith +  ts  - the TS context obtained from TSCreate()
1006e5d3d808SBarry Smith .  Amat - (approximate) Jacobian matrix
1007e5d3d808SBarry Smith .  Pmat - matrix from which preconditioner is to be constructed (usually the same as Amat)
1008d763cef2SBarry Smith .  f   - the Jacobian evaluation routine
1009d763cef2SBarry Smith -  ctx - [optional] user-defined context for private data for the
10100298fd71SBarry Smith          Jacobian evaluation routine (may be NULL)
1011d763cef2SBarry Smith 
1012d763cef2SBarry Smith    Calling sequence of func:
1013ae8867d6SBarry Smith $     func (TS ts,PetscReal t,Vec u,Mat A,Mat B,void *ctx);
1014d763cef2SBarry Smith 
1015d763cef2SBarry Smith +  t - current timestep
1016d763cef2SBarry Smith .  u - input vector
1017e5d3d808SBarry Smith .  Amat - (approximate) Jacobian matrix
1018e5d3d808SBarry Smith .  Pmat - matrix from which preconditioner is to be constructed (usually the same as Amat)
1019d763cef2SBarry Smith -  ctx - [optional] user-defined context for matrix evaluation routine
1020d763cef2SBarry Smith 
1021d763cef2SBarry Smith 
1022d763cef2SBarry Smith    Level: beginner
1023d763cef2SBarry Smith 
1024d763cef2SBarry Smith .keywords: TS, timestep, set, right-hand-side, Jacobian
1025d763cef2SBarry Smith 
1026ae8867d6SBarry Smith .seealso: SNESComputeJacobianDefaultColor(), TSSetRHSFunction(), TSRHSJacobianSetReuse(), TSSetIJacobian()
1027d763cef2SBarry Smith 
1028d763cef2SBarry Smith @*/
1029e5d3d808SBarry Smith PetscErrorCode  TSSetRHSJacobian(TS ts,Mat Amat,Mat Pmat,TSRHSJacobian f,void *ctx)
1030d763cef2SBarry Smith {
1031277b19d0SLisandro Dalcin   PetscErrorCode ierr;
1032089b2837SJed Brown   SNES           snes;
103324989b8cSPeter Brune   DM             dm;
103424989b8cSPeter Brune   TSIJacobian    ijacobian;
1035277b19d0SLisandro Dalcin 
1036d763cef2SBarry Smith   PetscFunctionBegin;
10370700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1038e5d3d808SBarry Smith   if (Amat) PetscValidHeaderSpecific(Amat,MAT_CLASSID,2);
1039e5d3d808SBarry Smith   if (Pmat) PetscValidHeaderSpecific(Pmat,MAT_CLASSID,3);
1040e5d3d808SBarry Smith   if (Amat) PetscCheckSameComm(ts,1,Amat,2);
1041e5d3d808SBarry Smith   if (Pmat) PetscCheckSameComm(ts,1,Pmat,3);
1042d763cef2SBarry Smith 
104324989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
104424989b8cSPeter Brune   ierr = DMTSSetRHSJacobian(dm,f,ctx);CHKERRQ(ierr);
1045e1244c69SJed Brown   if (f == TSComputeRHSJacobianConstant) {
1046e1244c69SJed Brown     /* Handle this case automatically for the user; otherwise user should call themselves. */
1047e1244c69SJed Brown     ierr = TSRHSJacobianSetReuse(ts,PETSC_TRUE);CHKERRQ(ierr);
1048e1244c69SJed Brown   }
10490298fd71SBarry Smith   ierr = DMTSGetIJacobian(dm,&ijacobian,NULL);CHKERRQ(ierr);
1050089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
10515f659677SPeter Brune   if (!ijacobian) {
1052e5d3d808SBarry Smith     ierr = SNESSetJacobian(snes,Amat,Pmat,SNESTSFormJacobian,ts);CHKERRQ(ierr);
10530e4ef248SJed Brown   }
1054e5d3d808SBarry Smith   if (Amat) {
1055e5d3d808SBarry Smith     ierr = PetscObjectReference((PetscObject)Amat);CHKERRQ(ierr);
10560e4ef248SJed Brown     ierr = MatDestroy(&ts->Arhs);CHKERRQ(ierr);
1057bbd56ea5SKarl Rupp 
1058e5d3d808SBarry Smith     ts->Arhs = Amat;
10590e4ef248SJed Brown   }
1060e5d3d808SBarry Smith   if (Pmat) {
1061e5d3d808SBarry Smith     ierr = PetscObjectReference((PetscObject)Pmat);CHKERRQ(ierr);
10620e4ef248SJed Brown     ierr = MatDestroy(&ts->Brhs);CHKERRQ(ierr);
1063bbd56ea5SKarl Rupp 
1064e5d3d808SBarry Smith     ts->Brhs = Pmat;
10650e4ef248SJed Brown   }
1066d763cef2SBarry Smith   PetscFunctionReturn(0);
1067d763cef2SBarry Smith }
1068d763cef2SBarry Smith 
1069316643e7SJed Brown 
1070316643e7SJed Brown #undef __FUNCT__
1071316643e7SJed Brown #define __FUNCT__ "TSSetIFunction"
1072316643e7SJed Brown /*@C
1073b5abc632SBarry Smith    TSSetIFunction - Set the function to compute F(t,U,U_t) where F() = 0 is the DAE to be solved.
1074316643e7SJed Brown 
10753f9fe445SBarry Smith    Logically Collective on TS
1076316643e7SJed Brown 
1077316643e7SJed Brown    Input Parameters:
1078316643e7SJed Brown +  ts  - the TS context obtained from TSCreate()
10790298fd71SBarry Smith .  r   - vector to hold the residual (or NULL to have it created internally)
1080316643e7SJed Brown .  f   - the function evaluation routine
10810298fd71SBarry Smith -  ctx - user-defined context for private data for the function evaluation routine (may be NULL)
1082316643e7SJed Brown 
1083316643e7SJed Brown    Calling sequence of f:
1084316643e7SJed Brown $  f(TS ts,PetscReal t,Vec u,Vec u_t,Vec F,ctx);
1085316643e7SJed Brown 
1086316643e7SJed Brown +  t   - time at step/stage being solved
1087316643e7SJed Brown .  u   - state vector
1088316643e7SJed Brown .  u_t - time derivative of state vector
1089316643e7SJed Brown .  F   - function vector
1090316643e7SJed Brown -  ctx - [optional] user-defined context for matrix evaluation routine
1091316643e7SJed Brown 
1092316643e7SJed Brown    Important:
1093d6cbdb99SBarry Smith    The user MUST call either this routine, TSSetRHSFunction().  This routine must be used when not solving an ODE, for example a DAE.
1094316643e7SJed Brown 
1095316643e7SJed Brown    Level: beginner
1096316643e7SJed Brown 
1097316643e7SJed Brown .keywords: TS, timestep, set, DAE, Jacobian
1098316643e7SJed Brown 
1099d6cbdb99SBarry Smith .seealso: TSSetRHSJacobian(), TSSetRHSFunction(), TSSetIJacobian()
1100316643e7SJed Brown @*/
1101089b2837SJed Brown PetscErrorCode  TSSetIFunction(TS ts,Vec res,TSIFunction f,void *ctx)
1102316643e7SJed Brown {
1103089b2837SJed Brown   PetscErrorCode ierr;
1104089b2837SJed Brown   SNES           snes;
11050298fd71SBarry Smith   Vec            resalloc = NULL;
110624989b8cSPeter Brune   DM             dm;
1107316643e7SJed Brown 
1108316643e7SJed Brown   PetscFunctionBegin;
11090700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1110ca94891dSJed Brown   if (res) PetscValidHeaderSpecific(res,VEC_CLASSID,2);
111124989b8cSPeter Brune 
111224989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
111324989b8cSPeter Brune   ierr = DMTSSetIFunction(dm,f,ctx);CHKERRQ(ierr);
111424989b8cSPeter Brune 
1115089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
1116e856ceecSJed Brown   if (!res && !ts->dm && ts->vec_sol) {
1117e856ceecSJed Brown     ierr = VecDuplicate(ts->vec_sol,&resalloc);CHKERRQ(ierr);
1118e856ceecSJed Brown     res  = resalloc;
1119e856ceecSJed Brown   }
1120089b2837SJed Brown   ierr = SNESSetFunction(snes,res,SNESTSFormFunction,ts);CHKERRQ(ierr);
1121e856ceecSJed Brown   ierr = VecDestroy(&resalloc);CHKERRQ(ierr);
1122089b2837SJed Brown   PetscFunctionReturn(0);
1123089b2837SJed Brown }
1124089b2837SJed Brown 
1125089b2837SJed Brown #undef __FUNCT__
1126089b2837SJed Brown #define __FUNCT__ "TSGetIFunction"
1127089b2837SJed Brown /*@C
1128089b2837SJed Brown    TSGetIFunction - Returns the vector where the implicit residual is stored and the function/contex to compute it.
1129089b2837SJed Brown 
1130089b2837SJed Brown    Not Collective
1131089b2837SJed Brown 
1132089b2837SJed Brown    Input Parameter:
1133089b2837SJed Brown .  ts - the TS context
1134089b2837SJed Brown 
1135089b2837SJed Brown    Output Parameter:
11360298fd71SBarry Smith +  r - vector to hold residual (or NULL)
11370298fd71SBarry Smith .  func - the function to compute residual (or NULL)
11380298fd71SBarry Smith -  ctx - the function context (or NULL)
1139089b2837SJed Brown 
1140089b2837SJed Brown    Level: advanced
1141089b2837SJed Brown 
1142089b2837SJed Brown .keywords: TS, nonlinear, get, function
1143089b2837SJed Brown 
1144089b2837SJed Brown .seealso: TSSetIFunction(), SNESGetFunction()
1145089b2837SJed Brown @*/
1146089b2837SJed Brown PetscErrorCode TSGetIFunction(TS ts,Vec *r,TSIFunction *func,void **ctx)
1147089b2837SJed Brown {
1148089b2837SJed Brown   PetscErrorCode ierr;
1149089b2837SJed Brown   SNES           snes;
115024989b8cSPeter Brune   DM             dm;
1151089b2837SJed Brown 
1152089b2837SJed Brown   PetscFunctionBegin;
1153089b2837SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1154089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
11550298fd71SBarry Smith   ierr = SNESGetFunction(snes,r,NULL,NULL);CHKERRQ(ierr);
115624989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
115724989b8cSPeter Brune   ierr = DMTSGetIFunction(dm,func,ctx);CHKERRQ(ierr);
1158089b2837SJed Brown   PetscFunctionReturn(0);
1159089b2837SJed Brown }
1160089b2837SJed Brown 
1161089b2837SJed Brown #undef __FUNCT__
1162089b2837SJed Brown #define __FUNCT__ "TSGetRHSFunction"
1163089b2837SJed Brown /*@C
1164089b2837SJed Brown    TSGetRHSFunction - Returns the vector where the right hand side is stored and the function/context to compute it.
1165089b2837SJed Brown 
1166089b2837SJed Brown    Not Collective
1167089b2837SJed Brown 
1168089b2837SJed Brown    Input Parameter:
1169089b2837SJed Brown .  ts - the TS context
1170089b2837SJed Brown 
1171089b2837SJed Brown    Output Parameter:
11720298fd71SBarry Smith +  r - vector to hold computed right hand side (or NULL)
11730298fd71SBarry Smith .  func - the function to compute right hand side (or NULL)
11740298fd71SBarry Smith -  ctx - the function context (or NULL)
1175089b2837SJed Brown 
1176089b2837SJed Brown    Level: advanced
1177089b2837SJed Brown 
1178089b2837SJed Brown .keywords: TS, nonlinear, get, function
1179089b2837SJed Brown 
1180089b2837SJed Brown .seealso: TSSetRhsfunction(), SNESGetFunction()
1181089b2837SJed Brown @*/
1182089b2837SJed Brown PetscErrorCode TSGetRHSFunction(TS ts,Vec *r,TSRHSFunction *func,void **ctx)
1183089b2837SJed Brown {
1184089b2837SJed Brown   PetscErrorCode ierr;
1185089b2837SJed Brown   SNES           snes;
118624989b8cSPeter Brune   DM             dm;
1187089b2837SJed Brown 
1188089b2837SJed Brown   PetscFunctionBegin;
1189089b2837SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1190089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
11910298fd71SBarry Smith   ierr = SNESGetFunction(snes,r,NULL,NULL);CHKERRQ(ierr);
119224989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
119324989b8cSPeter Brune   ierr = DMTSGetRHSFunction(dm,func,ctx);CHKERRQ(ierr);
1194316643e7SJed Brown   PetscFunctionReturn(0);
1195316643e7SJed Brown }
1196316643e7SJed Brown 
1197316643e7SJed Brown #undef __FUNCT__
1198316643e7SJed Brown #define __FUNCT__ "TSSetIJacobian"
1199316643e7SJed Brown /*@C
1200a4f0a591SBarry Smith    TSSetIJacobian - Set the function to compute the matrix dF/dU + a*dF/dU_t where F(t,U,U_t) is the function
1201ae8867d6SBarry Smith         provided with TSSetIFunction().
1202316643e7SJed Brown 
12033f9fe445SBarry Smith    Logically Collective on TS
1204316643e7SJed Brown 
1205316643e7SJed Brown    Input Parameters:
1206316643e7SJed Brown +  ts  - the TS context obtained from TSCreate()
1207e5d3d808SBarry Smith .  Amat - (approximate) Jacobian matrix
1208e5d3d808SBarry Smith .  Pmat - matrix used to compute preconditioner (usually the same as Amat)
1209316643e7SJed Brown .  f   - the Jacobian evaluation routine
12100298fd71SBarry Smith -  ctx - user-defined context for private data for the Jacobian evaluation routine (may be NULL)
1211316643e7SJed Brown 
1212316643e7SJed Brown    Calling sequence of f:
1213ae8867d6SBarry Smith $  f(TS ts,PetscReal t,Vec U,Vec U_t,PetscReal a,Mat Amat,Mat Pmat,void *ctx);
1214316643e7SJed Brown 
1215316643e7SJed Brown +  t    - time at step/stage being solved
12161b4a444bSJed Brown .  U    - state vector
12171b4a444bSJed Brown .  U_t  - time derivative of state vector
1218316643e7SJed Brown .  a    - shift
1219e5d3d808SBarry Smith .  Amat - (approximate) Jacobian of F(t,U,W+a*U), equivalent to dF/dU + a*dF/dU_t
1220e5d3d808SBarry Smith .  Pmat - matrix used for constructing preconditioner, usually the same as Amat
1221316643e7SJed Brown -  ctx  - [optional] user-defined context for matrix evaluation routine
1222316643e7SJed Brown 
1223316643e7SJed Brown    Notes:
1224e5d3d808SBarry Smith    The matrices Amat and Pmat are exactly the matrices that are used by SNES for the nonlinear solve.
1225316643e7SJed Brown 
1226a4f0a591SBarry Smith    The matrix dF/dU + a*dF/dU_t you provide turns out to be
1227b5abc632SBarry Smith    the Jacobian of F(t,U,W+a*U) where F(t,U,U_t) = 0 is the DAE to be solved.
1228a4f0a591SBarry Smith    The time integrator internally approximates U_t by W+a*U where the positive "shift"
1229a4f0a591SBarry Smith    a and vector W depend on the integration method, step size, and past states. For example with
1230a4f0a591SBarry Smith    the backward Euler method a = 1/dt and W = -a*U(previous timestep) so
1231a4f0a591SBarry Smith    W + a*U = a*(U - U(previous timestep)) = (U - U(previous timestep))/dt
1232a4f0a591SBarry Smith 
1233316643e7SJed Brown    Level: beginner
1234316643e7SJed Brown 
1235316643e7SJed Brown .keywords: TS, timestep, DAE, Jacobian
1236316643e7SJed Brown 
1237ae8867d6SBarry Smith .seealso: TSSetIFunction(), TSSetRHSJacobian(), SNESComputeJacobianDefaultColor(), SNESComputeJacobianDefault(), TSSetRHSFunction()
1238316643e7SJed Brown 
1239316643e7SJed Brown @*/
1240e5d3d808SBarry Smith PetscErrorCode  TSSetIJacobian(TS ts,Mat Amat,Mat Pmat,TSIJacobian f,void *ctx)
1241316643e7SJed Brown {
1242316643e7SJed Brown   PetscErrorCode ierr;
1243089b2837SJed Brown   SNES           snes;
124424989b8cSPeter Brune   DM             dm;
1245316643e7SJed Brown 
1246316643e7SJed Brown   PetscFunctionBegin;
12470700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1248e5d3d808SBarry Smith   if (Amat) PetscValidHeaderSpecific(Amat,MAT_CLASSID,2);
1249e5d3d808SBarry Smith   if (Pmat) PetscValidHeaderSpecific(Pmat,MAT_CLASSID,3);
1250e5d3d808SBarry Smith   if (Amat) PetscCheckSameComm(ts,1,Amat,2);
1251e5d3d808SBarry Smith   if (Pmat) PetscCheckSameComm(ts,1,Pmat,3);
125224989b8cSPeter Brune 
125324989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
125424989b8cSPeter Brune   ierr = DMTSSetIJacobian(dm,f,ctx);CHKERRQ(ierr);
125524989b8cSPeter Brune 
1256089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
1257e5d3d808SBarry Smith   ierr = SNESSetJacobian(snes,Amat,Pmat,SNESTSFormJacobian,ts);CHKERRQ(ierr);
1258316643e7SJed Brown   PetscFunctionReturn(0);
1259316643e7SJed Brown }
1260316643e7SJed Brown 
12614a2ae208SSatish Balay #undef __FUNCT__
1262e1244c69SJed Brown #define __FUNCT__ "TSRHSJacobianSetReuse"
1263e1244c69SJed Brown /*@
1264e1244c69SJed Brown    TSRHSJacobianSetReuse - restore RHS Jacobian before re-evaluating.  Without this flag, TS will change the sign and
1265e1244c69SJed Brown    shift the RHS Jacobian for a finite-time-step implicit solve, in which case the user function will need to recompute
1266e1244c69SJed Brown    the entire Jacobian.  The reuse flag must be set if the evaluation function will assume that the matrix entries have
1267e1244c69SJed Brown    not been changed by the TS.
1268e1244c69SJed Brown 
1269e1244c69SJed Brown    Logically Collective
1270e1244c69SJed Brown 
1271e1244c69SJed Brown    Input Arguments:
1272e1244c69SJed Brown +  ts - TS context obtained from TSCreate()
1273e1244c69SJed Brown -  reuse - PETSC_TRUE if the RHS Jacobian
1274e1244c69SJed Brown 
1275e1244c69SJed Brown    Level: intermediate
1276e1244c69SJed Brown 
1277e1244c69SJed Brown .seealso: TSSetRHSJacobian(), TSComputeRHSJacobianConstant()
1278e1244c69SJed Brown @*/
1279e1244c69SJed Brown PetscErrorCode TSRHSJacobianSetReuse(TS ts,PetscBool reuse)
1280e1244c69SJed Brown {
1281e1244c69SJed Brown   PetscFunctionBegin;
1282e1244c69SJed Brown   ts->rhsjacobian.reuse = reuse;
1283e1244c69SJed Brown   PetscFunctionReturn(0);
1284e1244c69SJed Brown }
1285e1244c69SJed Brown 
1286e1244c69SJed Brown #undef __FUNCT__
128755849f57SBarry Smith #define __FUNCT__ "TSLoad"
128855849f57SBarry Smith /*@C
128955849f57SBarry Smith   TSLoad - Loads a KSP that has been stored in binary  with KSPView().
129055849f57SBarry Smith 
129155849f57SBarry Smith   Collective on PetscViewer
129255849f57SBarry Smith 
129355849f57SBarry Smith   Input Parameters:
129455849f57SBarry Smith + newdm - the newly loaded TS, this needs to have been created with TSCreate() or
129555849f57SBarry Smith            some related function before a call to TSLoad().
129655849f57SBarry Smith - viewer - binary file viewer, obtained from PetscViewerBinaryOpen()
129755849f57SBarry Smith 
129855849f57SBarry Smith    Level: intermediate
129955849f57SBarry Smith 
130055849f57SBarry Smith   Notes:
130155849f57SBarry Smith    The type is determined by the data in the file, any type set into the TS before this call is ignored.
130255849f57SBarry Smith 
130355849f57SBarry Smith   Notes for advanced users:
130455849f57SBarry Smith   Most users should not need to know the details of the binary storage
130555849f57SBarry Smith   format, since TSLoad() and TSView() completely hide these details.
130655849f57SBarry Smith   But for anyone who's interested, the standard binary matrix storage
130755849f57SBarry Smith   format is
130855849f57SBarry Smith .vb
130955849f57SBarry Smith      has not yet been determined
131055849f57SBarry Smith .ve
131155849f57SBarry Smith 
131255849f57SBarry Smith .seealso: PetscViewerBinaryOpen(), TSView(), MatLoad(), VecLoad()
131355849f57SBarry Smith @*/
1314f2c2a1b9SBarry Smith PetscErrorCode  TSLoad(TS ts, PetscViewer viewer)
131555849f57SBarry Smith {
131655849f57SBarry Smith   PetscErrorCode ierr;
131755849f57SBarry Smith   PetscBool      isbinary;
131855849f57SBarry Smith   PetscInt       classid;
131955849f57SBarry Smith   char           type[256];
13202d53ad75SBarry Smith   DMTS           sdm;
1321ad6bc421SBarry Smith   DM             dm;
132255849f57SBarry Smith 
132355849f57SBarry Smith   PetscFunctionBegin;
1324f2c2a1b9SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
132555849f57SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
132655849f57SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
132755849f57SBarry Smith   if (!isbinary) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Invalid viewer; open viewer with PetscViewerBinaryOpen()");
132855849f57SBarry Smith 
132955849f57SBarry Smith   ierr = PetscViewerBinaryRead(viewer,&classid,1,PETSC_INT);CHKERRQ(ierr);
1330ce94432eSBarry Smith   if (classid != TS_FILE_CLASSID) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Not TS next in file");
133155849f57SBarry Smith   ierr = PetscViewerBinaryRead(viewer,type,256,PETSC_CHAR);CHKERRQ(ierr);
1332f2c2a1b9SBarry Smith   ierr = TSSetType(ts, type);CHKERRQ(ierr);
1333f2c2a1b9SBarry Smith   if (ts->ops->load) {
1334f2c2a1b9SBarry Smith     ierr = (*ts->ops->load)(ts,viewer);CHKERRQ(ierr);
1335f2c2a1b9SBarry Smith   }
1336ce94432eSBarry Smith   ierr = DMCreate(PetscObjectComm((PetscObject)ts),&dm);CHKERRQ(ierr);
1337ad6bc421SBarry Smith   ierr = DMLoad(dm,viewer);CHKERRQ(ierr);
1338ad6bc421SBarry Smith   ierr = TSSetDM(ts,dm);CHKERRQ(ierr);
1339f2c2a1b9SBarry Smith   ierr = DMCreateGlobalVector(ts->dm,&ts->vec_sol);CHKERRQ(ierr);
1340f2c2a1b9SBarry Smith   ierr = VecLoad(ts->vec_sol,viewer);CHKERRQ(ierr);
13412d53ad75SBarry Smith   ierr = DMGetDMTS(ts->dm,&sdm);CHKERRQ(ierr);
13422d53ad75SBarry Smith   ierr = DMTSLoad(sdm,viewer);CHKERRQ(ierr);
134355849f57SBarry Smith   PetscFunctionReturn(0);
134455849f57SBarry Smith }
134555849f57SBarry Smith 
13469804daf3SBarry Smith #include <petscdraw.h>
1347e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1348e04113cfSBarry Smith #include <petscviewersaws.h>
1349f05ece33SBarry Smith #endif
135055849f57SBarry Smith #undef __FUNCT__
13514a2ae208SSatish Balay #define __FUNCT__ "TSView"
13527e2c5f70SBarry Smith /*@C
1353d763cef2SBarry Smith     TSView - Prints the TS data structure.
1354d763cef2SBarry Smith 
13554c49b128SBarry Smith     Collective on TS
1356d763cef2SBarry Smith 
1357d763cef2SBarry Smith     Input Parameters:
1358d763cef2SBarry Smith +   ts - the TS context obtained from TSCreate()
1359d763cef2SBarry Smith -   viewer - visualization context
1360d763cef2SBarry Smith 
1361d763cef2SBarry Smith     Options Database Key:
1362d763cef2SBarry Smith .   -ts_view - calls TSView() at end of TSStep()
1363d763cef2SBarry Smith 
1364d763cef2SBarry Smith     Notes:
1365d763cef2SBarry Smith     The available visualization contexts include
1366b0a32e0cSBarry Smith +     PETSC_VIEWER_STDOUT_SELF - standard output (default)
1367b0a32e0cSBarry Smith -     PETSC_VIEWER_STDOUT_WORLD - synchronized standard
1368d763cef2SBarry Smith          output where only the first processor opens
1369d763cef2SBarry Smith          the file.  All other processors send their
1370d763cef2SBarry Smith          data to the first processor to print.
1371d763cef2SBarry Smith 
1372d763cef2SBarry Smith     The user can open an alternative visualization context with
1373b0a32e0cSBarry Smith     PetscViewerASCIIOpen() - output to a specified file.
1374d763cef2SBarry Smith 
1375d763cef2SBarry Smith     Level: beginner
1376d763cef2SBarry Smith 
1377d763cef2SBarry Smith .keywords: TS, timestep, view
1378d763cef2SBarry Smith 
1379b0a32e0cSBarry Smith .seealso: PetscViewerASCIIOpen()
1380d763cef2SBarry Smith @*/
13817087cfbeSBarry Smith PetscErrorCode  TSView(TS ts,PetscViewer viewer)
1382d763cef2SBarry Smith {
1383dfbe8321SBarry Smith   PetscErrorCode ierr;
138419fd82e9SBarry Smith   TSType         type;
13852b0a91c0SBarry Smith   PetscBool      iascii,isstring,isundials,isbinary,isdraw;
13862d53ad75SBarry Smith   DMTS           sdm;
1387e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1388f05ece33SBarry Smith   PetscBool      isams;
1389f05ece33SBarry Smith #endif
1390d763cef2SBarry Smith 
1391d763cef2SBarry Smith   PetscFunctionBegin;
13920700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
13933050cee2SBarry Smith   if (!viewer) {
1394ce94432eSBarry Smith     ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)ts),&viewer);CHKERRQ(ierr);
13953050cee2SBarry Smith   }
13960700a824SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
1397c9780b6fSBarry Smith   PetscCheckSameComm(ts,1,viewer,2);
1398fd16b177SBarry Smith 
1399251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr);
1400251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSTRING,&isstring);CHKERRQ(ierr);
140155849f57SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
14022b0a91c0SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
1403e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1404e04113cfSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSAWS,&isams);CHKERRQ(ierr);
1405f05ece33SBarry Smith #endif
140632077d6dSBarry Smith   if (iascii) {
1407dae58748SBarry Smith     ierr = PetscObjectPrintClassNamePrefixType((PetscObject)ts,viewer);CHKERRQ(ierr);
140877431f27SBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  maximum steps=%D\n",ts->max_steps);CHKERRQ(ierr);
14097c8652ddSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  maximum time=%g\n",(double)ts->max_time);CHKERRQ(ierr);
1410d763cef2SBarry Smith     if (ts->problem_type == TS_NONLINEAR) {
14115ef26d82SJed Brown       ierr = PetscViewerASCIIPrintf(viewer,"  total number of nonlinear solver iterations=%D\n",ts->snes_its);CHKERRQ(ierr);
1412c610991cSLisandro Dalcin       ierr = PetscViewerASCIIPrintf(viewer,"  total number of nonlinear solve failures=%D\n",ts->num_snes_failures);CHKERRQ(ierr);
1413d763cef2SBarry Smith     }
14145ef26d82SJed Brown     ierr = PetscViewerASCIIPrintf(viewer,"  total number of linear solver iterations=%D\n",ts->ksp_its);CHKERRQ(ierr);
1415193ac0bcSJed Brown     ierr = PetscViewerASCIIPrintf(viewer,"  total number of rejected steps=%D\n",ts->reject);CHKERRQ(ierr);
14162d53ad75SBarry Smith     ierr = DMGetDMTS(ts->dm,&sdm);CHKERRQ(ierr);
14172d53ad75SBarry Smith     ierr = DMTSView(sdm,viewer);CHKERRQ(ierr);
1418d52bd9f3SBarry Smith     if (ts->ops->view) {
1419d52bd9f3SBarry Smith       ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
1420d52bd9f3SBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
1421d52bd9f3SBarry Smith       ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
1422d52bd9f3SBarry Smith     }
14230f5bd95cSBarry Smith   } else if (isstring) {
1424a313700dSBarry Smith     ierr = TSGetType(ts,&type);CHKERRQ(ierr);
1425b0a32e0cSBarry Smith     ierr = PetscViewerStringSPrintf(viewer," %-7.7s",type);CHKERRQ(ierr);
142655849f57SBarry Smith   } else if (isbinary) {
142755849f57SBarry Smith     PetscInt    classid = TS_FILE_CLASSID;
142855849f57SBarry Smith     MPI_Comm    comm;
142955849f57SBarry Smith     PetscMPIInt rank;
143055849f57SBarry Smith     char        type[256];
143155849f57SBarry Smith 
143255849f57SBarry Smith     ierr = PetscObjectGetComm((PetscObject)ts,&comm);CHKERRQ(ierr);
143355849f57SBarry Smith     ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
143455849f57SBarry Smith     if (!rank) {
143555849f57SBarry Smith       ierr = PetscViewerBinaryWrite(viewer,&classid,1,PETSC_INT,PETSC_FALSE);CHKERRQ(ierr);
143655849f57SBarry Smith       ierr = PetscStrncpy(type,((PetscObject)ts)->type_name,256);CHKERRQ(ierr);
143755849f57SBarry Smith       ierr = PetscViewerBinaryWrite(viewer,type,256,PETSC_CHAR,PETSC_FALSE);CHKERRQ(ierr);
143855849f57SBarry Smith     }
143955849f57SBarry Smith     if (ts->ops->view) {
144055849f57SBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
144155849f57SBarry Smith     }
1442f2c2a1b9SBarry Smith     ierr = DMView(ts->dm,viewer);CHKERRQ(ierr);
1443f2c2a1b9SBarry Smith     ierr = VecView(ts->vec_sol,viewer);CHKERRQ(ierr);
14442d53ad75SBarry Smith     ierr = DMGetDMTS(ts->dm,&sdm);CHKERRQ(ierr);
14452d53ad75SBarry Smith     ierr = DMTSView(sdm,viewer);CHKERRQ(ierr);
14462b0a91c0SBarry Smith   } else if (isdraw) {
14472b0a91c0SBarry Smith     PetscDraw draw;
14482b0a91c0SBarry Smith     char      str[36];
144989fd9fafSBarry Smith     PetscReal x,y,bottom,h;
14502b0a91c0SBarry Smith 
14512b0a91c0SBarry Smith     ierr   = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
14522b0a91c0SBarry Smith     ierr   = PetscDrawGetCurrentPoint(draw,&x,&y);CHKERRQ(ierr);
14532b0a91c0SBarry Smith     ierr   = PetscStrcpy(str,"TS: ");CHKERRQ(ierr);
14542b0a91c0SBarry Smith     ierr   = PetscStrcat(str,((PetscObject)ts)->type_name);CHKERRQ(ierr);
14550298fd71SBarry Smith     ierr   = PetscDrawBoxedString(draw,x,y,PETSC_DRAW_BLACK,PETSC_DRAW_BLACK,str,NULL,&h);CHKERRQ(ierr);
145689fd9fafSBarry Smith     bottom = y - h;
14572b0a91c0SBarry Smith     ierr   = PetscDrawPushCurrentPoint(draw,x,bottom);CHKERRQ(ierr);
14582b0a91c0SBarry Smith     if (ts->ops->view) {
14592b0a91c0SBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
14602b0a91c0SBarry Smith     }
14612b0a91c0SBarry Smith     ierr = PetscDrawPopCurrentPoint(draw);CHKERRQ(ierr);
1462e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1463f05ece33SBarry Smith   } else if (isams) {
1464d45a07a7SBarry Smith     PetscMPIInt rank;
14652657e9d9SBarry Smith     const char  *name;
14662657e9d9SBarry Smith 
14672657e9d9SBarry Smith     ierr = PetscObjectGetName((PetscObject)ts,&name);CHKERRQ(ierr);
1468d45a07a7SBarry Smith     ierr = MPI_Comm_rank(PETSC_COMM_WORLD,&rank);CHKERRQ(ierr);
1469d45a07a7SBarry Smith     if (!((PetscObject)ts)->amsmem && !rank) {
1470d45a07a7SBarry Smith       char       dir[1024];
1471d45a07a7SBarry Smith 
1472e04113cfSBarry Smith       ierr = PetscObjectViewSAWs((PetscObject)ts,viewer);CHKERRQ(ierr);
1473a0931e03SBarry Smith       ierr = PetscSNPrintf(dir,1024,"/PETSc/Objects/%s/time_step",name);CHKERRQ(ierr);
14742657e9d9SBarry Smith       PetscStackCallSAWs(SAWs_Register,(dir,&ts->steps,1,SAWs_READ,SAWs_INT));
14752657e9d9SBarry Smith       ierr = PetscSNPrintf(dir,1024,"/PETSc/Objects/%s/time",name);CHKERRQ(ierr);
14762657e9d9SBarry Smith       PetscStackCallSAWs(SAWs_Register,(dir,&ts->ptime,1,SAWs_READ,SAWs_DOUBLE));
1477d763cef2SBarry Smith     }
14780acecf5bSBarry Smith     if (ts->ops->view) {
14790acecf5bSBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
14800acecf5bSBarry Smith     }
1481f05ece33SBarry Smith #endif
1482f05ece33SBarry Smith   }
1483f05ece33SBarry Smith 
1484b0a32e0cSBarry Smith   ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
1485251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)ts,TSSUNDIALS,&isundials);CHKERRQ(ierr);
1486b0a32e0cSBarry Smith   ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
1487d763cef2SBarry Smith   PetscFunctionReturn(0);
1488d763cef2SBarry Smith }
1489d763cef2SBarry Smith 
1490d763cef2SBarry Smith 
14914a2ae208SSatish Balay #undef __FUNCT__
14924a2ae208SSatish Balay #define __FUNCT__ "TSSetApplicationContext"
1493b07ff414SBarry Smith /*@
1494d763cef2SBarry Smith    TSSetApplicationContext - Sets an optional user-defined context for
1495d763cef2SBarry Smith    the timesteppers.
1496d763cef2SBarry Smith 
14973f9fe445SBarry Smith    Logically Collective on TS
1498d763cef2SBarry Smith 
1499d763cef2SBarry Smith    Input Parameters:
1500d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
1501d763cef2SBarry Smith -  usrP - optional user context
1502d763cef2SBarry Smith 
1503d763cef2SBarry Smith    Level: intermediate
1504d763cef2SBarry Smith 
1505d763cef2SBarry Smith .keywords: TS, timestep, set, application, context
1506d763cef2SBarry Smith 
1507d763cef2SBarry Smith .seealso: TSGetApplicationContext()
1508d763cef2SBarry Smith @*/
15097087cfbeSBarry Smith PetscErrorCode  TSSetApplicationContext(TS ts,void *usrP)
1510d763cef2SBarry Smith {
1511d763cef2SBarry Smith   PetscFunctionBegin;
15120700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1513d763cef2SBarry Smith   ts->user = usrP;
1514d763cef2SBarry Smith   PetscFunctionReturn(0);
1515d763cef2SBarry Smith }
1516d763cef2SBarry Smith 
15174a2ae208SSatish Balay #undef __FUNCT__
15184a2ae208SSatish Balay #define __FUNCT__ "TSGetApplicationContext"
1519b07ff414SBarry Smith /*@
1520d763cef2SBarry Smith     TSGetApplicationContext - Gets the user-defined context for the
1521d763cef2SBarry Smith     timestepper.
1522d763cef2SBarry Smith 
1523d763cef2SBarry Smith     Not Collective
1524d763cef2SBarry Smith 
1525d763cef2SBarry Smith     Input Parameter:
1526d763cef2SBarry Smith .   ts - the TS context obtained from TSCreate()
1527d763cef2SBarry Smith 
1528d763cef2SBarry Smith     Output Parameter:
1529d763cef2SBarry Smith .   usrP - user context
1530d763cef2SBarry Smith 
1531d763cef2SBarry Smith     Level: intermediate
1532d763cef2SBarry Smith 
1533d763cef2SBarry Smith .keywords: TS, timestep, get, application, context
1534d763cef2SBarry Smith 
1535d763cef2SBarry Smith .seealso: TSSetApplicationContext()
1536d763cef2SBarry Smith @*/
1537e71120c6SJed Brown PetscErrorCode  TSGetApplicationContext(TS ts,void *usrP)
1538d763cef2SBarry Smith {
1539d763cef2SBarry Smith   PetscFunctionBegin;
15400700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1541e71120c6SJed Brown   *(void**)usrP = ts->user;
1542d763cef2SBarry Smith   PetscFunctionReturn(0);
1543d763cef2SBarry Smith }
1544d763cef2SBarry Smith 
15454a2ae208SSatish Balay #undef __FUNCT__
15464a2ae208SSatish Balay #define __FUNCT__ "TSGetTimeStepNumber"
1547d763cef2SBarry Smith /*@
1548b8123daeSJed Brown    TSGetTimeStepNumber - Gets the number of time steps completed.
1549d763cef2SBarry Smith 
1550d763cef2SBarry Smith    Not Collective
1551d763cef2SBarry Smith 
1552d763cef2SBarry Smith    Input Parameter:
1553d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
1554d763cef2SBarry Smith 
1555d763cef2SBarry Smith    Output Parameter:
1556b8123daeSJed Brown .  iter - number of steps completed so far
1557d763cef2SBarry Smith 
1558d763cef2SBarry Smith    Level: intermediate
1559d763cef2SBarry Smith 
1560d763cef2SBarry Smith .keywords: TS, timestep, get, iteration, number
15619be3e283SDebojyoti Ghosh .seealso: TSGetTime(), TSGetTimeStep(), TSSetPreStep(), TSSetPreStage(), TSSetPostStage(), TSSetPostStep()
1562d763cef2SBarry Smith @*/
15637087cfbeSBarry Smith PetscErrorCode  TSGetTimeStepNumber(TS ts,PetscInt *iter)
1564d763cef2SBarry Smith {
1565d763cef2SBarry Smith   PetscFunctionBegin;
15660700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
15674482741eSBarry Smith   PetscValidIntPointer(iter,2);
1568d763cef2SBarry Smith   *iter = ts->steps;
1569d763cef2SBarry Smith   PetscFunctionReturn(0);
1570d763cef2SBarry Smith }
1571d763cef2SBarry Smith 
15724a2ae208SSatish Balay #undef __FUNCT__
15734a2ae208SSatish Balay #define __FUNCT__ "TSSetInitialTimeStep"
1574d763cef2SBarry Smith /*@
1575d763cef2SBarry Smith    TSSetInitialTimeStep - Sets the initial timestep to be used,
1576d763cef2SBarry Smith    as well as the initial time.
1577d763cef2SBarry Smith 
15783f9fe445SBarry Smith    Logically Collective on TS
1579d763cef2SBarry Smith 
1580d763cef2SBarry Smith    Input Parameters:
1581d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
1582d763cef2SBarry Smith .  initial_time - the initial time
1583d763cef2SBarry Smith -  time_step - the size of the timestep
1584d763cef2SBarry Smith 
1585d763cef2SBarry Smith    Level: intermediate
1586d763cef2SBarry Smith 
1587d763cef2SBarry Smith .seealso: TSSetTimeStep(), TSGetTimeStep()
1588d763cef2SBarry Smith 
1589d763cef2SBarry Smith .keywords: TS, set, initial, timestep
1590d763cef2SBarry Smith @*/
15917087cfbeSBarry Smith PetscErrorCode  TSSetInitialTimeStep(TS ts,PetscReal initial_time,PetscReal time_step)
1592d763cef2SBarry Smith {
1593e144a568SJed Brown   PetscErrorCode ierr;
1594e144a568SJed Brown 
1595d763cef2SBarry Smith   PetscFunctionBegin;
15960700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1597e144a568SJed Brown   ierr = TSSetTimeStep(ts,time_step);CHKERRQ(ierr);
1598d8cd7023SBarry Smith   ierr = TSSetTime(ts,initial_time);CHKERRQ(ierr);
1599d763cef2SBarry Smith   PetscFunctionReturn(0);
1600d763cef2SBarry Smith }
1601d763cef2SBarry Smith 
16024a2ae208SSatish Balay #undef __FUNCT__
16034a2ae208SSatish Balay #define __FUNCT__ "TSSetTimeStep"
1604d763cef2SBarry Smith /*@
1605d763cef2SBarry Smith    TSSetTimeStep - Allows one to reset the timestep at any time,
1606d763cef2SBarry Smith    useful for simple pseudo-timestepping codes.
1607d763cef2SBarry Smith 
16083f9fe445SBarry Smith    Logically Collective on TS
1609d763cef2SBarry Smith 
1610d763cef2SBarry Smith    Input Parameters:
1611d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
1612d763cef2SBarry Smith -  time_step - the size of the timestep
1613d763cef2SBarry Smith 
1614d763cef2SBarry Smith    Level: intermediate
1615d763cef2SBarry Smith 
1616d763cef2SBarry Smith .seealso: TSSetInitialTimeStep(), TSGetTimeStep()
1617d763cef2SBarry Smith 
1618d763cef2SBarry Smith .keywords: TS, set, timestep
1619d763cef2SBarry Smith @*/
16207087cfbeSBarry Smith PetscErrorCode  TSSetTimeStep(TS ts,PetscReal time_step)
1621d763cef2SBarry Smith {
1622d763cef2SBarry Smith   PetscFunctionBegin;
16230700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1624c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(ts,time_step,2);
1625d763cef2SBarry Smith   ts->time_step      = time_step;
162631748224SBarry Smith   ts->time_step_orig = time_step;
1627d763cef2SBarry Smith   PetscFunctionReturn(0);
1628d763cef2SBarry Smith }
1629d763cef2SBarry Smith 
16304a2ae208SSatish Balay #undef __FUNCT__
1631a43b19c4SJed Brown #define __FUNCT__ "TSSetExactFinalTime"
1632a43b19c4SJed Brown /*@
163349354f04SShri Abhyankar    TSSetExactFinalTime - Determines whether to adapt the final time step to
163449354f04SShri Abhyankar      match the exact final time, interpolate solution to the exact final time,
163549354f04SShri Abhyankar      or just return at the final time TS computed.
1636a43b19c4SJed Brown 
1637a43b19c4SJed Brown   Logically Collective on TS
1638a43b19c4SJed Brown 
1639a43b19c4SJed Brown    Input Parameter:
1640a43b19c4SJed Brown +   ts - the time-step context
164149354f04SShri Abhyankar -   eftopt - exact final time option
1642a43b19c4SJed Brown 
1643a43b19c4SJed Brown    Level: beginner
1644a43b19c4SJed Brown 
1645a2ea699eSBarry Smith .seealso: TSExactFinalTimeOption
1646a43b19c4SJed Brown @*/
164749354f04SShri Abhyankar PetscErrorCode  TSSetExactFinalTime(TS ts,TSExactFinalTimeOption eftopt)
1648a43b19c4SJed Brown {
1649a43b19c4SJed Brown   PetscFunctionBegin;
1650a43b19c4SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
165149354f04SShri Abhyankar   PetscValidLogicalCollectiveEnum(ts,eftopt,2);
165249354f04SShri Abhyankar   ts->exact_final_time = eftopt;
1653a43b19c4SJed Brown   PetscFunctionReturn(0);
1654a43b19c4SJed Brown }
1655a43b19c4SJed Brown 
1656a43b19c4SJed Brown #undef __FUNCT__
16574a2ae208SSatish Balay #define __FUNCT__ "TSGetTimeStep"
1658d763cef2SBarry Smith /*@
1659d763cef2SBarry Smith    TSGetTimeStep - Gets the current timestep size.
1660d763cef2SBarry Smith 
1661d763cef2SBarry Smith    Not Collective
1662d763cef2SBarry Smith 
1663d763cef2SBarry Smith    Input Parameter:
1664d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
1665d763cef2SBarry Smith 
1666d763cef2SBarry Smith    Output Parameter:
1667d763cef2SBarry Smith .  dt - the current timestep size
1668d763cef2SBarry Smith 
1669d763cef2SBarry Smith    Level: intermediate
1670d763cef2SBarry Smith 
1671d763cef2SBarry Smith .seealso: TSSetInitialTimeStep(), TSGetTimeStep()
1672d763cef2SBarry Smith 
1673d763cef2SBarry Smith .keywords: TS, get, timestep
1674d763cef2SBarry Smith @*/
16757087cfbeSBarry Smith PetscErrorCode  TSGetTimeStep(TS ts,PetscReal *dt)
1676d763cef2SBarry Smith {
1677d763cef2SBarry Smith   PetscFunctionBegin;
16780700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1679f7cf8827SBarry Smith   PetscValidRealPointer(dt,2);
1680d763cef2SBarry Smith   *dt = ts->time_step;
1681d763cef2SBarry Smith   PetscFunctionReturn(0);
1682d763cef2SBarry Smith }
1683d763cef2SBarry Smith 
16844a2ae208SSatish Balay #undef __FUNCT__
16854a2ae208SSatish Balay #define __FUNCT__ "TSGetSolution"
1686d8e5e3e6SSatish Balay /*@
1687d763cef2SBarry Smith    TSGetSolution - Returns the solution at the present timestep. It
1688d763cef2SBarry Smith    is valid to call this routine inside the function that you are evaluating
1689d763cef2SBarry Smith    in order to move to the new timestep. This vector not changed until
1690d763cef2SBarry Smith    the solution at the next timestep has been calculated.
1691d763cef2SBarry Smith 
1692d763cef2SBarry Smith    Not Collective, but Vec returned is parallel if TS is parallel
1693d763cef2SBarry Smith 
1694d763cef2SBarry Smith    Input Parameter:
1695d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
1696d763cef2SBarry Smith 
1697d763cef2SBarry Smith    Output Parameter:
1698d763cef2SBarry Smith .  v - the vector containing the solution
1699d763cef2SBarry Smith 
1700d763cef2SBarry Smith    Level: intermediate
1701d763cef2SBarry Smith 
1702d763cef2SBarry Smith .seealso: TSGetTimeStep()
1703d763cef2SBarry Smith 
1704d763cef2SBarry Smith .keywords: TS, timestep, get, solution
1705d763cef2SBarry Smith @*/
17067087cfbeSBarry Smith PetscErrorCode  TSGetSolution(TS ts,Vec *v)
1707d763cef2SBarry Smith {
1708d763cef2SBarry Smith   PetscFunctionBegin;
17090700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
17104482741eSBarry Smith   PetscValidPointer(v,2);
17118737fe31SLisandro Dalcin   *v = ts->vec_sol;
1712d763cef2SBarry Smith   PetscFunctionReturn(0);
1713d763cef2SBarry Smith }
1714d763cef2SBarry Smith 
1715c235aa8dSHong Zhang #undef __FUNCT__
1716419a887dSBarry Smith #define __FUNCT__ "TSAdjointGetGradients"
1717c235aa8dSHong Zhang /*@
1718419a887dSBarry Smith    TSAdjointGetGradients - Returns the gradients from the TSAdjointSolve()
1719c235aa8dSHong Zhang 
1720c235aa8dSHong Zhang    Not Collective, but Vec returned is parallel if TS is parallel
1721c235aa8dSHong Zhang 
1722c235aa8dSHong Zhang    Input Parameter:
1723c235aa8dSHong Zhang .  ts - the TS context obtained from TSCreate()
1724c235aa8dSHong Zhang 
1725c235aa8dSHong Zhang    Output Parameter:
1726419a887dSBarry Smith +  v - vectors containing the gradients with respect to the ODE/DAE solution variables
1727419a887dSBarry Smith -  w - vectors containing the gradients with respect to the problem parameters
1728c235aa8dSHong Zhang 
1729c235aa8dSHong Zhang    Level: intermediate
1730c235aa8dSHong Zhang 
1731c235aa8dSHong Zhang .seealso: TSGetTimeStep()
1732c235aa8dSHong Zhang 
1733c235aa8dSHong Zhang .keywords: TS, timestep, get, sensitivity
1734c235aa8dSHong Zhang @*/
17355bf8c567SBarry Smith PetscErrorCode  TSAdjointGetGradients(TS ts,PetscInt *numberadjs,Vec **v,Vec **w)
1736c235aa8dSHong Zhang {
1737c235aa8dSHong Zhang   PetscFunctionBegin;
1738c235aa8dSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1739b18ea86cSHong Zhang   if (numberadjs) *numberadjs = ts->numberadjs;
1740419a887dSBarry Smith   if (v)          *v          = ts->vecs_sensi;
1741419a887dSBarry Smith   if (w)          *w          = ts->vecs_sensip;
1742c235aa8dSHong Zhang   PetscFunctionReturn(0);
1743c235aa8dSHong Zhang }
1744c235aa8dSHong Zhang 
1745bdad233fSMatthew Knepley /* ----- Routines to initialize and destroy a timestepper ---- */
17464a2ae208SSatish Balay #undef __FUNCT__
1747bdad233fSMatthew Knepley #define __FUNCT__ "TSSetProblemType"
1748d8e5e3e6SSatish Balay /*@
1749bdad233fSMatthew Knepley   TSSetProblemType - Sets the type of problem to be solved.
1750d763cef2SBarry Smith 
1751bdad233fSMatthew Knepley   Not collective
1752d763cef2SBarry Smith 
1753bdad233fSMatthew Knepley   Input Parameters:
1754bdad233fSMatthew Knepley + ts   - The TS
1755bdad233fSMatthew Knepley - type - One of TS_LINEAR, TS_NONLINEAR where these types refer to problems of the forms
1756d763cef2SBarry Smith .vb
17570910c330SBarry Smith          U_t - A U = 0      (linear)
17580910c330SBarry Smith          U_t - A(t) U = 0   (linear)
17590910c330SBarry Smith          F(t,U,U_t) = 0     (nonlinear)
1760d763cef2SBarry Smith .ve
1761d763cef2SBarry Smith 
1762d763cef2SBarry Smith    Level: beginner
1763d763cef2SBarry Smith 
1764bdad233fSMatthew Knepley .keywords: TS, problem type
1765bdad233fSMatthew Knepley .seealso: TSSetUp(), TSProblemType, TS
1766d763cef2SBarry Smith @*/
17677087cfbeSBarry Smith PetscErrorCode  TSSetProblemType(TS ts, TSProblemType type)
1768a7cc72afSBarry Smith {
17699e2a6581SJed Brown   PetscErrorCode ierr;
17709e2a6581SJed Brown 
1771d763cef2SBarry Smith   PetscFunctionBegin;
17720700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
1773bdad233fSMatthew Knepley   ts->problem_type = type;
17749e2a6581SJed Brown   if (type == TS_LINEAR) {
17759e2a6581SJed Brown     SNES snes;
17769e2a6581SJed Brown     ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
17779e2a6581SJed Brown     ierr = SNESSetType(snes,SNESKSPONLY);CHKERRQ(ierr);
17789e2a6581SJed Brown   }
1779d763cef2SBarry Smith   PetscFunctionReturn(0);
1780d763cef2SBarry Smith }
1781d763cef2SBarry Smith 
1782bdad233fSMatthew Knepley #undef __FUNCT__
1783bdad233fSMatthew Knepley #define __FUNCT__ "TSGetProblemType"
1784bdad233fSMatthew Knepley /*@C
1785bdad233fSMatthew Knepley   TSGetProblemType - Gets the type of problem to be solved.
1786bdad233fSMatthew Knepley 
1787bdad233fSMatthew Knepley   Not collective
1788bdad233fSMatthew Knepley 
1789bdad233fSMatthew Knepley   Input Parameter:
1790bdad233fSMatthew Knepley . ts   - The TS
1791bdad233fSMatthew Knepley 
1792bdad233fSMatthew Knepley   Output Parameter:
1793bdad233fSMatthew Knepley . type - One of TS_LINEAR, TS_NONLINEAR where these types refer to problems of the forms
1794bdad233fSMatthew Knepley .vb
1795089b2837SJed Brown          M U_t = A U
1796089b2837SJed Brown          M(t) U_t = A(t) U
1797b5abc632SBarry Smith          F(t,U,U_t)
1798bdad233fSMatthew Knepley .ve
1799bdad233fSMatthew Knepley 
1800bdad233fSMatthew Knepley    Level: beginner
1801bdad233fSMatthew Knepley 
1802bdad233fSMatthew Knepley .keywords: TS, problem type
1803bdad233fSMatthew Knepley .seealso: TSSetUp(), TSProblemType, TS
1804bdad233fSMatthew Knepley @*/
18057087cfbeSBarry Smith PetscErrorCode  TSGetProblemType(TS ts, TSProblemType *type)
1806a7cc72afSBarry Smith {
1807bdad233fSMatthew Knepley   PetscFunctionBegin;
18080700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
18094482741eSBarry Smith   PetscValidIntPointer(type,2);
1810bdad233fSMatthew Knepley   *type = ts->problem_type;
1811bdad233fSMatthew Knepley   PetscFunctionReturn(0);
1812bdad233fSMatthew Knepley }
1813d763cef2SBarry Smith 
18144a2ae208SSatish Balay #undef __FUNCT__
18154a2ae208SSatish Balay #define __FUNCT__ "TSSetUp"
1816d763cef2SBarry Smith /*@
1817d763cef2SBarry Smith    TSSetUp - Sets up the internal data structures for the later use
1818d763cef2SBarry Smith    of a timestepper.
1819d763cef2SBarry Smith 
1820d763cef2SBarry Smith    Collective on TS
1821d763cef2SBarry Smith 
1822d763cef2SBarry Smith    Input Parameter:
1823d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
1824d763cef2SBarry Smith 
1825d763cef2SBarry Smith    Notes:
1826d763cef2SBarry Smith    For basic use of the TS solvers the user need not explicitly call
1827d763cef2SBarry Smith    TSSetUp(), since these actions will automatically occur during
1828d763cef2SBarry Smith    the call to TSStep().  However, if one wishes to control this
1829d763cef2SBarry Smith    phase separately, TSSetUp() should be called after TSCreate()
1830d763cef2SBarry Smith    and optional routines of the form TSSetXXX(), but before TSStep().
1831d763cef2SBarry Smith 
1832d763cef2SBarry Smith    Level: advanced
1833d763cef2SBarry Smith 
1834d763cef2SBarry Smith .keywords: TS, timestep, setup
1835d763cef2SBarry Smith 
1836d763cef2SBarry Smith .seealso: TSCreate(), TSStep(), TSDestroy()
1837d763cef2SBarry Smith @*/
18387087cfbeSBarry Smith PetscErrorCode  TSSetUp(TS ts)
1839d763cef2SBarry Smith {
1840dfbe8321SBarry Smith   PetscErrorCode ierr;
18416c6b9e74SPeter Brune   DM             dm;
18426c6b9e74SPeter Brune   PetscErrorCode (*func)(SNES,Vec,Vec,void*);
1843d1e9a80fSBarry Smith   PetscErrorCode (*jac)(SNES,Vec,Mat,Mat,void*);
18446c6b9e74SPeter Brune   TSIJacobian    ijac;
18456c6b9e74SPeter Brune   TSRHSJacobian  rhsjac;
1846d763cef2SBarry Smith 
1847d763cef2SBarry Smith   PetscFunctionBegin;
18480700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1849277b19d0SLisandro Dalcin   if (ts->setupcalled) PetscFunctionReturn(0);
1850277b19d0SLisandro Dalcin 
18512c18e0fdSBarry Smith   ts->total_steps = 0;
18527adad957SLisandro Dalcin   if (!((PetscObject)ts)->type_name) {
18539596e0b4SJed Brown     ierr = TSSetType(ts,TSEULER);CHKERRQ(ierr);
1854d763cef2SBarry Smith   }
1855277b19d0SLisandro Dalcin 
1856277b19d0SLisandro Dalcin   if (!ts->vec_sol) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Must call TSSetSolution() first");
1857277b19d0SLisandro Dalcin 
1858c235aa8dSHong Zhang 
1859552698daSJed Brown   ierr = TSGetAdapt(ts,&ts->adapt);CHKERRQ(ierr);
18601c3436cfSJed Brown 
1861e1244c69SJed Brown   if (ts->rhsjacobian.reuse) {
1862e1244c69SJed Brown     Mat Amat,Pmat;
1863e1244c69SJed Brown     SNES snes;
1864e1244c69SJed Brown     ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
1865e1244c69SJed Brown     ierr = SNESGetJacobian(snes,&Amat,&Pmat,NULL,NULL);CHKERRQ(ierr);
1866e1244c69SJed Brown     /* Matching matrices implies that an IJacobian is NOT set, because if it had been set, the IJacobian's matrix would
1867e1244c69SJed Brown      * have displaced the RHS matrix */
1868e1244c69SJed Brown     if (Amat == ts->Arhs) {
1869e1244c69SJed Brown       ierr = MatDuplicate(ts->Arhs,MAT_DO_NOT_COPY_VALUES,&Amat);CHKERRQ(ierr);
1870e1244c69SJed Brown       ierr = SNESSetJacobian(snes,Amat,NULL,NULL,NULL);CHKERRQ(ierr);
1871e1244c69SJed Brown       ierr = MatDestroy(&Amat);CHKERRQ(ierr);
1872e1244c69SJed Brown     }
1873e1244c69SJed Brown     if (Pmat == ts->Brhs) {
1874e1244c69SJed Brown       ierr = MatDuplicate(ts->Brhs,MAT_DO_NOT_COPY_VALUES,&Pmat);CHKERRQ(ierr);
1875e1244c69SJed Brown       ierr = SNESSetJacobian(snes,NULL,Pmat,NULL,NULL);CHKERRQ(ierr);
1876e1244c69SJed Brown       ierr = MatDestroy(&Pmat);CHKERRQ(ierr);
1877e1244c69SJed Brown     }
1878e1244c69SJed Brown   }
1879277b19d0SLisandro Dalcin   if (ts->ops->setup) {
1880000e7ae3SMatthew Knepley     ierr = (*ts->ops->setup)(ts);CHKERRQ(ierr);
1881277b19d0SLisandro Dalcin   }
1882277b19d0SLisandro Dalcin 
18836c6b9e74SPeter Brune   /* in the case where we've set a DMTSFunction or what have you, we need the default SNESFunction
18846c6b9e74SPeter Brune    to be set right but can't do it elsewhere due to the overreliance on ctx=ts.
18856c6b9e74SPeter Brune    */
18866c6b9e74SPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
18870298fd71SBarry Smith   ierr = DMSNESGetFunction(dm,&func,NULL);CHKERRQ(ierr);
18886c6b9e74SPeter Brune   if (!func) {
18896c6b9e74SPeter Brune     ierr =DMSNESSetFunction(dm,SNESTSFormFunction,ts);CHKERRQ(ierr);
18906c6b9e74SPeter Brune   }
18916c6b9e74SPeter Brune   /* if the SNES doesn't have a jacobian set and the TS has an ijacobian or rhsjacobian set, set the SNES to use it.
18926c6b9e74SPeter Brune      Otherwise, the SNES will use coloring internally to form the Jacobian.
18936c6b9e74SPeter Brune    */
18940298fd71SBarry Smith   ierr = DMSNESGetJacobian(dm,&jac,NULL);CHKERRQ(ierr);
18950298fd71SBarry Smith   ierr = DMTSGetIJacobian(dm,&ijac,NULL);CHKERRQ(ierr);
18960298fd71SBarry Smith   ierr = DMTSGetRHSJacobian(dm,&rhsjac,NULL);CHKERRQ(ierr);
18976c6b9e74SPeter Brune   if (!jac && (ijac || rhsjac)) {
18986c6b9e74SPeter Brune     ierr = DMSNESSetJacobian(dm,SNESTSFormJacobian,ts);CHKERRQ(ierr);
18996c6b9e74SPeter Brune   }
1900277b19d0SLisandro Dalcin   ts->setupcalled = PETSC_TRUE;
1901277b19d0SLisandro Dalcin   PetscFunctionReturn(0);
1902277b19d0SLisandro Dalcin }
1903277b19d0SLisandro Dalcin 
1904277b19d0SLisandro Dalcin #undef __FUNCT__
1905f6a906c0SBarry Smith #define __FUNCT__ "TSAdjointSetUp"
1906f6a906c0SBarry Smith /*@
1907f6a906c0SBarry Smith    TSAdjointSetUp - Sets up the internal data structures for the later use
1908f6a906c0SBarry Smith    of an adjoint solver
1909f6a906c0SBarry Smith 
1910f6a906c0SBarry Smith    Collective on TS
1911f6a906c0SBarry Smith 
1912f6a906c0SBarry Smith    Input Parameter:
1913f6a906c0SBarry Smith .  ts - the TS context obtained from TSCreate()
1914f6a906c0SBarry Smith 
1915f6a906c0SBarry Smith    Notes:
1916f6a906c0SBarry Smith    For basic use of the TS solvers the user need not explicitly call
1917f6a906c0SBarry Smith    TSSetUp(), since these actions will automatically occur during
1918f6a906c0SBarry Smith    the call to TSStep().  However, if one wishes to control this
1919f6a906c0SBarry Smith    phase separately, TSSetUp() should be called after TSCreate()
1920f6a906c0SBarry Smith    and optional routines of the form TSSetXXX(), but before TSStep().
1921f6a906c0SBarry Smith 
1922f6a906c0SBarry Smith    Level: advanced
1923f6a906c0SBarry Smith 
1924f6a906c0SBarry Smith .keywords: TS, timestep, setup
1925f6a906c0SBarry Smith 
1926f6a906c0SBarry Smith .seealso: TSCreate(), TSStep(), TSDestroy()
1927f6a906c0SBarry Smith @*/
1928f6a906c0SBarry Smith PetscErrorCode  TSAdjointSetUp(TS ts)
1929f6a906c0SBarry Smith {
1930f6a906c0SBarry Smith   PetscErrorCode ierr;
1931f6a906c0SBarry Smith 
1932f6a906c0SBarry Smith   PetscFunctionBegin;
1933f6a906c0SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1934f6a906c0SBarry Smith   if (ts->adjointsetupcalled) PetscFunctionReturn(0);
1935419a887dSBarry Smith   if (!ts->vecs_sensi) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Must call TSAdjointSetGradients() first");
193642f2b339SBarry Smith   if (ts->ops->adjointsetup) {
193742f2b339SBarry Smith     ierr = (*ts->ops->adjointsetup)(ts);CHKERRQ(ierr);
1938f6a906c0SBarry Smith   }
1939f6a906c0SBarry Smith   ts->adjointsetupcalled = PETSC_TRUE;
1940f6a906c0SBarry Smith   PetscFunctionReturn(0);
1941f6a906c0SBarry Smith }
1942f6a906c0SBarry Smith 
1943f6a906c0SBarry Smith #undef __FUNCT__
1944277b19d0SLisandro Dalcin #define __FUNCT__ "TSReset"
1945277b19d0SLisandro Dalcin /*@
1946277b19d0SLisandro Dalcin    TSReset - Resets a TS context and removes any allocated Vecs and Mats.
1947277b19d0SLisandro Dalcin 
1948277b19d0SLisandro Dalcin    Collective on TS
1949277b19d0SLisandro Dalcin 
1950277b19d0SLisandro Dalcin    Input Parameter:
1951277b19d0SLisandro Dalcin .  ts - the TS context obtained from TSCreate()
1952277b19d0SLisandro Dalcin 
1953277b19d0SLisandro Dalcin    Level: beginner
1954277b19d0SLisandro Dalcin 
1955277b19d0SLisandro Dalcin .keywords: TS, timestep, reset
1956277b19d0SLisandro Dalcin 
1957277b19d0SLisandro Dalcin .seealso: TSCreate(), TSSetup(), TSDestroy()
1958277b19d0SLisandro Dalcin @*/
1959277b19d0SLisandro Dalcin PetscErrorCode  TSReset(TS ts)
1960277b19d0SLisandro Dalcin {
1961277b19d0SLisandro Dalcin   PetscErrorCode ierr;
1962277b19d0SLisandro Dalcin 
1963277b19d0SLisandro Dalcin   PetscFunctionBegin;
1964277b19d0SLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1965b18ea86cSHong Zhang 
1966277b19d0SLisandro Dalcin   if (ts->ops->reset) {
1967277b19d0SLisandro Dalcin     ierr = (*ts->ops->reset)(ts);CHKERRQ(ierr);
1968277b19d0SLisandro Dalcin   }
1969277b19d0SLisandro Dalcin   if (ts->snes) {ierr = SNESReset(ts->snes);CHKERRQ(ierr);}
1970bbd56ea5SKarl Rupp 
19714e684422SJed Brown   ierr = MatDestroy(&ts->Arhs);CHKERRQ(ierr);
19724e684422SJed Brown   ierr = MatDestroy(&ts->Brhs);CHKERRQ(ierr);
1973214bc6a2SJed Brown   ierr = VecDestroy(&ts->Frhs);CHKERRQ(ierr);
19746bf464f9SBarry Smith   ierr = VecDestroy(&ts->vec_sol);CHKERRQ(ierr);
1975e3d84a46SJed Brown   ierr = VecDestroy(&ts->vatol);CHKERRQ(ierr);
1976e3d84a46SJed Brown   ierr = VecDestroy(&ts->vrtol);CHKERRQ(ierr);
197738637c2eSJed Brown   ierr = VecDestroyVecs(ts->nwork,&ts->work);CHKERRQ(ierr);
1978f8fee759SHong Zhang   ts->vecs_sensi = 0;
1979f8fee759SHong Zhang   ts->vecs_sensip = 0;
1980ad8e2604SHong Zhang   ierr = MatDestroy(&ts->Jacp);CHKERRQ(ierr);
19812c39e106SBarry Smith   ierr = VecDestroy(&ts->vec_costintegral);CHKERRQ(ierr);
198236eaed60SHong Zhang   ierr = VecDestroy(&ts->vec_costintegrand);CHKERRQ(ierr);
1983277b19d0SLisandro Dalcin   ts->setupcalled = PETSC_FALSE;
1984d763cef2SBarry Smith   PetscFunctionReturn(0);
1985d763cef2SBarry Smith }
1986d763cef2SBarry Smith 
19874a2ae208SSatish Balay #undef __FUNCT__
19884a2ae208SSatish Balay #define __FUNCT__ "TSDestroy"
1989d8e5e3e6SSatish Balay /*@
1990d763cef2SBarry Smith    TSDestroy - Destroys the timestepper context that was created
1991d763cef2SBarry Smith    with TSCreate().
1992d763cef2SBarry Smith 
1993d763cef2SBarry Smith    Collective on TS
1994d763cef2SBarry Smith 
1995d763cef2SBarry Smith    Input Parameter:
1996d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
1997d763cef2SBarry Smith 
1998d763cef2SBarry Smith    Level: beginner
1999d763cef2SBarry Smith 
2000d763cef2SBarry Smith .keywords: TS, timestepper, destroy
2001d763cef2SBarry Smith 
2002d763cef2SBarry Smith .seealso: TSCreate(), TSSetUp(), TSSolve()
2003d763cef2SBarry Smith @*/
20046bf464f9SBarry Smith PetscErrorCode  TSDestroy(TS *ts)
2005d763cef2SBarry Smith {
20066849ba73SBarry Smith   PetscErrorCode ierr;
2007d763cef2SBarry Smith 
2008d763cef2SBarry Smith   PetscFunctionBegin;
20096bf464f9SBarry Smith   if (!*ts) PetscFunctionReturn(0);
20106bf464f9SBarry Smith   PetscValidHeaderSpecific((*ts),TS_CLASSID,1);
20116bf464f9SBarry Smith   if (--((PetscObject)(*ts))->refct > 0) {*ts = 0; PetscFunctionReturn(0);}
2012d763cef2SBarry Smith 
20136bf464f9SBarry Smith   ierr = TSReset((*ts));CHKERRQ(ierr);
2014277b19d0SLisandro Dalcin 
2015e04113cfSBarry Smith   /* if memory was published with SAWs then destroy it */
2016e04113cfSBarry Smith   ierr = PetscObjectSAWsViewOff((PetscObject)*ts);CHKERRQ(ierr);
20176bf464f9SBarry Smith   if ((*ts)->ops->destroy) {ierr = (*(*ts)->ops->destroy)((*ts));CHKERRQ(ierr);}
20186d4c513bSLisandro Dalcin 
2019bc952696SBarry Smith   ierr = TSTrajectoryDestroy(&(*ts)->trajectory);CHKERRQ(ierr);
2020bc952696SBarry Smith 
202184df9cb4SJed Brown   ierr = TSAdaptDestroy(&(*ts)->adapt);CHKERRQ(ierr);
2022aeb4809dSShri Abhyankar   if ((*ts)->event) {
2023aeb4809dSShri Abhyankar     ierr = TSEventMonitorDestroy(&(*ts)->event);CHKERRQ(ierr);
2024aeb4809dSShri Abhyankar   }
20256bf464f9SBarry Smith   ierr = SNESDestroy(&(*ts)->snes);CHKERRQ(ierr);
20266bf464f9SBarry Smith   ierr = DMDestroy(&(*ts)->dm);CHKERRQ(ierr);
20276bf464f9SBarry Smith   ierr = TSMonitorCancel((*ts));CHKERRQ(ierr);
20286d4c513bSLisandro Dalcin 
2029a79aaaedSSatish Balay   ierr = PetscHeaderDestroy(ts);CHKERRQ(ierr);
2030d763cef2SBarry Smith   PetscFunctionReturn(0);
2031d763cef2SBarry Smith }
2032d763cef2SBarry Smith 
20334a2ae208SSatish Balay #undef __FUNCT__
20344a2ae208SSatish Balay #define __FUNCT__ "TSGetSNES"
2035d8e5e3e6SSatish Balay /*@
2036d763cef2SBarry Smith    TSGetSNES - Returns the SNES (nonlinear solver) associated with
2037d763cef2SBarry Smith    a TS (timestepper) context. Valid only for nonlinear problems.
2038d763cef2SBarry Smith 
2039d763cef2SBarry Smith    Not Collective, but SNES is parallel if TS is parallel
2040d763cef2SBarry Smith 
2041d763cef2SBarry Smith    Input Parameter:
2042d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2043d763cef2SBarry Smith 
2044d763cef2SBarry Smith    Output Parameter:
2045d763cef2SBarry Smith .  snes - the nonlinear solver context
2046d763cef2SBarry Smith 
2047d763cef2SBarry Smith    Notes:
2048d763cef2SBarry Smith    The user can then directly manipulate the SNES context to set various
2049d763cef2SBarry Smith    options, etc.  Likewise, the user can then extract and manipulate the
205094b7f48cSBarry Smith    KSP, KSP, and PC contexts as well.
2051d763cef2SBarry Smith 
2052d763cef2SBarry Smith    TSGetSNES() does not work for integrators that do not use SNES; in
20530298fd71SBarry Smith    this case TSGetSNES() returns NULL in snes.
2054d763cef2SBarry Smith 
2055d763cef2SBarry Smith    Level: beginner
2056d763cef2SBarry Smith 
2057d763cef2SBarry Smith .keywords: timestep, get, SNES
2058d763cef2SBarry Smith @*/
20597087cfbeSBarry Smith PetscErrorCode  TSGetSNES(TS ts,SNES *snes)
2060d763cef2SBarry Smith {
2061d372ba47SLisandro Dalcin   PetscErrorCode ierr;
2062d372ba47SLisandro Dalcin 
2063d763cef2SBarry Smith   PetscFunctionBegin;
20640700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
20654482741eSBarry Smith   PetscValidPointer(snes,2);
2066d372ba47SLisandro Dalcin   if (!ts->snes) {
2067ce94432eSBarry Smith     ierr = SNESCreate(PetscObjectComm((PetscObject)ts),&ts->snes);CHKERRQ(ierr);
20680298fd71SBarry Smith     ierr = SNESSetFunction(ts->snes,NULL,SNESTSFormFunction,ts);CHKERRQ(ierr);
20693bb1ff40SBarry Smith     ierr = PetscLogObjectParent((PetscObject)ts,(PetscObject)ts->snes);CHKERRQ(ierr);
2070d372ba47SLisandro Dalcin     ierr = PetscObjectIncrementTabLevel((PetscObject)ts->snes,(PetscObject)ts,1);CHKERRQ(ierr);
2071496e6a7aSJed Brown     if (ts->dm) {ierr = SNESSetDM(ts->snes,ts->dm);CHKERRQ(ierr);}
20729e2a6581SJed Brown     if (ts->problem_type == TS_LINEAR) {
20739e2a6581SJed Brown       ierr = SNESSetType(ts->snes,SNESKSPONLY);CHKERRQ(ierr);
20749e2a6581SJed Brown     }
2075d372ba47SLisandro Dalcin   }
2076d763cef2SBarry Smith   *snes = ts->snes;
2077d763cef2SBarry Smith   PetscFunctionReturn(0);
2078d763cef2SBarry Smith }
2079d763cef2SBarry Smith 
20804a2ae208SSatish Balay #undef __FUNCT__
2081deb2cd25SJed Brown #define __FUNCT__ "TSSetSNES"
2082deb2cd25SJed Brown /*@
2083deb2cd25SJed Brown    TSSetSNES - Set the SNES (nonlinear solver) to be used by the timestepping context
2084deb2cd25SJed Brown 
2085deb2cd25SJed Brown    Collective
2086deb2cd25SJed Brown 
2087deb2cd25SJed Brown    Input Parameter:
2088deb2cd25SJed Brown +  ts - the TS context obtained from TSCreate()
2089deb2cd25SJed Brown -  snes - the nonlinear solver context
2090deb2cd25SJed Brown 
2091deb2cd25SJed Brown    Notes:
2092deb2cd25SJed Brown    Most users should have the TS created by calling TSGetSNES()
2093deb2cd25SJed Brown 
2094deb2cd25SJed Brown    Level: developer
2095deb2cd25SJed Brown 
2096deb2cd25SJed Brown .keywords: timestep, set, SNES
2097deb2cd25SJed Brown @*/
2098deb2cd25SJed Brown PetscErrorCode TSSetSNES(TS ts,SNES snes)
2099deb2cd25SJed Brown {
2100deb2cd25SJed Brown   PetscErrorCode ierr;
2101d1e9a80fSBarry Smith   PetscErrorCode (*func)(SNES,Vec,Mat,Mat,void*);
2102deb2cd25SJed Brown 
2103deb2cd25SJed Brown   PetscFunctionBegin;
2104deb2cd25SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2105deb2cd25SJed Brown   PetscValidHeaderSpecific(snes,SNES_CLASSID,2);
2106deb2cd25SJed Brown   ierr = PetscObjectReference((PetscObject)snes);CHKERRQ(ierr);
2107deb2cd25SJed Brown   ierr = SNESDestroy(&ts->snes);CHKERRQ(ierr);
2108bbd56ea5SKarl Rupp 
2109deb2cd25SJed Brown   ts->snes = snes;
2110bbd56ea5SKarl Rupp 
21110298fd71SBarry Smith   ierr = SNESSetFunction(ts->snes,NULL,SNESTSFormFunction,ts);CHKERRQ(ierr);
21120298fd71SBarry Smith   ierr = SNESGetJacobian(ts->snes,NULL,NULL,&func,NULL);CHKERRQ(ierr);
2113740132f1SEmil Constantinescu   if (func == SNESTSFormJacobian) {
21140298fd71SBarry Smith     ierr = SNESSetJacobian(ts->snes,NULL,NULL,SNESTSFormJacobian,ts);CHKERRQ(ierr);
2115740132f1SEmil Constantinescu   }
2116deb2cd25SJed Brown   PetscFunctionReturn(0);
2117deb2cd25SJed Brown }
2118deb2cd25SJed Brown 
2119deb2cd25SJed Brown #undef __FUNCT__
212094b7f48cSBarry Smith #define __FUNCT__ "TSGetKSP"
2121d8e5e3e6SSatish Balay /*@
212294b7f48cSBarry Smith    TSGetKSP - Returns the KSP (linear solver) associated with
2123d763cef2SBarry Smith    a TS (timestepper) context.
2124d763cef2SBarry Smith 
212594b7f48cSBarry Smith    Not Collective, but KSP is parallel if TS is parallel
2126d763cef2SBarry Smith 
2127d763cef2SBarry Smith    Input Parameter:
2128d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2129d763cef2SBarry Smith 
2130d763cef2SBarry Smith    Output Parameter:
213194b7f48cSBarry Smith .  ksp - the nonlinear solver context
2132d763cef2SBarry Smith 
2133d763cef2SBarry Smith    Notes:
213494b7f48cSBarry Smith    The user can then directly manipulate the KSP context to set various
2135d763cef2SBarry Smith    options, etc.  Likewise, the user can then extract and manipulate the
2136d763cef2SBarry Smith    KSP and PC contexts as well.
2137d763cef2SBarry Smith 
213894b7f48cSBarry Smith    TSGetKSP() does not work for integrators that do not use KSP;
21390298fd71SBarry Smith    in this case TSGetKSP() returns NULL in ksp.
2140d763cef2SBarry Smith 
2141d763cef2SBarry Smith    Level: beginner
2142d763cef2SBarry Smith 
214394b7f48cSBarry Smith .keywords: timestep, get, KSP
2144d763cef2SBarry Smith @*/
21457087cfbeSBarry Smith PetscErrorCode  TSGetKSP(TS ts,KSP *ksp)
2146d763cef2SBarry Smith {
2147d372ba47SLisandro Dalcin   PetscErrorCode ierr;
2148089b2837SJed Brown   SNES           snes;
2149d372ba47SLisandro Dalcin 
2150d763cef2SBarry Smith   PetscFunctionBegin;
21510700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
21524482741eSBarry Smith   PetscValidPointer(ksp,2);
215317186662SBarry Smith   if (!((PetscObject)ts)->type_name) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NULL,"KSP is not created yet. Call TSSetType() first");
2154e32f2f54SBarry Smith   if (ts->problem_type != TS_LINEAR) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Linear only; use TSGetSNES()");
2155089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
2156089b2837SJed Brown   ierr = SNESGetKSP(snes,ksp);CHKERRQ(ierr);
2157d763cef2SBarry Smith   PetscFunctionReturn(0);
2158d763cef2SBarry Smith }
2159d763cef2SBarry Smith 
2160d763cef2SBarry Smith /* ----------- Routines to set solver parameters ---------- */
2161d763cef2SBarry Smith 
21624a2ae208SSatish Balay #undef __FUNCT__
2163adb62b0dSMatthew Knepley #define __FUNCT__ "TSGetDuration"
2164adb62b0dSMatthew Knepley /*@
2165adb62b0dSMatthew Knepley    TSGetDuration - Gets the maximum number of timesteps to use and
2166adb62b0dSMatthew Knepley    maximum time for iteration.
2167adb62b0dSMatthew Knepley 
21683f9fe445SBarry Smith    Not Collective
2169adb62b0dSMatthew Knepley 
2170adb62b0dSMatthew Knepley    Input Parameters:
2171adb62b0dSMatthew Knepley +  ts       - the TS context obtained from TSCreate()
21720298fd71SBarry Smith .  maxsteps - maximum number of iterations to use, or NULL
21730298fd71SBarry Smith -  maxtime  - final time to iterate to, or NULL
2174adb62b0dSMatthew Knepley 
2175adb62b0dSMatthew Knepley    Level: intermediate
2176adb62b0dSMatthew Knepley 
2177adb62b0dSMatthew Knepley .keywords: TS, timestep, get, maximum, iterations, time
2178adb62b0dSMatthew Knepley @*/
21797087cfbeSBarry Smith PetscErrorCode  TSGetDuration(TS ts, PetscInt *maxsteps, PetscReal *maxtime)
2180adb62b0dSMatthew Knepley {
2181adb62b0dSMatthew Knepley   PetscFunctionBegin;
21820700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2183abc0a331SBarry Smith   if (maxsteps) {
21844482741eSBarry Smith     PetscValidIntPointer(maxsteps,2);
2185adb62b0dSMatthew Knepley     *maxsteps = ts->max_steps;
2186adb62b0dSMatthew Knepley   }
2187abc0a331SBarry Smith   if (maxtime) {
21884482741eSBarry Smith     PetscValidScalarPointer(maxtime,3);
2189adb62b0dSMatthew Knepley     *maxtime = ts->max_time;
2190adb62b0dSMatthew Knepley   }
2191adb62b0dSMatthew Knepley   PetscFunctionReturn(0);
2192adb62b0dSMatthew Knepley }
2193adb62b0dSMatthew Knepley 
2194adb62b0dSMatthew Knepley #undef __FUNCT__
21954a2ae208SSatish Balay #define __FUNCT__ "TSSetDuration"
2196d763cef2SBarry Smith /*@
2197d763cef2SBarry Smith    TSSetDuration - Sets the maximum number of timesteps to use and
2198d763cef2SBarry Smith    maximum time for iteration.
2199d763cef2SBarry Smith 
22003f9fe445SBarry Smith    Logically Collective on TS
2201d763cef2SBarry Smith 
2202d763cef2SBarry Smith    Input Parameters:
2203d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
2204d763cef2SBarry Smith .  maxsteps - maximum number of iterations to use
2205d763cef2SBarry Smith -  maxtime - final time to iterate to
2206d763cef2SBarry Smith 
2207d763cef2SBarry Smith    Options Database Keys:
2208d763cef2SBarry Smith .  -ts_max_steps <maxsteps> - Sets maxsteps
22093bca7d26SBarry Smith .  -ts_final_time <maxtime> - Sets maxtime
2210d763cef2SBarry Smith 
2211d763cef2SBarry Smith    Notes:
2212d763cef2SBarry Smith    The default maximum number of iterations is 5000. Default time is 5.0
2213d763cef2SBarry Smith 
2214d763cef2SBarry Smith    Level: intermediate
2215d763cef2SBarry Smith 
2216d763cef2SBarry Smith .keywords: TS, timestep, set, maximum, iterations
2217a43b19c4SJed Brown 
2218a43b19c4SJed Brown .seealso: TSSetExactFinalTime()
2219d763cef2SBarry Smith @*/
22207087cfbeSBarry Smith PetscErrorCode  TSSetDuration(TS ts,PetscInt maxsteps,PetscReal maxtime)
2221d763cef2SBarry Smith {
2222d763cef2SBarry Smith   PetscFunctionBegin;
22230700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2224c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(ts,maxsteps,2);
2225c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(ts,maxtime,2);
222639b7ec4bSSean Farley   if (maxsteps >= 0) ts->max_steps = maxsteps;
222739b7ec4bSSean Farley   if (maxtime != PETSC_DEFAULT) ts->max_time = maxtime;
2228d763cef2SBarry Smith   PetscFunctionReturn(0);
2229d763cef2SBarry Smith }
2230d763cef2SBarry Smith 
22314a2ae208SSatish Balay #undef __FUNCT__
22324a2ae208SSatish Balay #define __FUNCT__ "TSSetSolution"
2233d763cef2SBarry Smith /*@
2234d763cef2SBarry Smith    TSSetSolution - Sets the initial solution vector
2235d763cef2SBarry Smith    for use by the TS routines.
2236d763cef2SBarry Smith 
22373f9fe445SBarry Smith    Logically Collective on TS and Vec
2238d763cef2SBarry Smith 
2239d763cef2SBarry Smith    Input Parameters:
2240d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
22410910c330SBarry Smith -  u - the solution vector
2242d763cef2SBarry Smith 
2243d763cef2SBarry Smith    Level: beginner
2244d763cef2SBarry Smith 
2245d763cef2SBarry Smith .keywords: TS, timestep, set, solution, initial conditions
2246d763cef2SBarry Smith @*/
22470910c330SBarry Smith PetscErrorCode  TSSetSolution(TS ts,Vec u)
2248d763cef2SBarry Smith {
22498737fe31SLisandro Dalcin   PetscErrorCode ierr;
2250496e6a7aSJed Brown   DM             dm;
22518737fe31SLisandro Dalcin 
2252d763cef2SBarry Smith   PetscFunctionBegin;
22530700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
22540910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,2);
22550910c330SBarry Smith   ierr = PetscObjectReference((PetscObject)u);CHKERRQ(ierr);
22566bf464f9SBarry Smith   ierr = VecDestroy(&ts->vec_sol);CHKERRQ(ierr);
2257bbd56ea5SKarl Rupp 
22580910c330SBarry Smith   ts->vec_sol = u;
2259bbd56ea5SKarl Rupp 
2260496e6a7aSJed Brown   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
22610910c330SBarry Smith   ierr = DMShellSetGlobalVector(dm,u);CHKERRQ(ierr);
2262d763cef2SBarry Smith   PetscFunctionReturn(0);
2263d763cef2SBarry Smith }
2264d763cef2SBarry Smith 
2265e74ef692SMatthew Knepley #undef __FUNCT__
226673b18844SBarry Smith #define __FUNCT__ "TSAdjointSetSteps"
226773b18844SBarry Smith /*@
226873b18844SBarry Smith    TSAdjointSetSteps - Sets the number of steps the adjoint solver should take backward in time
226973b18844SBarry Smith 
227073b18844SBarry Smith    Logically Collective on TS
227173b18844SBarry Smith 
227273b18844SBarry Smith    Input Parameters:
227373b18844SBarry Smith +  ts - the TS context obtained from TSCreate()
227473b18844SBarry Smith .  steps - number of steps to use
227573b18844SBarry Smith 
227673b18844SBarry Smith    Level: intermediate
227773b18844SBarry Smith 
227873b18844SBarry Smith    Notes: Normally one does not call this and TSAdjointSolve() integrates back to the original timestep. One can call this
227973b18844SBarry Smith           so as to integrate back to less than the original timestep
228073b18844SBarry Smith 
228173b18844SBarry Smith .keywords: TS, timestep, set, maximum, iterations
228273b18844SBarry Smith 
228373b18844SBarry Smith .seealso: TSSetExactFinalTime()
228473b18844SBarry Smith @*/
228573b18844SBarry Smith PetscErrorCode  TSAdjointSetSteps(TS ts,PetscInt steps)
228673b18844SBarry Smith {
228773b18844SBarry Smith   PetscFunctionBegin;
228873b18844SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
228973b18844SBarry Smith   PetscValidLogicalCollectiveInt(ts,steps,2);
229073b18844SBarry Smith   if (steps < 0) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_OUTOFRANGE,"Cannot step back a negative number of steps");
229173b18844SBarry Smith   if (steps > ts->total_steps) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_OUTOFRANGE,"Cannot step back more than the total number of forward steps");
229273b18844SBarry Smith   ts->adjoint_max_steps = steps;
229373b18844SBarry Smith   PetscFunctionReturn(0);
229473b18844SBarry Smith }
229573b18844SBarry Smith 
229673b18844SBarry Smith #undef __FUNCT__
2297419a887dSBarry Smith #define __FUNCT__ "TSAdjointSetGradients"
2298c235aa8dSHong Zhang /*@
2299419a887dSBarry Smith    TSAdjointSetGradients - Sets the initial value of gradients w.r.t. initial conditions and w.r.t. the problem parameters  for use by the TS routines.
2300c235aa8dSHong Zhang 
2301c235aa8dSHong Zhang    Logically Collective on TS and Vec
2302c235aa8dSHong Zhang 
2303c235aa8dSHong Zhang    Input Parameters:
2304c235aa8dSHong Zhang +  ts - the TS context obtained from TSCreate()
2305419a887dSBarry Smith .  u - gradients with respect to the initial condition variables
2306419a887dSBarry Smith -  w - gradients with respect to the parameters
2307c235aa8dSHong Zhang 
2308c235aa8dSHong Zhang    Level: beginner
2309c235aa8dSHong Zhang 
2310c235aa8dSHong Zhang .keywords: TS, timestep, set, sensitivity, initial conditions
2311c235aa8dSHong Zhang @*/
2312419a887dSBarry Smith PetscErrorCode  TSAdjointSetGradients(TS ts,PetscInt numberadjs,Vec *u,Vec *w)
2313c235aa8dSHong Zhang {
2314c235aa8dSHong Zhang   PetscFunctionBegin;
2315c235aa8dSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2316b18ea86cSHong Zhang   PetscValidPointer(u,2);
2317b18ea86cSHong Zhang   ts->vecs_sensi  = u;
2318419a887dSBarry Smith   ts->vecs_sensip = w;
2319b18ea86cSHong Zhang   ts->numberadjs  = numberadjs;
2320ad8e2604SHong Zhang   PetscFunctionReturn(0);
2321ad8e2604SHong Zhang }
2322ad8e2604SHong Zhang 
2323ad8e2604SHong Zhang #undef __FUNCT__
23245bf8c567SBarry Smith #define __FUNCT__ "TSAdjointSetRHSJacobian"
2325ad8e2604SHong Zhang /*@C
23265bf8c567SBarry Smith   TSAdjointSetRHSJacobian - Sets the function that computes the Jacobian w.r.t. parameters.
2327ad8e2604SHong Zhang 
2328ad8e2604SHong Zhang   Logically Collective on TS
2329ad8e2604SHong Zhang 
2330ad8e2604SHong Zhang   Input Parameters:
2331ad8e2604SHong Zhang + ts   - The TS context obtained from TSCreate()
2332ad8e2604SHong Zhang - func - The function
2333ad8e2604SHong Zhang 
2334ad8e2604SHong Zhang   Calling sequence of func:
233505755b9cSHong Zhang $ func (TS ts,PetscReal t,Vec u,Mat A,void *ctx);
233605755b9cSHong Zhang +   t - current timestep
233705755b9cSHong Zhang .   u - input vector
233805755b9cSHong Zhang .   A - output matrix
233905755b9cSHong Zhang -   ctx - [optional] user-defined function context
2340ad8e2604SHong Zhang 
2341ad8e2604SHong Zhang   Level: intermediate
2342ad8e2604SHong Zhang 
2343ad8e2604SHong Zhang .keywords: TS, sensitivity
2344ad8e2604SHong Zhang .seealso:
2345ad8e2604SHong Zhang @*/
23465bf8c567SBarry Smith PetscErrorCode  TSAdjointSetRHSJacobian(TS ts,Mat Amat,PetscErrorCode (*func)(TS,PetscReal,Vec,Mat,void*),void *ctx)
2347ad8e2604SHong Zhang {
2348ad8e2604SHong Zhang   PetscErrorCode ierr;
2349ad8e2604SHong Zhang 
2350ad8e2604SHong Zhang   PetscFunctionBegin;
2351ad8e2604SHong Zhang   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2352ad8e2604SHong Zhang   if (Amat) PetscValidHeaderSpecific(Amat,MAT_CLASSID,2);
2353ad8e2604SHong Zhang 
2354ad8e2604SHong Zhang   ts->rhsjacobianp    = func;
2355ad8e2604SHong Zhang   ts->rhsjacobianpctx = ctx;
2356ad8e2604SHong Zhang   if(Amat) {
2357ad8e2604SHong Zhang     ierr = PetscObjectReference((PetscObject)Amat);CHKERRQ(ierr);
2358ad8e2604SHong Zhang     ierr = MatDestroy(&ts->Jacp);CHKERRQ(ierr);
2359ad8e2604SHong Zhang 
2360ad8e2604SHong Zhang     ts->Jacp = Amat;
2361ad8e2604SHong Zhang   }
2362ad8e2604SHong Zhang   PetscFunctionReturn(0);
2363ad8e2604SHong Zhang }
2364ad8e2604SHong Zhang 
2365ad8e2604SHong Zhang #undef __FUNCT__
23665bf8c567SBarry Smith #define __FUNCT__ "TSAdjointComputeRHSJacobian"
2367ad8e2604SHong Zhang /*@
23685bf8c567SBarry Smith   TSAdjointComputeRHSJacobian - Runs the user-defined Jacobian function.
2369ad8e2604SHong Zhang 
2370ad8e2604SHong Zhang   Collective on TS
2371ad8e2604SHong Zhang 
2372ad8e2604SHong Zhang   Input Parameters:
2373ad8e2604SHong Zhang . ts   - The TS context obtained from TSCreate()
2374ad8e2604SHong Zhang 
2375ad8e2604SHong Zhang   Level: developer
2376ad8e2604SHong Zhang 
2377ad8e2604SHong Zhang .keywords: TS, sensitivity
23785bf8c567SBarry Smith .seealso: TSAdjointSetRHSJacobian()
2379ad8e2604SHong Zhang @*/
23805bf8c567SBarry Smith PetscErrorCode  TSAdjointComputeRHSJacobian(TS ts,PetscReal t,Vec X,Mat Amat)
2381ad8e2604SHong Zhang {
2382ad8e2604SHong Zhang   PetscErrorCode ierr;
2383ad8e2604SHong Zhang 
2384ad8e2604SHong Zhang   PetscFunctionBegin;
2385ad8e2604SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2386ad8e2604SHong Zhang   PetscValidHeaderSpecific(X,VEC_CLASSID,3);
2387ad8e2604SHong Zhang   PetscValidPointer(Amat,4);
2388ad8e2604SHong Zhang 
2389ad8e2604SHong Zhang   PetscStackPush("TS user JacobianP function for sensitivity analysis");
2390ad8e2604SHong Zhang   ierr = (*ts->rhsjacobianp)(ts,t,X,Amat,ts->rhsjacobianpctx); CHKERRQ(ierr);
2391ad8e2604SHong Zhang   PetscStackPop;
2392ad8e2604SHong Zhang 
2393c235aa8dSHong Zhang   PetscFunctionReturn(0);
2394c235aa8dSHong Zhang }
2395c235aa8dSHong Zhang 
2396c235aa8dSHong Zhang #undef __FUNCT__
2397d4aa0a58SBarry Smith #define __FUNCT__ "TSAdjointSetCostIntegrand"
23986fd0887fSHong Zhang /*@C
2399*8a2f769dSBarry Smith     TSAdjointSetCostIntegrand - Sets the routine for evaluating the integral term in a cost function
24006fd0887fSHong Zhang 
24016fd0887fSHong Zhang     Logically Collective on TS
24026fd0887fSHong Zhang 
24036fd0887fSHong Zhang     Input Parameters:
24046fd0887fSHong Zhang +   ts - the TS context obtained from TSCreate()
2405*8a2f769dSBarry Smith .   numberadjs - number of gradients to be computed
24066fd0887fSHong Zhang .   fq - routine for evaluating the right-hand-side function
2407b612ec54SBarry Smith .   drdy - array of vectors to contain the gradient of the r's with respect to y, NULL if not a function of y
2408b612ec54SBarry Smith .   drdyf - function that computes the gradients of the r's with respect to y,NULL if not a function y
2409b612ec54SBarry Smith .   drdp - array of vectors to contain the gradient of the r's with respect to p, NULL if not a function of p
2410b612ec54SBarry Smith .   drdpf - function that computes the gradients of the r's with respect to p, NULL if not a function of p
2411b612ec54SBarry Smith -   ctx - [optional] user-defined context for private data for the function evaluation routine (may be NULL)
24126fd0887fSHong Zhang 
2413b612ec54SBarry Smith     Calling sequence of fq:
2414a2ae3dd2SHong Zhang $     TSCostIntegrand(TS ts,PetscReal t,Vec u,PetscReal *f,void *ctx);
24156fd0887fSHong Zhang 
24166fd0887fSHong Zhang +   t - current timestep
24176fd0887fSHong Zhang .   u - input vector
241836eaed60SHong Zhang .   f - function vector
24196fd0887fSHong Zhang -   ctx - [optional] user-defined function context
24206fd0887fSHong Zhang 
2421b612ec54SBarry Smith    Calling sequence of drdyf:
2422b612ec54SBarry Smith $    PetscErroCode drdyf(TS ts,PetscReal t,Vec U,Vec *drdy,void *ctx);
2423b612ec54SBarry Smith 
2424b612ec54SBarry Smith    Calling sequence of drdpf:
2425b612ec54SBarry Smith $    PetscErroCode drdpf(TS ts,PetscReal t,Vec U,Vec *drdp,void *ctx);
2426b612ec54SBarry Smith 
2427b612ec54SBarry Smith     Level: intermediate
24286fd0887fSHong Zhang 
24296fd0887fSHong Zhang .keywords: TS, sensitivity analysis, timestep, set, quadrature, function
24306fd0887fSHong Zhang 
24315bf8c567SBarry Smith .seealso: TSAdjointSetRHSJacobian(),TSAdjointGetGradients(), TSAdjointSetGradients()
24326fd0887fSHong Zhang @*/
2433*8a2f769dSBarry Smith PetscErrorCode  TSAdjointSetCostIntegrand(TS ts,PetscInt numberadjs,          PetscErrorCode (*fq)(TS,PetscReal,Vec,Vec,void*),
2434b612ec54SBarry Smith                                                                     Vec *drdy,PetscErrorCode (*drdyf)(TS,PetscReal,Vec,Vec*,void*),
2435b612ec54SBarry Smith                                                                     Vec *drdp,PetscErrorCode (*drdpf)(TS,PetscReal,Vec,Vec*,void*),void *ctx)
24366fd0887fSHong Zhang {
24376fd0887fSHong Zhang   PetscErrorCode ierr;
24386fd0887fSHong Zhang 
24396fd0887fSHong Zhang   PetscFunctionBegin;
24406fd0887fSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2441419a887dSBarry Smith   if (!ts->numberadjs) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Call TSAdjointSetGradients() first so that the number of cost functions can be determined.");
2442419a887dSBarry Smith   if (ts->numberadjs && ts->numberadjs!=numberadjs) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"The number of cost functions (2rd parameter of TSAdjointSetCostIntegrand()) is inconsistent with the one set by TSAdjointSetGradients()");
24436fd0887fSHong Zhang 
2444*8a2f769dSBarry Smith   ierr                  = VecCreateSeq(PETSC_COMM_SELF,numberadjs,&ts->vec_costintegral);CHKERRQ(ierr);
24452c39e106SBarry Smith   ierr                  = VecDuplicate(ts->vec_costintegral,&ts->vec_costintegrand);CHKERRQ(ierr);
2446e4680132SHong Zhang   ts->costintegrand     = fq;
244705755b9cSHong Zhang   ts->costintegrandctx  = ctx;
24486fd0887fSHong Zhang 
2449b612ec54SBarry Smith   ts->drdyfunction    = drdyf;
2450b612ec54SBarry Smith   ts->vecs_drdy       = drdy;
2451b612ec54SBarry Smith 
2452b612ec54SBarry Smith   ts->drdpfunction    = drdpf;
2453b612ec54SBarry Smith   ts->vecs_drdp       = drdp;
2454b612ec54SBarry Smith 
24556fd0887fSHong Zhang   PetscFunctionReturn(0);
24566fd0887fSHong Zhang }
24576fd0887fSHong Zhang 
24586fd0887fSHong Zhang #undef __FUNCT__
24592c39e106SBarry Smith #define __FUNCT__ "TSAdjointGetCostIntegral"
246036eaed60SHong Zhang /*@
24612c39e106SBarry Smith    TSAdjointGetCostIntegral - Returns the values of the integral term in the cost functions.
246236eaed60SHong Zhang    It is valid to call the routine after a backward run.
246336eaed60SHong Zhang 
246436eaed60SHong Zhang    Not Collective
246536eaed60SHong Zhang 
246636eaed60SHong Zhang    Input Parameter:
246736eaed60SHong Zhang .  ts - the TS context obtained from TSCreate()
246836eaed60SHong Zhang 
246936eaed60SHong Zhang    Output Parameter:
24702c39e106SBarry Smith .  v - the vector containing the integrals for each cost function
247136eaed60SHong Zhang 
247236eaed60SHong Zhang    Level: intermediate
247336eaed60SHong Zhang 
2474d4aa0a58SBarry Smith .seealso: TSAdjointSetCostIntegrand()
247536eaed60SHong Zhang 
247636eaed60SHong Zhang .keywords: TS, sensitivity analysis
247736eaed60SHong Zhang @*/
24782c39e106SBarry Smith PetscErrorCode  TSAdjointGetCostIntegral(TS ts,Vec *v)
247936eaed60SHong Zhang {
248036eaed60SHong Zhang   PetscFunctionBegin;
248136eaed60SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
248236eaed60SHong Zhang   PetscValidPointer(v,2);
24832c39e106SBarry Smith   *v = ts->vec_costintegral;
248436eaed60SHong Zhang   PetscFunctionReturn(0);
248536eaed60SHong Zhang }
248636eaed60SHong Zhang 
248736eaed60SHong Zhang #undef __FUNCT__
2488d4aa0a58SBarry Smith #define __FUNCT__ "TSAdjointComputeCostIntegrand"
24896fd0887fSHong Zhang /*@
24902c39e106SBarry Smith    TSAdjointComputeCostIntegrand - Evaluates the integral function in the cost functions.
24916fd0887fSHong Zhang 
24926fd0887fSHong Zhang    Input Parameters:
24936fd0887fSHong Zhang +  ts - the TS context
24946fd0887fSHong Zhang .  t - current time
249505755b9cSHong Zhang -  U - state vector
24966fd0887fSHong Zhang 
24976fd0887fSHong Zhang    Output Parameter:
24986fd0887fSHong Zhang .  q - vector of size numberadjs to hold the outputs
24996fd0887fSHong Zhang 
25006fd0887fSHong Zhang    Note:
25016fd0887fSHong Zhang    Most users should not need to explicitly call this routine, as it
25026fd0887fSHong Zhang    is used internally within the sensitivity analysis context.
25036fd0887fSHong Zhang 
25046fd0887fSHong Zhang    Level: developer
25056fd0887fSHong Zhang 
25066fd0887fSHong Zhang .keywords: TS, compute
25076fd0887fSHong Zhang 
2508d4aa0a58SBarry Smith .seealso: TSAdjointSetCostIntegrand()
25096fd0887fSHong Zhang @*/
2510d4aa0a58SBarry Smith PetscErrorCode TSAdjointComputeCostIntegrand(TS ts,PetscReal t,Vec U,Vec q)
25116fd0887fSHong Zhang {
25126fd0887fSHong Zhang   PetscErrorCode ierr;
25136fd0887fSHong Zhang 
25146fd0887fSHong Zhang   PetscFunctionBegin;
25156fd0887fSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
25166fd0887fSHong Zhang   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
25176fd0887fSHong Zhang   PetscValidHeaderSpecific(q,VEC_CLASSID,4);
25186fd0887fSHong Zhang 
25196fd0887fSHong Zhang   ierr = PetscLogEventBegin(TS_FunctionEval,ts,U,q,0);CHKERRQ(ierr);
2520e4680132SHong Zhang   if (ts->costintegrand) {
2521e4680132SHong Zhang     PetscStackPush("TS user integrand in the cost function");
252205755b9cSHong Zhang     ierr = (*ts->costintegrand)(ts,t,U,q,ts->costintegrandctx);CHKERRQ(ierr);
25236fd0887fSHong Zhang     PetscStackPop;
25246fd0887fSHong Zhang   } else {
25256fd0887fSHong Zhang     ierr = VecZeroEntries(q);CHKERRQ(ierr);
25266fd0887fSHong Zhang   }
25276fd0887fSHong Zhang 
25286fd0887fSHong Zhang   ierr = PetscLogEventEnd(TS_FunctionEval,ts,U,q,0);CHKERRQ(ierr);
25296fd0887fSHong Zhang   PetscFunctionReturn(0);
25306fd0887fSHong Zhang }
25316fd0887fSHong Zhang 
25326fd0887fSHong Zhang #undef __FUNCT__
2533d4aa0a58SBarry Smith #define __FUNCT__ "TSAdjointComputeDRDYFunction"
253405755b9cSHong Zhang /*@
2535d4aa0a58SBarry Smith   TSAdjointComputeDRDYFunction - Runs the user-defined DRDY function.
253605755b9cSHong Zhang 
253705755b9cSHong Zhang   Collective on TS
253805755b9cSHong Zhang 
253905755b9cSHong Zhang   Input Parameters:
254005755b9cSHong Zhang . ts   - The TS context obtained from TSCreate()
254105755b9cSHong Zhang 
254205755b9cSHong Zhang   Notes:
2543d4aa0a58SBarry Smith   TSAdjointComputeDRDYFunction() is typically used for sensitivity implementation,
254405755b9cSHong Zhang   so most users would not generally call this routine themselves.
254505755b9cSHong Zhang 
254605755b9cSHong Zhang   Level: developer
254705755b9cSHong Zhang 
254805755b9cSHong Zhang .keywords: TS, sensitivity
2549d4aa0a58SBarry Smith .seealso: TSAdjointComputeDRDYFunction()
255005755b9cSHong Zhang @*/
2551d4aa0a58SBarry Smith PetscErrorCode  TSAdjointComputeDRDYFunction(TS ts,PetscReal t,Vec X,Vec *drdy)
255205755b9cSHong Zhang {
255305755b9cSHong Zhang   PetscErrorCode ierr;
255405755b9cSHong Zhang 
255505755b9cSHong Zhang   PetscFunctionBegin;
255605755b9cSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
255705755b9cSHong Zhang   PetscValidHeaderSpecific(X,VEC_CLASSID,3);
255805755b9cSHong Zhang 
255905755b9cSHong Zhang   PetscStackPush("TS user DRDY function for sensitivity analysis");
2560b612ec54SBarry Smith   ierr = (*ts->drdyfunction)(ts,t,X,drdy,ts->costintegrandctx); CHKERRQ(ierr);
256105755b9cSHong Zhang   PetscStackPop;
256205755b9cSHong Zhang   PetscFunctionReturn(0);
256305755b9cSHong Zhang }
256405755b9cSHong Zhang 
256505755b9cSHong Zhang #undef __FUNCT__
2566d4aa0a58SBarry Smith #define __FUNCT__ "TSAdjointComputeDRDPFunction"
256705755b9cSHong Zhang /*@
2568d4aa0a58SBarry Smith   TSAdjointComputeDRDPFunction - Runs the user-defined DRDP function.
256905755b9cSHong Zhang 
257005755b9cSHong Zhang   Collective on TS
257105755b9cSHong Zhang 
257205755b9cSHong Zhang   Input Parameters:
257305755b9cSHong Zhang . ts   - The TS context obtained from TSCreate()
257405755b9cSHong Zhang 
257505755b9cSHong Zhang   Notes:
257605755b9cSHong Zhang   TSDRDPFunction() is typically used for sensitivity implementation,
257705755b9cSHong Zhang   so most users would not generally call this routine themselves.
257805755b9cSHong Zhang 
257905755b9cSHong Zhang   Level: developer
258005755b9cSHong Zhang 
258105755b9cSHong Zhang .keywords: TS, sensitivity
2582d4aa0a58SBarry Smith .seealso: TSAdjointSetDRDPFunction()
258305755b9cSHong Zhang @*/
2584d4aa0a58SBarry Smith PetscErrorCode  TSAdjointComputeDRDPFunction(TS ts,PetscReal t,Vec X,Vec *drdp)
258505755b9cSHong Zhang {
258605755b9cSHong Zhang   PetscErrorCode ierr;
258705755b9cSHong Zhang 
258805755b9cSHong Zhang   PetscFunctionBegin;
258905755b9cSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
259005755b9cSHong Zhang   PetscValidHeaderSpecific(X,VEC_CLASSID,3);
259105755b9cSHong Zhang 
259205755b9cSHong Zhang   PetscStackPush("TS user DRDP function for sensitivity analysis");
2593b612ec54SBarry Smith   ierr = (*ts->drdpfunction)(ts,t,X,drdp,ts->costintegrandctx); CHKERRQ(ierr);
259405755b9cSHong Zhang   PetscStackPop;
259505755b9cSHong Zhang   PetscFunctionReturn(0);
259605755b9cSHong Zhang }
259705755b9cSHong Zhang 
259805755b9cSHong Zhang #undef __FUNCT__
2599e74ef692SMatthew Knepley #define __FUNCT__ "TSSetPreStep"
2600ac226902SBarry Smith /*@C
2601000e7ae3SMatthew Knepley   TSSetPreStep - Sets the general-purpose function
26023f2090d5SJed Brown   called once at the beginning of each time step.
2603000e7ae3SMatthew Knepley 
26043f9fe445SBarry Smith   Logically Collective on TS
2605000e7ae3SMatthew Knepley 
2606000e7ae3SMatthew Knepley   Input Parameters:
2607000e7ae3SMatthew Knepley + ts   - The TS context obtained from TSCreate()
2608000e7ae3SMatthew Knepley - func - The function
2609000e7ae3SMatthew Knepley 
2610000e7ae3SMatthew Knepley   Calling sequence of func:
2611000e7ae3SMatthew Knepley . func (TS ts);
2612000e7ae3SMatthew Knepley 
2613000e7ae3SMatthew Knepley   Level: intermediate
2614000e7ae3SMatthew Knepley 
2615b8123daeSJed Brown   Note:
2616b8123daeSJed Brown   If a step is rejected, TSStep() will call this routine again before each attempt.
2617b8123daeSJed Brown   The last completed time step number can be queried using TSGetTimeStepNumber(), the
2618b8123daeSJed Brown   size of the step being attempted can be obtained using TSGetTimeStep().
2619b8123daeSJed Brown 
2620000e7ae3SMatthew Knepley .keywords: TS, timestep
26219be3e283SDebojyoti Ghosh .seealso: TSSetPreStage(), TSSetPostStage(), TSSetPostStep(), TSStep()
2622000e7ae3SMatthew Knepley @*/
26237087cfbeSBarry Smith PetscErrorCode  TSSetPreStep(TS ts, PetscErrorCode (*func)(TS))
2624000e7ae3SMatthew Knepley {
2625000e7ae3SMatthew Knepley   PetscFunctionBegin;
26260700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2627ae60f76fSBarry Smith   ts->prestep = func;
2628000e7ae3SMatthew Knepley   PetscFunctionReturn(0);
2629000e7ae3SMatthew Knepley }
2630000e7ae3SMatthew Knepley 
2631e74ef692SMatthew Knepley #undef __FUNCT__
26323f2090d5SJed Brown #define __FUNCT__ "TSPreStep"
263309ee8438SJed Brown /*@
26343f2090d5SJed Brown   TSPreStep - Runs the user-defined pre-step function.
26353f2090d5SJed Brown 
26363f2090d5SJed Brown   Collective on TS
26373f2090d5SJed Brown 
26383f2090d5SJed Brown   Input Parameters:
26393f2090d5SJed Brown . ts   - The TS context obtained from TSCreate()
26403f2090d5SJed Brown 
26413f2090d5SJed Brown   Notes:
26423f2090d5SJed Brown   TSPreStep() is typically used within time stepping implementations,
26433f2090d5SJed Brown   so most users would not generally call this routine themselves.
26443f2090d5SJed Brown 
26453f2090d5SJed Brown   Level: developer
26463f2090d5SJed Brown 
26473f2090d5SJed Brown .keywords: TS, timestep
26489be3e283SDebojyoti Ghosh .seealso: TSSetPreStep(), TSPreStage(), TSPostStage(), TSPostStep()
26493f2090d5SJed Brown @*/
26507087cfbeSBarry Smith PetscErrorCode  TSPreStep(TS ts)
26513f2090d5SJed Brown {
26523f2090d5SJed Brown   PetscErrorCode ierr;
26533f2090d5SJed Brown 
26543f2090d5SJed Brown   PetscFunctionBegin;
26550700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2656ae60f76fSBarry Smith   if (ts->prestep) {
2657ae60f76fSBarry Smith     PetscStackCallStandard((*ts->prestep),(ts));
2658312ce896SJed Brown   }
26593f2090d5SJed Brown   PetscFunctionReturn(0);
26603f2090d5SJed Brown }
26613f2090d5SJed Brown 
26623f2090d5SJed Brown #undef __FUNCT__
2663b8123daeSJed Brown #define __FUNCT__ "TSSetPreStage"
2664b8123daeSJed Brown /*@C
2665b8123daeSJed Brown   TSSetPreStage - Sets the general-purpose function
2666b8123daeSJed Brown   called once at the beginning of each stage.
2667b8123daeSJed Brown 
2668b8123daeSJed Brown   Logically Collective on TS
2669b8123daeSJed Brown 
2670b8123daeSJed Brown   Input Parameters:
2671b8123daeSJed Brown + ts   - The TS context obtained from TSCreate()
2672b8123daeSJed Brown - func - The function
2673b8123daeSJed Brown 
2674b8123daeSJed Brown   Calling sequence of func:
2675b8123daeSJed Brown . PetscErrorCode func(TS ts, PetscReal stagetime);
2676b8123daeSJed Brown 
2677b8123daeSJed Brown   Level: intermediate
2678b8123daeSJed Brown 
2679b8123daeSJed Brown   Note:
2680b8123daeSJed Brown   There may be several stages per time step. If the solve for a given stage fails, the step may be rejected and retried.
2681b8123daeSJed Brown   The time step number being computed can be queried using TSGetTimeStepNumber() and the total size of the step being
2682b8123daeSJed Brown   attempted can be obtained using TSGetTimeStep(). The time at the start of the step is available via TSGetTime().
2683b8123daeSJed Brown 
2684b8123daeSJed Brown .keywords: TS, timestep
26859be3e283SDebojyoti Ghosh .seealso: TSSetPostStage(), TSSetPreStep(), TSSetPostStep(), TSGetApplicationContext()
2686b8123daeSJed Brown @*/
2687b8123daeSJed Brown PetscErrorCode  TSSetPreStage(TS ts, PetscErrorCode (*func)(TS,PetscReal))
2688b8123daeSJed Brown {
2689b8123daeSJed Brown   PetscFunctionBegin;
2690b8123daeSJed Brown   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2691ae60f76fSBarry Smith   ts->prestage = func;
2692b8123daeSJed Brown   PetscFunctionReturn(0);
2693b8123daeSJed Brown }
2694b8123daeSJed Brown 
2695b8123daeSJed Brown #undef __FUNCT__
26969be3e283SDebojyoti Ghosh #define __FUNCT__ "TSSetPostStage"
26979be3e283SDebojyoti Ghosh /*@C
26989be3e283SDebojyoti Ghosh   TSSetPostStage - Sets the general-purpose function
26999be3e283SDebojyoti Ghosh   called once at the end of each stage.
27009be3e283SDebojyoti Ghosh 
27019be3e283SDebojyoti Ghosh   Logically Collective on TS
27029be3e283SDebojyoti Ghosh 
27039be3e283SDebojyoti Ghosh   Input Parameters:
27049be3e283SDebojyoti Ghosh + ts   - The TS context obtained from TSCreate()
27059be3e283SDebojyoti Ghosh - func - The function
27069be3e283SDebojyoti Ghosh 
27079be3e283SDebojyoti Ghosh   Calling sequence of func:
27089be3e283SDebojyoti Ghosh . PetscErrorCode func(TS ts, PetscReal stagetime, PetscInt stageindex, Vec* Y);
27099be3e283SDebojyoti Ghosh 
27109be3e283SDebojyoti Ghosh   Level: intermediate
27119be3e283SDebojyoti Ghosh 
27129be3e283SDebojyoti Ghosh   Note:
27139be3e283SDebojyoti Ghosh   There may be several stages per time step. If the solve for a given stage fails, the step may be rejected and retried.
27149be3e283SDebojyoti Ghosh   The time step number being computed can be queried using TSGetTimeStepNumber() and the total size of the step being
27159be3e283SDebojyoti Ghosh   attempted can be obtained using TSGetTimeStep(). The time at the start of the step is available via TSGetTime().
27169be3e283SDebojyoti Ghosh 
27179be3e283SDebojyoti Ghosh .keywords: TS, timestep
27189be3e283SDebojyoti Ghosh .seealso: TSSetPreStage(), TSSetPreStep(), TSSetPostStep(), TSGetApplicationContext()
27199be3e283SDebojyoti Ghosh @*/
27209be3e283SDebojyoti Ghosh PetscErrorCode  TSSetPostStage(TS ts, PetscErrorCode (*func)(TS,PetscReal,PetscInt,Vec*))
27219be3e283SDebojyoti Ghosh {
27229be3e283SDebojyoti Ghosh   PetscFunctionBegin;
27239be3e283SDebojyoti Ghosh   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
27249be3e283SDebojyoti Ghosh   ts->poststage = func;
27259be3e283SDebojyoti Ghosh   PetscFunctionReturn(0);
27269be3e283SDebojyoti Ghosh }
27279be3e283SDebojyoti Ghosh 
27289be3e283SDebojyoti Ghosh #undef __FUNCT__
2729b8123daeSJed Brown #define __FUNCT__ "TSPreStage"
2730b8123daeSJed Brown /*@
2731b8123daeSJed Brown   TSPreStage - Runs the user-defined pre-stage function set using TSSetPreStage()
2732b8123daeSJed Brown 
2733b8123daeSJed Brown   Collective on TS
2734b8123daeSJed Brown 
2735b8123daeSJed Brown   Input Parameters:
2736b8123daeSJed Brown . ts          - The TS context obtained from TSCreate()
27379be3e283SDebojyoti Ghosh   stagetime   - The absolute time of the current stage
2738b8123daeSJed Brown 
2739b8123daeSJed Brown   Notes:
2740b8123daeSJed Brown   TSPreStage() is typically used within time stepping implementations,
2741b8123daeSJed Brown   most users would not generally call this routine themselves.
2742b8123daeSJed Brown 
2743b8123daeSJed Brown   Level: developer
2744b8123daeSJed Brown 
2745b8123daeSJed Brown .keywords: TS, timestep
27469be3e283SDebojyoti Ghosh .seealso: TSPostStage(), TSSetPreStep(), TSPreStep(), TSPostStep()
2747b8123daeSJed Brown @*/
2748b8123daeSJed Brown PetscErrorCode  TSPreStage(TS ts, PetscReal stagetime)
2749b8123daeSJed Brown {
2750b8123daeSJed Brown   PetscErrorCode ierr;
2751b8123daeSJed Brown 
2752b8123daeSJed Brown   PetscFunctionBegin;
2753b8123daeSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2754ae60f76fSBarry Smith   if (ts->prestage) {
2755ae60f76fSBarry Smith     PetscStackCallStandard((*ts->prestage),(ts,stagetime));
2756b8123daeSJed Brown   }
2757b8123daeSJed Brown   PetscFunctionReturn(0);
2758b8123daeSJed Brown }
2759b8123daeSJed Brown 
2760b8123daeSJed Brown #undef __FUNCT__
27619be3e283SDebojyoti Ghosh #define __FUNCT__ "TSPostStage"
27629be3e283SDebojyoti Ghosh /*@
27639be3e283SDebojyoti Ghosh   TSPostStage - Runs the user-defined post-stage function set using TSSetPostStage()
27649be3e283SDebojyoti Ghosh 
27659be3e283SDebojyoti Ghosh   Collective on TS
27669be3e283SDebojyoti Ghosh 
27679be3e283SDebojyoti Ghosh   Input Parameters:
27689be3e283SDebojyoti Ghosh . ts          - The TS context obtained from TSCreate()
27699be3e283SDebojyoti Ghosh   stagetime   - The absolute time of the current stage
27709be3e283SDebojyoti Ghosh   stageindex  - Stage number
27719be3e283SDebojyoti Ghosh   Y           - Array of vectors (of size = total number
27729be3e283SDebojyoti Ghosh                 of stages) with the stage solutions
27739be3e283SDebojyoti Ghosh 
27749be3e283SDebojyoti Ghosh   Notes:
27759be3e283SDebojyoti Ghosh   TSPostStage() is typically used within time stepping implementations,
27769be3e283SDebojyoti Ghosh   most users would not generally call this routine themselves.
27779be3e283SDebojyoti Ghosh 
27789be3e283SDebojyoti Ghosh   Level: developer
27799be3e283SDebojyoti Ghosh 
27809be3e283SDebojyoti Ghosh .keywords: TS, timestep
27819be3e283SDebojyoti Ghosh .seealso: TSPreStage(), TSSetPreStep(), TSPreStep(), TSPostStep()
27829be3e283SDebojyoti Ghosh @*/
27839be3e283SDebojyoti Ghosh PetscErrorCode  TSPostStage(TS ts, PetscReal stagetime, PetscInt stageindex, Vec *Y)
27849be3e283SDebojyoti Ghosh {
27859be3e283SDebojyoti Ghosh   PetscErrorCode ierr;
27869be3e283SDebojyoti Ghosh 
27879be3e283SDebojyoti Ghosh   PetscFunctionBegin;
27889be3e283SDebojyoti Ghosh   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
27894beae5d8SLisandro Dalcin   if (ts->poststage) {
27909be3e283SDebojyoti Ghosh     PetscStackCallStandard((*ts->poststage),(ts,stagetime,stageindex,Y));
27919be3e283SDebojyoti Ghosh   }
27929be3e283SDebojyoti Ghosh   PetscFunctionReturn(0);
27939be3e283SDebojyoti Ghosh }
27949be3e283SDebojyoti Ghosh 
27959be3e283SDebojyoti Ghosh #undef __FUNCT__
2796e74ef692SMatthew Knepley #define __FUNCT__ "TSSetPostStep"
2797ac226902SBarry Smith /*@C
2798000e7ae3SMatthew Knepley   TSSetPostStep - Sets the general-purpose function
27993f2090d5SJed Brown   called once at the end of each time step.
2800000e7ae3SMatthew Knepley 
28013f9fe445SBarry Smith   Logically Collective on TS
2802000e7ae3SMatthew Knepley 
2803000e7ae3SMatthew Knepley   Input Parameters:
2804000e7ae3SMatthew Knepley + ts   - The TS context obtained from TSCreate()
2805000e7ae3SMatthew Knepley - func - The function
2806000e7ae3SMatthew Knepley 
2807000e7ae3SMatthew Knepley   Calling sequence of func:
2808b8123daeSJed Brown $ func (TS ts);
2809000e7ae3SMatthew Knepley 
2810000e7ae3SMatthew Knepley   Level: intermediate
2811000e7ae3SMatthew Knepley 
2812000e7ae3SMatthew Knepley .keywords: TS, timestep
2813b8123daeSJed Brown .seealso: TSSetPreStep(), TSSetPreStage(), TSGetTimeStep(), TSGetTimeStepNumber(), TSGetTime()
2814000e7ae3SMatthew Knepley @*/
28157087cfbeSBarry Smith PetscErrorCode  TSSetPostStep(TS ts, PetscErrorCode (*func)(TS))
2816000e7ae3SMatthew Knepley {
2817000e7ae3SMatthew Knepley   PetscFunctionBegin;
28180700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2819ae60f76fSBarry Smith   ts->poststep = func;
2820000e7ae3SMatthew Knepley   PetscFunctionReturn(0);
2821000e7ae3SMatthew Knepley }
2822000e7ae3SMatthew Knepley 
2823e74ef692SMatthew Knepley #undef __FUNCT__
28243f2090d5SJed Brown #define __FUNCT__ "TSPostStep"
282509ee8438SJed Brown /*@
28263f2090d5SJed Brown   TSPostStep - Runs the user-defined post-step function.
28273f2090d5SJed Brown 
28283f2090d5SJed Brown   Collective on TS
28293f2090d5SJed Brown 
28303f2090d5SJed Brown   Input Parameters:
28313f2090d5SJed Brown . ts   - The TS context obtained from TSCreate()
28323f2090d5SJed Brown 
28333f2090d5SJed Brown   Notes:
28343f2090d5SJed Brown   TSPostStep() is typically used within time stepping implementations,
28353f2090d5SJed Brown   so most users would not generally call this routine themselves.
28363f2090d5SJed Brown 
28373f2090d5SJed Brown   Level: developer
28383f2090d5SJed Brown 
28393f2090d5SJed Brown .keywords: TS, timestep
28403f2090d5SJed Brown @*/
28417087cfbeSBarry Smith PetscErrorCode  TSPostStep(TS ts)
28423f2090d5SJed Brown {
28433f2090d5SJed Brown   PetscErrorCode ierr;
28443f2090d5SJed Brown 
28453f2090d5SJed Brown   PetscFunctionBegin;
28460700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2847ae60f76fSBarry Smith   if (ts->poststep) {
2848ae60f76fSBarry Smith     PetscStackCallStandard((*ts->poststep),(ts));
284972ac3e02SJed Brown   }
28503f2090d5SJed Brown   PetscFunctionReturn(0);
28513f2090d5SJed Brown }
28523f2090d5SJed Brown 
2853d763cef2SBarry Smith /* ------------ Routines to set performance monitoring options ----------- */
2854d763cef2SBarry Smith 
28554a2ae208SSatish Balay #undef __FUNCT__
2856a6570f20SBarry Smith #define __FUNCT__ "TSMonitorSet"
2857d763cef2SBarry Smith /*@C
2858a6570f20SBarry Smith    TSMonitorSet - Sets an ADDITIONAL function that is to be used at every
2859d763cef2SBarry Smith    timestep to display the iteration's  progress.
2860d763cef2SBarry Smith 
28613f9fe445SBarry Smith    Logically Collective on TS
2862d763cef2SBarry Smith 
2863d763cef2SBarry Smith    Input Parameters:
2864d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
2865e213d8f1SJed Brown .  monitor - monitoring routine
2866329f5518SBarry Smith .  mctx - [optional] user-defined context for private data for the
28670298fd71SBarry Smith              monitor routine (use NULL if no context is desired)
2868b3006f0bSLois Curfman McInnes -  monitordestroy - [optional] routine that frees monitor context
28690298fd71SBarry Smith           (may be NULL)
2870d763cef2SBarry Smith 
2871e213d8f1SJed Brown    Calling sequence of monitor:
28720910c330SBarry Smith $    int monitor(TS ts,PetscInt steps,PetscReal time,Vec u,void *mctx)
2873d763cef2SBarry Smith 
2874d763cef2SBarry Smith +    ts - the TS context
287588c05cc5SBarry Smith .    steps - iteration number (after the final time step the monitor routine is called with a step of -1, this is at the final time which may have
287688c05cc5SBarry Smith                                been interpolated to)
28771f06c33eSBarry Smith .    time - current time
28780910c330SBarry Smith .    u - current iterate
2879d763cef2SBarry Smith -    mctx - [optional] monitoring context
2880d763cef2SBarry Smith 
2881d763cef2SBarry Smith    Notes:
2882d763cef2SBarry Smith    This routine adds an additional monitor to the list of monitors that
2883d763cef2SBarry Smith    already has been loaded.
2884d763cef2SBarry Smith 
2885025f1a04SBarry Smith    Fortran notes: Only a single monitor function can be set for each TS object
2886025f1a04SBarry Smith 
2887d763cef2SBarry Smith    Level: intermediate
2888d763cef2SBarry Smith 
2889d763cef2SBarry Smith .keywords: TS, timestep, set, monitor
2890d763cef2SBarry Smith 
2891a6570f20SBarry Smith .seealso: TSMonitorDefault(), TSMonitorCancel()
2892d763cef2SBarry Smith @*/
2893c2efdce3SBarry Smith PetscErrorCode  TSMonitorSet(TS ts,PetscErrorCode (*monitor)(TS,PetscInt,PetscReal,Vec,void*),void *mctx,PetscErrorCode (*mdestroy)(void**))
2894d763cef2SBarry Smith {
2895d763cef2SBarry Smith   PetscFunctionBegin;
28960700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
289717186662SBarry Smith   if (ts->numbermonitors >= MAXTSMONITORS) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Too many monitors set");
2898d763cef2SBarry Smith   ts->monitor[ts->numbermonitors]          = monitor;
28998704b422SBarry Smith   ts->monitordestroy[ts->numbermonitors]   = mdestroy;
2900d763cef2SBarry Smith   ts->monitorcontext[ts->numbermonitors++] = (void*)mctx;
2901d763cef2SBarry Smith   PetscFunctionReturn(0);
2902d763cef2SBarry Smith }
2903d763cef2SBarry Smith 
29044a2ae208SSatish Balay #undef __FUNCT__
2905a6570f20SBarry Smith #define __FUNCT__ "TSMonitorCancel"
2906d763cef2SBarry Smith /*@C
2907a6570f20SBarry Smith    TSMonitorCancel - Clears all the monitors that have been set on a time-step object.
2908d763cef2SBarry Smith 
29093f9fe445SBarry Smith    Logically Collective on TS
2910d763cef2SBarry Smith 
2911d763cef2SBarry Smith    Input Parameters:
2912d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2913d763cef2SBarry Smith 
2914d763cef2SBarry Smith    Notes:
2915d763cef2SBarry Smith    There is no way to remove a single, specific monitor.
2916d763cef2SBarry Smith 
2917d763cef2SBarry Smith    Level: intermediate
2918d763cef2SBarry Smith 
2919d763cef2SBarry Smith .keywords: TS, timestep, set, monitor
2920d763cef2SBarry Smith 
2921a6570f20SBarry Smith .seealso: TSMonitorDefault(), TSMonitorSet()
2922d763cef2SBarry Smith @*/
29237087cfbeSBarry Smith PetscErrorCode  TSMonitorCancel(TS ts)
2924d763cef2SBarry Smith {
2925d952e501SBarry Smith   PetscErrorCode ierr;
2926d952e501SBarry Smith   PetscInt       i;
2927d952e501SBarry Smith 
2928d763cef2SBarry Smith   PetscFunctionBegin;
29290700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2930d952e501SBarry Smith   for (i=0; i<ts->numbermonitors; i++) {
29318704b422SBarry Smith     if (ts->monitordestroy[i]) {
29328704b422SBarry Smith       ierr = (*ts->monitordestroy[i])(&ts->monitorcontext[i]);CHKERRQ(ierr);
2933d952e501SBarry Smith     }
2934d952e501SBarry Smith   }
2935d763cef2SBarry Smith   ts->numbermonitors = 0;
2936d763cef2SBarry Smith   PetscFunctionReturn(0);
2937d763cef2SBarry Smith }
2938d763cef2SBarry Smith 
29394a2ae208SSatish Balay #undef __FUNCT__
2940a6570f20SBarry Smith #define __FUNCT__ "TSMonitorDefault"
2941d8e5e3e6SSatish Balay /*@
2942a6570f20SBarry Smith    TSMonitorDefault - Sets the Default monitor
29435516499fSSatish Balay 
29445516499fSSatish Balay    Level: intermediate
294541251cbbSSatish Balay 
29465516499fSSatish Balay .keywords: TS, set, monitor
29475516499fSSatish Balay 
294841251cbbSSatish Balay .seealso: TSMonitorDefault(), TSMonitorSet()
294941251cbbSSatish Balay @*/
2950649052a6SBarry Smith PetscErrorCode TSMonitorDefault(TS ts,PetscInt step,PetscReal ptime,Vec v,void *dummy)
2951d763cef2SBarry Smith {
2952dfbe8321SBarry Smith   PetscErrorCode ierr;
2953ce94432eSBarry Smith   PetscViewer    viewer = dummy ? (PetscViewer) dummy : PETSC_VIEWER_STDOUT_(PetscObjectComm((PetscObject)ts));
2954d132466eSBarry Smith 
2955d763cef2SBarry Smith   PetscFunctionBegin;
2956649052a6SBarry Smith   ierr = PetscViewerASCIIAddTab(viewer,((PetscObject)ts)->tablevel);CHKERRQ(ierr);
2957971832b6SBarry Smith   ierr = PetscViewerASCIIPrintf(viewer,"%D TS dt %g time %g\n",step,(double)ts->time_step,(double)ptime);CHKERRQ(ierr);
2958649052a6SBarry Smith   ierr = PetscViewerASCIISubtractTab(viewer,((PetscObject)ts)->tablevel);CHKERRQ(ierr);
2959d763cef2SBarry Smith   PetscFunctionReturn(0);
2960d763cef2SBarry Smith }
2961d763cef2SBarry Smith 
29624a2ae208SSatish Balay #undef __FUNCT__
2963cd652676SJed Brown #define __FUNCT__ "TSSetRetainStages"
2964cd652676SJed Brown /*@
2965cd652676SJed Brown    TSSetRetainStages - Request that all stages in the upcoming step be stored so that interpolation will be available.
2966cd652676SJed Brown 
2967cd652676SJed Brown    Logically Collective on TS
2968cd652676SJed Brown 
2969cd652676SJed Brown    Input Argument:
2970cd652676SJed Brown .  ts - time stepping context
2971cd652676SJed Brown 
2972cd652676SJed Brown    Output Argument:
2973cd652676SJed Brown .  flg - PETSC_TRUE or PETSC_FALSE
2974cd652676SJed Brown 
2975cd652676SJed Brown    Level: intermediate
2976cd652676SJed Brown 
2977cd652676SJed Brown .keywords: TS, set
2978cd652676SJed Brown 
2979cd652676SJed Brown .seealso: TSInterpolate(), TSSetPostStep()
2980cd652676SJed Brown @*/
2981cd652676SJed Brown PetscErrorCode TSSetRetainStages(TS ts,PetscBool flg)
2982cd652676SJed Brown {
2983cd652676SJed Brown   PetscFunctionBegin;
2984cd652676SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2985cd652676SJed Brown   ts->retain_stages = flg;
2986cd652676SJed Brown   PetscFunctionReturn(0);
2987cd652676SJed Brown }
2988cd652676SJed Brown 
2989cd652676SJed Brown #undef __FUNCT__
2990cd652676SJed Brown #define __FUNCT__ "TSInterpolate"
2991cd652676SJed Brown /*@
2992cd652676SJed Brown    TSInterpolate - Interpolate the solution computed during the previous step to an arbitrary location in the interval
2993cd652676SJed Brown 
2994cd652676SJed Brown    Collective on TS
2995cd652676SJed Brown 
2996cd652676SJed Brown    Input Argument:
2997cd652676SJed Brown +  ts - time stepping context
2998cd652676SJed Brown -  t - time to interpolate to
2999cd652676SJed Brown 
3000cd652676SJed Brown    Output Argument:
30010910c330SBarry Smith .  U - state at given time
3002cd652676SJed Brown 
3003cd652676SJed Brown    Notes:
3004cd652676SJed Brown    The user should call TSSetRetainStages() before taking a step in which interpolation will be requested.
3005cd652676SJed Brown 
3006cd652676SJed Brown    Level: intermediate
3007cd652676SJed Brown 
3008cd652676SJed Brown    Developer Notes:
3009cd652676SJed Brown    TSInterpolate() and the storing of previous steps/stages should be generalized to support delay differential equations and continuous adjoints.
3010cd652676SJed Brown 
3011cd652676SJed Brown .keywords: TS, set
3012cd652676SJed Brown 
3013cd652676SJed Brown .seealso: TSSetRetainStages(), TSSetPostStep()
3014cd652676SJed Brown @*/
30150910c330SBarry Smith PetscErrorCode TSInterpolate(TS ts,PetscReal t,Vec U)
3016cd652676SJed Brown {
3017cd652676SJed Brown   PetscErrorCode ierr;
3018cd652676SJed Brown 
3019cd652676SJed Brown   PetscFunctionBegin;
3020cd652676SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3021b06615a5SLisandro Dalcin   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
30226712e2f1SBarry Smith   if (t < ts->ptime - ts->time_step_prev || t > ts->ptime) SETERRQ3(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_OUTOFRANGE,"Requested time %g not in last time steps [%g,%g]",t,(double)(ts->ptime-ts->time_step_prev),(double)ts->ptime);
3023ce94432eSBarry Smith   if (!ts->ops->interpolate) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"%s does not provide interpolation",((PetscObject)ts)->type_name);
30240910c330SBarry Smith   ierr = (*ts->ops->interpolate)(ts,t,U);CHKERRQ(ierr);
3025cd652676SJed Brown   PetscFunctionReturn(0);
3026cd652676SJed Brown }
3027cd652676SJed Brown 
3028cd652676SJed Brown #undef __FUNCT__
30294a2ae208SSatish Balay #define __FUNCT__ "TSStep"
3030d763cef2SBarry Smith /*@
30316d9e5789SSean Farley    TSStep - Steps one time step
3032d763cef2SBarry Smith 
3033d763cef2SBarry Smith    Collective on TS
3034d763cef2SBarry Smith 
3035d763cef2SBarry Smith    Input Parameter:
3036d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
3037d763cef2SBarry Smith 
30386d9e5789SSean Farley    Level: intermediate
3039d763cef2SBarry Smith 
3040b8123daeSJed Brown    Notes:
3041b8123daeSJed Brown    The hook set using TSSetPreStep() is called before each attempt to take the step. In general, the time step size may
3042b8123daeSJed Brown    be changed due to adaptive error controller or solve failures. Note that steps may contain multiple stages.
3043b8123daeSJed Brown 
304425cb2221SBarry Smith    This may over-step the final time provided in TSSetDuration() depending on the time-step used. TSSolve() interpolates to exactly the
304525cb2221SBarry Smith    time provided in TSSetDuration(). One can use TSInterpolate() to determine an interpolated solution within the final timestep.
304625cb2221SBarry Smith 
3047d763cef2SBarry Smith .keywords: TS, timestep, solve
3048d763cef2SBarry Smith 
30499be3e283SDebojyoti Ghosh .seealso: TSCreate(), TSSetUp(), TSDestroy(), TSSolve(), TSSetPreStep(), TSSetPreStage(), TSSetPostStage(), TSInterpolate()
3050d763cef2SBarry Smith @*/
3051193ac0bcSJed Brown PetscErrorCode  TSStep(TS ts)
3052d763cef2SBarry Smith {
30532fb8446cSMatthew G. Knepley   DM               dm;
3054dfbe8321SBarry Smith   PetscErrorCode   ierr;
3055fffbeea8SBarry Smith   static PetscBool cite = PETSC_FALSE;
3056d763cef2SBarry Smith 
3057d763cef2SBarry Smith   PetscFunctionBegin;
30580700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
3059fffbeea8SBarry Smith   ierr = PetscCitationsRegister("@techreport{tspaper,\n"
3060fffbeea8SBarry Smith                                 "  title       = {{PETSc/TS}: A Modern Scalable {DAE/ODE} Solver Library},\n"
3061fffbeea8SBarry Smith                                 "  author      = {Shrirang Abhyankar and Jed Brown and Emil Constantinescu and Debojyoti Ghosh and Barry F. Smith},\n"
3062fffbeea8SBarry Smith                                 "  type        = {Preprint},\n"
3063fffbeea8SBarry Smith                                 "  number      = {ANL/MCS-P5061-0114},\n"
3064fffbeea8SBarry Smith                                 "  institution = {Argonne National Laboratory},\n"
3065fffbeea8SBarry Smith                                 "  year        = {2014}\n}\n",&cite);
3066fffbeea8SBarry Smith 
30672fb8446cSMatthew G. Knepley   ierr = TSGetDM(ts, &dm);CHKERRQ(ierr);
3068d405a339SMatthew Knepley   ierr = TSSetUp(ts);CHKERRQ(ierr);
3069d405a339SMatthew Knepley 
3070362cd11cSLisandro Dalcin   ts->reason = TS_CONVERGED_ITERATING;
307124655328SShri   ts->ptime_prev = ts->ptime;
3072cdb7a50dSMatthew G. Knepley   ierr = DMSetOutputSequenceNumber(dm, ts->steps, ts->ptime);CHKERRQ(ierr);
30734e9ba7eeSMatthew G. Knepley   ierr = VecViewFromOptions(ts->vec_sol, ((PetscObject) ts)->prefix, "-ts_view_solution");CHKERRQ(ierr);
3074bbd56ea5SKarl Rupp 
3075e04979a6SLisandro Dalcin   if (!ts->ops->step) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"TSStep not implemented for type '%s'",((PetscObject)ts)->type_name);
3076d5ba7fb7SMatthew Knepley   ierr = PetscLogEventBegin(TS_Step,ts,0,0,0);CHKERRQ(ierr);
3077193ac0bcSJed Brown   ierr = (*ts->ops->step)(ts);CHKERRQ(ierr);
307808c7845fSBarry Smith   ierr = PetscLogEventEnd(TS_Step,ts,0,0,0);CHKERRQ(ierr);
307908c7845fSBarry Smith 
308008c7845fSBarry Smith   ts->time_step_prev = ts->ptime - ts->ptime_prev;
308108c7845fSBarry Smith   ierr = DMSetOutputSequenceNumber(dm, ts->steps, ts->ptime);CHKERRQ(ierr);
308208c7845fSBarry Smith 
308308c7845fSBarry Smith   if (ts->reason < 0) {
308408c7845fSBarry Smith     if (ts->errorifstepfailed) {
308508c7845fSBarry Smith       if (ts->reason == TS_DIVERGED_NONLINEAR_SOLVE) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed due to %s, increase -ts_max_snes_failures or make negative to attempt recovery",TSConvergedReasons[ts->reason]);
308608c7845fSBarry Smith       else SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed due to %s",TSConvergedReasons[ts->reason]);
3087d2daff3dSHong Zhang     }
308808c7845fSBarry Smith   } else if (!ts->reason) {
308908c7845fSBarry Smith     if (ts->steps >= ts->max_steps)     ts->reason = TS_CONVERGED_ITS;
309008c7845fSBarry Smith     else if (ts->ptime >= ts->max_time) ts->reason = TS_CONVERGED_TIME;
309108c7845fSBarry Smith   }
30922c18e0fdSBarry Smith   ts->total_steps++;
309308c7845fSBarry Smith   PetscFunctionReturn(0);
309408c7845fSBarry Smith }
309508c7845fSBarry Smith 
309608c7845fSBarry Smith #undef __FUNCT__
309708c7845fSBarry Smith #define __FUNCT__ "TSAdjointStep"
309808c7845fSBarry Smith /*@
309908c7845fSBarry Smith    TSAdjointStep - Steps one time step
310008c7845fSBarry Smith 
310108c7845fSBarry Smith    Collective on TS
310208c7845fSBarry Smith 
310308c7845fSBarry Smith    Input Parameter:
310408c7845fSBarry Smith .  ts - the TS context obtained from TSCreate()
310508c7845fSBarry Smith 
310608c7845fSBarry Smith    Level: intermediate
310708c7845fSBarry Smith 
310808c7845fSBarry Smith    Notes:
310908c7845fSBarry Smith    The hook set using TSSetPreStep() is called before each attempt to take the step. In general, the time step size may
311008c7845fSBarry Smith    be changed due to adaptive error controller or solve failures. Note that steps may contain multiple stages.
311108c7845fSBarry Smith 
311208c7845fSBarry Smith    This may over-step the final time provided in TSSetDuration() depending on the time-step used. TSSolve() interpolates to exactly the
311308c7845fSBarry Smith    time provided in TSSetDuration(). One can use TSInterpolate() to determine an interpolated solution within the final timestep.
311408c7845fSBarry Smith 
311508c7845fSBarry Smith .keywords: TS, timestep, solve
311608c7845fSBarry Smith 
311708c7845fSBarry Smith .seealso: TSCreate(), TSSetUp(), TSDestroy(), TSSolve(), TSSetPreStep(), TSSetPreStage(), TSSetPostStage(), TSInterpolate()
311808c7845fSBarry Smith @*/
311908c7845fSBarry Smith PetscErrorCode  TSAdjointStep(TS ts)
312008c7845fSBarry Smith {
312108c7845fSBarry Smith   DM               dm;
312208c7845fSBarry Smith   PetscErrorCode   ierr;
312308c7845fSBarry Smith 
312408c7845fSBarry Smith   PetscFunctionBegin;
312508c7845fSBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
312608c7845fSBarry Smith   ierr = TSGetDM(ts, &dm);CHKERRQ(ierr);
312708c7845fSBarry Smith   ierr = TSAdjointSetUp(ts);CHKERRQ(ierr);
312808c7845fSBarry Smith 
312908c7845fSBarry Smith   ts->reason = TS_CONVERGED_ITERATING;
313008c7845fSBarry Smith   ts->ptime_prev = ts->ptime;
313108c7845fSBarry Smith   ierr = DMSetOutputSequenceNumber(dm, ts->steps, ts->ptime);CHKERRQ(ierr);
313208c7845fSBarry Smith   ierr = VecViewFromOptions(ts->vec_sol, ((PetscObject) ts)->prefix, "-ts_view_solution");CHKERRQ(ierr);
313308c7845fSBarry Smith 
313408c7845fSBarry Smith   ierr = PetscLogEventBegin(TS_Step,ts,0,0,0);CHKERRQ(ierr);
313542f2b339SBarry Smith   if (!ts->ops->adjointstep) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed because the adjoint of  %s has not been implemented, try other time stepping methods for adjoint sensitivity analysis",((PetscObject)ts)->type_name);
313642f2b339SBarry Smith   ierr = (*ts->ops->adjointstep)(ts);CHKERRQ(ierr);
3137d5ba7fb7SMatthew Knepley   ierr = PetscLogEventEnd(TS_Step,ts,0,0,0);CHKERRQ(ierr);
3138bbd56ea5SKarl Rupp 
313924655328SShri   ts->time_step_prev = ts->ptime - ts->ptime_prev;
3140cdb7a50dSMatthew G. Knepley   ierr = DMSetOutputSequenceNumber(dm, ts->steps, ts->ptime);CHKERRQ(ierr);
3141362cd11cSLisandro Dalcin 
3142362cd11cSLisandro Dalcin   if (ts->reason < 0) {
3143cef5090cSJed Brown     if (ts->errorifstepfailed) {
3144cef5090cSJed Brown       if (ts->reason == TS_DIVERGED_NONLINEAR_SOLVE) {
3145ce94432eSBarry Smith         SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed due to %s, increase -ts_max_snes_failures or make negative to attempt recovery",TSConvergedReasons[ts->reason]);
31462a3a10ceSLisandro Dalcin       } else if (ts->reason == TS_DIVERGED_STEP_REJECTED) {
31472a3a10ceSLisandro Dalcin         SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed due to %s, increase -ts_max_reject or make negative to attempt recovery",TSConvergedReasons[ts->reason]);
3148ce94432eSBarry Smith       } else SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed due to %s",TSConvergedReasons[ts->reason]);
3149cef5090cSJed Brown     }
3150362cd11cSLisandro Dalcin   } else if (!ts->reason) {
315173b18844SBarry Smith     if (ts->steps >= ts->adjoint_max_steps)     ts->reason = TS_CONVERGED_ITS;
3152db4deed7SKarl Rupp     else if (ts->ptime >= ts->max_time)         ts->reason = TS_CONVERGED_TIME;
3153362cd11cSLisandro Dalcin   }
31542c18e0fdSBarry Smith   ts->total_steps--;
3155d763cef2SBarry Smith   PetscFunctionReturn(0);
3156d763cef2SBarry Smith }
3157d763cef2SBarry Smith 
31584a2ae208SSatish Balay #undef __FUNCT__
315905175c85SJed Brown #define __FUNCT__ "TSEvaluateStep"
316005175c85SJed Brown /*@
316105175c85SJed Brown    TSEvaluateStep - Evaluate the solution at the end of a time step with a given order of accuracy.
316205175c85SJed Brown 
31631c3436cfSJed Brown    Collective on TS
316405175c85SJed Brown 
316505175c85SJed Brown    Input Arguments:
31661c3436cfSJed Brown +  ts - time stepping context
31671c3436cfSJed Brown .  order - desired order of accuracy
31680298fd71SBarry Smith -  done - whether the step was evaluated at this order (pass NULL to generate an error if not available)
316905175c85SJed Brown 
317005175c85SJed Brown    Output Arguments:
31710910c330SBarry Smith .  U - state at the end of the current step
317205175c85SJed Brown 
317305175c85SJed Brown    Level: advanced
317405175c85SJed Brown 
3175108c343cSJed Brown    Notes:
3176108c343cSJed Brown    This function cannot be called until all stages have been evaluated.
3177108c343cSJed Brown    It is normally called by adaptive controllers before a step has been accepted and may also be called by the user after TSStep() has returned.
3178108c343cSJed Brown 
31791c3436cfSJed Brown .seealso: TSStep(), TSAdapt
318005175c85SJed Brown @*/
31810910c330SBarry Smith PetscErrorCode TSEvaluateStep(TS ts,PetscInt order,Vec U,PetscBool *done)
318205175c85SJed Brown {
318305175c85SJed Brown   PetscErrorCode ierr;
318405175c85SJed Brown 
318505175c85SJed Brown   PetscFunctionBegin;
318605175c85SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
318705175c85SJed Brown   PetscValidType(ts,1);
31880910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
3189ce94432eSBarry Smith   if (!ts->ops->evaluatestep) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"TSEvaluateStep not implemented for type '%s'",((PetscObject)ts)->type_name);
31900910c330SBarry Smith   ierr = (*ts->ops->evaluatestep)(ts,order,U,done);CHKERRQ(ierr);
319105175c85SJed Brown   PetscFunctionReturn(0);
319205175c85SJed Brown }
319305175c85SJed Brown 
3194d67e68b7SBarry Smith 
3195d67e68b7SBarry Smith #undef __FUNCT__
31966a4d4014SLisandro Dalcin #define __FUNCT__ "TSSolve"
31976a4d4014SLisandro Dalcin /*@
31986a4d4014SLisandro Dalcin    TSSolve - Steps the requested number of timesteps.
31996a4d4014SLisandro Dalcin 
32006a4d4014SLisandro Dalcin    Collective on TS
32016a4d4014SLisandro Dalcin 
32026a4d4014SLisandro Dalcin    Input Parameter:
32036a4d4014SLisandro Dalcin +  ts - the TS context obtained from TSCreate()
3204cc708dedSBarry Smith -  u - the solution vector  (can be null if TSSetSolution() was used, otherwise must contain the initial conditions)
32055a3a76d0SJed Brown 
32066a4d4014SLisandro Dalcin    Level: beginner
32076a4d4014SLisandro Dalcin 
32085a3a76d0SJed Brown    Notes:
32095a3a76d0SJed Brown    The final time returned by this function may be different from the time of the internally
32105a3a76d0SJed Brown    held state accessible by TSGetSolution() and TSGetTime() because the method may have
32115a3a76d0SJed Brown    stepped over the final time.
32125a3a76d0SJed Brown 
32136a4d4014SLisandro Dalcin .keywords: TS, timestep, solve
32146a4d4014SLisandro Dalcin 
32156a4d4014SLisandro Dalcin .seealso: TSCreate(), TSSetSolution(), TSStep()
32166a4d4014SLisandro Dalcin @*/
3217cc708dedSBarry Smith PetscErrorCode TSSolve(TS ts,Vec u)
32186a4d4014SLisandro Dalcin {
3219b06615a5SLisandro Dalcin   Vec               solution;
32206a4d4014SLisandro Dalcin   PetscErrorCode    ierr;
3221f22f69f0SBarry Smith 
32226a4d4014SLisandro Dalcin   PetscFunctionBegin;
32230700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3224f2c2a1b9SBarry Smith   if (u) PetscValidHeaderSpecific(u,VEC_CLASSID,2);
3225c88f2d44SBarry Smith   if (ts->exact_final_time == TS_EXACTFINALTIME_INTERPOLATE) {   /* Need ts->vec_sol to be distinct so it is not overwritten when we interpolate at the end */
3226b06615a5SLisandro Dalcin     PetscValidHeaderSpecific(u,VEC_CLASSID,2);
32270910c330SBarry Smith     if (!ts->vec_sol || u == ts->vec_sol) {
3228b06615a5SLisandro Dalcin       ierr = VecDuplicate(u,&solution);CHKERRQ(ierr);
3229b06615a5SLisandro Dalcin       ierr = TSSetSolution(ts,solution);CHKERRQ(ierr);
3230b06615a5SLisandro Dalcin       ierr = VecDestroy(&solution);CHKERRQ(ierr); /* grant ownership */
32315a3a76d0SJed Brown     }
32320910c330SBarry Smith     ierr = VecCopy(u,ts->vec_sol);CHKERRQ(ierr);
3233bbd56ea5SKarl Rupp   } else if (u) {
32340910c330SBarry Smith     ierr = TSSetSolution(ts,u);CHKERRQ(ierr);
32355a3a76d0SJed Brown   }
3236d2daff3dSHong Zhang   ierr = TSSetUp(ts);CHKERRQ(ierr); /*compute adj coefficients if the reverse mode is on*/
32376a4d4014SLisandro Dalcin   /* reset time step and iteration counters */
3238193ac0bcSJed Brown   ts->steps             = 0;
32395ef26d82SJed Brown   ts->ksp_its           = 0;
32405ef26d82SJed Brown   ts->snes_its          = 0;
3241c610991cSLisandro Dalcin   ts->num_snes_failures = 0;
3242c610991cSLisandro Dalcin   ts->reject            = 0;
3243193ac0bcSJed Brown   ts->reason            = TS_CONVERGED_ITERATING;
3244193ac0bcSJed Brown 
3245ce1779c8SBarry Smith   ierr = TSViewFromOptions(ts,NULL,"-ts_view_pre");CHKERRQ(ierr);
3246f05ece33SBarry Smith 
3247193ac0bcSJed Brown   if (ts->ops->solve) {         /* This private interface is transitional and should be removed when all implementations are updated. */
3248193ac0bcSJed Brown     ierr = (*ts->ops->solve)(ts);CHKERRQ(ierr);
32490910c330SBarry Smith     ierr = VecCopy(ts->vec_sol,u);CHKERRQ(ierr);
3250cc708dedSBarry Smith     ts->solvetime = ts->ptime;
3251193ac0bcSJed Brown   } else {
32526a4d4014SLisandro Dalcin     /* steps the requested number of timesteps. */
3253db4deed7SKarl Rupp     if (ts->steps >= ts->max_steps)     ts->reason = TS_CONVERGED_ITS;
3254c88f2d44SBarry Smith     else if (ts->ptime >= ts->max_time) ts->reason = TS_CONVERGED_TIME;
3255e1a7a14fSJed Brown     while (!ts->reason) {
3256b06615a5SLisandro Dalcin       ierr = TSMonitor(ts,ts->steps,ts->ptime,ts->vec_sol);CHKERRQ(ierr);
3257bc952696SBarry Smith       ierr = TSTrajectorySet(ts->trajectory,ts,ts->steps,ts->ptime,ts->vec_sol);CHKERRQ(ierr);
3258193ac0bcSJed Brown       ierr = TSStep(ts);CHKERRQ(ierr);
3259aeb4809dSShri Abhyankar       if (ts->event) {
3260aeb4809dSShri Abhyankar 	ierr = TSEventMonitor(ts);CHKERRQ(ierr);
32611eda64f1SShri Abhyankar 	if (ts->event->status != TSEVENT_PROCESSING) {
32621eda64f1SShri Abhyankar 	  ierr = TSPostStep(ts);CHKERRQ(ierr);
32631eda64f1SShri Abhyankar 	}
32641eda64f1SShri Abhyankar       } else {
32651eda64f1SShri Abhyankar 	ierr = TSPostStep(ts);CHKERRQ(ierr);
3266aeb4809dSShri Abhyankar       }
3267193ac0bcSJed Brown     }
3268c88f2d44SBarry Smith     if (ts->exact_final_time == TS_EXACTFINALTIME_INTERPOLATE && ts->ptime > ts->max_time) {
32690910c330SBarry Smith       ierr = TSInterpolate(ts,ts->max_time,u);CHKERRQ(ierr);
3270cc708dedSBarry Smith       ts->solvetime = ts->max_time;
3271b06615a5SLisandro Dalcin       solution = u;
32720574a7fbSJed Brown     } else {
3273ad6bc421SBarry Smith       if (u) {ierr = VecCopy(ts->vec_sol,u);CHKERRQ(ierr);}
3274cc708dedSBarry Smith       ts->solvetime = ts->ptime;
3275b06615a5SLisandro Dalcin       solution = ts->vec_sol;
32760574a7fbSJed Brown     }
3277bc952696SBarry Smith     ierr = TSTrajectorySet(ts->trajectory,ts,ts->steps,ts->solvetime,solution);CHKERRQ(ierr);
3278b06615a5SLisandro Dalcin     ierr = TSMonitor(ts,ts->steps,ts->solvetime,solution);CHKERRQ(ierr);
32794e9ba7eeSMatthew G. Knepley     ierr = VecViewFromOptions(u, ((PetscObject) ts)->prefix, "-ts_view_solution");CHKERRQ(ierr);
3280193ac0bcSJed Brown   }
3281d2daff3dSHong Zhang 
3282ce1779c8SBarry Smith   ierr = TSViewFromOptions(ts,NULL,"-ts_view");CHKERRQ(ierr);
328356f85f32SBarry Smith   ierr = PetscObjectSAWsBlock((PetscObject)ts);CHKERRQ(ierr);
32846a4d4014SLisandro Dalcin   PetscFunctionReturn(0);
32856a4d4014SLisandro Dalcin }
32866a4d4014SLisandro Dalcin 
32876a4d4014SLisandro Dalcin #undef __FUNCT__
3288c88f2d44SBarry Smith #define __FUNCT__ "TSAdjointSolve"
3289c88f2d44SBarry Smith /*@
3290c88f2d44SBarry Smith    TSAdjointSolve - Solves the discrete ajoint problem for an ODE/DAE
3291c88f2d44SBarry Smith 
3292c88f2d44SBarry Smith    Collective on TS
3293c88f2d44SBarry Smith 
3294c88f2d44SBarry Smith    Input Parameter:
32952c39e106SBarry Smith .  ts - the TS context obtained from TSCreate()
3296c88f2d44SBarry Smith 
3297c88f2d44SBarry Smith    Level: intermediate
3298c88f2d44SBarry Smith 
3299c88f2d44SBarry Smith    Notes:
3300c88f2d44SBarry Smith    This must be called after a call to TSSolve() that solves the forward problem
3301c88f2d44SBarry Smith 
330273b18844SBarry Smith    By default this will integrate back to the initial time, one can use TSAdjointSetSteps() to step back to a later time
330373b18844SBarry Smith 
3304c88f2d44SBarry Smith .keywords: TS, timestep, solve
3305c88f2d44SBarry Smith 
3306c88f2d44SBarry Smith .seealso: TSCreate(), TSSetSolution(), TSStep()
3307c88f2d44SBarry Smith @*/
33082c39e106SBarry Smith PetscErrorCode TSAdjointSolve(TS ts)
3309c88f2d44SBarry Smith {
3310c88f2d44SBarry Smith   PetscErrorCode    ierr;
3311c88f2d44SBarry Smith 
3312c88f2d44SBarry Smith   PetscFunctionBegin;
3313c88f2d44SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3314c88f2d44SBarry Smith   ierr = TSAdjointSetUp(ts);CHKERRQ(ierr);
3315c88f2d44SBarry Smith   /* reset time step and iteration counters */
3316c88f2d44SBarry Smith   ts->steps             = 0;
3317c88f2d44SBarry Smith   ts->ksp_its           = 0;
3318c88f2d44SBarry Smith   ts->snes_its          = 0;
3319c88f2d44SBarry Smith   ts->num_snes_failures = 0;
3320c88f2d44SBarry Smith   ts->reject            = 0;
3321c88f2d44SBarry Smith   ts->reason            = TS_CONVERGED_ITERATING;
3322c88f2d44SBarry Smith 
332373b18844SBarry Smith   if (!ts->adjoint_max_steps) ts->adjoint_max_steps = ts->total_steps;
3324c88f2d44SBarry Smith 
332573b18844SBarry Smith   if (ts->steps >= ts->adjoint_max_steps)     ts->reason = TS_CONVERGED_ITS;
3326c88f2d44SBarry Smith   while (!ts->reason) {
332773b18844SBarry Smith     ierr = TSTrajectoryGet(ts->trajectory,ts,ts->adjoint_max_steps-ts->steps,ts->ptime);CHKERRQ(ierr);
332873b18844SBarry Smith     ierr = TSMonitor(ts,ts->adjoint_max_steps-ts->steps,ts->ptime,ts->vec_sol);CHKERRQ(ierr);
332908c7845fSBarry Smith     ierr = TSAdjointStep(ts);CHKERRQ(ierr);
3330c88f2d44SBarry Smith     if (ts->event) {
3331c88f2d44SBarry Smith       ierr = TSEventMonitor(ts);CHKERRQ(ierr);
3332c88f2d44SBarry Smith       if (ts->event->status != TSEVENT_PROCESSING) {
3333c88f2d44SBarry Smith         ierr = TSPostStep(ts);CHKERRQ(ierr);
3334c88f2d44SBarry Smith       }
3335c88f2d44SBarry Smith     } else {
3336c88f2d44SBarry Smith       ierr = TSPostStep(ts);CHKERRQ(ierr);
3337c88f2d44SBarry Smith     }
3338c88f2d44SBarry Smith   }
3339c88f2d44SBarry Smith   ts->solvetime = ts->ptime;
3340c88f2d44SBarry Smith   PetscFunctionReturn(0);
3341c88f2d44SBarry Smith }
3342c88f2d44SBarry Smith 
3343c88f2d44SBarry Smith #undef __FUNCT__
33444a2ae208SSatish Balay #define __FUNCT__ "TSMonitor"
3345228d79bcSJed Brown /*@
3346228d79bcSJed Brown    TSMonitor - Runs all user-provided monitor routines set using TSMonitorSet()
3347228d79bcSJed Brown 
3348228d79bcSJed Brown    Collective on TS
3349228d79bcSJed Brown 
3350228d79bcSJed Brown    Input Parameters:
3351228d79bcSJed Brown +  ts - time stepping context obtained from TSCreate()
3352228d79bcSJed Brown .  step - step number that has just completed
3353228d79bcSJed Brown .  ptime - model time of the state
33540910c330SBarry Smith -  u - state at the current model time
3355228d79bcSJed Brown 
3356228d79bcSJed Brown    Notes:
3357228d79bcSJed Brown    TSMonitor() is typically used within the time stepping implementations.
3358228d79bcSJed Brown    Users might call this function when using the TSStep() interface instead of TSSolve().
3359228d79bcSJed Brown 
3360228d79bcSJed Brown    Level: advanced
3361228d79bcSJed Brown 
3362228d79bcSJed Brown .keywords: TS, timestep
3363228d79bcSJed Brown @*/
33640910c330SBarry Smith PetscErrorCode TSMonitor(TS ts,PetscInt step,PetscReal ptime,Vec u)
3365d763cef2SBarry Smith {
33666849ba73SBarry Smith   PetscErrorCode ierr;
3367a7cc72afSBarry Smith   PetscInt       i,n = ts->numbermonitors;
3368d763cef2SBarry Smith 
3369d763cef2SBarry Smith   PetscFunctionBegin;
3370b06615a5SLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3371b06615a5SLisandro Dalcin   PetscValidHeaderSpecific(u,VEC_CLASSID,4);
33725edff71fSBarry Smith   ierr = VecLockPush(u);CHKERRQ(ierr);
3373d763cef2SBarry Smith   for (i=0; i<n; i++) {
33740910c330SBarry Smith     ierr = (*ts->monitor[i])(ts,step,ptime,u,ts->monitorcontext[i]);CHKERRQ(ierr);
3375d763cef2SBarry Smith   }
33765edff71fSBarry Smith   ierr = VecLockPop(u);CHKERRQ(ierr);
3377d763cef2SBarry Smith   PetscFunctionReturn(0);
3378d763cef2SBarry Smith }
3379d763cef2SBarry Smith 
3380d763cef2SBarry Smith /* ------------------------------------------------------------------------*/
33814a2ae208SSatish Balay #undef __FUNCT__
3382a9f9c1f6SBarry Smith #define __FUNCT__ "TSMonitorLGCtxCreate"
3383d763cef2SBarry Smith /*@C
3384a9f9c1f6SBarry Smith    TSMonitorLGCtxCreate - Creates a line graph context for use with
3385a9f9c1f6SBarry Smith    TS to monitor the solution process graphically in various ways
3386d763cef2SBarry Smith 
3387d763cef2SBarry Smith    Collective on TS
3388d763cef2SBarry Smith 
3389d763cef2SBarry Smith    Input Parameters:
3390d763cef2SBarry Smith +  host - the X display to open, or null for the local machine
3391d763cef2SBarry Smith .  label - the title to put in the title bar
33927c922b88SBarry Smith .  x, y - the screen coordinates of the upper left coordinate of the window
3393a9f9c1f6SBarry Smith .  m, n - the screen width and height in pixels
3394a9f9c1f6SBarry Smith -  howoften - if positive then determines the frequency of the plotting, if -1 then only at the final time
3395d763cef2SBarry Smith 
3396d763cef2SBarry Smith    Output Parameter:
33970b039ecaSBarry Smith .  ctx - the context
3398d763cef2SBarry Smith 
3399d763cef2SBarry Smith    Options Database Key:
34004f09c107SBarry Smith +  -ts_monitor_lg_timestep - automatically sets line graph monitor
34014f09c107SBarry Smith .  -ts_monitor_lg_solution -
340299fdda47SBarry Smith .  -ts_monitor_lg_error -
340399fdda47SBarry Smith .  -ts_monitor_lg_ksp_iterations -
340499fdda47SBarry Smith .  -ts_monitor_lg_snes_iterations -
340599fdda47SBarry Smith -  -lg_indicate_data_points <true,false> - indicate the data points (at each time step) on the plot; default is true
3406d763cef2SBarry Smith 
3407d763cef2SBarry Smith    Notes:
3408a9f9c1f6SBarry Smith    Use TSMonitorLGCtxDestroy() to destroy.
3409d763cef2SBarry Smith 
3410d763cef2SBarry Smith    Level: intermediate
3411d763cef2SBarry Smith 
34127c922b88SBarry Smith .keywords: TS, monitor, line graph, residual, seealso
3413d763cef2SBarry Smith 
34144f09c107SBarry Smith .seealso: TSMonitorLGTimeStep(), TSMonitorSet(), TSMonitorLGSolution(), TSMonitorLGError()
34157c922b88SBarry Smith 
3416d763cef2SBarry Smith @*/
3417a9f9c1f6SBarry Smith PetscErrorCode  TSMonitorLGCtxCreate(MPI_Comm comm,const char host[],const char label[],int x,int y,int m,int n,PetscInt howoften,TSMonitorLGCtx *ctx)
3418d763cef2SBarry Smith {
3419b0a32e0cSBarry Smith   PetscDraw      win;
3420dfbe8321SBarry Smith   PetscErrorCode ierr;
3421d763cef2SBarry Smith 
3422d763cef2SBarry Smith   PetscFunctionBegin;
3423b00a9115SJed Brown   ierr = PetscNew(ctx);CHKERRQ(ierr);
3424a80ad3e0SBarry Smith   ierr = PetscDrawCreate(comm,host,label,x,y,m,n,&win);CHKERRQ(ierr);
34253fbbecb0SBarry Smith   ierr = PetscDrawSetFromOptions(win);CHKERRQ(ierr);
34260b039ecaSBarry Smith   ierr = PetscDrawLGCreate(win,1,&(*ctx)->lg);CHKERRQ(ierr);
34273bb1ff40SBarry Smith   ierr = PetscLogObjectParent((PetscObject)(*ctx)->lg,(PetscObject)win);CHKERRQ(ierr);
3428287de1a7SBarry Smith   ierr = PetscDrawLGIndicateDataPoints((*ctx)->lg,PETSC_TRUE);CHKERRQ(ierr);
3429287de1a7SBarry Smith   ierr = PetscDrawLGSetFromOptions((*ctx)->lg);CHKERRQ(ierr);
3430a9f9c1f6SBarry Smith   (*ctx)->howoften = howoften;
3431d763cef2SBarry Smith   PetscFunctionReturn(0);
3432d763cef2SBarry Smith }
3433d763cef2SBarry Smith 
34344a2ae208SSatish Balay #undef __FUNCT__
34354f09c107SBarry Smith #define __FUNCT__ "TSMonitorLGTimeStep"
3436b06615a5SLisandro Dalcin PetscErrorCode TSMonitorLGTimeStep(TS ts,PetscInt step,PetscReal ptime,Vec v,void *monctx)
3437d763cef2SBarry Smith {
34380b039ecaSBarry Smith   TSMonitorLGCtx ctx = (TSMonitorLGCtx) monctx;
3439c32365f1SBarry Smith   PetscReal      x   = ptime,y;
3440dfbe8321SBarry Smith   PetscErrorCode ierr;
3441d763cef2SBarry Smith 
3442d763cef2SBarry Smith   PetscFunctionBegin;
3443b06615a5SLisandro Dalcin   if (!step) {
3444a9f9c1f6SBarry Smith     PetscDrawAxis axis;
3445a9f9c1f6SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
3446a9f9c1f6SBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Timestep as function of time","Time","Time step");CHKERRQ(ierr);
3447a9f9c1f6SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
3448287de1a7SBarry Smith     ierr = PetscDrawLGIndicateDataPoints(ctx->lg,PETSC_TRUE);CHKERRQ(ierr);
3449a9f9c1f6SBarry Smith   }
3450c32365f1SBarry Smith   ierr = TSGetTimeStep(ts,&y);CHKERRQ(ierr);
34510b039ecaSBarry Smith   ierr = PetscDrawLGAddPoint(ctx->lg,&x,&y);CHKERRQ(ierr);
3452b06615a5SLisandro Dalcin   if (((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason)) {
34530b039ecaSBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
34543923b477SBarry Smith   }
3455d763cef2SBarry Smith   PetscFunctionReturn(0);
3456d763cef2SBarry Smith }
3457d763cef2SBarry Smith 
34584a2ae208SSatish Balay #undef __FUNCT__
3459a9f9c1f6SBarry Smith #define __FUNCT__ "TSMonitorLGCtxDestroy"
3460d763cef2SBarry Smith /*@C
3461a9f9c1f6SBarry Smith    TSMonitorLGCtxDestroy - Destroys a line graph context that was created
3462a9f9c1f6SBarry Smith    with TSMonitorLGCtxCreate().
3463d763cef2SBarry Smith 
34640b039ecaSBarry Smith    Collective on TSMonitorLGCtx
3465d763cef2SBarry Smith 
3466d763cef2SBarry Smith    Input Parameter:
34670b039ecaSBarry Smith .  ctx - the monitor context
3468d763cef2SBarry Smith 
3469d763cef2SBarry Smith    Level: intermediate
3470d763cef2SBarry Smith 
3471d763cef2SBarry Smith .keywords: TS, monitor, line graph, destroy
3472d763cef2SBarry Smith 
34734f09c107SBarry Smith .seealso: TSMonitorLGCtxCreate(),  TSMonitorSet(), TSMonitorLGTimeStep();
3474d763cef2SBarry Smith @*/
3475a9f9c1f6SBarry Smith PetscErrorCode  TSMonitorLGCtxDestroy(TSMonitorLGCtx *ctx)
3476d763cef2SBarry Smith {
3477b0a32e0cSBarry Smith   PetscDraw      draw;
3478dfbe8321SBarry Smith   PetscErrorCode ierr;
3479d763cef2SBarry Smith 
3480d763cef2SBarry Smith   PetscFunctionBegin;
34810b039ecaSBarry Smith   ierr = PetscDrawLGGetDraw((*ctx)->lg,&draw);CHKERRQ(ierr);
34826bf464f9SBarry Smith   ierr = PetscDrawDestroy(&draw);CHKERRQ(ierr);
34830b039ecaSBarry Smith   ierr = PetscDrawLGDestroy(&(*ctx)->lg);CHKERRQ(ierr);
34840b039ecaSBarry Smith   ierr = PetscFree(*ctx);CHKERRQ(ierr);
3485d763cef2SBarry Smith   PetscFunctionReturn(0);
3486d763cef2SBarry Smith }
3487d763cef2SBarry Smith 
34884a2ae208SSatish Balay #undef __FUNCT__
34894a2ae208SSatish Balay #define __FUNCT__ "TSGetTime"
3490d763cef2SBarry Smith /*@
3491b8123daeSJed Brown    TSGetTime - Gets the time of the most recently completed step.
3492d763cef2SBarry Smith 
3493d763cef2SBarry Smith    Not Collective
3494d763cef2SBarry Smith 
3495d763cef2SBarry Smith    Input Parameter:
3496d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
3497d763cef2SBarry Smith 
3498d763cef2SBarry Smith    Output Parameter:
3499d763cef2SBarry Smith .  t  - the current time
3500d763cef2SBarry Smith 
3501d763cef2SBarry Smith    Level: beginner
3502d763cef2SBarry Smith 
3503b8123daeSJed Brown    Note:
3504b8123daeSJed Brown    When called during time step evaluation (e.g. during residual evaluation or via hooks set using TSSetPreStep(),
35059be3e283SDebojyoti Ghosh    TSSetPreStage(), TSSetPostStage(), or TSSetPostStep()), the time is the time at the start of the step being evaluated.
3506b8123daeSJed Brown 
3507d763cef2SBarry Smith .seealso: TSSetInitialTimeStep(), TSGetTimeStep()
3508d763cef2SBarry Smith 
3509d763cef2SBarry Smith .keywords: TS, get, time
3510d763cef2SBarry Smith @*/
35117087cfbeSBarry Smith PetscErrorCode  TSGetTime(TS ts,PetscReal *t)
3512d763cef2SBarry Smith {
3513d763cef2SBarry Smith   PetscFunctionBegin;
35140700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3515f7cf8827SBarry Smith   PetscValidRealPointer(t,2);
3516d763cef2SBarry Smith   *t = ts->ptime;
3517d763cef2SBarry Smith   PetscFunctionReturn(0);
3518d763cef2SBarry Smith }
3519d763cef2SBarry Smith 
35204a2ae208SSatish Balay #undef __FUNCT__
3521e5e524a1SHong Zhang #define __FUNCT__ "TSGetPrevTime"
3522e5e524a1SHong Zhang /*@
3523e5e524a1SHong Zhang    TSGetPrevTime - Gets the starting time of the previously completed step.
3524e5e524a1SHong Zhang 
3525e5e524a1SHong Zhang    Not Collective
3526e5e524a1SHong Zhang 
3527e5e524a1SHong Zhang    Input Parameter:
3528e5e524a1SHong Zhang .  ts - the TS context obtained from TSCreate()
3529e5e524a1SHong Zhang 
3530e5e524a1SHong Zhang    Output Parameter:
3531e5e524a1SHong Zhang .  t  - the previous time
3532e5e524a1SHong Zhang 
3533e5e524a1SHong Zhang    Level: beginner
3534e5e524a1SHong Zhang 
3535e5e524a1SHong Zhang .seealso: TSSetInitialTimeStep(), TSGetTimeStep()
3536e5e524a1SHong Zhang 
3537e5e524a1SHong Zhang .keywords: TS, get, time
3538e5e524a1SHong Zhang @*/
3539e5e524a1SHong Zhang PetscErrorCode  TSGetPrevTime(TS ts,PetscReal *t)
3540e5e524a1SHong Zhang {
3541e5e524a1SHong Zhang   PetscFunctionBegin;
3542e5e524a1SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3543e5e524a1SHong Zhang   PetscValidRealPointer(t,2);
3544e5e524a1SHong Zhang   *t = ts->ptime_prev;
3545e5e524a1SHong Zhang   PetscFunctionReturn(0);
3546e5e524a1SHong Zhang }
3547e5e524a1SHong Zhang 
3548e5e524a1SHong Zhang #undef __FUNCT__
35496a4d4014SLisandro Dalcin #define __FUNCT__ "TSSetTime"
35506a4d4014SLisandro Dalcin /*@
35516a4d4014SLisandro Dalcin    TSSetTime - Allows one to reset the time.
35526a4d4014SLisandro Dalcin 
35533f9fe445SBarry Smith    Logically Collective on TS
35546a4d4014SLisandro Dalcin 
35556a4d4014SLisandro Dalcin    Input Parameters:
35566a4d4014SLisandro Dalcin +  ts - the TS context obtained from TSCreate()
35576a4d4014SLisandro Dalcin -  time - the time
35586a4d4014SLisandro Dalcin 
35596a4d4014SLisandro Dalcin    Level: intermediate
35606a4d4014SLisandro Dalcin 
35616a4d4014SLisandro Dalcin .seealso: TSGetTime(), TSSetDuration()
35626a4d4014SLisandro Dalcin 
35636a4d4014SLisandro Dalcin .keywords: TS, set, time
35646a4d4014SLisandro Dalcin @*/
35657087cfbeSBarry Smith PetscErrorCode  TSSetTime(TS ts, PetscReal t)
35666a4d4014SLisandro Dalcin {
35676a4d4014SLisandro Dalcin   PetscFunctionBegin;
35680700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3569c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(ts,t,2);
35706a4d4014SLisandro Dalcin   ts->ptime = t;
35716a4d4014SLisandro Dalcin   PetscFunctionReturn(0);
35726a4d4014SLisandro Dalcin }
35736a4d4014SLisandro Dalcin 
35746a4d4014SLisandro Dalcin #undef __FUNCT__
35754a2ae208SSatish Balay #define __FUNCT__ "TSSetOptionsPrefix"
3576d763cef2SBarry Smith /*@C
3577d763cef2SBarry Smith    TSSetOptionsPrefix - Sets the prefix used for searching for all
3578d763cef2SBarry Smith    TS options in the database.
3579d763cef2SBarry Smith 
35803f9fe445SBarry Smith    Logically Collective on TS
3581d763cef2SBarry Smith 
3582d763cef2SBarry Smith    Input Parameter:
3583d763cef2SBarry Smith +  ts     - The TS context
3584d763cef2SBarry Smith -  prefix - The prefix to prepend to all option names
3585d763cef2SBarry Smith 
3586d763cef2SBarry Smith    Notes:
3587d763cef2SBarry Smith    A hyphen (-) must NOT be given at the beginning of the prefix name.
3588d763cef2SBarry Smith    The first character of all runtime options is AUTOMATICALLY the
3589d763cef2SBarry Smith    hyphen.
3590d763cef2SBarry Smith 
3591d763cef2SBarry Smith    Level: advanced
3592d763cef2SBarry Smith 
3593d763cef2SBarry Smith .keywords: TS, set, options, prefix, database
3594d763cef2SBarry Smith 
3595d763cef2SBarry Smith .seealso: TSSetFromOptions()
3596d763cef2SBarry Smith 
3597d763cef2SBarry Smith @*/
35987087cfbeSBarry Smith PetscErrorCode  TSSetOptionsPrefix(TS ts,const char prefix[])
3599d763cef2SBarry Smith {
3600dfbe8321SBarry Smith   PetscErrorCode ierr;
3601089b2837SJed Brown   SNES           snes;
3602d763cef2SBarry Smith 
3603d763cef2SBarry Smith   PetscFunctionBegin;
36040700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3605d763cef2SBarry Smith   ierr = PetscObjectSetOptionsPrefix((PetscObject)ts,prefix);CHKERRQ(ierr);
3606089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
3607089b2837SJed Brown   ierr = SNESSetOptionsPrefix(snes,prefix);CHKERRQ(ierr);
3608d763cef2SBarry Smith   PetscFunctionReturn(0);
3609d763cef2SBarry Smith }
3610d763cef2SBarry Smith 
3611d763cef2SBarry Smith 
36124a2ae208SSatish Balay #undef __FUNCT__
36134a2ae208SSatish Balay #define __FUNCT__ "TSAppendOptionsPrefix"
3614d763cef2SBarry Smith /*@C
3615d763cef2SBarry Smith    TSAppendOptionsPrefix - Appends to the prefix used for searching for all
3616d763cef2SBarry Smith    TS options in the database.
3617d763cef2SBarry Smith 
36183f9fe445SBarry Smith    Logically Collective on TS
3619d763cef2SBarry Smith 
3620d763cef2SBarry Smith    Input Parameter:
3621d763cef2SBarry Smith +  ts     - The TS context
3622d763cef2SBarry Smith -  prefix - The prefix to prepend to all option names
3623d763cef2SBarry Smith 
3624d763cef2SBarry Smith    Notes:
3625d763cef2SBarry Smith    A hyphen (-) must NOT be given at the beginning of the prefix name.
3626d763cef2SBarry Smith    The first character of all runtime options is AUTOMATICALLY the
3627d763cef2SBarry Smith    hyphen.
3628d763cef2SBarry Smith 
3629d763cef2SBarry Smith    Level: advanced
3630d763cef2SBarry Smith 
3631d763cef2SBarry Smith .keywords: TS, append, options, prefix, database
3632d763cef2SBarry Smith 
3633d763cef2SBarry Smith .seealso: TSGetOptionsPrefix()
3634d763cef2SBarry Smith 
3635d763cef2SBarry Smith @*/
36367087cfbeSBarry Smith PetscErrorCode  TSAppendOptionsPrefix(TS ts,const char prefix[])
3637d763cef2SBarry Smith {
3638dfbe8321SBarry Smith   PetscErrorCode ierr;
3639089b2837SJed Brown   SNES           snes;
3640d763cef2SBarry Smith 
3641d763cef2SBarry Smith   PetscFunctionBegin;
36420700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3643d763cef2SBarry Smith   ierr = PetscObjectAppendOptionsPrefix((PetscObject)ts,prefix);CHKERRQ(ierr);
3644089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
3645089b2837SJed Brown   ierr = SNESAppendOptionsPrefix(snes,prefix);CHKERRQ(ierr);
3646d763cef2SBarry Smith   PetscFunctionReturn(0);
3647d763cef2SBarry Smith }
3648d763cef2SBarry Smith 
36494a2ae208SSatish Balay #undef __FUNCT__
36504a2ae208SSatish Balay #define __FUNCT__ "TSGetOptionsPrefix"
3651d763cef2SBarry Smith /*@C
3652d763cef2SBarry Smith    TSGetOptionsPrefix - Sets the prefix used for searching for all
3653d763cef2SBarry Smith    TS options in the database.
3654d763cef2SBarry Smith 
3655d763cef2SBarry Smith    Not Collective
3656d763cef2SBarry Smith 
3657d763cef2SBarry Smith    Input Parameter:
3658d763cef2SBarry Smith .  ts - The TS context
3659d763cef2SBarry Smith 
3660d763cef2SBarry Smith    Output Parameter:
3661d763cef2SBarry Smith .  prefix - A pointer to the prefix string used
3662d763cef2SBarry Smith 
3663d763cef2SBarry Smith    Notes: On the fortran side, the user should pass in a string 'prifix' of
3664d763cef2SBarry Smith    sufficient length to hold the prefix.
3665d763cef2SBarry Smith 
3666d763cef2SBarry Smith    Level: intermediate
3667d763cef2SBarry Smith 
3668d763cef2SBarry Smith .keywords: TS, get, options, prefix, database
3669d763cef2SBarry Smith 
3670d763cef2SBarry Smith .seealso: TSAppendOptionsPrefix()
3671d763cef2SBarry Smith @*/
36727087cfbeSBarry Smith PetscErrorCode  TSGetOptionsPrefix(TS ts,const char *prefix[])
3673d763cef2SBarry Smith {
3674dfbe8321SBarry Smith   PetscErrorCode ierr;
3675d763cef2SBarry Smith 
3676d763cef2SBarry Smith   PetscFunctionBegin;
36770700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
36784482741eSBarry Smith   PetscValidPointer(prefix,2);
3679d763cef2SBarry Smith   ierr = PetscObjectGetOptionsPrefix((PetscObject)ts,prefix);CHKERRQ(ierr);
3680d763cef2SBarry Smith   PetscFunctionReturn(0);
3681d763cef2SBarry Smith }
3682d763cef2SBarry Smith 
36834a2ae208SSatish Balay #undef __FUNCT__
36844a2ae208SSatish Balay #define __FUNCT__ "TSGetRHSJacobian"
3685d763cef2SBarry Smith /*@C
3686d763cef2SBarry Smith    TSGetRHSJacobian - Returns the Jacobian J at the present timestep.
3687d763cef2SBarry Smith 
3688d763cef2SBarry Smith    Not Collective, but parallel objects are returned if TS is parallel
3689d763cef2SBarry Smith 
3690d763cef2SBarry Smith    Input Parameter:
3691d763cef2SBarry Smith .  ts  - The TS context obtained from TSCreate()
3692d763cef2SBarry Smith 
3693d763cef2SBarry Smith    Output Parameters:
3694e4357dc4SBarry Smith +  Amat - The (approximate) Jacobian J of G, where U_t = G(U,t)  (or NULL)
3695e4357dc4SBarry Smith .  Pmat - The matrix from which the preconditioner is constructed, usually the same as Amat  (or NULL)
3696e4357dc4SBarry Smith .  func - Function to compute the Jacobian of the RHS  (or NULL)
3697e4357dc4SBarry Smith -  ctx - User-defined context for Jacobian evaluation routine  (or NULL)
3698d763cef2SBarry Smith 
36990298fd71SBarry Smith    Notes: You can pass in NULL for any return argument you do not need.
3700d763cef2SBarry Smith 
3701d763cef2SBarry Smith    Level: intermediate
3702d763cef2SBarry Smith 
370326d46c62SHong Zhang .seealso: TSGetTimeStep(), TSGetMatrices(), TSGetTime(), TSGetTimeStepNumber()
3704d763cef2SBarry Smith 
3705d763cef2SBarry Smith .keywords: TS, timestep, get, matrix, Jacobian
3706d763cef2SBarry Smith @*/
3707e4357dc4SBarry Smith PetscErrorCode  TSGetRHSJacobian(TS ts,Mat *Amat,Mat *Pmat,TSRHSJacobian *func,void **ctx)
3708d763cef2SBarry Smith {
3709089b2837SJed Brown   PetscErrorCode ierr;
3710089b2837SJed Brown   SNES           snes;
371124989b8cSPeter Brune   DM             dm;
3712089b2837SJed Brown 
3713d763cef2SBarry Smith   PetscFunctionBegin;
3714089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
3715e4357dc4SBarry Smith   ierr = SNESGetJacobian(snes,Amat,Pmat,NULL,NULL);CHKERRQ(ierr);
371624989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
371724989b8cSPeter Brune   ierr = DMTSGetRHSJacobian(dm,func,ctx);CHKERRQ(ierr);
3718d763cef2SBarry Smith   PetscFunctionReturn(0);
3719d763cef2SBarry Smith }
3720d763cef2SBarry Smith 
37211713a123SBarry Smith #undef __FUNCT__
37222eca1d9cSJed Brown #define __FUNCT__ "TSGetIJacobian"
37232eca1d9cSJed Brown /*@C
37242eca1d9cSJed Brown    TSGetIJacobian - Returns the implicit Jacobian at the present timestep.
37252eca1d9cSJed Brown 
37262eca1d9cSJed Brown    Not Collective, but parallel objects are returned if TS is parallel
37272eca1d9cSJed Brown 
37282eca1d9cSJed Brown    Input Parameter:
37292eca1d9cSJed Brown .  ts  - The TS context obtained from TSCreate()
37302eca1d9cSJed Brown 
37312eca1d9cSJed Brown    Output Parameters:
3732e4357dc4SBarry Smith +  Amat  - The (approximate) Jacobian of F(t,U,U_t)
3733e4357dc4SBarry Smith .  Pmat - The matrix from which the preconditioner is constructed, often the same as Amat
37342eca1d9cSJed Brown .  f   - The function to compute the matrices
37352eca1d9cSJed Brown - ctx - User-defined context for Jacobian evaluation routine
37362eca1d9cSJed Brown 
37370298fd71SBarry Smith    Notes: You can pass in NULL for any return argument you do not need.
37382eca1d9cSJed Brown 
37392eca1d9cSJed Brown    Level: advanced
37402eca1d9cSJed Brown 
37412eca1d9cSJed Brown .seealso: TSGetTimeStep(), TSGetRHSJacobian(), TSGetMatrices(), TSGetTime(), TSGetTimeStepNumber()
37422eca1d9cSJed Brown 
37432eca1d9cSJed Brown .keywords: TS, timestep, get, matrix, Jacobian
37442eca1d9cSJed Brown @*/
3745e4357dc4SBarry Smith PetscErrorCode  TSGetIJacobian(TS ts,Mat *Amat,Mat *Pmat,TSIJacobian *f,void **ctx)
37462eca1d9cSJed Brown {
3747089b2837SJed Brown   PetscErrorCode ierr;
3748089b2837SJed Brown   SNES           snes;
374924989b8cSPeter Brune   DM             dm;
37500910c330SBarry Smith 
37512eca1d9cSJed Brown   PetscFunctionBegin;
3752089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
3753f7d39f7aSBarry Smith   ierr = SNESSetUpMatrices(snes);CHKERRQ(ierr);
3754e4357dc4SBarry Smith   ierr = SNESGetJacobian(snes,Amat,Pmat,NULL,NULL);CHKERRQ(ierr);
375524989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
375624989b8cSPeter Brune   ierr = DMTSGetIJacobian(dm,f,ctx);CHKERRQ(ierr);
37572eca1d9cSJed Brown   PetscFunctionReturn(0);
37582eca1d9cSJed Brown }
37592eca1d9cSJed Brown 
37606083293cSBarry Smith 
37612eca1d9cSJed Brown #undef __FUNCT__
376283a4ac43SBarry Smith #define __FUNCT__ "TSMonitorDrawSolution"
37631713a123SBarry Smith /*@C
376483a4ac43SBarry Smith    TSMonitorDrawSolution - Monitors progress of the TS solvers by calling
37651713a123SBarry Smith    VecView() for the solution at each timestep
37661713a123SBarry Smith 
37671713a123SBarry Smith    Collective on TS
37681713a123SBarry Smith 
37691713a123SBarry Smith    Input Parameters:
37701713a123SBarry Smith +  ts - the TS context
37711713a123SBarry Smith .  step - current time-step
3772142b95e3SSatish Balay .  ptime - current time
37730298fd71SBarry Smith -  dummy - either a viewer or NULL
37741713a123SBarry Smith 
377599fdda47SBarry Smith    Options Database:
377699fdda47SBarry Smith .   -ts_monitor_draw_solution_initial - show initial solution as well as current solution
377799fdda47SBarry Smith 
377899fdda47SBarry Smith    Notes: the initial solution and current solution are not displayed with a common axis scaling so generally the option -ts_monitor_draw_solution_initial
377999fdda47SBarry Smith        will look bad
378099fdda47SBarry Smith 
37811713a123SBarry Smith    Level: intermediate
37821713a123SBarry Smith 
37831713a123SBarry Smith .keywords: TS,  vector, monitor, view
37841713a123SBarry Smith 
3785a6570f20SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
37861713a123SBarry Smith @*/
37870910c330SBarry Smith PetscErrorCode  TSMonitorDrawSolution(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
37881713a123SBarry Smith {
3789dfbe8321SBarry Smith   PetscErrorCode   ierr;
379083a4ac43SBarry Smith   TSMonitorDrawCtx ictx = (TSMonitorDrawCtx)dummy;
3791473a3ab2SBarry Smith   PetscDraw        draw;
37921713a123SBarry Smith 
37931713a123SBarry Smith   PetscFunctionBegin;
37946083293cSBarry Smith   if (!step && ictx->showinitial) {
37956083293cSBarry Smith     if (!ictx->initialsolution) {
37960910c330SBarry Smith       ierr = VecDuplicate(u,&ictx->initialsolution);CHKERRQ(ierr);
37971713a123SBarry Smith     }
37980910c330SBarry Smith     ierr = VecCopy(u,ictx->initialsolution);CHKERRQ(ierr);
37996083293cSBarry Smith   }
3800b06615a5SLisandro Dalcin   if (!(((ictx->howoften > 0) && (!(step % ictx->howoften))) || ((ictx->howoften == -1) && ts->reason))) PetscFunctionReturn(0);
38010dcf80beSBarry Smith 
38026083293cSBarry Smith   if (ictx->showinitial) {
38036083293cSBarry Smith     PetscReal pause;
38046083293cSBarry Smith     ierr = PetscViewerDrawGetPause(ictx->viewer,&pause);CHKERRQ(ierr);
38056083293cSBarry Smith     ierr = PetscViewerDrawSetPause(ictx->viewer,0.0);CHKERRQ(ierr);
38066083293cSBarry Smith     ierr = VecView(ictx->initialsolution,ictx->viewer);CHKERRQ(ierr);
38076083293cSBarry Smith     ierr = PetscViewerDrawSetPause(ictx->viewer,pause);CHKERRQ(ierr);
38086083293cSBarry Smith     ierr = PetscViewerDrawSetHold(ictx->viewer,PETSC_TRUE);CHKERRQ(ierr);
38096083293cSBarry Smith   }
38100910c330SBarry Smith   ierr = VecView(u,ictx->viewer);CHKERRQ(ierr);
3811473a3ab2SBarry Smith   if (ictx->showtimestepandtime) {
3812473a3ab2SBarry Smith     PetscReal xl,yl,xr,yr,tw,w,h;
3813473a3ab2SBarry Smith     char      time[32];
3814473a3ab2SBarry Smith     size_t    len;
3815473a3ab2SBarry Smith 
3816473a3ab2SBarry Smith     ierr = PetscViewerDrawGetDraw(ictx->viewer,0,&draw);CHKERRQ(ierr);
3817473a3ab2SBarry Smith     ierr = PetscSNPrintf(time,32,"Timestep %d Time %f",(int)step,(double)ptime);CHKERRQ(ierr);
3818473a3ab2SBarry Smith     ierr = PetscDrawGetCoordinates(draw,&xl,&yl,&xr,&yr);CHKERRQ(ierr);
3819473a3ab2SBarry Smith     ierr =  PetscStrlen(time,&len);CHKERRQ(ierr);
38200298fd71SBarry Smith     ierr = PetscDrawStringGetSize(draw,&tw,NULL);CHKERRQ(ierr);
3821473a3ab2SBarry Smith     w    = xl + .5*(xr - xl) - .5*len*tw;
3822473a3ab2SBarry Smith     h    = yl + .95*(yr - yl);
3823473a3ab2SBarry Smith     ierr = PetscDrawString(draw,w,h,PETSC_DRAW_BLACK,time);CHKERRQ(ierr);
3824473a3ab2SBarry Smith     ierr = PetscDrawFlush(draw);CHKERRQ(ierr);
3825473a3ab2SBarry Smith   }
3826473a3ab2SBarry Smith 
38276083293cSBarry Smith   if (ictx->showinitial) {
38286083293cSBarry Smith     ierr = PetscViewerDrawSetHold(ictx->viewer,PETSC_FALSE);CHKERRQ(ierr);
38296083293cSBarry Smith   }
38301713a123SBarry Smith   PetscFunctionReturn(0);
38311713a123SBarry Smith }
38321713a123SBarry Smith 
38332d5ee99bSBarry Smith #undef __FUNCT__
38342d5ee99bSBarry Smith #define __FUNCT__ "TSMonitorDrawSolutionPhase"
38352d5ee99bSBarry Smith /*@C
38362d5ee99bSBarry Smith    TSMonitorDrawSolutionPhase - Monitors progress of the TS solvers by plotting the solution as a phase diagram
38372d5ee99bSBarry Smith 
38382d5ee99bSBarry Smith    Collective on TS
38392d5ee99bSBarry Smith 
38402d5ee99bSBarry Smith    Input Parameters:
38412d5ee99bSBarry Smith +  ts - the TS context
38422d5ee99bSBarry Smith .  step - current time-step
38432d5ee99bSBarry Smith .  ptime - current time
38442d5ee99bSBarry Smith -  dummy - either a viewer or NULL
38452d5ee99bSBarry Smith 
38462d5ee99bSBarry Smith    Level: intermediate
38472d5ee99bSBarry Smith 
38482d5ee99bSBarry Smith .keywords: TS,  vector, monitor, view
38492d5ee99bSBarry Smith 
38502d5ee99bSBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
38512d5ee99bSBarry Smith @*/
38522d5ee99bSBarry Smith PetscErrorCode  TSMonitorDrawSolutionPhase(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
38532d5ee99bSBarry Smith {
38542d5ee99bSBarry Smith   PetscErrorCode    ierr;
38552d5ee99bSBarry Smith   TSMonitorDrawCtx  ictx = (TSMonitorDrawCtx)dummy;
38562d5ee99bSBarry Smith   PetscDraw         draw;
38572d5ee99bSBarry Smith   MPI_Comm          comm;
38582d5ee99bSBarry Smith   PetscInt          n;
38592d5ee99bSBarry Smith   PetscMPIInt       size;
38602d5ee99bSBarry Smith   PetscReal         xl,yl,xr,yr,tw,w,h;
38612d5ee99bSBarry Smith   char              time[32];
38622d5ee99bSBarry Smith   size_t            len;
38632d5ee99bSBarry Smith   const PetscScalar *U;
38642d5ee99bSBarry Smith 
38652d5ee99bSBarry Smith   PetscFunctionBegin;
38662d5ee99bSBarry Smith   ierr = PetscObjectGetComm((PetscObject)ts,&comm);CHKERRQ(ierr);
38672d5ee99bSBarry Smith   ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr);
38682d5ee99bSBarry Smith   if (size != 1) SETERRQ(comm,PETSC_ERR_SUP,"Only allowed for sequential runs");
38692d5ee99bSBarry Smith   ierr = VecGetSize(u,&n);CHKERRQ(ierr);
38702d5ee99bSBarry Smith   if (n != 2) SETERRQ(comm,PETSC_ERR_SUP,"Only for ODEs with two unknowns");
38712d5ee99bSBarry Smith 
38722d5ee99bSBarry Smith   ierr = PetscViewerDrawGetDraw(ictx->viewer,0,&draw);CHKERRQ(ierr);
38732d5ee99bSBarry Smith 
38742d5ee99bSBarry Smith   ierr = VecGetArrayRead(u,&U);CHKERRQ(ierr);
38754b363babSBarry Smith   ierr = PetscDrawAxisGetLimits(ictx->axis,&xl,&xr,&yl,&yr);CHKERRQ(ierr);
3876ba5783adSMatthew G Knepley   if ((PetscRealPart(U[0]) < xl) || (PetscRealPart(U[1]) < yl) || (PetscRealPart(U[0]) > xr) || (PetscRealPart(U[1]) > yr)) {
3877a4494fc1SBarry Smith       ierr = VecRestoreArrayRead(u,&U);CHKERRQ(ierr);
3878a4494fc1SBarry Smith       PetscFunctionReturn(0);
3879a4494fc1SBarry Smith   }
38802d5ee99bSBarry Smith   if (!step) ictx->color++;
38812d5ee99bSBarry Smith   ierr = PetscDrawPoint(draw,PetscRealPart(U[0]),PetscRealPart(U[1]),ictx->color);CHKERRQ(ierr);
38822d5ee99bSBarry Smith   ierr = VecRestoreArrayRead(u,&U);CHKERRQ(ierr);
38832d5ee99bSBarry Smith 
38842d5ee99bSBarry Smith   if (ictx->showtimestepandtime) {
38854b363babSBarry Smith     ierr = PetscDrawGetCoordinates(draw,&xl,&yl,&xr,&yr);CHKERRQ(ierr);
38862d5ee99bSBarry Smith     ierr = PetscSNPrintf(time,32,"Timestep %d Time %f",(int)step,(double)ptime);CHKERRQ(ierr);
38872d5ee99bSBarry Smith     ierr = PetscStrlen(time,&len);CHKERRQ(ierr);
38882d5ee99bSBarry Smith     ierr = PetscDrawStringGetSize(draw,&tw,NULL);CHKERRQ(ierr);
38892d5ee99bSBarry Smith     w    = xl + .5*(xr - xl) - .5*len*tw;
38902d5ee99bSBarry Smith     h    = yl + .95*(yr - yl);
38912d5ee99bSBarry Smith     ierr = PetscDrawString(draw,w,h,PETSC_DRAW_BLACK,time);CHKERRQ(ierr);
38922d5ee99bSBarry Smith   }
38932d5ee99bSBarry Smith   ierr = PetscDrawFlush(draw);CHKERRQ(ierr);
38942d5ee99bSBarry Smith   PetscFunctionReturn(0);
38952d5ee99bSBarry Smith }
38962d5ee99bSBarry Smith 
38971713a123SBarry Smith 
38986c699258SBarry Smith #undef __FUNCT__
389983a4ac43SBarry Smith #define __FUNCT__ "TSMonitorDrawCtxDestroy"
39006083293cSBarry Smith /*@C
390183a4ac43SBarry Smith    TSMonitorDrawCtxDestroy - Destroys the monitor context for TSMonitorDrawSolution()
39026083293cSBarry Smith 
39036083293cSBarry Smith    Collective on TS
39046083293cSBarry Smith 
39056083293cSBarry Smith    Input Parameters:
39066083293cSBarry Smith .    ctx - the monitor context
39076083293cSBarry Smith 
39086083293cSBarry Smith    Level: intermediate
39096083293cSBarry Smith 
39106083293cSBarry Smith .keywords: TS,  vector, monitor, view
39116083293cSBarry Smith 
391283a4ac43SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorDrawSolution(), TSMonitorDrawError()
39136083293cSBarry Smith @*/
391483a4ac43SBarry Smith PetscErrorCode  TSMonitorDrawCtxDestroy(TSMonitorDrawCtx *ictx)
39156083293cSBarry Smith {
39166083293cSBarry Smith   PetscErrorCode ierr;
39176083293cSBarry Smith 
39186083293cSBarry Smith   PetscFunctionBegin;
39194b363babSBarry Smith   ierr = PetscDrawAxisDestroy(&(*ictx)->axis);CHKERRQ(ierr);
392083a4ac43SBarry Smith   ierr = PetscViewerDestroy(&(*ictx)->viewer);CHKERRQ(ierr);
392183a4ac43SBarry Smith   ierr = VecDestroy(&(*ictx)->initialsolution);CHKERRQ(ierr);
392283a4ac43SBarry Smith   ierr = PetscFree(*ictx);CHKERRQ(ierr);
39236083293cSBarry Smith   PetscFunctionReturn(0);
39246083293cSBarry Smith }
39256083293cSBarry Smith 
39266083293cSBarry Smith #undef __FUNCT__
392783a4ac43SBarry Smith #define __FUNCT__ "TSMonitorDrawCtxCreate"
39286083293cSBarry Smith /*@C
392983a4ac43SBarry Smith    TSMonitorDrawCtxCreate - Creates the monitor context for TSMonitorDrawCtx
39306083293cSBarry Smith 
39316083293cSBarry Smith    Collective on TS
39326083293cSBarry Smith 
39336083293cSBarry Smith    Input Parameter:
39346083293cSBarry Smith .    ts - time-step context
39356083293cSBarry Smith 
39366083293cSBarry Smith    Output Patameter:
39376083293cSBarry Smith .    ctx - the monitor context
39386083293cSBarry Smith 
393999fdda47SBarry Smith    Options Database:
394099fdda47SBarry Smith .   -ts_monitor_draw_solution_initial - show initial solution as well as current solution
394199fdda47SBarry Smith 
39426083293cSBarry Smith    Level: intermediate
39436083293cSBarry Smith 
39446083293cSBarry Smith .keywords: TS,  vector, monitor, view
39456083293cSBarry Smith 
394683a4ac43SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorDrawCtx()
39476083293cSBarry Smith @*/
394883a4ac43SBarry Smith PetscErrorCode  TSMonitorDrawCtxCreate(MPI_Comm comm,const char host[],const char label[],int x,int y,int m,int n,PetscInt howoften,TSMonitorDrawCtx *ctx)
39496083293cSBarry Smith {
39506083293cSBarry Smith   PetscErrorCode   ierr;
39516083293cSBarry Smith 
39526083293cSBarry Smith   PetscFunctionBegin;
3953b00a9115SJed Brown   ierr = PetscNew(ctx);CHKERRQ(ierr);
395483a4ac43SBarry Smith   ierr = PetscViewerDrawOpen(comm,host,label,x,y,m,n,&(*ctx)->viewer);CHKERRQ(ierr);
3955e9457bf7SBarry Smith   ierr = PetscViewerSetFromOptions((*ctx)->viewer);CHKERRQ(ierr);
3956bbd56ea5SKarl Rupp 
395783a4ac43SBarry Smith   (*ctx)->howoften    = howoften;
3958473a3ab2SBarry Smith   (*ctx)->showinitial = PETSC_FALSE;
39590298fd71SBarry Smith   ierr = PetscOptionsGetBool(NULL,"-ts_monitor_draw_solution_initial",&(*ctx)->showinitial,NULL);CHKERRQ(ierr);
3960473a3ab2SBarry Smith 
3961473a3ab2SBarry Smith   (*ctx)->showtimestepandtime = PETSC_FALSE;
39620298fd71SBarry Smith   ierr = PetscOptionsGetBool(NULL,"-ts_monitor_draw_solution_show_time",&(*ctx)->showtimestepandtime,NULL);CHKERRQ(ierr);
39632d5ee99bSBarry Smith   (*ctx)->color = PETSC_DRAW_WHITE;
39646083293cSBarry Smith   PetscFunctionReturn(0);
39656083293cSBarry Smith }
39666083293cSBarry Smith 
39676083293cSBarry Smith #undef __FUNCT__
396883a4ac43SBarry Smith #define __FUNCT__ "TSMonitorDrawError"
39693a471f94SBarry Smith /*@C
397083a4ac43SBarry Smith    TSMonitorDrawError - Monitors progress of the TS solvers by calling
39713a471f94SBarry Smith    VecView() for the error at each timestep
39723a471f94SBarry Smith 
39733a471f94SBarry Smith    Collective on TS
39743a471f94SBarry Smith 
39753a471f94SBarry Smith    Input Parameters:
39763a471f94SBarry Smith +  ts - the TS context
39773a471f94SBarry Smith .  step - current time-step
39783a471f94SBarry Smith .  ptime - current time
39790298fd71SBarry Smith -  dummy - either a viewer or NULL
39803a471f94SBarry Smith 
39813a471f94SBarry Smith    Level: intermediate
39823a471f94SBarry Smith 
39833a471f94SBarry Smith .keywords: TS,  vector, monitor, view
39843a471f94SBarry Smith 
39853a471f94SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
39863a471f94SBarry Smith @*/
39870910c330SBarry Smith PetscErrorCode  TSMonitorDrawError(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
39883a471f94SBarry Smith {
39893a471f94SBarry Smith   PetscErrorCode   ierr;
399083a4ac43SBarry Smith   TSMonitorDrawCtx ctx    = (TSMonitorDrawCtx)dummy;
399183a4ac43SBarry Smith   PetscViewer      viewer = ctx->viewer;
39923a471f94SBarry Smith   Vec              work;
39933a471f94SBarry Smith 
39943a471f94SBarry Smith   PetscFunctionBegin;
3995b06615a5SLisandro Dalcin   if (!(((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason))) PetscFunctionReturn(0);
39960910c330SBarry Smith   ierr = VecDuplicate(u,&work);CHKERRQ(ierr);
39973a471f94SBarry Smith   ierr = TSComputeSolutionFunction(ts,ptime,work);CHKERRQ(ierr);
39980910c330SBarry Smith   ierr = VecAXPY(work,-1.0,u);CHKERRQ(ierr);
39993a471f94SBarry Smith   ierr = VecView(work,viewer);CHKERRQ(ierr);
40003a471f94SBarry Smith   ierr = VecDestroy(&work);CHKERRQ(ierr);
40013a471f94SBarry Smith   PetscFunctionReturn(0);
40023a471f94SBarry Smith }
40033a471f94SBarry Smith 
40042a34c10cSBarry Smith #include <petsc-private/dmimpl.h>
40053a471f94SBarry Smith #undef __FUNCT__
40066c699258SBarry Smith #define __FUNCT__ "TSSetDM"
40076c699258SBarry Smith /*@
40086c699258SBarry Smith    TSSetDM - Sets the DM that may be used by some preconditioners
40096c699258SBarry Smith 
40103f9fe445SBarry Smith    Logically Collective on TS and DM
40116c699258SBarry Smith 
40126c699258SBarry Smith    Input Parameters:
40136c699258SBarry Smith +  ts - the preconditioner context
40146c699258SBarry Smith -  dm - the dm
40156c699258SBarry Smith 
40166c699258SBarry Smith    Level: intermediate
40176c699258SBarry Smith 
40186c699258SBarry Smith 
40196c699258SBarry Smith .seealso: TSGetDM(), SNESSetDM(), SNESGetDM()
40206c699258SBarry Smith @*/
40217087cfbeSBarry Smith PetscErrorCode  TSSetDM(TS ts,DM dm)
40226c699258SBarry Smith {
40236c699258SBarry Smith   PetscErrorCode ierr;
4024089b2837SJed Brown   SNES           snes;
4025942e3340SBarry Smith   DMTS           tsdm;
40266c699258SBarry Smith 
40276c699258SBarry Smith   PetscFunctionBegin;
40280700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
402970663e4aSLisandro Dalcin   ierr = PetscObjectReference((PetscObject)dm);CHKERRQ(ierr);
4030942e3340SBarry Smith   if (ts->dm) {               /* Move the DMTS context over to the new DM unless the new DM already has one */
40312a34c10cSBarry Smith     if (ts->dm->dmts && !dm->dmts) {
4032942e3340SBarry Smith       ierr = DMCopyDMTS(ts->dm,dm);CHKERRQ(ierr);
4033942e3340SBarry Smith       ierr = DMGetDMTS(ts->dm,&tsdm);CHKERRQ(ierr);
403424989b8cSPeter Brune       if (tsdm->originaldm == ts->dm) { /* Grant write privileges to the replacement DM */
403524989b8cSPeter Brune         tsdm->originaldm = dm;
403624989b8cSPeter Brune       }
403724989b8cSPeter Brune     }
40386bf464f9SBarry Smith     ierr = DMDestroy(&ts->dm);CHKERRQ(ierr);
403924989b8cSPeter Brune   }
40406c699258SBarry Smith   ts->dm = dm;
4041bbd56ea5SKarl Rupp 
4042089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
4043089b2837SJed Brown   ierr = SNESSetDM(snes,dm);CHKERRQ(ierr);
40446c699258SBarry Smith   PetscFunctionReturn(0);
40456c699258SBarry Smith }
40466c699258SBarry Smith 
40476c699258SBarry Smith #undef __FUNCT__
40486c699258SBarry Smith #define __FUNCT__ "TSGetDM"
40496c699258SBarry Smith /*@
40506c699258SBarry Smith    TSGetDM - Gets the DM that may be used by some preconditioners
40516c699258SBarry Smith 
40523f9fe445SBarry Smith    Not Collective
40536c699258SBarry Smith 
40546c699258SBarry Smith    Input Parameter:
40556c699258SBarry Smith . ts - the preconditioner context
40566c699258SBarry Smith 
40576c699258SBarry Smith    Output Parameter:
40586c699258SBarry Smith .  dm - the dm
40596c699258SBarry Smith 
40606c699258SBarry Smith    Level: intermediate
40616c699258SBarry Smith 
40626c699258SBarry Smith 
40636c699258SBarry Smith .seealso: TSSetDM(), SNESSetDM(), SNESGetDM()
40646c699258SBarry Smith @*/
40657087cfbeSBarry Smith PetscErrorCode  TSGetDM(TS ts,DM *dm)
40666c699258SBarry Smith {
4067496e6a7aSJed Brown   PetscErrorCode ierr;
4068496e6a7aSJed Brown 
40696c699258SBarry Smith   PetscFunctionBegin;
40700700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4071496e6a7aSJed Brown   if (!ts->dm) {
4072ce94432eSBarry Smith     ierr = DMShellCreate(PetscObjectComm((PetscObject)ts),&ts->dm);CHKERRQ(ierr);
4073496e6a7aSJed Brown     if (ts->snes) {ierr = SNESSetDM(ts->snes,ts->dm);CHKERRQ(ierr);}
4074496e6a7aSJed Brown   }
40756c699258SBarry Smith   *dm = ts->dm;
40766c699258SBarry Smith   PetscFunctionReturn(0);
40776c699258SBarry Smith }
40781713a123SBarry Smith 
40790f5c6efeSJed Brown #undef __FUNCT__
40800f5c6efeSJed Brown #define __FUNCT__ "SNESTSFormFunction"
40810f5c6efeSJed Brown /*@
40820f5c6efeSJed Brown    SNESTSFormFunction - Function to evaluate nonlinear residual
40830f5c6efeSJed Brown 
40843f9fe445SBarry Smith    Logically Collective on SNES
40850f5c6efeSJed Brown 
40860f5c6efeSJed Brown    Input Parameter:
4087d42a1c89SJed Brown + snes - nonlinear solver
40880910c330SBarry Smith . U - the current state at which to evaluate the residual
4089d42a1c89SJed Brown - ctx - user context, must be a TS
40900f5c6efeSJed Brown 
40910f5c6efeSJed Brown    Output Parameter:
40920f5c6efeSJed Brown . F - the nonlinear residual
40930f5c6efeSJed Brown 
40940f5c6efeSJed Brown    Notes:
40950f5c6efeSJed Brown    This function is not normally called by users and is automatically registered with the SNES used by TS.
40960f5c6efeSJed Brown    It is most frequently passed to MatFDColoringSetFunction().
40970f5c6efeSJed Brown 
40980f5c6efeSJed Brown    Level: advanced
40990f5c6efeSJed Brown 
41000f5c6efeSJed Brown .seealso: SNESSetFunction(), MatFDColoringSetFunction()
41010f5c6efeSJed Brown @*/
41020910c330SBarry Smith PetscErrorCode  SNESTSFormFunction(SNES snes,Vec U,Vec F,void *ctx)
41030f5c6efeSJed Brown {
41040f5c6efeSJed Brown   TS             ts = (TS)ctx;
41050f5c6efeSJed Brown   PetscErrorCode ierr;
41060f5c6efeSJed Brown 
41070f5c6efeSJed Brown   PetscFunctionBegin;
41080f5c6efeSJed Brown   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
41090910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,2);
41100f5c6efeSJed Brown   PetscValidHeaderSpecific(F,VEC_CLASSID,3);
41110f5c6efeSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,4);
41120910c330SBarry Smith   ierr = (ts->ops->snesfunction)(snes,U,F,ts);CHKERRQ(ierr);
41130f5c6efeSJed Brown   PetscFunctionReturn(0);
41140f5c6efeSJed Brown }
41150f5c6efeSJed Brown 
41160f5c6efeSJed Brown #undef __FUNCT__
41170f5c6efeSJed Brown #define __FUNCT__ "SNESTSFormJacobian"
41180f5c6efeSJed Brown /*@
41190f5c6efeSJed Brown    SNESTSFormJacobian - Function to evaluate the Jacobian
41200f5c6efeSJed Brown 
41210f5c6efeSJed Brown    Collective on SNES
41220f5c6efeSJed Brown 
41230f5c6efeSJed Brown    Input Parameter:
41240f5c6efeSJed Brown + snes - nonlinear solver
41250910c330SBarry Smith . U - the current state at which to evaluate the residual
41260f5c6efeSJed Brown - ctx - user context, must be a TS
41270f5c6efeSJed Brown 
41280f5c6efeSJed Brown    Output Parameter:
41290f5c6efeSJed Brown + A - the Jacobian
41300f5c6efeSJed Brown . B - the preconditioning matrix (may be the same as A)
41310f5c6efeSJed Brown - flag - indicates any structure change in the matrix
41320f5c6efeSJed Brown 
41330f5c6efeSJed Brown    Notes:
41340f5c6efeSJed Brown    This function is not normally called by users and is automatically registered with the SNES used by TS.
41350f5c6efeSJed Brown 
41360f5c6efeSJed Brown    Level: developer
41370f5c6efeSJed Brown 
41380f5c6efeSJed Brown .seealso: SNESSetJacobian()
41390f5c6efeSJed Brown @*/
4140d1e9a80fSBarry Smith PetscErrorCode  SNESTSFormJacobian(SNES snes,Vec U,Mat A,Mat B,void *ctx)
41410f5c6efeSJed Brown {
41420f5c6efeSJed Brown   TS             ts = (TS)ctx;
41430f5c6efeSJed Brown   PetscErrorCode ierr;
41440f5c6efeSJed Brown 
41450f5c6efeSJed Brown   PetscFunctionBegin;
41460f5c6efeSJed Brown   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
41470910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,2);
41480f5c6efeSJed Brown   PetscValidPointer(A,3);
414994ab13aaSBarry Smith   PetscValidHeaderSpecific(A,MAT_CLASSID,3);
41500f5c6efeSJed Brown   PetscValidPointer(B,4);
415194ab13aaSBarry Smith   PetscValidHeaderSpecific(B,MAT_CLASSID,4);
41520f5c6efeSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,6);
4153d1e9a80fSBarry Smith   ierr = (ts->ops->snesjacobian)(snes,U,A,B,ts);CHKERRQ(ierr);
41540f5c6efeSJed Brown   PetscFunctionReturn(0);
41550f5c6efeSJed Brown }
4156325fc9f4SBarry Smith 
41570e4ef248SJed Brown #undef __FUNCT__
41580e4ef248SJed Brown #define __FUNCT__ "TSComputeRHSFunctionLinear"
41590e4ef248SJed Brown /*@C
41600e4ef248SJed Brown    TSComputeRHSFunctionLinear - Evaluate the right hand side via the user-provided Jacobian, for linear problems only
41610e4ef248SJed Brown 
41620e4ef248SJed Brown    Collective on TS
41630e4ef248SJed Brown 
41640e4ef248SJed Brown    Input Arguments:
41650e4ef248SJed Brown +  ts - time stepping context
41660e4ef248SJed Brown .  t - time at which to evaluate
41670910c330SBarry Smith .  U - state at which to evaluate
41680e4ef248SJed Brown -  ctx - context
41690e4ef248SJed Brown 
41700e4ef248SJed Brown    Output Arguments:
41710e4ef248SJed Brown .  F - right hand side
41720e4ef248SJed Brown 
41730e4ef248SJed Brown    Level: intermediate
41740e4ef248SJed Brown 
41750e4ef248SJed Brown    Notes:
41760e4ef248SJed Brown    This function is intended to be passed to TSSetRHSFunction() to evaluate the right hand side for linear problems.
41770e4ef248SJed Brown    The matrix (and optionally the evaluation context) should be passed to TSSetRHSJacobian().
41780e4ef248SJed Brown 
41790e4ef248SJed Brown .seealso: TSSetRHSFunction(), TSSetRHSJacobian(), TSComputeRHSJacobianConstant()
41800e4ef248SJed Brown @*/
41810910c330SBarry Smith PetscErrorCode TSComputeRHSFunctionLinear(TS ts,PetscReal t,Vec U,Vec F,void *ctx)
41820e4ef248SJed Brown {
41830e4ef248SJed Brown   PetscErrorCode ierr;
41840e4ef248SJed Brown   Mat            Arhs,Brhs;
41850e4ef248SJed Brown 
41860e4ef248SJed Brown   PetscFunctionBegin;
41870e4ef248SJed Brown   ierr = TSGetRHSMats_Private(ts,&Arhs,&Brhs);CHKERRQ(ierr);
4188d1e9a80fSBarry Smith   ierr = TSComputeRHSJacobian(ts,t,U,Arhs,Brhs);CHKERRQ(ierr);
41890910c330SBarry Smith   ierr = MatMult(Arhs,U,F);CHKERRQ(ierr);
41900e4ef248SJed Brown   PetscFunctionReturn(0);
41910e4ef248SJed Brown }
41920e4ef248SJed Brown 
41930e4ef248SJed Brown #undef __FUNCT__
41940e4ef248SJed Brown #define __FUNCT__ "TSComputeRHSJacobianConstant"
41950e4ef248SJed Brown /*@C
41960e4ef248SJed Brown    TSComputeRHSJacobianConstant - Reuses a Jacobian that is time-independent.
41970e4ef248SJed Brown 
41980e4ef248SJed Brown    Collective on TS
41990e4ef248SJed Brown 
42000e4ef248SJed Brown    Input Arguments:
42010e4ef248SJed Brown +  ts - time stepping context
42020e4ef248SJed Brown .  t - time at which to evaluate
42030910c330SBarry Smith .  U - state at which to evaluate
42040e4ef248SJed Brown -  ctx - context
42050e4ef248SJed Brown 
42060e4ef248SJed Brown    Output Arguments:
42070e4ef248SJed Brown +  A - pointer to operator
42080e4ef248SJed Brown .  B - pointer to preconditioning matrix
42090e4ef248SJed Brown -  flg - matrix structure flag
42100e4ef248SJed Brown 
42110e4ef248SJed Brown    Level: intermediate
42120e4ef248SJed Brown 
42130e4ef248SJed Brown    Notes:
42140e4ef248SJed Brown    This function is intended to be passed to TSSetRHSJacobian() to evaluate the Jacobian for linear time-independent problems.
42150e4ef248SJed Brown 
42160e4ef248SJed Brown .seealso: TSSetRHSFunction(), TSSetRHSJacobian(), TSComputeRHSFunctionLinear()
42170e4ef248SJed Brown @*/
4218d1e9a80fSBarry Smith PetscErrorCode TSComputeRHSJacobianConstant(TS ts,PetscReal t,Vec U,Mat A,Mat B,void *ctx)
42190e4ef248SJed Brown {
42200e4ef248SJed Brown   PetscFunctionBegin;
42210e4ef248SJed Brown   PetscFunctionReturn(0);
42220e4ef248SJed Brown }
42230e4ef248SJed Brown 
42240026cea9SSean Farley #undef __FUNCT__
42250026cea9SSean Farley #define __FUNCT__ "TSComputeIFunctionLinear"
42260026cea9SSean Farley /*@C
42270026cea9SSean Farley    TSComputeIFunctionLinear - Evaluate the left hand side via the user-provided Jacobian, for linear problems only
42280026cea9SSean Farley 
42290026cea9SSean Farley    Collective on TS
42300026cea9SSean Farley 
42310026cea9SSean Farley    Input Arguments:
42320026cea9SSean Farley +  ts - time stepping context
42330026cea9SSean Farley .  t - time at which to evaluate
42340910c330SBarry Smith .  U - state at which to evaluate
42350910c330SBarry Smith .  Udot - time derivative of state vector
42360026cea9SSean Farley -  ctx - context
42370026cea9SSean Farley 
42380026cea9SSean Farley    Output Arguments:
42390026cea9SSean Farley .  F - left hand side
42400026cea9SSean Farley 
42410026cea9SSean Farley    Level: intermediate
42420026cea9SSean Farley 
42430026cea9SSean Farley    Notes:
42440910c330SBarry Smith    The assumption here is that the left hand side is of the form A*Udot (and not A*Udot + B*U). For other cases, the
42450026cea9SSean Farley    user is required to write their own TSComputeIFunction.
42460026cea9SSean Farley    This function is intended to be passed to TSSetIFunction() to evaluate the left hand side for linear problems.
42470026cea9SSean Farley    The matrix (and optionally the evaluation context) should be passed to TSSetIJacobian().
42480026cea9SSean Farley 
42490026cea9SSean Farley .seealso: TSSetIFunction(), TSSetIJacobian(), TSComputeIJacobianConstant()
42500026cea9SSean Farley @*/
42510910c330SBarry Smith PetscErrorCode TSComputeIFunctionLinear(TS ts,PetscReal t,Vec U,Vec Udot,Vec F,void *ctx)
42520026cea9SSean Farley {
42530026cea9SSean Farley   PetscErrorCode ierr;
42540026cea9SSean Farley   Mat            A,B;
42550026cea9SSean Farley 
42560026cea9SSean Farley   PetscFunctionBegin;
42570298fd71SBarry Smith   ierr = TSGetIJacobian(ts,&A,&B,NULL,NULL);CHKERRQ(ierr);
4258d1e9a80fSBarry Smith   ierr = TSComputeIJacobian(ts,t,U,Udot,1.0,A,B,PETSC_TRUE);CHKERRQ(ierr);
42590910c330SBarry Smith   ierr = MatMult(A,Udot,F);CHKERRQ(ierr);
42600026cea9SSean Farley   PetscFunctionReturn(0);
42610026cea9SSean Farley }
42620026cea9SSean Farley 
42630026cea9SSean Farley #undef __FUNCT__
42640026cea9SSean Farley #define __FUNCT__ "TSComputeIJacobianConstant"
42650026cea9SSean Farley /*@C
4266b41af12eSJed Brown    TSComputeIJacobianConstant - Reuses a time-independent for a semi-implicit DAE or ODE
42670026cea9SSean Farley 
42680026cea9SSean Farley    Collective on TS
42690026cea9SSean Farley 
42700026cea9SSean Farley    Input Arguments:
42710026cea9SSean Farley +  ts - time stepping context
42720026cea9SSean Farley .  t - time at which to evaluate
42730910c330SBarry Smith .  U - state at which to evaluate
42740910c330SBarry Smith .  Udot - time derivative of state vector
42750026cea9SSean Farley .  shift - shift to apply
42760026cea9SSean Farley -  ctx - context
42770026cea9SSean Farley 
42780026cea9SSean Farley    Output Arguments:
42790026cea9SSean Farley +  A - pointer to operator
42800026cea9SSean Farley .  B - pointer to preconditioning matrix
42810026cea9SSean Farley -  flg - matrix structure flag
42820026cea9SSean Farley 
4283b41af12eSJed Brown    Level: advanced
42840026cea9SSean Farley 
42850026cea9SSean Farley    Notes:
42860026cea9SSean Farley    This function is intended to be passed to TSSetIJacobian() to evaluate the Jacobian for linear time-independent problems.
42870026cea9SSean Farley 
4288b41af12eSJed Brown    It is only appropriate for problems of the form
4289b41af12eSJed Brown 
4290b41af12eSJed Brown $     M Udot = F(U,t)
4291b41af12eSJed Brown 
4292b41af12eSJed Brown   where M is constant and F is non-stiff.  The user must pass M to TSSetIJacobian().  The current implementation only
4293b41af12eSJed Brown   works with IMEX time integration methods such as TSROSW and TSARKIMEX, since there is no support for de-constructing
4294b41af12eSJed Brown   an implicit operator of the form
4295b41af12eSJed Brown 
4296b41af12eSJed Brown $    shift*M + J
4297b41af12eSJed Brown 
4298b41af12eSJed Brown   where J is the Jacobian of -F(U).  Support may be added in a future version of PETSc, but for now, the user must store
4299b41af12eSJed Brown   a copy of M or reassemble it when requested.
4300b41af12eSJed Brown 
43010026cea9SSean Farley .seealso: TSSetIFunction(), TSSetIJacobian(), TSComputeIFunctionLinear()
43020026cea9SSean Farley @*/
4303d1e9a80fSBarry Smith PetscErrorCode TSComputeIJacobianConstant(TS ts,PetscReal t,Vec U,Vec Udot,PetscReal shift,Mat A,Mat B,void *ctx)
43040026cea9SSean Farley {
4305b41af12eSJed Brown   PetscErrorCode ierr;
4306b41af12eSJed Brown 
43070026cea9SSean Farley   PetscFunctionBegin;
430894ab13aaSBarry Smith   ierr = MatScale(A, shift / ts->ijacobian.shift);CHKERRQ(ierr);
4309b41af12eSJed Brown   ts->ijacobian.shift = shift;
43100026cea9SSean Farley   PetscFunctionReturn(0);
43110026cea9SSean Farley }
4312b41af12eSJed Brown 
4313e817cc15SEmil Constantinescu #undef __FUNCT__
4314e817cc15SEmil Constantinescu #define __FUNCT__ "TSGetEquationType"
4315e817cc15SEmil Constantinescu /*@
4316e817cc15SEmil Constantinescu    TSGetEquationType - Gets the type of the equation that TS is solving.
4317e817cc15SEmil Constantinescu 
4318e817cc15SEmil Constantinescu    Not Collective
4319e817cc15SEmil Constantinescu 
4320e817cc15SEmil Constantinescu    Input Parameter:
4321e817cc15SEmil Constantinescu .  ts - the TS context
4322e817cc15SEmil Constantinescu 
4323e817cc15SEmil Constantinescu    Output Parameter:
43244e6b9ce4SEmil Constantinescu .  equation_type - see TSEquationType
4325e817cc15SEmil Constantinescu 
4326e817cc15SEmil Constantinescu    Level: beginner
4327e817cc15SEmil Constantinescu 
4328e817cc15SEmil Constantinescu .keywords: TS, equation type
4329e817cc15SEmil Constantinescu 
4330e817cc15SEmil Constantinescu .seealso: TSSetEquationType(), TSEquationType
4331e817cc15SEmil Constantinescu @*/
4332e817cc15SEmil Constantinescu PetscErrorCode  TSGetEquationType(TS ts,TSEquationType *equation_type)
4333e817cc15SEmil Constantinescu {
4334e817cc15SEmil Constantinescu   PetscFunctionBegin;
4335e817cc15SEmil Constantinescu   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4336e817cc15SEmil Constantinescu   PetscValidPointer(equation_type,2);
4337e817cc15SEmil Constantinescu   *equation_type = ts->equation_type;
4338e817cc15SEmil Constantinescu   PetscFunctionReturn(0);
4339e817cc15SEmil Constantinescu }
4340e817cc15SEmil Constantinescu 
4341e817cc15SEmil Constantinescu #undef __FUNCT__
4342e817cc15SEmil Constantinescu #define __FUNCT__ "TSSetEquationType"
4343e817cc15SEmil Constantinescu /*@
4344e817cc15SEmil Constantinescu    TSSetEquationType - Sets the type of the equation that TS is solving.
4345e817cc15SEmil Constantinescu 
4346e817cc15SEmil Constantinescu    Not Collective
4347e817cc15SEmil Constantinescu 
4348e817cc15SEmil Constantinescu    Input Parameter:
4349e817cc15SEmil Constantinescu +  ts - the TS context
43504e6b9ce4SEmil Constantinescu .  equation_type - see TSEquationType
4351e817cc15SEmil Constantinescu 
4352e817cc15SEmil Constantinescu    Level: advanced
4353e817cc15SEmil Constantinescu 
4354e817cc15SEmil Constantinescu .keywords: TS, equation type
4355e817cc15SEmil Constantinescu 
4356e817cc15SEmil Constantinescu .seealso: TSGetEquationType(), TSEquationType
4357e817cc15SEmil Constantinescu @*/
4358e817cc15SEmil Constantinescu PetscErrorCode  TSSetEquationType(TS ts,TSEquationType equation_type)
4359e817cc15SEmil Constantinescu {
4360e817cc15SEmil Constantinescu   PetscFunctionBegin;
4361e817cc15SEmil Constantinescu   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4362e817cc15SEmil Constantinescu   ts->equation_type = equation_type;
4363e817cc15SEmil Constantinescu   PetscFunctionReturn(0);
4364e817cc15SEmil Constantinescu }
43650026cea9SSean Farley 
43664af1b03aSJed Brown #undef __FUNCT__
43674af1b03aSJed Brown #define __FUNCT__ "TSGetConvergedReason"
43684af1b03aSJed Brown /*@
43694af1b03aSJed Brown    TSGetConvergedReason - Gets the reason the TS iteration was stopped.
43704af1b03aSJed Brown 
43714af1b03aSJed Brown    Not Collective
43724af1b03aSJed Brown 
43734af1b03aSJed Brown    Input Parameter:
43744af1b03aSJed Brown .  ts - the TS context
43754af1b03aSJed Brown 
43764af1b03aSJed Brown    Output Parameter:
43774af1b03aSJed Brown .  reason - negative value indicates diverged, positive value converged, see TSConvergedReason or the
43784af1b03aSJed Brown             manual pages for the individual convergence tests for complete lists
43794af1b03aSJed Brown 
4380487e0bb9SJed Brown    Level: beginner
43814af1b03aSJed Brown 
4382cd652676SJed Brown    Notes:
4383cd652676SJed Brown    Can only be called after the call to TSSolve() is complete.
43844af1b03aSJed Brown 
43854af1b03aSJed Brown .keywords: TS, nonlinear, set, convergence, test
43864af1b03aSJed Brown 
43874af1b03aSJed Brown .seealso: TSSetConvergenceTest(), TSConvergedReason
43884af1b03aSJed Brown @*/
43894af1b03aSJed Brown PetscErrorCode  TSGetConvergedReason(TS ts,TSConvergedReason *reason)
43904af1b03aSJed Brown {
43914af1b03aSJed Brown   PetscFunctionBegin;
43924af1b03aSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
43934af1b03aSJed Brown   PetscValidPointer(reason,2);
43944af1b03aSJed Brown   *reason = ts->reason;
43954af1b03aSJed Brown   PetscFunctionReturn(0);
43964af1b03aSJed Brown }
43974af1b03aSJed Brown 
4398fb1732b5SBarry Smith #undef __FUNCT__
4399d6ad946cSShri Abhyankar #define __FUNCT__ "TSSetConvergedReason"
4400d6ad946cSShri Abhyankar /*@
4401d6ad946cSShri Abhyankar    TSSetConvergedReason - Sets the reason for handling the convergence of TSSolve.
4402d6ad946cSShri Abhyankar 
4403d6ad946cSShri Abhyankar    Not Collective
4404d6ad946cSShri Abhyankar 
4405d6ad946cSShri Abhyankar    Input Parameter:
4406d6ad946cSShri Abhyankar +  ts - the TS context
4407d6ad946cSShri Abhyankar .  reason - negative value indicates diverged, positive value converged, see TSConvergedReason or the
4408d6ad946cSShri Abhyankar             manual pages for the individual convergence tests for complete lists
4409d6ad946cSShri Abhyankar 
4410f5abba47SShri Abhyankar    Level: advanced
4411d6ad946cSShri Abhyankar 
4412d6ad946cSShri Abhyankar    Notes:
4413d6ad946cSShri Abhyankar    Can only be called during TSSolve() is active.
4414d6ad946cSShri Abhyankar 
4415d6ad946cSShri Abhyankar .keywords: TS, nonlinear, set, convergence, test
4416d6ad946cSShri Abhyankar 
4417d6ad946cSShri Abhyankar .seealso: TSConvergedReason
4418d6ad946cSShri Abhyankar @*/
4419d6ad946cSShri Abhyankar PetscErrorCode  TSSetConvergedReason(TS ts,TSConvergedReason reason)
4420d6ad946cSShri Abhyankar {
4421d6ad946cSShri Abhyankar   PetscFunctionBegin;
4422d6ad946cSShri Abhyankar   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4423d6ad946cSShri Abhyankar   ts->reason = reason;
4424d6ad946cSShri Abhyankar   PetscFunctionReturn(0);
4425d6ad946cSShri Abhyankar }
4426d6ad946cSShri Abhyankar 
4427d6ad946cSShri Abhyankar #undef __FUNCT__
4428cc708dedSBarry Smith #define __FUNCT__ "TSGetSolveTime"
4429cc708dedSBarry Smith /*@
4430cc708dedSBarry Smith    TSGetSolveTime - Gets the time after a call to TSSolve()
4431cc708dedSBarry Smith 
4432cc708dedSBarry Smith    Not Collective
4433cc708dedSBarry Smith 
4434cc708dedSBarry Smith    Input Parameter:
4435cc708dedSBarry Smith .  ts - the TS context
4436cc708dedSBarry Smith 
4437cc708dedSBarry Smith    Output Parameter:
4438cc708dedSBarry Smith .  ftime - the final time. This time should correspond to the final time set with TSSetDuration()
4439cc708dedSBarry Smith 
4440487e0bb9SJed Brown    Level: beginner
4441cc708dedSBarry Smith 
4442cc708dedSBarry Smith    Notes:
4443cc708dedSBarry Smith    Can only be called after the call to TSSolve() is complete.
4444cc708dedSBarry Smith 
4445cc708dedSBarry Smith .keywords: TS, nonlinear, set, convergence, test
4446cc708dedSBarry Smith 
4447cc708dedSBarry Smith .seealso: TSSetConvergenceTest(), TSConvergedReason
4448cc708dedSBarry Smith @*/
4449cc708dedSBarry Smith PetscErrorCode  TSGetSolveTime(TS ts,PetscReal *ftime)
4450cc708dedSBarry Smith {
4451cc708dedSBarry Smith   PetscFunctionBegin;
4452cc708dedSBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4453cc708dedSBarry Smith   PetscValidPointer(ftime,2);
4454cc708dedSBarry Smith   *ftime = ts->solvetime;
4455cc708dedSBarry Smith   PetscFunctionReturn(0);
4456cc708dedSBarry Smith }
4457cc708dedSBarry Smith 
4458cc708dedSBarry Smith #undef __FUNCT__
44592c18e0fdSBarry Smith #define __FUNCT__ "TSGetTotalSteps"
44602c18e0fdSBarry Smith /*@
44612c18e0fdSBarry Smith    TSGetTotalSteps - Gets the total number of steps done since the last call to TSSetUp() or TSCreate()
44622c18e0fdSBarry Smith 
44632c18e0fdSBarry Smith    Not Collective
44642c18e0fdSBarry Smith 
44652c18e0fdSBarry Smith    Input Parameter:
44662c18e0fdSBarry Smith .  ts - the TS context
44672c18e0fdSBarry Smith 
44682c18e0fdSBarry Smith    Output Parameter:
44692c18e0fdSBarry Smith .  steps - the number of steps
44702c18e0fdSBarry Smith 
44712c18e0fdSBarry Smith    Level: beginner
44722c18e0fdSBarry Smith 
44732c18e0fdSBarry Smith    Notes:
44742c18e0fdSBarry Smith    Includes the number of steps for all calls to TSSolve() since TSSetUp() was called
44752c18e0fdSBarry Smith 
44762c18e0fdSBarry Smith .keywords: TS, nonlinear, set, convergence, test
44772c18e0fdSBarry Smith 
44782c18e0fdSBarry Smith .seealso: TSSetConvergenceTest(), TSConvergedReason
44792c18e0fdSBarry Smith @*/
44802c18e0fdSBarry Smith PetscErrorCode  TSGetTotalSteps(TS ts,PetscInt *steps)
44812c18e0fdSBarry Smith {
44822c18e0fdSBarry Smith   PetscFunctionBegin;
44832c18e0fdSBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
44842c18e0fdSBarry Smith   PetscValidPointer(steps,2);
44852c18e0fdSBarry Smith   *steps = ts->total_steps;
44862c18e0fdSBarry Smith   PetscFunctionReturn(0);
44872c18e0fdSBarry Smith }
44882c18e0fdSBarry Smith 
44892c18e0fdSBarry Smith #undef __FUNCT__
44905ef26d82SJed Brown #define __FUNCT__ "TSGetSNESIterations"
44919f67acb7SJed Brown /*@
44925ef26d82SJed Brown    TSGetSNESIterations - Gets the total number of nonlinear iterations
44939f67acb7SJed Brown    used by the time integrator.
44949f67acb7SJed Brown 
44959f67acb7SJed Brown    Not Collective
44969f67acb7SJed Brown 
44979f67acb7SJed Brown    Input Parameter:
44989f67acb7SJed Brown .  ts - TS context
44999f67acb7SJed Brown 
45009f67acb7SJed Brown    Output Parameter:
45019f67acb7SJed Brown .  nits - number of nonlinear iterations
45029f67acb7SJed Brown 
45039f67acb7SJed Brown    Notes:
45049f67acb7SJed Brown    This counter is reset to zero for each successive call to TSSolve().
45059f67acb7SJed Brown 
45069f67acb7SJed Brown    Level: intermediate
45079f67acb7SJed Brown 
45089f67acb7SJed Brown .keywords: TS, get, number, nonlinear, iterations
45099f67acb7SJed Brown 
45105ef26d82SJed Brown .seealso:  TSGetKSPIterations()
45119f67acb7SJed Brown @*/
45125ef26d82SJed Brown PetscErrorCode TSGetSNESIterations(TS ts,PetscInt *nits)
45139f67acb7SJed Brown {
45149f67acb7SJed Brown   PetscFunctionBegin;
45159f67acb7SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
45169f67acb7SJed Brown   PetscValidIntPointer(nits,2);
45175ef26d82SJed Brown   *nits = ts->snes_its;
45189f67acb7SJed Brown   PetscFunctionReturn(0);
45199f67acb7SJed Brown }
45209f67acb7SJed Brown 
45219f67acb7SJed Brown #undef __FUNCT__
45225ef26d82SJed Brown #define __FUNCT__ "TSGetKSPIterations"
45239f67acb7SJed Brown /*@
45245ef26d82SJed Brown    TSGetKSPIterations - Gets the total number of linear iterations
45259f67acb7SJed Brown    used by the time integrator.
45269f67acb7SJed Brown 
45279f67acb7SJed Brown    Not Collective
45289f67acb7SJed Brown 
45299f67acb7SJed Brown    Input Parameter:
45309f67acb7SJed Brown .  ts - TS context
45319f67acb7SJed Brown 
45329f67acb7SJed Brown    Output Parameter:
45339f67acb7SJed Brown .  lits - number of linear iterations
45349f67acb7SJed Brown 
45359f67acb7SJed Brown    Notes:
45369f67acb7SJed Brown    This counter is reset to zero for each successive call to TSSolve().
45379f67acb7SJed Brown 
45389f67acb7SJed Brown    Level: intermediate
45399f67acb7SJed Brown 
45409f67acb7SJed Brown .keywords: TS, get, number, linear, iterations
45419f67acb7SJed Brown 
45425ef26d82SJed Brown .seealso:  TSGetSNESIterations(), SNESGetKSPIterations()
45439f67acb7SJed Brown @*/
45445ef26d82SJed Brown PetscErrorCode TSGetKSPIterations(TS ts,PetscInt *lits)
45459f67acb7SJed Brown {
45469f67acb7SJed Brown   PetscFunctionBegin;
45479f67acb7SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
45489f67acb7SJed Brown   PetscValidIntPointer(lits,2);
45495ef26d82SJed Brown   *lits = ts->ksp_its;
45509f67acb7SJed Brown   PetscFunctionReturn(0);
45519f67acb7SJed Brown }
45529f67acb7SJed Brown 
45539f67acb7SJed Brown #undef __FUNCT__
4554cef5090cSJed Brown #define __FUNCT__ "TSGetStepRejections"
4555cef5090cSJed Brown /*@
4556cef5090cSJed Brown    TSGetStepRejections - Gets the total number of rejected steps.
4557cef5090cSJed Brown 
4558cef5090cSJed Brown    Not Collective
4559cef5090cSJed Brown 
4560cef5090cSJed Brown    Input Parameter:
4561cef5090cSJed Brown .  ts - TS context
4562cef5090cSJed Brown 
4563cef5090cSJed Brown    Output Parameter:
4564cef5090cSJed Brown .  rejects - number of steps rejected
4565cef5090cSJed Brown 
4566cef5090cSJed Brown    Notes:
4567cef5090cSJed Brown    This counter is reset to zero for each successive call to TSSolve().
4568cef5090cSJed Brown 
4569cef5090cSJed Brown    Level: intermediate
4570cef5090cSJed Brown 
4571cef5090cSJed Brown .keywords: TS, get, number
4572cef5090cSJed Brown 
45735ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetSNESFailures(), TSSetMaxSNESFailures(), TSSetErrorIfStepFails()
4574cef5090cSJed Brown @*/
4575cef5090cSJed Brown PetscErrorCode TSGetStepRejections(TS ts,PetscInt *rejects)
4576cef5090cSJed Brown {
4577cef5090cSJed Brown   PetscFunctionBegin;
4578cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4579cef5090cSJed Brown   PetscValidIntPointer(rejects,2);
4580cef5090cSJed Brown   *rejects = ts->reject;
4581cef5090cSJed Brown   PetscFunctionReturn(0);
4582cef5090cSJed Brown }
4583cef5090cSJed Brown 
4584cef5090cSJed Brown #undef __FUNCT__
4585cef5090cSJed Brown #define __FUNCT__ "TSGetSNESFailures"
4586cef5090cSJed Brown /*@
4587cef5090cSJed Brown    TSGetSNESFailures - Gets the total number of failed SNES solves
4588cef5090cSJed Brown 
4589cef5090cSJed Brown    Not Collective
4590cef5090cSJed Brown 
4591cef5090cSJed Brown    Input Parameter:
4592cef5090cSJed Brown .  ts - TS context
4593cef5090cSJed Brown 
4594cef5090cSJed Brown    Output Parameter:
4595cef5090cSJed Brown .  fails - number of failed nonlinear solves
4596cef5090cSJed Brown 
4597cef5090cSJed Brown    Notes:
4598cef5090cSJed Brown    This counter is reset to zero for each successive call to TSSolve().
4599cef5090cSJed Brown 
4600cef5090cSJed Brown    Level: intermediate
4601cef5090cSJed Brown 
4602cef5090cSJed Brown .keywords: TS, get, number
4603cef5090cSJed Brown 
46045ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetStepRejections(), TSSetMaxSNESFailures()
4605cef5090cSJed Brown @*/
4606cef5090cSJed Brown PetscErrorCode TSGetSNESFailures(TS ts,PetscInt *fails)
4607cef5090cSJed Brown {
4608cef5090cSJed Brown   PetscFunctionBegin;
4609cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4610cef5090cSJed Brown   PetscValidIntPointer(fails,2);
4611cef5090cSJed Brown   *fails = ts->num_snes_failures;
4612cef5090cSJed Brown   PetscFunctionReturn(0);
4613cef5090cSJed Brown }
4614cef5090cSJed Brown 
4615cef5090cSJed Brown #undef __FUNCT__
4616cef5090cSJed Brown #define __FUNCT__ "TSSetMaxStepRejections"
4617cef5090cSJed Brown /*@
4618cef5090cSJed Brown    TSSetMaxStepRejections - Sets the maximum number of step rejections before a step fails
4619cef5090cSJed Brown 
4620cef5090cSJed Brown    Not Collective
4621cef5090cSJed Brown 
4622cef5090cSJed Brown    Input Parameter:
4623cef5090cSJed Brown +  ts - TS context
4624cef5090cSJed Brown -  rejects - maximum number of rejected steps, pass -1 for unlimited
4625cef5090cSJed Brown 
4626cef5090cSJed Brown    Notes:
4627cef5090cSJed Brown    The counter is reset to zero for each step
4628cef5090cSJed Brown 
4629cef5090cSJed Brown    Options Database Key:
4630cef5090cSJed Brown  .  -ts_max_reject - Maximum number of step rejections before a step fails
4631cef5090cSJed Brown 
4632cef5090cSJed Brown    Level: intermediate
4633cef5090cSJed Brown 
4634cef5090cSJed Brown .keywords: TS, set, maximum, number
4635cef5090cSJed Brown 
46365ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxSNESFailures(), TSGetStepRejections(), TSGetSNESFailures(), TSSetErrorIfStepFails(), TSGetConvergedReason()
4637cef5090cSJed Brown @*/
4638cef5090cSJed Brown PetscErrorCode TSSetMaxStepRejections(TS ts,PetscInt rejects)
4639cef5090cSJed Brown {
4640cef5090cSJed Brown   PetscFunctionBegin;
4641cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4642cef5090cSJed Brown   ts->max_reject = rejects;
4643cef5090cSJed Brown   PetscFunctionReturn(0);
4644cef5090cSJed Brown }
4645cef5090cSJed Brown 
4646cef5090cSJed Brown #undef __FUNCT__
4647cef5090cSJed Brown #define __FUNCT__ "TSSetMaxSNESFailures"
4648cef5090cSJed Brown /*@
4649cef5090cSJed Brown    TSSetMaxSNESFailures - Sets the maximum number of failed SNES solves
4650cef5090cSJed Brown 
4651cef5090cSJed Brown    Not Collective
4652cef5090cSJed Brown 
4653cef5090cSJed Brown    Input Parameter:
4654cef5090cSJed Brown +  ts - TS context
4655cef5090cSJed Brown -  fails - maximum number of failed nonlinear solves, pass -1 for unlimited
4656cef5090cSJed Brown 
4657cef5090cSJed Brown    Notes:
4658cef5090cSJed Brown    The counter is reset to zero for each successive call to TSSolve().
4659cef5090cSJed Brown 
4660cef5090cSJed Brown    Options Database Key:
4661cef5090cSJed Brown  .  -ts_max_snes_failures - Maximum number of nonlinear solve failures
4662cef5090cSJed Brown 
4663cef5090cSJed Brown    Level: intermediate
4664cef5090cSJed Brown 
4665cef5090cSJed Brown .keywords: TS, set, maximum, number
4666cef5090cSJed Brown 
46675ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetStepRejections(), TSGetSNESFailures(), SNESGetConvergedReason(), TSGetConvergedReason()
4668cef5090cSJed Brown @*/
4669cef5090cSJed Brown PetscErrorCode TSSetMaxSNESFailures(TS ts,PetscInt fails)
4670cef5090cSJed Brown {
4671cef5090cSJed Brown   PetscFunctionBegin;
4672cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4673cef5090cSJed Brown   ts->max_snes_failures = fails;
4674cef5090cSJed Brown   PetscFunctionReturn(0);
4675cef5090cSJed Brown }
4676cef5090cSJed Brown 
4677cef5090cSJed Brown #undef __FUNCT__
46784e8de811SJed Brown #define __FUNCT__ "TSSetErrorIfStepFails"
4679cef5090cSJed Brown /*@
4680cef5090cSJed Brown    TSSetErrorIfStepFails - Error if no step succeeds
4681cef5090cSJed Brown 
4682cef5090cSJed Brown    Not Collective
4683cef5090cSJed Brown 
4684cef5090cSJed Brown    Input Parameter:
4685cef5090cSJed Brown +  ts - TS context
4686cef5090cSJed Brown -  err - PETSC_TRUE to error if no step succeeds, PETSC_FALSE to return without failure
4687cef5090cSJed Brown 
4688cef5090cSJed Brown    Options Database Key:
4689cef5090cSJed Brown  .  -ts_error_if_step_fails - Error if no step succeeds
4690cef5090cSJed Brown 
4691cef5090cSJed Brown    Level: intermediate
4692cef5090cSJed Brown 
4693cef5090cSJed Brown .keywords: TS, set, error
4694cef5090cSJed Brown 
46955ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetStepRejections(), TSGetSNESFailures(), TSSetErrorIfStepFails(), TSGetConvergedReason()
4696cef5090cSJed Brown @*/
4697cef5090cSJed Brown PetscErrorCode TSSetErrorIfStepFails(TS ts,PetscBool err)
4698cef5090cSJed Brown {
4699cef5090cSJed Brown   PetscFunctionBegin;
4700cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4701cef5090cSJed Brown   ts->errorifstepfailed = err;
4702cef5090cSJed Brown   PetscFunctionReturn(0);
4703cef5090cSJed Brown }
4704cef5090cSJed Brown 
4705cef5090cSJed Brown #undef __FUNCT__
4706fb1732b5SBarry Smith #define __FUNCT__ "TSMonitorSolutionBinary"
4707fb1732b5SBarry Smith /*@C
4708fb1732b5SBarry Smith    TSMonitorSolutionBinary - Monitors progress of the TS solvers by VecView() for the solution at each timestep. Normally the viewer is a binary file
4709fb1732b5SBarry Smith 
4710fb1732b5SBarry Smith    Collective on TS
4711fb1732b5SBarry Smith 
4712fb1732b5SBarry Smith    Input Parameters:
4713fb1732b5SBarry Smith +  ts - the TS context
4714fb1732b5SBarry Smith .  step - current time-step
4715fb1732b5SBarry Smith .  ptime - current time
47160910c330SBarry Smith .  u - current state
4717fb1732b5SBarry Smith -  viewer - binary viewer
4718fb1732b5SBarry Smith 
4719fb1732b5SBarry Smith    Level: intermediate
4720fb1732b5SBarry Smith 
4721fb1732b5SBarry Smith .keywords: TS,  vector, monitor, view
4722fb1732b5SBarry Smith 
4723fb1732b5SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
4724fb1732b5SBarry Smith @*/
47250910c330SBarry Smith PetscErrorCode  TSMonitorSolutionBinary(TS ts,PetscInt step,PetscReal ptime,Vec u,void *viewer)
4726fb1732b5SBarry Smith {
4727fb1732b5SBarry Smith   PetscErrorCode ierr;
4728ed81e22dSJed Brown   PetscViewer    v = (PetscViewer)viewer;
4729fb1732b5SBarry Smith 
4730fb1732b5SBarry Smith   PetscFunctionBegin;
47310910c330SBarry Smith   ierr = VecView(u,v);CHKERRQ(ierr);
4732ed81e22dSJed Brown   PetscFunctionReturn(0);
4733ed81e22dSJed Brown }
4734ed81e22dSJed Brown 
4735ed81e22dSJed Brown #undef __FUNCT__
4736ed81e22dSJed Brown #define __FUNCT__ "TSMonitorSolutionVTK"
4737ed81e22dSJed Brown /*@C
4738ed81e22dSJed Brown    TSMonitorSolutionVTK - Monitors progress of the TS solvers by VecView() for the solution at each timestep.
4739ed81e22dSJed Brown 
4740ed81e22dSJed Brown    Collective on TS
4741ed81e22dSJed Brown 
4742ed81e22dSJed Brown    Input Parameters:
4743ed81e22dSJed Brown +  ts - the TS context
4744ed81e22dSJed Brown .  step - current time-step
4745ed81e22dSJed Brown .  ptime - current time
47460910c330SBarry Smith .  u - current state
4747ed81e22dSJed Brown -  filenametemplate - string containing a format specifier for the integer time step (e.g. %03D)
4748ed81e22dSJed Brown 
4749ed81e22dSJed Brown    Level: intermediate
4750ed81e22dSJed Brown 
4751ed81e22dSJed Brown    Notes:
4752ed81e22dSJed Brown    The VTK format does not allow writing multiple time steps in the same file, therefore a different file will be written for each time step.
4753ed81e22dSJed Brown    These are named according to the file name template.
4754ed81e22dSJed Brown 
4755ed81e22dSJed Brown    This function is normally passed as an argument to TSMonitorSet() along with TSMonitorSolutionVTKDestroy().
4756ed81e22dSJed Brown 
4757ed81e22dSJed Brown .keywords: TS,  vector, monitor, view
4758ed81e22dSJed Brown 
4759ed81e22dSJed Brown .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
4760ed81e22dSJed Brown @*/
47610910c330SBarry Smith PetscErrorCode TSMonitorSolutionVTK(TS ts,PetscInt step,PetscReal ptime,Vec u,void *filenametemplate)
4762ed81e22dSJed Brown {
4763ed81e22dSJed Brown   PetscErrorCode ierr;
4764ed81e22dSJed Brown   char           filename[PETSC_MAX_PATH_LEN];
4765ed81e22dSJed Brown   PetscViewer    viewer;
4766ed81e22dSJed Brown 
4767ed81e22dSJed Brown   PetscFunctionBegin;
47688caf3d72SBarry Smith   ierr = PetscSNPrintf(filename,sizeof(filename),(const char*)filenametemplate,step);CHKERRQ(ierr);
4769ce94432eSBarry Smith   ierr = PetscViewerVTKOpen(PetscObjectComm((PetscObject)ts),filename,FILE_MODE_WRITE,&viewer);CHKERRQ(ierr);
47700910c330SBarry Smith   ierr = VecView(u,viewer);CHKERRQ(ierr);
4771ed81e22dSJed Brown   ierr = PetscViewerDestroy(&viewer);CHKERRQ(ierr);
4772ed81e22dSJed Brown   PetscFunctionReturn(0);
4773ed81e22dSJed Brown }
4774ed81e22dSJed Brown 
4775ed81e22dSJed Brown #undef __FUNCT__
4776ed81e22dSJed Brown #define __FUNCT__ "TSMonitorSolutionVTKDestroy"
4777ed81e22dSJed Brown /*@C
4778ed81e22dSJed Brown    TSMonitorSolutionVTKDestroy - Destroy context for monitoring
4779ed81e22dSJed Brown 
4780ed81e22dSJed Brown    Collective on TS
4781ed81e22dSJed Brown 
4782ed81e22dSJed Brown    Input Parameters:
4783ed81e22dSJed Brown .  filenametemplate - string containing a format specifier for the integer time step (e.g. %03D)
4784ed81e22dSJed Brown 
4785ed81e22dSJed Brown    Level: intermediate
4786ed81e22dSJed Brown 
4787ed81e22dSJed Brown    Note:
4788ed81e22dSJed Brown    This function is normally passed to TSMonitorSet() along with TSMonitorSolutionVTK().
4789ed81e22dSJed Brown 
4790ed81e22dSJed Brown .keywords: TS,  vector, monitor, view
4791ed81e22dSJed Brown 
4792ed81e22dSJed Brown .seealso: TSMonitorSet(), TSMonitorSolutionVTK()
4793ed81e22dSJed Brown @*/
4794ed81e22dSJed Brown PetscErrorCode TSMonitorSolutionVTKDestroy(void *filenametemplate)
4795ed81e22dSJed Brown {
4796ed81e22dSJed Brown   PetscErrorCode ierr;
4797ed81e22dSJed Brown 
4798ed81e22dSJed Brown   PetscFunctionBegin;
4799ed81e22dSJed Brown   ierr = PetscFree(*(char**)filenametemplate);CHKERRQ(ierr);
4800fb1732b5SBarry Smith   PetscFunctionReturn(0);
4801fb1732b5SBarry Smith }
4802fb1732b5SBarry Smith 
480384df9cb4SJed Brown #undef __FUNCT__
4804552698daSJed Brown #define __FUNCT__ "TSGetAdapt"
480584df9cb4SJed Brown /*@
4806552698daSJed Brown    TSGetAdapt - Get the adaptive controller context for the current method
480784df9cb4SJed Brown 
4808ed81e22dSJed Brown    Collective on TS if controller has not been created yet
480984df9cb4SJed Brown 
481084df9cb4SJed Brown    Input Arguments:
4811ed81e22dSJed Brown .  ts - time stepping context
481284df9cb4SJed Brown 
481384df9cb4SJed Brown    Output Arguments:
4814ed81e22dSJed Brown .  adapt - adaptive controller
481584df9cb4SJed Brown 
481684df9cb4SJed Brown    Level: intermediate
481784df9cb4SJed Brown 
4818ed81e22dSJed Brown .seealso: TSAdapt, TSAdaptSetType(), TSAdaptChoose()
481984df9cb4SJed Brown @*/
4820552698daSJed Brown PetscErrorCode TSGetAdapt(TS ts,TSAdapt *adapt)
482184df9cb4SJed Brown {
482284df9cb4SJed Brown   PetscErrorCode ierr;
482384df9cb4SJed Brown 
482484df9cb4SJed Brown   PetscFunctionBegin;
482584df9cb4SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
482684df9cb4SJed Brown   PetscValidPointer(adapt,2);
482784df9cb4SJed Brown   if (!ts->adapt) {
4828ce94432eSBarry Smith     ierr = TSAdaptCreate(PetscObjectComm((PetscObject)ts),&ts->adapt);CHKERRQ(ierr);
48293bb1ff40SBarry Smith     ierr = PetscLogObjectParent((PetscObject)ts,(PetscObject)ts->adapt);CHKERRQ(ierr);
48301c3436cfSJed Brown     ierr = PetscObjectIncrementTabLevel((PetscObject)ts->adapt,(PetscObject)ts,1);CHKERRQ(ierr);
483184df9cb4SJed Brown   }
483284df9cb4SJed Brown   *adapt = ts->adapt;
483384df9cb4SJed Brown   PetscFunctionReturn(0);
483484df9cb4SJed Brown }
4835d6ebe24aSShri Abhyankar 
4836d6ebe24aSShri Abhyankar #undef __FUNCT__
48371c3436cfSJed Brown #define __FUNCT__ "TSSetTolerances"
48381c3436cfSJed Brown /*@
48391c3436cfSJed Brown    TSSetTolerances - Set tolerances for local truncation error when using adaptive controller
48401c3436cfSJed Brown 
48411c3436cfSJed Brown    Logically Collective
48421c3436cfSJed Brown 
48431c3436cfSJed Brown    Input Arguments:
48441c3436cfSJed Brown +  ts - time integration context
48451c3436cfSJed Brown .  atol - scalar absolute tolerances, PETSC_DECIDE to leave current value
48460298fd71SBarry Smith .  vatol - vector of absolute tolerances or NULL, used in preference to atol if present
48471c3436cfSJed Brown .  rtol - scalar relative tolerances, PETSC_DECIDE to leave current value
48480298fd71SBarry Smith -  vrtol - vector of relative tolerances or NULL, used in preference to atol if present
48491c3436cfSJed Brown 
4850a3cdaa26SBarry Smith    Options Database keys:
4851a3cdaa26SBarry Smith +  -ts_rtol <rtol> - relative tolerance for local truncation error
4852a3cdaa26SBarry Smith -  -ts_atol <atol> Absolute tolerance for local truncation error
4853a3cdaa26SBarry Smith 
48541c3436cfSJed Brown    Level: beginner
48551c3436cfSJed Brown 
4856c5033834SJed Brown .seealso: TS, TSAdapt, TSVecNormWRMS(), TSGetTolerances()
48571c3436cfSJed Brown @*/
48581c3436cfSJed Brown PetscErrorCode TSSetTolerances(TS ts,PetscReal atol,Vec vatol,PetscReal rtol,Vec vrtol)
48591c3436cfSJed Brown {
48601c3436cfSJed Brown   PetscErrorCode ierr;
48611c3436cfSJed Brown 
48621c3436cfSJed Brown   PetscFunctionBegin;
4863c5033834SJed Brown   if (atol != PETSC_DECIDE && atol != PETSC_DEFAULT) ts->atol = atol;
48641c3436cfSJed Brown   if (vatol) {
48651c3436cfSJed Brown     ierr = PetscObjectReference((PetscObject)vatol);CHKERRQ(ierr);
48661c3436cfSJed Brown     ierr = VecDestroy(&ts->vatol);CHKERRQ(ierr);
4867bbd56ea5SKarl Rupp 
48681c3436cfSJed Brown     ts->vatol = vatol;
48691c3436cfSJed Brown   }
4870c5033834SJed Brown   if (rtol != PETSC_DECIDE && rtol != PETSC_DEFAULT) ts->rtol = rtol;
48711c3436cfSJed Brown   if (vrtol) {
48721c3436cfSJed Brown     ierr = PetscObjectReference((PetscObject)vrtol);CHKERRQ(ierr);
48731c3436cfSJed Brown     ierr = VecDestroy(&ts->vrtol);CHKERRQ(ierr);
4874bbd56ea5SKarl Rupp 
48751c3436cfSJed Brown     ts->vrtol = vrtol;
48761c3436cfSJed Brown   }
48771c3436cfSJed Brown   PetscFunctionReturn(0);
48781c3436cfSJed Brown }
48791c3436cfSJed Brown 
48801c3436cfSJed Brown #undef __FUNCT__
4881c5033834SJed Brown #define __FUNCT__ "TSGetTolerances"
4882c5033834SJed Brown /*@
4883c5033834SJed Brown    TSGetTolerances - Get tolerances for local truncation error when using adaptive controller
4884c5033834SJed Brown 
4885c5033834SJed Brown    Logically Collective
4886c5033834SJed Brown 
4887c5033834SJed Brown    Input Arguments:
4888c5033834SJed Brown .  ts - time integration context
4889c5033834SJed Brown 
4890c5033834SJed Brown    Output Arguments:
48910298fd71SBarry Smith +  atol - scalar absolute tolerances, NULL to ignore
48920298fd71SBarry Smith .  vatol - vector of absolute tolerances, NULL to ignore
48930298fd71SBarry Smith .  rtol - scalar relative tolerances, NULL to ignore
48940298fd71SBarry Smith -  vrtol - vector of relative tolerances, NULL to ignore
4895c5033834SJed Brown 
4896c5033834SJed Brown    Level: beginner
4897c5033834SJed Brown 
4898c5033834SJed Brown .seealso: TS, TSAdapt, TSVecNormWRMS(), TSSetTolerances()
4899c5033834SJed Brown @*/
4900c5033834SJed Brown PetscErrorCode TSGetTolerances(TS ts,PetscReal *atol,Vec *vatol,PetscReal *rtol,Vec *vrtol)
4901c5033834SJed Brown {
4902c5033834SJed Brown   PetscFunctionBegin;
4903c5033834SJed Brown   if (atol)  *atol  = ts->atol;
4904c5033834SJed Brown   if (vatol) *vatol = ts->vatol;
4905c5033834SJed Brown   if (rtol)  *rtol  = ts->rtol;
4906c5033834SJed Brown   if (vrtol) *vrtol = ts->vrtol;
4907c5033834SJed Brown   PetscFunctionReturn(0);
4908c5033834SJed Brown }
4909c5033834SJed Brown 
4910c5033834SJed Brown #undef __FUNCT__
49111c3436cfSJed Brown #define __FUNCT__ "TSErrorNormWRMS"
49121c3436cfSJed Brown /*@
49131c3436cfSJed Brown    TSErrorNormWRMS - compute a weighted norm of the difference between a vector and the current state
49141c3436cfSJed Brown 
49151c3436cfSJed Brown    Collective on TS
49161c3436cfSJed Brown 
49171c3436cfSJed Brown    Input Arguments:
49181c3436cfSJed Brown +  ts - time stepping context
49191c3436cfSJed Brown -  Y - state vector to be compared to ts->vec_sol
49201c3436cfSJed Brown 
49211c3436cfSJed Brown    Output Arguments:
49221c3436cfSJed Brown .  norm - weighted norm, a value of 1.0 is considered small
49231c3436cfSJed Brown 
49241c3436cfSJed Brown    Level: developer
49251c3436cfSJed Brown 
49261c3436cfSJed Brown .seealso: TSSetTolerances()
49271c3436cfSJed Brown @*/
49281c3436cfSJed Brown PetscErrorCode TSErrorNormWRMS(TS ts,Vec Y,PetscReal *norm)
49291c3436cfSJed Brown {
49301c3436cfSJed Brown   PetscErrorCode    ierr;
49311c3436cfSJed Brown   PetscInt          i,n,N;
49320910c330SBarry Smith   const PetscScalar *u,*y;
49330910c330SBarry Smith   Vec               U;
49341c3436cfSJed Brown   PetscReal         sum,gsum;
49351c3436cfSJed Brown 
49361c3436cfSJed Brown   PetscFunctionBegin;
49371c3436cfSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
49381c3436cfSJed Brown   PetscValidHeaderSpecific(Y,VEC_CLASSID,2);
49391c3436cfSJed Brown   PetscValidPointer(norm,3);
49400910c330SBarry Smith   U = ts->vec_sol;
49410910c330SBarry Smith   PetscCheckSameTypeAndComm(U,1,Y,2);
4942ce94432eSBarry Smith   if (U == Y) SETERRQ(PetscObjectComm((PetscObject)U),PETSC_ERR_ARG_IDN,"Y cannot be the TS solution vector");
49431c3436cfSJed Brown 
49440910c330SBarry Smith   ierr = VecGetSize(U,&N);CHKERRQ(ierr);
49450910c330SBarry Smith   ierr = VecGetLocalSize(U,&n);CHKERRQ(ierr);
49460910c330SBarry Smith   ierr = VecGetArrayRead(U,&u);CHKERRQ(ierr);
49471c3436cfSJed Brown   ierr = VecGetArrayRead(Y,&y);CHKERRQ(ierr);
49481c3436cfSJed Brown   sum  = 0.;
4949ceefc113SJed Brown   if (ts->vatol && ts->vrtol) {
4950ceefc113SJed Brown     const PetscScalar *atol,*rtol;
4951ceefc113SJed Brown     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
4952ceefc113SJed Brown     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
4953ceefc113SJed Brown     for (i=0; i<n; i++) {
49540910c330SBarry Smith       PetscReal tol = PetscRealPart(atol[i]) + PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
49550910c330SBarry Smith       sum += PetscSqr(PetscAbsScalar(y[i] - u[i]) / tol);
4956ceefc113SJed Brown     }
4957ceefc113SJed Brown     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
4958ceefc113SJed Brown     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
4959ceefc113SJed Brown   } else if (ts->vatol) {       /* vector atol, scalar rtol */
4960ceefc113SJed Brown     const PetscScalar *atol;
4961ceefc113SJed Brown     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
4962ceefc113SJed Brown     for (i=0; i<n; i++) {
49630910c330SBarry Smith       PetscReal tol = PetscRealPart(atol[i]) + ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
49640910c330SBarry Smith       sum += PetscSqr(PetscAbsScalar(y[i] - u[i]) / tol);
4965ceefc113SJed Brown     }
4966ceefc113SJed Brown     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
4967ceefc113SJed Brown   } else if (ts->vrtol) {       /* scalar atol, vector rtol */
4968ceefc113SJed Brown     const PetscScalar *rtol;
4969ceefc113SJed Brown     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
4970ceefc113SJed Brown     for (i=0; i<n; i++) {
49710910c330SBarry Smith       PetscReal tol = ts->atol + PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
49720910c330SBarry Smith       sum += PetscSqr(PetscAbsScalar(y[i] - u[i]) / tol);
4973ceefc113SJed Brown     }
4974ceefc113SJed Brown     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
4975ceefc113SJed Brown   } else {                      /* scalar atol, scalar rtol */
49761c3436cfSJed Brown     for (i=0; i<n; i++) {
49770910c330SBarry Smith       PetscReal tol = ts->atol + ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
49780910c330SBarry Smith       sum += PetscSqr(PetscAbsScalar(y[i] - u[i]) / tol);
49791c3436cfSJed Brown     }
4980ceefc113SJed Brown   }
49810910c330SBarry Smith   ierr = VecRestoreArrayRead(U,&u);CHKERRQ(ierr);
49821c3436cfSJed Brown   ierr = VecRestoreArrayRead(Y,&y);CHKERRQ(ierr);
49831c3436cfSJed Brown 
4984ce94432eSBarry Smith   ierr  = MPI_Allreduce(&sum,&gsum,1,MPIU_REAL,MPIU_SUM,PetscObjectComm((PetscObject)ts));CHKERRQ(ierr);
49851c3436cfSJed Brown   *norm = PetscSqrtReal(gsum / N);
4986620fc8aaSSatish Balay   if (PetscIsInfOrNanReal(*norm)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norm");
49871c3436cfSJed Brown   PetscFunctionReturn(0);
49881c3436cfSJed Brown }
49891c3436cfSJed Brown 
49901c3436cfSJed Brown #undef __FUNCT__
49918d59e960SJed Brown #define __FUNCT__ "TSSetCFLTimeLocal"
49928d59e960SJed Brown /*@
49938d59e960SJed Brown    TSSetCFLTimeLocal - Set the local CFL constraint relative to forward Euler
49948d59e960SJed Brown 
49958d59e960SJed Brown    Logically Collective on TS
49968d59e960SJed Brown 
49978d59e960SJed Brown    Input Arguments:
49988d59e960SJed Brown +  ts - time stepping context
49998d59e960SJed Brown -  cfltime - maximum stable time step if using forward Euler (value can be different on each process)
50008d59e960SJed Brown 
50018d59e960SJed Brown    Note:
50028d59e960SJed Brown    After calling this function, the global CFL time can be obtained by calling TSGetCFLTime()
50038d59e960SJed Brown 
50048d59e960SJed Brown    Level: intermediate
50058d59e960SJed Brown 
50068d59e960SJed Brown .seealso: TSGetCFLTime(), TSADAPTCFL
50078d59e960SJed Brown @*/
50088d59e960SJed Brown PetscErrorCode TSSetCFLTimeLocal(TS ts,PetscReal cfltime)
50098d59e960SJed Brown {
50108d59e960SJed Brown   PetscFunctionBegin;
50118d59e960SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
50128d59e960SJed Brown   ts->cfltime_local = cfltime;
50138d59e960SJed Brown   ts->cfltime       = -1.;
50148d59e960SJed Brown   PetscFunctionReturn(0);
50158d59e960SJed Brown }
50168d59e960SJed Brown 
50178d59e960SJed Brown #undef __FUNCT__
50188d59e960SJed Brown #define __FUNCT__ "TSGetCFLTime"
50198d59e960SJed Brown /*@
50208d59e960SJed Brown    TSGetCFLTime - Get the maximum stable time step according to CFL criteria applied to forward Euler
50218d59e960SJed Brown 
50228d59e960SJed Brown    Collective on TS
50238d59e960SJed Brown 
50248d59e960SJed Brown    Input Arguments:
50258d59e960SJed Brown .  ts - time stepping context
50268d59e960SJed Brown 
50278d59e960SJed Brown    Output Arguments:
50288d59e960SJed Brown .  cfltime - maximum stable time step for forward Euler
50298d59e960SJed Brown 
50308d59e960SJed Brown    Level: advanced
50318d59e960SJed Brown 
50328d59e960SJed Brown .seealso: TSSetCFLTimeLocal()
50338d59e960SJed Brown @*/
50348d59e960SJed Brown PetscErrorCode TSGetCFLTime(TS ts,PetscReal *cfltime)
50358d59e960SJed Brown {
50368d59e960SJed Brown   PetscErrorCode ierr;
50378d59e960SJed Brown 
50388d59e960SJed Brown   PetscFunctionBegin;
50398d59e960SJed Brown   if (ts->cfltime < 0) {
5040ce94432eSBarry Smith     ierr = MPI_Allreduce(&ts->cfltime_local,&ts->cfltime,1,MPIU_REAL,MPIU_MIN,PetscObjectComm((PetscObject)ts));CHKERRQ(ierr);
50418d59e960SJed Brown   }
50428d59e960SJed Brown   *cfltime = ts->cfltime;
50438d59e960SJed Brown   PetscFunctionReturn(0);
50448d59e960SJed Brown }
50458d59e960SJed Brown 
50468d59e960SJed Brown #undef __FUNCT__
5047d6ebe24aSShri Abhyankar #define __FUNCT__ "TSVISetVariableBounds"
5048d6ebe24aSShri Abhyankar /*@
5049d6ebe24aSShri Abhyankar    TSVISetVariableBounds - Sets the lower and upper bounds for the solution vector. xl <= x <= xu
5050d6ebe24aSShri Abhyankar 
5051d6ebe24aSShri Abhyankar    Input Parameters:
5052d6ebe24aSShri Abhyankar .  ts   - the TS context.
5053d6ebe24aSShri Abhyankar .  xl   - lower bound.
5054d6ebe24aSShri Abhyankar .  xu   - upper bound.
5055d6ebe24aSShri Abhyankar 
5056d6ebe24aSShri Abhyankar    Notes:
5057d6ebe24aSShri Abhyankar    If this routine is not called then the lower and upper bounds are set to
5058e270355aSBarry Smith    PETSC_NINFINITY and PETSC_INFINITY respectively during SNESSetUp().
5059d6ebe24aSShri Abhyankar 
50602bd2b0e6SSatish Balay    Level: advanced
50612bd2b0e6SSatish Balay 
5062d6ebe24aSShri Abhyankar @*/
5063d6ebe24aSShri Abhyankar PetscErrorCode TSVISetVariableBounds(TS ts, Vec xl, Vec xu)
5064d6ebe24aSShri Abhyankar {
5065d6ebe24aSShri Abhyankar   PetscErrorCode ierr;
5066d6ebe24aSShri Abhyankar   SNES           snes;
5067d6ebe24aSShri Abhyankar 
5068d6ebe24aSShri Abhyankar   PetscFunctionBegin;
5069d6ebe24aSShri Abhyankar   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
5070d6ebe24aSShri Abhyankar   ierr = SNESVISetVariableBounds(snes,xl,xu);CHKERRQ(ierr);
5071d6ebe24aSShri Abhyankar   PetscFunctionReturn(0);
5072d6ebe24aSShri Abhyankar }
5073d6ebe24aSShri Abhyankar 
5074325fc9f4SBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE)
5075c6db04a5SJed Brown #include <mex.h>
5076325fc9f4SBarry Smith 
5077325fc9f4SBarry Smith typedef struct {char *funcname; mxArray *ctx;} TSMatlabContext;
5078325fc9f4SBarry Smith 
5079325fc9f4SBarry Smith #undef __FUNCT__
5080325fc9f4SBarry Smith #define __FUNCT__ "TSComputeFunction_Matlab"
5081325fc9f4SBarry Smith /*
5082325fc9f4SBarry Smith    TSComputeFunction_Matlab - Calls the function that has been set with
5083325fc9f4SBarry Smith                          TSSetFunctionMatlab().
5084325fc9f4SBarry Smith 
5085325fc9f4SBarry Smith    Collective on TS
5086325fc9f4SBarry Smith 
5087325fc9f4SBarry Smith    Input Parameters:
5088325fc9f4SBarry Smith +  snes - the TS context
50890910c330SBarry Smith -  u - input vector
5090325fc9f4SBarry Smith 
5091325fc9f4SBarry Smith    Output Parameter:
5092325fc9f4SBarry Smith .  y - function vector, as set by TSSetFunction()
5093325fc9f4SBarry Smith 
5094325fc9f4SBarry Smith    Notes:
5095325fc9f4SBarry Smith    TSComputeFunction() is typically used within nonlinear solvers
5096325fc9f4SBarry Smith    implementations, so most users would not generally call this routine
5097325fc9f4SBarry Smith    themselves.
5098325fc9f4SBarry Smith 
5099325fc9f4SBarry Smith    Level: developer
5100325fc9f4SBarry Smith 
5101325fc9f4SBarry Smith .keywords: TS, nonlinear, compute, function
5102325fc9f4SBarry Smith 
5103325fc9f4SBarry Smith .seealso: TSSetFunction(), TSGetFunction()
5104325fc9f4SBarry Smith */
51050910c330SBarry Smith PetscErrorCode  TSComputeFunction_Matlab(TS snes,PetscReal time,Vec u,Vec udot,Vec y, void *ctx)
5106325fc9f4SBarry Smith {
5107325fc9f4SBarry Smith   PetscErrorCode  ierr;
5108325fc9f4SBarry Smith   TSMatlabContext *sctx = (TSMatlabContext*)ctx;
5109325fc9f4SBarry Smith   int             nlhs  = 1,nrhs = 7;
5110325fc9f4SBarry Smith   mxArray         *plhs[1],*prhs[7];
5111325fc9f4SBarry Smith   long long int   lx = 0,lxdot = 0,ly = 0,ls = 0;
5112325fc9f4SBarry Smith 
5113325fc9f4SBarry Smith   PetscFunctionBegin;
5114325fc9f4SBarry Smith   PetscValidHeaderSpecific(snes,TS_CLASSID,1);
51150910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,3);
51160910c330SBarry Smith   PetscValidHeaderSpecific(udot,VEC_CLASSID,4);
5117325fc9f4SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,5);
51180910c330SBarry Smith   PetscCheckSameComm(snes,1,u,3);
5119325fc9f4SBarry Smith   PetscCheckSameComm(snes,1,y,5);
5120325fc9f4SBarry Smith 
5121325fc9f4SBarry Smith   ierr = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr);
51220910c330SBarry Smith   ierr = PetscMemcpy(&lx,&u,sizeof(u));CHKERRQ(ierr);
51230910c330SBarry Smith   ierr = PetscMemcpy(&lxdot,&udot,sizeof(udot));CHKERRQ(ierr);
51240910c330SBarry Smith   ierr = PetscMemcpy(&ly,&y,sizeof(u));CHKERRQ(ierr);
5125bbd56ea5SKarl Rupp 
5126325fc9f4SBarry Smith   prhs[0] =  mxCreateDoubleScalar((double)ls);
5127325fc9f4SBarry Smith   prhs[1] =  mxCreateDoubleScalar(time);
5128325fc9f4SBarry Smith   prhs[2] =  mxCreateDoubleScalar((double)lx);
5129325fc9f4SBarry Smith   prhs[3] =  mxCreateDoubleScalar((double)lxdot);
5130325fc9f4SBarry Smith   prhs[4] =  mxCreateDoubleScalar((double)ly);
5131325fc9f4SBarry Smith   prhs[5] =  mxCreateString(sctx->funcname);
5132325fc9f4SBarry Smith   prhs[6] =  sctx->ctx;
5133325fc9f4SBarry Smith   ierr    =  mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscTSComputeFunctionInternal");CHKERRQ(ierr);
5134325fc9f4SBarry Smith   ierr    =  mxGetScalar(plhs[0]);CHKERRQ(ierr);
5135325fc9f4SBarry Smith   mxDestroyArray(prhs[0]);
5136325fc9f4SBarry Smith   mxDestroyArray(prhs[1]);
5137325fc9f4SBarry Smith   mxDestroyArray(prhs[2]);
5138325fc9f4SBarry Smith   mxDestroyArray(prhs[3]);
5139325fc9f4SBarry Smith   mxDestroyArray(prhs[4]);
5140325fc9f4SBarry Smith   mxDestroyArray(prhs[5]);
5141325fc9f4SBarry Smith   mxDestroyArray(plhs[0]);
5142325fc9f4SBarry Smith   PetscFunctionReturn(0);
5143325fc9f4SBarry Smith }
5144325fc9f4SBarry Smith 
5145325fc9f4SBarry Smith 
5146325fc9f4SBarry Smith #undef __FUNCT__
5147325fc9f4SBarry Smith #define __FUNCT__ "TSSetFunctionMatlab"
5148325fc9f4SBarry Smith /*
5149325fc9f4SBarry Smith    TSSetFunctionMatlab - Sets the function evaluation routine and function
5150325fc9f4SBarry Smith    vector for use by the TS routines in solving ODEs
5151e3c5b3baSBarry Smith    equations from MATLAB. Here the function is a string containing the name of a MATLAB function
5152325fc9f4SBarry Smith 
5153325fc9f4SBarry Smith    Logically Collective on TS
5154325fc9f4SBarry Smith 
5155325fc9f4SBarry Smith    Input Parameters:
5156325fc9f4SBarry Smith +  ts - the TS context
5157325fc9f4SBarry Smith -  func - function evaluation routine
5158325fc9f4SBarry Smith 
5159325fc9f4SBarry Smith    Calling sequence of func:
51600910c330SBarry Smith $    func (TS ts,PetscReal time,Vec u,Vec udot,Vec f,void *ctx);
5161325fc9f4SBarry Smith 
5162325fc9f4SBarry Smith    Level: beginner
5163325fc9f4SBarry Smith 
5164325fc9f4SBarry Smith .keywords: TS, nonlinear, set, function
5165325fc9f4SBarry Smith 
5166325fc9f4SBarry Smith .seealso: TSGetFunction(), TSComputeFunction(), TSSetJacobian(), TSSetFunction()
5167325fc9f4SBarry Smith */
5168cdcf91faSSean Farley PetscErrorCode  TSSetFunctionMatlab(TS ts,const char *func,mxArray *ctx)
5169325fc9f4SBarry Smith {
5170325fc9f4SBarry Smith   PetscErrorCode  ierr;
5171325fc9f4SBarry Smith   TSMatlabContext *sctx;
5172325fc9f4SBarry Smith 
5173325fc9f4SBarry Smith   PetscFunctionBegin;
5174325fc9f4SBarry Smith   /* currently sctx is memory bleed */
5175325fc9f4SBarry Smith   ierr = PetscMalloc(sizeof(TSMatlabContext),&sctx);CHKERRQ(ierr);
5176325fc9f4SBarry Smith   ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr);
5177325fc9f4SBarry Smith   /*
5178325fc9f4SBarry Smith      This should work, but it doesn't
5179325fc9f4SBarry Smith   sctx->ctx = ctx;
5180325fc9f4SBarry Smith   mexMakeArrayPersistent(sctx->ctx);
5181325fc9f4SBarry Smith   */
5182325fc9f4SBarry Smith   sctx->ctx = mxDuplicateArray(ctx);
5183bbd56ea5SKarl Rupp 
51840298fd71SBarry Smith   ierr = TSSetIFunction(ts,NULL,TSComputeFunction_Matlab,sctx);CHKERRQ(ierr);
5185325fc9f4SBarry Smith   PetscFunctionReturn(0);
5186325fc9f4SBarry Smith }
5187325fc9f4SBarry Smith 
5188325fc9f4SBarry Smith #undef __FUNCT__
5189325fc9f4SBarry Smith #define __FUNCT__ "TSComputeJacobian_Matlab"
5190325fc9f4SBarry Smith /*
5191325fc9f4SBarry Smith    TSComputeJacobian_Matlab - Calls the function that has been set with
5192325fc9f4SBarry Smith                          TSSetJacobianMatlab().
5193325fc9f4SBarry Smith 
5194325fc9f4SBarry Smith    Collective on TS
5195325fc9f4SBarry Smith 
5196325fc9f4SBarry Smith    Input Parameters:
5197cdcf91faSSean Farley +  ts - the TS context
51980910c330SBarry Smith .  u - input vector
5199325fc9f4SBarry Smith .  A, B - the matrices
5200325fc9f4SBarry Smith -  ctx - user context
5201325fc9f4SBarry Smith 
5202325fc9f4SBarry Smith    Level: developer
5203325fc9f4SBarry Smith 
5204325fc9f4SBarry Smith .keywords: TS, nonlinear, compute, function
5205325fc9f4SBarry Smith 
5206325fc9f4SBarry Smith .seealso: TSSetFunction(), TSGetFunction()
5207325fc9f4SBarry Smith @*/
5208f3229a78SSatish Balay PetscErrorCode  TSComputeJacobian_Matlab(TS ts,PetscReal time,Vec u,Vec udot,PetscReal shift,Mat A,Mat B,void *ctx)
5209325fc9f4SBarry Smith {
5210325fc9f4SBarry Smith   PetscErrorCode  ierr;
5211325fc9f4SBarry Smith   TSMatlabContext *sctx = (TSMatlabContext*)ctx;
5212325fc9f4SBarry Smith   int             nlhs  = 2,nrhs = 9;
5213325fc9f4SBarry Smith   mxArray         *plhs[2],*prhs[9];
5214325fc9f4SBarry Smith   long long int   lx = 0,lxdot = 0,lA = 0,ls = 0, lB = 0;
5215325fc9f4SBarry Smith 
5216325fc9f4SBarry Smith   PetscFunctionBegin;
5217cdcf91faSSean Farley   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
52180910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,3);
5219325fc9f4SBarry Smith 
52200910c330SBarry Smith   /* call Matlab function in ctx with arguments u and y */
5221325fc9f4SBarry Smith 
5222cdcf91faSSean Farley   ierr = PetscMemcpy(&ls,&ts,sizeof(ts));CHKERRQ(ierr);
52230910c330SBarry Smith   ierr = PetscMemcpy(&lx,&u,sizeof(u));CHKERRQ(ierr);
52240910c330SBarry Smith   ierr = PetscMemcpy(&lxdot,&udot,sizeof(u));CHKERRQ(ierr);
52250910c330SBarry Smith   ierr = PetscMemcpy(&lA,A,sizeof(u));CHKERRQ(ierr);
52260910c330SBarry Smith   ierr = PetscMemcpy(&lB,B,sizeof(u));CHKERRQ(ierr);
5227bbd56ea5SKarl Rupp 
5228325fc9f4SBarry Smith   prhs[0] =  mxCreateDoubleScalar((double)ls);
5229325fc9f4SBarry Smith   prhs[1] =  mxCreateDoubleScalar((double)time);
5230325fc9f4SBarry Smith   prhs[2] =  mxCreateDoubleScalar((double)lx);
5231325fc9f4SBarry Smith   prhs[3] =  mxCreateDoubleScalar((double)lxdot);
5232325fc9f4SBarry Smith   prhs[4] =  mxCreateDoubleScalar((double)shift);
5233325fc9f4SBarry Smith   prhs[5] =  mxCreateDoubleScalar((double)lA);
5234325fc9f4SBarry Smith   prhs[6] =  mxCreateDoubleScalar((double)lB);
5235325fc9f4SBarry Smith   prhs[7] =  mxCreateString(sctx->funcname);
5236325fc9f4SBarry Smith   prhs[8] =  sctx->ctx;
5237325fc9f4SBarry Smith   ierr    =  mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscTSComputeJacobianInternal");CHKERRQ(ierr);
5238325fc9f4SBarry Smith   ierr    =  mxGetScalar(plhs[0]);CHKERRQ(ierr);
5239325fc9f4SBarry Smith   mxDestroyArray(prhs[0]);
5240325fc9f4SBarry Smith   mxDestroyArray(prhs[1]);
5241325fc9f4SBarry Smith   mxDestroyArray(prhs[2]);
5242325fc9f4SBarry Smith   mxDestroyArray(prhs[3]);
5243325fc9f4SBarry Smith   mxDestroyArray(prhs[4]);
5244325fc9f4SBarry Smith   mxDestroyArray(prhs[5]);
5245325fc9f4SBarry Smith   mxDestroyArray(prhs[6]);
5246325fc9f4SBarry Smith   mxDestroyArray(prhs[7]);
5247325fc9f4SBarry Smith   mxDestroyArray(plhs[0]);
5248325fc9f4SBarry Smith   mxDestroyArray(plhs[1]);
5249325fc9f4SBarry Smith   PetscFunctionReturn(0);
5250325fc9f4SBarry Smith }
5251325fc9f4SBarry Smith 
5252325fc9f4SBarry Smith 
5253325fc9f4SBarry Smith #undef __FUNCT__
5254325fc9f4SBarry Smith #define __FUNCT__ "TSSetJacobianMatlab"
5255325fc9f4SBarry Smith /*
5256325fc9f4SBarry Smith    TSSetJacobianMatlab - Sets the Jacobian function evaluation routine and two empty Jacobian matrices
5257e3c5b3baSBarry Smith    vector for use by the TS routines in solving ODEs from MATLAB. Here the function is a string containing the name of a MATLAB function
5258325fc9f4SBarry Smith 
5259325fc9f4SBarry Smith    Logically Collective on TS
5260325fc9f4SBarry Smith 
5261325fc9f4SBarry Smith    Input Parameters:
5262cdcf91faSSean Farley +  ts - the TS context
5263325fc9f4SBarry Smith .  A,B - Jacobian matrices
5264325fc9f4SBarry Smith .  func - function evaluation routine
5265325fc9f4SBarry Smith -  ctx - user context
5266325fc9f4SBarry Smith 
5267325fc9f4SBarry Smith    Calling sequence of func:
52680910c330SBarry Smith $    flag = func (TS ts,PetscReal time,Vec u,Vec udot,Mat A,Mat B,void *ctx);
5269325fc9f4SBarry Smith 
5270325fc9f4SBarry Smith 
5271325fc9f4SBarry Smith    Level: developer
5272325fc9f4SBarry Smith 
5273325fc9f4SBarry Smith .keywords: TS, nonlinear, set, function
5274325fc9f4SBarry Smith 
5275325fc9f4SBarry Smith .seealso: TSGetFunction(), TSComputeFunction(), TSSetJacobian(), TSSetFunction()
5276325fc9f4SBarry Smith */
5277cdcf91faSSean Farley PetscErrorCode  TSSetJacobianMatlab(TS ts,Mat A,Mat B,const char *func,mxArray *ctx)
5278325fc9f4SBarry Smith {
5279325fc9f4SBarry Smith   PetscErrorCode  ierr;
5280325fc9f4SBarry Smith   TSMatlabContext *sctx;
5281325fc9f4SBarry Smith 
5282325fc9f4SBarry Smith   PetscFunctionBegin;
5283325fc9f4SBarry Smith   /* currently sctx is memory bleed */
5284325fc9f4SBarry Smith   ierr = PetscMalloc(sizeof(TSMatlabContext),&sctx);CHKERRQ(ierr);
5285325fc9f4SBarry Smith   ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr);
5286325fc9f4SBarry Smith   /*
5287325fc9f4SBarry Smith      This should work, but it doesn't
5288325fc9f4SBarry Smith   sctx->ctx = ctx;
5289325fc9f4SBarry Smith   mexMakeArrayPersistent(sctx->ctx);
5290325fc9f4SBarry Smith   */
5291325fc9f4SBarry Smith   sctx->ctx = mxDuplicateArray(ctx);
5292bbd56ea5SKarl Rupp 
5293cdcf91faSSean Farley   ierr = TSSetIJacobian(ts,A,B,TSComputeJacobian_Matlab,sctx);CHKERRQ(ierr);
5294325fc9f4SBarry Smith   PetscFunctionReturn(0);
5295325fc9f4SBarry Smith }
5296325fc9f4SBarry Smith 
5297b5b1a830SBarry Smith #undef __FUNCT__
5298b5b1a830SBarry Smith #define __FUNCT__ "TSMonitor_Matlab"
5299b5b1a830SBarry Smith /*
5300b5b1a830SBarry Smith    TSMonitor_Matlab - Calls the function that has been set with TSMonitorSetMatlab().
5301b5b1a830SBarry Smith 
5302b5b1a830SBarry Smith    Collective on TS
5303b5b1a830SBarry Smith 
5304b5b1a830SBarry Smith .seealso: TSSetFunction(), TSGetFunction()
5305b5b1a830SBarry Smith @*/
53060910c330SBarry Smith PetscErrorCode  TSMonitor_Matlab(TS ts,PetscInt it, PetscReal time,Vec u, void *ctx)
5307b5b1a830SBarry Smith {
5308b5b1a830SBarry Smith   PetscErrorCode  ierr;
5309b5b1a830SBarry Smith   TSMatlabContext *sctx = (TSMatlabContext*)ctx;
5310a530c242SBarry Smith   int             nlhs  = 1,nrhs = 6;
5311b5b1a830SBarry Smith   mxArray         *plhs[1],*prhs[6];
5312b5b1a830SBarry Smith   long long int   lx = 0,ls = 0;
5313b5b1a830SBarry Smith 
5314b5b1a830SBarry Smith   PetscFunctionBegin;
5315cdcf91faSSean Farley   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
53160910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,4);
5317b5b1a830SBarry Smith 
5318cdcf91faSSean Farley   ierr = PetscMemcpy(&ls,&ts,sizeof(ts));CHKERRQ(ierr);
53190910c330SBarry Smith   ierr = PetscMemcpy(&lx,&u,sizeof(u));CHKERRQ(ierr);
5320bbd56ea5SKarl Rupp 
5321b5b1a830SBarry Smith   prhs[0] =  mxCreateDoubleScalar((double)ls);
5322b5b1a830SBarry Smith   prhs[1] =  mxCreateDoubleScalar((double)it);
5323b5b1a830SBarry Smith   prhs[2] =  mxCreateDoubleScalar((double)time);
5324b5b1a830SBarry Smith   prhs[3] =  mxCreateDoubleScalar((double)lx);
5325b5b1a830SBarry Smith   prhs[4] =  mxCreateString(sctx->funcname);
5326b5b1a830SBarry Smith   prhs[5] =  sctx->ctx;
5327b5b1a830SBarry Smith   ierr    =  mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscTSMonitorInternal");CHKERRQ(ierr);
5328b5b1a830SBarry Smith   ierr    =  mxGetScalar(plhs[0]);CHKERRQ(ierr);
5329b5b1a830SBarry Smith   mxDestroyArray(prhs[0]);
5330b5b1a830SBarry Smith   mxDestroyArray(prhs[1]);
5331b5b1a830SBarry Smith   mxDestroyArray(prhs[2]);
5332b5b1a830SBarry Smith   mxDestroyArray(prhs[3]);
5333b5b1a830SBarry Smith   mxDestroyArray(prhs[4]);
5334b5b1a830SBarry Smith   mxDestroyArray(plhs[0]);
5335b5b1a830SBarry Smith   PetscFunctionReturn(0);
5336b5b1a830SBarry Smith }
5337b5b1a830SBarry Smith 
5338b5b1a830SBarry Smith 
5339b5b1a830SBarry Smith #undef __FUNCT__
5340b5b1a830SBarry Smith #define __FUNCT__ "TSMonitorSetMatlab"
5341b5b1a830SBarry Smith /*
5342b5b1a830SBarry Smith    TSMonitorSetMatlab - Sets the monitor function from Matlab
5343b5b1a830SBarry Smith 
5344b5b1a830SBarry Smith    Level: developer
5345b5b1a830SBarry Smith 
5346b5b1a830SBarry Smith .keywords: TS, nonlinear, set, function
5347b5b1a830SBarry Smith 
5348b5b1a830SBarry Smith .seealso: TSGetFunction(), TSComputeFunction(), TSSetJacobian(), TSSetFunction()
5349b5b1a830SBarry Smith */
5350cdcf91faSSean Farley PetscErrorCode  TSMonitorSetMatlab(TS ts,const char *func,mxArray *ctx)
5351b5b1a830SBarry Smith {
5352b5b1a830SBarry Smith   PetscErrorCode  ierr;
5353b5b1a830SBarry Smith   TSMatlabContext *sctx;
5354b5b1a830SBarry Smith 
5355b5b1a830SBarry Smith   PetscFunctionBegin;
5356b5b1a830SBarry Smith   /* currently sctx is memory bleed */
5357b5b1a830SBarry Smith   ierr = PetscMalloc(sizeof(TSMatlabContext),&sctx);CHKERRQ(ierr);
5358b5b1a830SBarry Smith   ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr);
5359b5b1a830SBarry Smith   /*
5360b5b1a830SBarry Smith      This should work, but it doesn't
5361b5b1a830SBarry Smith   sctx->ctx = ctx;
5362b5b1a830SBarry Smith   mexMakeArrayPersistent(sctx->ctx);
5363b5b1a830SBarry Smith   */
5364b5b1a830SBarry Smith   sctx->ctx = mxDuplicateArray(ctx);
5365bbd56ea5SKarl Rupp 
53660298fd71SBarry Smith   ierr = TSMonitorSet(ts,TSMonitor_Matlab,sctx,NULL);CHKERRQ(ierr);
5367b5b1a830SBarry Smith   PetscFunctionReturn(0);
5368b5b1a830SBarry Smith }
5369325fc9f4SBarry Smith #endif
5370b3603a34SBarry Smith 
53710b039ecaSBarry Smith 
53720b039ecaSBarry Smith 
5373b3603a34SBarry Smith #undef __FUNCT__
53744f09c107SBarry Smith #define __FUNCT__ "TSMonitorLGSolution"
5375b3603a34SBarry Smith /*@C
53764f09c107SBarry Smith    TSMonitorLGSolution - Monitors progress of the TS solvers by plotting each component of the solution vector
5377b3603a34SBarry Smith        in a time based line graph
5378b3603a34SBarry Smith 
5379b3603a34SBarry Smith    Collective on TS
5380b3603a34SBarry Smith 
5381b3603a34SBarry Smith    Input Parameters:
5382b3603a34SBarry Smith +  ts - the TS context
5383b3603a34SBarry Smith .  step - current time-step
5384b3603a34SBarry Smith .  ptime - current time
5385b3603a34SBarry Smith -  lg - a line graph object
5386b3603a34SBarry Smith 
5387b3603a34SBarry Smith    Level: intermediate
5388b3603a34SBarry Smith 
53890b039ecaSBarry Smith     Notes: each process in a parallel run displays its component solutions in a separate window
5390b3603a34SBarry Smith 
5391b3603a34SBarry Smith .keywords: TS,  vector, monitor, view
5392b3603a34SBarry Smith 
5393b3603a34SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
5394b3603a34SBarry Smith @*/
53950910c330SBarry Smith PetscErrorCode  TSMonitorLGSolution(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
5396b3603a34SBarry Smith {
5397b3603a34SBarry Smith   PetscErrorCode    ierr;
53980b039ecaSBarry Smith   TSMonitorLGCtx    ctx = (TSMonitorLGCtx)dummy;
5399b3603a34SBarry Smith   const PetscScalar *yy;
540058ff32f7SBarry Smith   PetscInt          dim;
5401b3603a34SBarry Smith 
5402b3603a34SBarry Smith   PetscFunctionBegin;
540358ff32f7SBarry Smith   if (!step) {
5404a9f9c1f6SBarry Smith     PetscDrawAxis axis;
5405a9f9c1f6SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
5406a9f9c1f6SBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Solution as function of time","Time","Solution");CHKERRQ(ierr);
54070910c330SBarry Smith     ierr = VecGetLocalSize(u,&dim);CHKERRQ(ierr);
54080b039ecaSBarry Smith     ierr = PetscDrawLGSetDimension(ctx->lg,dim);CHKERRQ(ierr);
54090b039ecaSBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
541058ff32f7SBarry Smith   }
54110910c330SBarry Smith   ierr = VecGetArrayRead(u,&yy);CHKERRQ(ierr);
5412e3efe391SJed Brown #if defined(PETSC_USE_COMPLEX)
5413e3efe391SJed Brown   {
5414e3efe391SJed Brown     PetscReal *yreal;
5415e3efe391SJed Brown     PetscInt  i,n;
54160910c330SBarry Smith     ierr = VecGetLocalSize(u,&n);CHKERRQ(ierr);
5417785e854fSJed Brown     ierr = PetscMalloc1(n,&yreal);CHKERRQ(ierr);
5418e3efe391SJed Brown     for (i=0; i<n; i++) yreal[i] = PetscRealPart(yy[i]);
54190b039ecaSBarry Smith     ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yreal);CHKERRQ(ierr);
5420e3efe391SJed Brown     ierr = PetscFree(yreal);CHKERRQ(ierr);
5421e3efe391SJed Brown   }
5422e3efe391SJed Brown #else
54230b039ecaSBarry Smith   ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yy);CHKERRQ(ierr);
5424e3efe391SJed Brown #endif
54250910c330SBarry Smith   ierr = VecRestoreArrayRead(u,&yy);CHKERRQ(ierr);
5426b06615a5SLisandro Dalcin   if (((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason)) {
54270b039ecaSBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
54283923b477SBarry Smith   }
5429b3603a34SBarry Smith   PetscFunctionReturn(0);
5430b3603a34SBarry Smith }
5431b3603a34SBarry Smith 
5432b3603a34SBarry Smith #undef __FUNCT__
54334f09c107SBarry Smith #define __FUNCT__ "TSMonitorLGError"
5434ef20d060SBarry Smith /*@C
54354f09c107SBarry Smith    TSMonitorLGError - Monitors progress of the TS solvers by plotting each component of the solution vector
5436ef20d060SBarry Smith        in a time based line graph
5437ef20d060SBarry Smith 
5438ef20d060SBarry Smith    Collective on TS
5439ef20d060SBarry Smith 
5440ef20d060SBarry Smith    Input Parameters:
5441ef20d060SBarry Smith +  ts - the TS context
5442ef20d060SBarry Smith .  step - current time-step
5443ef20d060SBarry Smith .  ptime - current time
5444ef20d060SBarry Smith -  lg - a line graph object
5445ef20d060SBarry Smith 
5446ef20d060SBarry Smith    Level: intermediate
5447ef20d060SBarry Smith 
5448abd5a294SJed Brown    Notes:
5449abd5a294SJed Brown    Only for sequential solves.
5450abd5a294SJed Brown 
5451abd5a294SJed Brown    The user must provide the solution using TSSetSolutionFunction() to use this monitor.
5452abd5a294SJed Brown 
5453abd5a294SJed Brown    Options Database Keys:
54544f09c107SBarry Smith .  -ts_monitor_lg_error - create a graphical monitor of error history
5455ef20d060SBarry Smith 
5456ef20d060SBarry Smith .keywords: TS,  vector, monitor, view
5457ef20d060SBarry Smith 
5458abd5a294SJed Brown .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSSetSolutionFunction()
5459ef20d060SBarry Smith @*/
54600910c330SBarry Smith PetscErrorCode  TSMonitorLGError(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
5461ef20d060SBarry Smith {
5462ef20d060SBarry Smith   PetscErrorCode    ierr;
54630b039ecaSBarry Smith   TSMonitorLGCtx    ctx = (TSMonitorLGCtx)dummy;
5464ef20d060SBarry Smith   const PetscScalar *yy;
5465ef20d060SBarry Smith   Vec               y;
5466a9f9c1f6SBarry Smith   PetscInt          dim;
5467ef20d060SBarry Smith 
5468ef20d060SBarry Smith   PetscFunctionBegin;
5469a9f9c1f6SBarry Smith   if (!step) {
5470a9f9c1f6SBarry Smith     PetscDrawAxis axis;
5471a9f9c1f6SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
54721ae185eaSBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Error in solution as function of time","Time","Solution");CHKERRQ(ierr);
54730910c330SBarry Smith     ierr = VecGetLocalSize(u,&dim);CHKERRQ(ierr);
5474a9f9c1f6SBarry Smith     ierr = PetscDrawLGSetDimension(ctx->lg,dim);CHKERRQ(ierr);
5475a9f9c1f6SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
5476a9f9c1f6SBarry Smith   }
54770910c330SBarry Smith   ierr = VecDuplicate(u,&y);CHKERRQ(ierr);
5478ef20d060SBarry Smith   ierr = TSComputeSolutionFunction(ts,ptime,y);CHKERRQ(ierr);
54790910c330SBarry Smith   ierr = VecAXPY(y,-1.0,u);CHKERRQ(ierr);
5480ef20d060SBarry Smith   ierr = VecGetArrayRead(y,&yy);CHKERRQ(ierr);
5481e3efe391SJed Brown #if defined(PETSC_USE_COMPLEX)
5482e3efe391SJed Brown   {
5483e3efe391SJed Brown     PetscReal *yreal;
5484e3efe391SJed Brown     PetscInt  i,n;
5485e3efe391SJed Brown     ierr = VecGetLocalSize(y,&n);CHKERRQ(ierr);
5486785e854fSJed Brown     ierr = PetscMalloc1(n,&yreal);CHKERRQ(ierr);
5487e3efe391SJed Brown     for (i=0; i<n; i++) yreal[i] = PetscRealPart(yy[i]);
54880b039ecaSBarry Smith     ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yreal);CHKERRQ(ierr);
5489e3efe391SJed Brown     ierr = PetscFree(yreal);CHKERRQ(ierr);
5490e3efe391SJed Brown   }
5491e3efe391SJed Brown #else
54920b039ecaSBarry Smith   ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yy);CHKERRQ(ierr);
5493e3efe391SJed Brown #endif
5494ef20d060SBarry Smith   ierr = VecRestoreArrayRead(y,&yy);CHKERRQ(ierr);
5495ef20d060SBarry Smith   ierr = VecDestroy(&y);CHKERRQ(ierr);
5496b06615a5SLisandro Dalcin   if (((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason)) {
54970b039ecaSBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
54983923b477SBarry Smith   }
5499ef20d060SBarry Smith   PetscFunctionReturn(0);
5500ef20d060SBarry Smith }
5501ef20d060SBarry Smith 
5502201da799SBarry Smith #undef __FUNCT__
5503201da799SBarry Smith #define __FUNCT__ "TSMonitorLGSNESIterations"
5504201da799SBarry Smith PetscErrorCode TSMonitorLGSNESIterations(TS ts,PetscInt n,PetscReal ptime,Vec v,void *monctx)
5505201da799SBarry Smith {
5506201da799SBarry Smith   TSMonitorLGCtx ctx = (TSMonitorLGCtx) monctx;
5507201da799SBarry Smith   PetscReal      x   = ptime,y;
5508201da799SBarry Smith   PetscErrorCode ierr;
5509201da799SBarry Smith   PetscInt       its;
5510201da799SBarry Smith 
5511201da799SBarry Smith   PetscFunctionBegin;
5512201da799SBarry Smith   if (!n) {
5513201da799SBarry Smith     PetscDrawAxis axis;
5514bbd56ea5SKarl Rupp 
5515201da799SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
5516201da799SBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Nonlinear iterations as function of time","Time","SNES Iterations");CHKERRQ(ierr);
5517201da799SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
5518bbd56ea5SKarl Rupp 
5519201da799SBarry Smith     ctx->snes_its = 0;
5520201da799SBarry Smith   }
5521201da799SBarry Smith   ierr = TSGetSNESIterations(ts,&its);CHKERRQ(ierr);
5522201da799SBarry Smith   y    = its - ctx->snes_its;
5523201da799SBarry Smith   ierr = PetscDrawLGAddPoint(ctx->lg,&x,&y);CHKERRQ(ierr);
55243fbbecb0SBarry Smith   if (((ctx->howoften > 0) && (!(n % ctx->howoften)) && (n > -1)) || ((ctx->howoften == -1) && (n == -1))) {
5525201da799SBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
5526201da799SBarry Smith   }
5527201da799SBarry Smith   ctx->snes_its = its;
5528201da799SBarry Smith   PetscFunctionReturn(0);
5529201da799SBarry Smith }
5530201da799SBarry Smith 
5531201da799SBarry Smith #undef __FUNCT__
5532201da799SBarry Smith #define __FUNCT__ "TSMonitorLGKSPIterations"
5533201da799SBarry Smith PetscErrorCode TSMonitorLGKSPIterations(TS ts,PetscInt n,PetscReal ptime,Vec v,void *monctx)
5534201da799SBarry Smith {
5535201da799SBarry Smith   TSMonitorLGCtx ctx = (TSMonitorLGCtx) monctx;
5536201da799SBarry Smith   PetscReal      x   = ptime,y;
5537201da799SBarry Smith   PetscErrorCode ierr;
5538201da799SBarry Smith   PetscInt       its;
5539201da799SBarry Smith 
5540201da799SBarry Smith   PetscFunctionBegin;
5541201da799SBarry Smith   if (!n) {
5542201da799SBarry Smith     PetscDrawAxis axis;
5543bbd56ea5SKarl Rupp 
5544201da799SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
5545201da799SBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Linear iterations as function of time","Time","KSP Iterations");CHKERRQ(ierr);
5546201da799SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
5547bbd56ea5SKarl Rupp 
5548201da799SBarry Smith     ctx->ksp_its = 0;
5549201da799SBarry Smith   }
5550201da799SBarry Smith   ierr = TSGetKSPIterations(ts,&its);CHKERRQ(ierr);
5551201da799SBarry Smith   y    = its - ctx->ksp_its;
5552201da799SBarry Smith   ierr = PetscDrawLGAddPoint(ctx->lg,&x,&y);CHKERRQ(ierr);
555399fdda47SBarry Smith   if (((ctx->howoften > 0) && (!(n % ctx->howoften)) && (n > -1)) || ((ctx->howoften == -1) && (n == -1))) {
5554201da799SBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
5555201da799SBarry Smith   }
5556201da799SBarry Smith   ctx->ksp_its = its;
5557201da799SBarry Smith   PetscFunctionReturn(0);
5558201da799SBarry Smith }
5559f9c1d6abSBarry Smith 
5560f9c1d6abSBarry Smith #undef __FUNCT__
5561f9c1d6abSBarry Smith #define __FUNCT__ "TSComputeLinearStability"
5562f9c1d6abSBarry Smith /*@
5563f9c1d6abSBarry Smith    TSComputeLinearStability - computes the linear stability function at a point
5564f9c1d6abSBarry Smith 
5565f9c1d6abSBarry Smith    Collective on TS and Vec
5566f9c1d6abSBarry Smith 
5567f9c1d6abSBarry Smith    Input Parameters:
5568f9c1d6abSBarry Smith +  ts - the TS context
5569f9c1d6abSBarry Smith -  xr,xi - real and imaginary part of input arguments
5570f9c1d6abSBarry Smith 
5571f9c1d6abSBarry Smith    Output Parameters:
5572f9c1d6abSBarry Smith .  yr,yi - real and imaginary part of function value
5573f9c1d6abSBarry Smith 
5574f9c1d6abSBarry Smith    Level: developer
5575f9c1d6abSBarry Smith 
5576f9c1d6abSBarry Smith .keywords: TS, compute
5577f9c1d6abSBarry Smith 
5578f9c1d6abSBarry Smith .seealso: TSSetRHSFunction(), TSComputeIFunction()
5579f9c1d6abSBarry Smith @*/
5580f9c1d6abSBarry Smith PetscErrorCode TSComputeLinearStability(TS ts,PetscReal xr,PetscReal xi,PetscReal *yr,PetscReal *yi)
5581f9c1d6abSBarry Smith {
5582f9c1d6abSBarry Smith   PetscErrorCode ierr;
5583f9c1d6abSBarry Smith 
5584f9c1d6abSBarry Smith   PetscFunctionBegin;
5585f9c1d6abSBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5586ce94432eSBarry Smith   if (!ts->ops->linearstability) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"Linearized stability function not provided for this method");
5587f9c1d6abSBarry Smith   ierr = (*ts->ops->linearstability)(ts,xr,xi,yr,yi);CHKERRQ(ierr);
5588f9c1d6abSBarry Smith   PetscFunctionReturn(0);
5589f9c1d6abSBarry Smith }
559024655328SShri 
559124655328SShri #undef __FUNCT__
559224655328SShri #define __FUNCT__ "TSRollBack"
559324655328SShri /*@
559424655328SShri    TSRollBack - Rolls back one time step
559524655328SShri 
559624655328SShri    Collective on TS
559724655328SShri 
559824655328SShri    Input Parameter:
559924655328SShri .  ts - the TS context obtained from TSCreate()
560024655328SShri 
560124655328SShri    Level: advanced
560224655328SShri 
560324655328SShri .keywords: TS, timestep, rollback
560424655328SShri 
560524655328SShri .seealso: TSCreate(), TSSetUp(), TSDestroy(), TSSolve(), TSSetPreStep(), TSSetPreStage(), TSInterpolate()
560624655328SShri @*/
560724655328SShri PetscErrorCode  TSRollBack(TS ts)
560824655328SShri {
560924655328SShri   PetscErrorCode ierr;
561024655328SShri 
561124655328SShri   PetscFunctionBegin;
561224655328SShri   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
561324655328SShri 
561424655328SShri   if (!ts->ops->rollback) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"TSRollBack not implemented for type '%s'",((PetscObject)ts)->type_name);
561524655328SShri   ierr = (*ts->ops->rollback)(ts);CHKERRQ(ierr);
561624655328SShri   ts->time_step = ts->ptime - ts->ptime_prev;
561724655328SShri   ts->ptime = ts->ptime_prev;
561824655328SShri   PetscFunctionReturn(0);
561924655328SShri }
5620aeb4809dSShri Abhyankar 
5621ff22ae23SHong Zhang #undef __FUNCT__
5622ff22ae23SHong Zhang #define __FUNCT__ "TSGetStages"
5623ff22ae23SHong Zhang /*@
5624ff22ae23SHong Zhang    TSGetStages - Get the number of stages and stage values
5625ff22ae23SHong Zhang 
5626ff22ae23SHong Zhang    Input Parameter:
5627ff22ae23SHong Zhang .  ts - the TS context obtained from TSCreate()
5628ff22ae23SHong Zhang 
5629ff22ae23SHong Zhang    Level: advanced
5630ff22ae23SHong Zhang 
5631ff22ae23SHong Zhang .keywords: TS, getstages
5632ff22ae23SHong Zhang 
5633ff22ae23SHong Zhang .seealso: TSCreate()
5634ff22ae23SHong Zhang @*/
5635ff22ae23SHong Zhang PetscErrorCode  TSGetStages(TS ts,PetscInt *ns, Vec **Y)
5636ff22ae23SHong Zhang {
5637ff22ae23SHong Zhang   PetscErrorCode ierr;
5638ff22ae23SHong Zhang 
5639ff22ae23SHong Zhang   PetscFunctionBegin;
5640ff22ae23SHong Zhang   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
5641ff22ae23SHong Zhang   PetscValidPointer(ns,2);
5642ff22ae23SHong Zhang 
5643ff22ae23SHong Zhang   if (!ts->ops->getstages) *ns=0;
5644ff22ae23SHong Zhang   else {
5645ff22ae23SHong Zhang     ierr = (*ts->ops->getstages)(ts,ns,Y);CHKERRQ(ierr);
5646ff22ae23SHong Zhang   }
5647ff22ae23SHong Zhang   PetscFunctionReturn(0);
5648ff22ae23SHong Zhang }
5649ff22ae23SHong Zhang 
5650