xref: /petsc/src/ts/interface/ts.c (revision bd373395e526a8abeca18718888f591d98e14969)
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__
15bdad233fSMatthew Knepley #define __FUNCT__ "TSSetTypeFromOptions"
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 */
296849ba73SBarry Smith static PetscErrorCode TSSetTypeFromOptions(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
72bdad233fSMatthew Knepley .  -ts_max_steps maxsteps - maximum number of time-steps to take
733bca7d26SBarry Smith .  -ts_final_time time - maximum time to compute to
74bdad233fSMatthew Knepley .  -ts_dt dt - initial time step
75bdad233fSMatthew Knepley .  -ts_monitor - print information at each timestep
76de06c3feSJed Brown .  -ts_monitor_lg_timestep - Monitor timestep size graphically
77de06c3feSJed Brown .  -ts_monitor_lg_solution - Monitor solution graphically
78de06c3feSJed Brown .  -ts_monitor_lg_error - Monitor error graphically
79de06c3feSJed Brown .  -ts_monitor_lg_snes_iterations - Monitor number nonlinear iterations for each timestep graphically
80de06c3feSJed Brown .  -ts_monitor_lg_ksp_iterations - Monitor number nonlinear iterations for each timestep graphically
81de06c3feSJed Brown .  -ts_monitor_sp_eig - Monitor eigenvalues of linearized operator graphically
82de06c3feSJed Brown .  -ts_monitor_draw_solution - Monitor solution graphically
832d5ee99bSBarry Smith .  -ts_monitor_draw_solution_phase - Monitor solution graphically with phase diagram
84de06c3feSJed Brown .  -ts_monitor_draw_error - Monitor error graphically
8591b97e58SBarry Smith .  -ts_monitor_solution_binary <filename> - Save each solution to a binary file
8691b97e58SBarry Smith -  -ts_monitor_solution_vtk <filename.vts> - Save each time step to a binary file, use filename-%%03D.vts
8791b97e58SBarry Smith 
8891b97e58SBarry Smith    Developer Note: We should unify all the -ts_monitor options in the way that -xxx_view has been unified
89bdad233fSMatthew Knepley 
90bdad233fSMatthew Knepley    Level: beginner
91bdad233fSMatthew Knepley 
92bdad233fSMatthew Knepley .keywords: TS, timestep, set, options, database
93bdad233fSMatthew Knepley 
94a313700dSBarry Smith .seealso: TSGetType()
95bdad233fSMatthew Knepley @*/
967087cfbeSBarry Smith PetscErrorCode  TSSetFromOptions(TS ts)
97bdad233fSMatthew Knepley {
98ace3abfcSBarry Smith   PetscBool              opt,flg;
99dfbe8321SBarry Smith   PetscErrorCode         ierr;
100649052a6SBarry Smith   PetscViewer            monviewer;
101eabae89aSBarry Smith   char                   monfilename[PETSC_MAX_PATH_LEN];
102089b2837SJed Brown   SNES                   snes;
1031c3436cfSJed Brown   TSAdapt                adapt;
10431748224SBarry Smith   PetscReal              time_step;
10549354f04SShri Abhyankar   TSExactFinalTimeOption eftopt;
106d1212d36SBarry Smith   char                   dir[16];
107bdad233fSMatthew Knepley 
108bdad233fSMatthew Knepley   PetscFunctionBegin;
1090700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
1103194b578SJed Brown   ierr = PetscObjectOptionsBegin((PetscObject)ts);CHKERRQ(ierr);
111a43b19c4SJed Brown   /* Handle TS type options */
112a43b19c4SJed Brown   ierr = TSSetTypeFromOptions(ts);CHKERRQ(ierr);
113bdad233fSMatthew Knepley 
114bdad233fSMatthew Knepley   /* Handle generic TS options */
1150298fd71SBarry Smith   ierr = PetscOptionsInt("-ts_max_steps","Maximum number of time steps","TSSetDuration",ts->max_steps,&ts->max_steps,NULL);CHKERRQ(ierr);
1160298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_final_time","Time to run to","TSSetDuration",ts->max_time,&ts->max_time,NULL);CHKERRQ(ierr);
1170298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_init_time","Initial time","TSSetTime",ts->ptime,&ts->ptime,NULL);CHKERRQ(ierr);
11831748224SBarry Smith   ierr = PetscOptionsReal("-ts_dt","Initial time step","TSSetTimeStep",ts->time_step,&time_step,&flg);CHKERRQ(ierr);
11931748224SBarry Smith   if (flg) {
12031748224SBarry Smith     ierr = TSSetTimeStep(ts,time_step);CHKERRQ(ierr);
12131748224SBarry Smith   }
12249354f04SShri 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);
12349354f04SShri Abhyankar   if (flg) {ierr = TSSetExactFinalTime(ts,eftopt);CHKERRQ(ierr);}
1240298fd71SBarry 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);
1250298fd71SBarry Smith   ierr = PetscOptionsInt("-ts_max_reject","Maximum number of step rejections before step fails","TSSetMaxStepRejections",ts->max_reject,&ts->max_reject,NULL);CHKERRQ(ierr);
1260298fd71SBarry Smith   ierr = PetscOptionsBool("-ts_error_if_step_fails","Error if no step succeeds","TSSetErrorIfStepFails",ts->errorifstepfailed,&ts->errorifstepfailed,NULL);CHKERRQ(ierr);
1270298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_rtol","Relative tolerance for local truncation error","TSSetTolerances",ts->rtol,&ts->rtol,NULL);CHKERRQ(ierr);
1280298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_atol","Absolute tolerance for local truncation error","TSSetTolerances",ts->atol,&ts->atol,NULL);CHKERRQ(ierr);
129bdad233fSMatthew Knepley 
13056f85f32SBarry Smith #if defined(PETSC_HAVE_SAWS)
13156f85f32SBarry Smith   {
13256f85f32SBarry Smith   PetscBool set;
13356f85f32SBarry Smith   flg  = PETSC_FALSE;
13456f85f32SBarry Smith   ierr = PetscOptionsBool("-ts_saws_block","Block for SAWs memory snooper at end of TSSolve","PetscObjectSAWsBlock",((PetscObject)ts)->amspublishblock,&flg,&set);CHKERRQ(ierr);
13556f85f32SBarry Smith   if (set) {
13656f85f32SBarry Smith     ierr = PetscObjectSAWsSetBlock((PetscObject)ts,flg);CHKERRQ(ierr);
13756f85f32SBarry Smith   }
13856f85f32SBarry Smith   }
13956f85f32SBarry Smith #endif
14056f85f32SBarry Smith 
141bdad233fSMatthew Knepley   /* Monitor options */
142a6570f20SBarry Smith   ierr = PetscOptionsString("-ts_monitor","Monitor timestep size","TSMonitorDefault","stdout",monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr);
143eabae89aSBarry Smith   if (flg) {
144ce94432eSBarry Smith     ierr = PetscViewerASCIIOpen(PetscObjectComm((PetscObject)ts),monfilename,&monviewer);CHKERRQ(ierr);
145649052a6SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDefault,monviewer,(PetscErrorCode (*)(void**))PetscViewerDestroy);CHKERRQ(ierr);
146bdad233fSMatthew Knepley   }
1475180491cSLisandro Dalcin   ierr = PetscOptionsString("-ts_monitor_python","Use Python function","TSMonitorSet",0,monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr);
1485180491cSLisandro Dalcin   if (flg) {ierr = PetscPythonMonitorSet((PetscObject)ts,monfilename);CHKERRQ(ierr);}
1495180491cSLisandro Dalcin 
1504f09c107SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_timestep","Monitor timestep size graphically","TSMonitorLGTimeStep",&opt);CHKERRQ(ierr);
151a7cc72afSBarry Smith   if (opt) {
1520b039ecaSBarry Smith     TSMonitorLGCtx ctx;
1533923b477SBarry Smith     PetscInt       howoften = 1;
154a80ad3e0SBarry Smith 
1550298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_timestep","Monitor timestep size graphically","TSMonitorLGTimeStep",howoften,&howoften,NULL);CHKERRQ(ierr);
156ce94432eSBarry Smith     ierr = TSMonitorLGCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,howoften,&ctx);CHKERRQ(ierr);
1574f09c107SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGTimeStep,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
158b3603a34SBarry Smith   }
1594f09c107SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_solution","Monitor solution graphically","TSMonitorLGSolution",&opt);CHKERRQ(ierr);
160b3603a34SBarry Smith   if (opt) {
1610b039ecaSBarry Smith     TSMonitorLGCtx ctx;
1623923b477SBarry Smith     PetscInt       howoften = 1;
163b3603a34SBarry Smith 
1640298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_solution","Monitor solution graphically","TSMonitorLGSolution",howoften,&howoften,NULL);CHKERRQ(ierr);
16522d28d08SBarry Smith     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,howoften,&ctx);CHKERRQ(ierr);
1664f09c107SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGSolution,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
167bdad233fSMatthew Knepley   }
1684f09c107SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_error","Monitor error graphically","TSMonitorLGError",&opt);CHKERRQ(ierr);
169ef20d060SBarry Smith   if (opt) {
1700b039ecaSBarry Smith     TSMonitorLGCtx ctx;
1713923b477SBarry Smith     PetscInt       howoften = 1;
172ef20d060SBarry Smith 
1730298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_error","Monitor error graphically","TSMonitorLGError",howoften,&howoften,NULL);CHKERRQ(ierr);
17422d28d08SBarry Smith     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,howoften,&ctx);CHKERRQ(ierr);
1754f09c107SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGError,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
176ef20d060SBarry Smith   }
177201da799SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_snes_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGSNESIterations",&opt);CHKERRQ(ierr);
178201da799SBarry Smith   if (opt) {
179201da799SBarry Smith     TSMonitorLGCtx ctx;
180201da799SBarry Smith     PetscInt       howoften = 1;
181201da799SBarry Smith 
1820298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_snes_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGSNESIterations",howoften,&howoften,NULL);CHKERRQ(ierr);
18322d28d08SBarry Smith     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,howoften,&ctx);CHKERRQ(ierr);
184201da799SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGSNESIterations,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
185201da799SBarry Smith   }
186201da799SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_ksp_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGKSPIterations",&opt);CHKERRQ(ierr);
187201da799SBarry Smith   if (opt) {
188201da799SBarry Smith     TSMonitorLGCtx ctx;
189201da799SBarry Smith     PetscInt       howoften = 1;
190201da799SBarry Smith 
1910298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_ksp_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGKSPIterations",howoften,&howoften,NULL);CHKERRQ(ierr);
19222d28d08SBarry Smith     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,howoften,&ctx);CHKERRQ(ierr);
193201da799SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGKSPIterations,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
194201da799SBarry Smith   }
1958189c53fSBarry Smith   ierr = PetscOptionsName("-ts_monitor_sp_eig","Monitor eigenvalues of linearized operator graphically","TSMonitorSPEig",&opt);CHKERRQ(ierr);
1968189c53fSBarry Smith   if (opt) {
1978189c53fSBarry Smith     TSMonitorSPEigCtx ctx;
1988189c53fSBarry Smith     PetscInt          howoften = 1;
1998189c53fSBarry Smith 
2000298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_sp_eig","Monitor eigenvalues of linearized operator graphically","TSMonitorSPEig",howoften,&howoften,NULL);CHKERRQ(ierr);
20122d28d08SBarry Smith     ierr = TSMonitorSPEigCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,howoften,&ctx);CHKERRQ(ierr);
2028189c53fSBarry Smith     ierr = TSMonitorSet(ts,TSMonitorSPEig,ctx,(PetscErrorCode (*)(void**))TSMonitorSPEigCtxDestroy);CHKERRQ(ierr);
2038189c53fSBarry Smith   }
204ef20d060SBarry Smith   opt  = PETSC_FALSE;
2050dcf80beSBarry Smith   ierr = PetscOptionsName("-ts_monitor_draw_solution","Monitor solution graphically","TSMonitorDrawSolution",&opt);CHKERRQ(ierr);
206a7cc72afSBarry Smith   if (opt) {
20783a4ac43SBarry Smith     TSMonitorDrawCtx ctx;
20883a4ac43SBarry Smith     PetscInt         howoften = 1;
209a80ad3e0SBarry Smith 
2100298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_draw_solution","Monitor solution graphically","TSMonitorDrawSolution",howoften,&howoften,NULL);CHKERRQ(ierr);
211ce94432eSBarry Smith     ierr = TSMonitorDrawCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,howoften,&ctx);CHKERRQ(ierr);
21283a4ac43SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDrawSolution,ctx,(PetscErrorCode (*)(void**))TSMonitorDrawCtxDestroy);CHKERRQ(ierr);
213bdad233fSMatthew Knepley   }
214fb1732b5SBarry Smith   opt  = PETSC_FALSE;
2152d5ee99bSBarry Smith   ierr = PetscOptionsName("-ts_monitor_draw_solution_phase","Monitor solution graphically","TSMonitorDrawSolutionPhase",&opt);CHKERRQ(ierr);
2162d5ee99bSBarry Smith   if (opt) {
2172d5ee99bSBarry Smith     TSMonitorDrawCtx ctx;
2182d5ee99bSBarry Smith     PetscReal        bounds[4];
2192d5ee99bSBarry Smith     PetscInt         n = 4;
2202d5ee99bSBarry Smith     PetscDraw        draw;
2212d5ee99bSBarry Smith 
2222d5ee99bSBarry Smith     ierr = PetscOptionsRealArray("-ts_monitor_draw_solution_phase","Monitor solution graphically","TSMonitorDrawSolutionPhase",bounds,&n,NULL);CHKERRQ(ierr);
2232d5ee99bSBarry Smith     if (n != 4) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Must provide bounding box of phase field");
2242d5ee99bSBarry Smith     ierr = TSMonitorDrawCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,1,&ctx);CHKERRQ(ierr);
2252d5ee99bSBarry Smith     ierr = PetscViewerDrawGetDraw(ctx->viewer,0,&draw);CHKERRQ(ierr);
2262d5ee99bSBarry Smith     ierr = PetscDrawClear(draw);CHKERRQ(ierr);
2274b363babSBarry Smith     ierr = PetscDrawAxisCreate(draw,&ctx->axis);CHKERRQ(ierr);
2284b363babSBarry Smith     ierr = PetscDrawAxisSetLimits(ctx->axis,bounds[0],bounds[2],bounds[1],bounds[3]);CHKERRQ(ierr);
229f54adfc0SBarry Smith     ierr = PetscDrawAxisSetLabels(ctx->axis,"Phase Diagram","Variable 1","Variable 2");CHKERRQ(ierr);
2304b363babSBarry Smith     ierr = PetscDrawAxisDraw(ctx->axis);CHKERRQ(ierr);
23107995780SPeter Brune     /* ierr = PetscDrawSetCoordinates(draw,bounds[0],bounds[1],bounds[2],bounds[3]);CHKERRQ(ierr); */
2322d5ee99bSBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDrawSolutionPhase,ctx,(PetscErrorCode (*)(void**))TSMonitorDrawCtxDestroy);CHKERRQ(ierr);
2332d5ee99bSBarry Smith   }
2342d5ee99bSBarry Smith   opt  = PETSC_FALSE;
2350dcf80beSBarry Smith   ierr = PetscOptionsName("-ts_monitor_draw_error","Monitor error graphically","TSMonitorDrawError",&opt);CHKERRQ(ierr);
2363a471f94SBarry Smith   if (opt) {
23783a4ac43SBarry Smith     TSMonitorDrawCtx ctx;
23883a4ac43SBarry Smith     PetscInt         howoften = 1;
2393a471f94SBarry Smith 
2400298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_draw_error","Monitor error graphically","TSMonitorDrawError",howoften,&howoften,NULL);CHKERRQ(ierr);
241ce94432eSBarry Smith     ierr = TSMonitorDrawCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,howoften,&ctx);CHKERRQ(ierr);
24283a4ac43SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDrawError,ctx,(PetscErrorCode (*)(void**))TSMonitorDrawCtxDestroy);CHKERRQ(ierr);
2433a471f94SBarry Smith   }
2443a471f94SBarry Smith   opt  = PETSC_FALSE;
24591b97e58SBarry Smith   ierr = PetscOptionsString("-ts_monitor_solution_binary","Save each solution to a binary file","TSMonitorSolutionBinary",0,monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr);
246fb1732b5SBarry Smith   if (flg) {
247fb1732b5SBarry Smith     PetscViewer ctx;
248fb1732b5SBarry Smith     if (monfilename[0]) {
249ce94432eSBarry Smith       ierr = PetscViewerBinaryOpen(PetscObjectComm((PetscObject)ts),monfilename,FILE_MODE_WRITE,&ctx);CHKERRQ(ierr);
250c2fbc07fSBarry Smith       ierr = TSMonitorSet(ts,TSMonitorSolutionBinary,ctx,(PetscErrorCode (*)(void**))PetscViewerDestroy);CHKERRQ(ierr);
251fb1732b5SBarry Smith     } else {
252ce94432eSBarry Smith       ctx = PETSC_VIEWER_BINARY_(PetscObjectComm((PetscObject)ts));
2530298fd71SBarry Smith       ierr = TSMonitorSet(ts,TSMonitorSolutionBinary,ctx,(PetscErrorCode (*)(void**))NULL);CHKERRQ(ierr);
254fb1732b5SBarry Smith     }
255fb1732b5SBarry Smith   }
256ed81e22dSJed Brown   opt  = PETSC_FALSE;
25791b97e58SBarry 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);
258ed81e22dSJed Brown   if (flg) {
259ed81e22dSJed Brown     const char *ptr,*ptr2;
260ed81e22dSJed Brown     char       *filetemplate;
261ce94432eSBarry Smith     if (!monfilename[0]) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"-ts_monitor_solution_vtk requires a file template, e.g. filename-%%03D.vts");
262ed81e22dSJed Brown     /* Do some cursory validation of the input. */
263ed81e22dSJed Brown     ierr = PetscStrstr(monfilename,"%",(char**)&ptr);CHKERRQ(ierr);
264ce94432eSBarry Smith     if (!ptr) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"-ts_monitor_solution_vtk requires a file template, e.g. filename-%%03D.vts");
265ed81e22dSJed Brown     for (ptr++; ptr && *ptr; ptr++) {
266ed81e22dSJed Brown       ierr = PetscStrchr("DdiouxX",*ptr,(char**)&ptr2);CHKERRQ(ierr);
267ce94432eSBarry 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");
268ed81e22dSJed Brown       if (ptr2) break;
269ed81e22dSJed Brown     }
270ed81e22dSJed Brown     ierr = PetscStrallocpy(monfilename,&filetemplate);CHKERRQ(ierr);
271ed81e22dSJed Brown     ierr = TSMonitorSet(ts,TSMonitorSolutionVTK,filetemplate,(PetscErrorCode (*)(void**))TSMonitorSolutionVTKDestroy);CHKERRQ(ierr);
272ed81e22dSJed Brown   }
273bdad233fSMatthew Knepley 
274d1212d36SBarry Smith   ierr = PetscOptionsString("-ts_monitor_dmda_ray","Display a ray of the solution","None","y=0",dir,16,&flg);CHKERRQ(ierr);
275d1212d36SBarry Smith   if (flg) {
276d1212d36SBarry Smith     TSMonitorDMDARayCtx *rayctx;
277d1212d36SBarry Smith     int                  ray = 0;
278d1212d36SBarry Smith     DMDADirection        ddir;
279d1212d36SBarry Smith     DM                   da;
280d1212d36SBarry Smith     PetscMPIInt          rank;
281d1212d36SBarry Smith 
282ce94432eSBarry Smith     if (dir[1] != '=') SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Unknown ray %s",dir);
283d1212d36SBarry Smith     if (dir[0] == 'x') ddir = DMDA_X;
284d1212d36SBarry Smith     else if (dir[0] == 'y') ddir = DMDA_Y;
285ce94432eSBarry Smith     else SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Unknown ray %s",dir);
286d1212d36SBarry Smith     sscanf(dir+2,"%d",&ray);
287d1212d36SBarry Smith 
288d1212d36SBarry Smith     ierr = PetscInfo2(((PetscObject)ts),"Displaying DMDA ray %c = %D\n",dir[0],ray);CHKERRQ(ierr);
289b00a9115SJed Brown     ierr = PetscNew(&rayctx);CHKERRQ(ierr);
290d1212d36SBarry Smith     ierr = TSGetDM(ts,&da);CHKERRQ(ierr);
291d1212d36SBarry Smith     ierr = DMDAGetRay(da,ddir,ray,&rayctx->ray,&rayctx->scatter);CHKERRQ(ierr);
292ce94432eSBarry Smith     ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)ts),&rank);CHKERRQ(ierr);
293d1212d36SBarry Smith     if (!rank) {
294d1212d36SBarry Smith       ierr = PetscViewerDrawOpen(PETSC_COMM_SELF,0,0,0,0,600,300,&rayctx->viewer);CHKERRQ(ierr);
295d1212d36SBarry Smith     }
29651b4a12fSMatthew G. Knepley     rayctx->lgctx = NULL;
297d1212d36SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDMDARay,rayctx,TSMonitorDMDARayDestroy);CHKERRQ(ierr);
298d1212d36SBarry Smith   }
29951b4a12fSMatthew G. Knepley   ierr = PetscOptionsString("-ts_monitor_lg_dmda_ray","Display a ray of the solution","None","x=0",dir,16,&flg);CHKERRQ(ierr);
30051b4a12fSMatthew G. Knepley   if (flg) {
30151b4a12fSMatthew G. Knepley     TSMonitorDMDARayCtx *rayctx;
30251b4a12fSMatthew G. Knepley     int                 ray = 0;
30351b4a12fSMatthew G. Knepley     DMDADirection       ddir;
30451b4a12fSMatthew G. Knepley     DM                  da;
30551b4a12fSMatthew G. Knepley     PetscInt            howoften = 1;
30651b4a12fSMatthew G. Knepley 
30751b4a12fSMatthew G. Knepley     if (dir[1] != '=') SETERRQ1(PetscObjectComm((PetscObject) ts), PETSC_ERR_ARG_WRONG, "Malformed ray %s", dir);
30851b4a12fSMatthew G. Knepley     if      (dir[0] == 'x') ddir = DMDA_X;
30951b4a12fSMatthew G. Knepley     else if (dir[0] == 'y') ddir = DMDA_Y;
31051b4a12fSMatthew G. Knepley     else SETERRQ1(PetscObjectComm((PetscObject) ts), PETSC_ERR_ARG_WRONG, "Unknown ray direction %s", dir);
31151b4a12fSMatthew G. Knepley     sscanf(dir+2, "%d", &ray);
31251b4a12fSMatthew G. Knepley 
31351b4a12fSMatthew G. Knepley     ierr = PetscInfo2(((PetscObject) ts),"Displaying LG DMDA ray %c = %D\n", dir[0], ray);CHKERRQ(ierr);
314b00a9115SJed Brown     ierr = PetscNew(&rayctx);CHKERRQ(ierr);
31551b4a12fSMatthew G. Knepley     ierr = TSGetDM(ts, &da);CHKERRQ(ierr);
31651b4a12fSMatthew G. Knepley     ierr = DMDAGetRay(da, ddir, ray, &rayctx->ray, &rayctx->scatter);CHKERRQ(ierr);
31751b4a12fSMatthew G. Knepley     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,howoften,&rayctx->lgctx);CHKERRQ(ierr);
31851b4a12fSMatthew G. Knepley     ierr = TSMonitorSet(ts, TSMonitorLGDMDARay, rayctx, TSMonitorDMDARayDestroy);CHKERRQ(ierr);
31951b4a12fSMatthew G. Knepley   }
320d1212d36SBarry Smith 
3217781c08eSBarry Smith   /*
3227781c08eSBarry Smith      This code is all wrong. One is creating objects inside the TSSetFromOptions() so if run with the options gui
3237781c08eSBarry Smith      will bleed memory. Also one is using a PetscOptionsBegin() inside a PetscOptionsBegin()
3247781c08eSBarry Smith   */
325552698daSJed Brown   ierr = TSGetAdapt(ts,&adapt);CHKERRQ(ierr);
3261c3436cfSJed Brown   ierr = TSAdaptSetFromOptions(adapt);CHKERRQ(ierr);
3271c3436cfSJed Brown 
328d52bd9f3SBarry Smith   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
329d52bd9f3SBarry Smith   if (ts->problem_type == TS_LINEAR) {ierr = SNESSetType(snes,SNESKSPONLY);CHKERRQ(ierr);}
330d52bd9f3SBarry Smith 
331bdad233fSMatthew Knepley   /* Handle specific TS options */
332abc0a331SBarry Smith   if (ts->ops->setfromoptions) {
333bdad233fSMatthew Knepley     ierr = (*ts->ops->setfromoptions)(ts);CHKERRQ(ierr);
334bdad233fSMatthew Knepley   }
3355d973c19SBarry Smith 
3365d973c19SBarry Smith   /* process any options handlers added with PetscObjectAddOptionsHandler() */
3375d973c19SBarry Smith   ierr = PetscObjectProcessOptionsHandlers((PetscObject)ts);CHKERRQ(ierr);
338bdad233fSMatthew Knepley   ierr = PetscOptionsEnd();CHKERRQ(ierr);
339bdad233fSMatthew Knepley   PetscFunctionReturn(0);
340bdad233fSMatthew Knepley }
341bdad233fSMatthew Knepley 
342bdad233fSMatthew Knepley #undef __FUNCT__
343cdcf91faSSean Farley #undef __FUNCT__
3444a2ae208SSatish Balay #define __FUNCT__ "TSComputeRHSJacobian"
345a7a1495cSBarry Smith /*@
3468c385f81SBarry Smith    TSComputeRHSJacobian - Computes the Jacobian matrix that has been
347a7a1495cSBarry Smith       set with TSSetRHSJacobian().
348a7a1495cSBarry Smith 
349a7a1495cSBarry Smith    Collective on TS and Vec
350a7a1495cSBarry Smith 
351a7a1495cSBarry Smith    Input Parameters:
352316643e7SJed Brown +  ts - the TS context
353a7a1495cSBarry Smith .  t - current timestep
3540910c330SBarry Smith -  U - input vector
355a7a1495cSBarry Smith 
356a7a1495cSBarry Smith    Output Parameters:
357a7a1495cSBarry Smith +  A - Jacobian matrix
358a7a1495cSBarry Smith .  B - optional preconditioning matrix
359a7a1495cSBarry Smith -  flag - flag indicating matrix structure
360a7a1495cSBarry Smith 
361a7a1495cSBarry Smith    Notes:
362a7a1495cSBarry Smith    Most users should not need to explicitly call this routine, as it
363a7a1495cSBarry Smith    is used internally within the nonlinear solvers.
364a7a1495cSBarry Smith 
36594b7f48cSBarry Smith    See KSPSetOperators() for important information about setting the
366a7a1495cSBarry Smith    flag parameter.
367a7a1495cSBarry Smith 
368a7a1495cSBarry Smith    Level: developer
369a7a1495cSBarry Smith 
370a7a1495cSBarry Smith .keywords: SNES, compute, Jacobian, matrix
371a7a1495cSBarry Smith 
37294b7f48cSBarry Smith .seealso:  TSSetRHSJacobian(), KSPSetOperators()
373a7a1495cSBarry Smith @*/
3740910c330SBarry Smith PetscErrorCode  TSComputeRHSJacobian(TS ts,PetscReal t,Vec U,Mat *A,Mat *B,MatStructure *flg)
375a7a1495cSBarry Smith {
376dfbe8321SBarry Smith   PetscErrorCode ierr;
377270bf2e7SJed Brown   PetscObjectState Ustate;
37824989b8cSPeter Brune   DM             dm;
379942e3340SBarry Smith   DMTS           tsdm;
38024989b8cSPeter Brune   TSRHSJacobian  rhsjacobianfunc;
38124989b8cSPeter Brune   void           *ctx;
38224989b8cSPeter Brune   TSIJacobian    ijacobianfunc;
383a7a1495cSBarry Smith 
384a7a1495cSBarry Smith   PetscFunctionBegin;
3850700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3860910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
3870910c330SBarry Smith   PetscCheckSameComm(ts,1,U,3);
38824989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
389942e3340SBarry Smith   ierr = DMGetDMTS(dm,&tsdm);CHKERRQ(ierr);
39024989b8cSPeter Brune   ierr = DMTSGetRHSJacobian(dm,&rhsjacobianfunc,&ctx);CHKERRQ(ierr);
3910298fd71SBarry Smith   ierr = DMTSGetIJacobian(dm,&ijacobianfunc,NULL);CHKERRQ(ierr);
39259e4f3c8SBarry Smith   ierr = PetscObjectStateGet((PetscObject)U,&Ustate);CHKERRQ(ierr);
3930910c330SBarry Smith   if (ts->rhsjacobian.time == t && (ts->problem_type == TS_LINEAR || (ts->rhsjacobian.X == U && ts->rhsjacobian.Xstate == Ustate))) {
3940e4ef248SJed Brown     *flg = ts->rhsjacobian.mstructure;
3950e4ef248SJed Brown     PetscFunctionReturn(0);
396f8ede8e7SJed Brown   }
397d90be118SSean Farley 
398ce94432eSBarry Smith   if (!rhsjacobianfunc && !ijacobianfunc) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSJacobian() and / or TSSetIJacobian()");
399d90be118SSean Farley 
400e1244c69SJed Brown   if (ts->rhsjacobian.reuse) {
401e1244c69SJed Brown     ierr = MatShift(*A,-ts->rhsjacobian.shift);CHKERRQ(ierr);
402e1244c69SJed Brown     ierr = MatScale(*A,1./ts->rhsjacobian.scale);CHKERRQ(ierr);
403e1244c69SJed Brown     if (*A != *B) {
404e1244c69SJed Brown       ierr = MatShift(*B,-ts->rhsjacobian.shift);CHKERRQ(ierr);
405e1244c69SJed Brown       ierr = MatScale(*B,1./ts->rhsjacobian.scale);CHKERRQ(ierr);
406e1244c69SJed Brown     }
407e1244c69SJed Brown     ts->rhsjacobian.shift = 0;
408e1244c69SJed Brown     ts->rhsjacobian.scale = 1.;
409e1244c69SJed Brown   }
410e1244c69SJed Brown 
41124989b8cSPeter Brune   if (rhsjacobianfunc) {
4120910c330SBarry Smith     ierr = PetscLogEventBegin(TS_JacobianEval,ts,U,*A,*B);CHKERRQ(ierr);
413a7a1495cSBarry Smith     *flg = DIFFERENT_NONZERO_PATTERN;
414a7a1495cSBarry Smith     PetscStackPush("TS user Jacobian function");
4150910c330SBarry Smith     ierr = (*rhsjacobianfunc)(ts,t,U,A,B,flg,ctx);CHKERRQ(ierr);
416a7a1495cSBarry Smith     PetscStackPop;
4170910c330SBarry Smith     ierr = PetscLogEventEnd(TS_JacobianEval,ts,U,*A,*B);CHKERRQ(ierr);
418a7a1495cSBarry Smith     /* make sure user returned a correct Jacobian and preconditioner */
4190700a824SBarry Smith     PetscValidHeaderSpecific(*A,MAT_CLASSID,4);
4200700a824SBarry Smith     PetscValidHeaderSpecific(*B,MAT_CLASSID,5);
421ef66eb69SBarry Smith   } else {
422214bc6a2SJed Brown     ierr = MatZeroEntries(*A);CHKERRQ(ierr);
423214bc6a2SJed Brown     if (*A != *B) {ierr = MatZeroEntries(*B);CHKERRQ(ierr);}
424214bc6a2SJed Brown     *flg = SAME_NONZERO_PATTERN;
425ef66eb69SBarry Smith   }
4260e4ef248SJed Brown   ts->rhsjacobian.time       = t;
4270910c330SBarry Smith   ts->rhsjacobian.X          = U;
42859e4f3c8SBarry Smith   ierr                       = PetscObjectStateGet((PetscObject)U,&ts->rhsjacobian.Xstate);CHKERRQ(ierr);
4290e4ef248SJed Brown   ts->rhsjacobian.mstructure = *flg;
430a7a1495cSBarry Smith   PetscFunctionReturn(0);
431a7a1495cSBarry Smith }
432a7a1495cSBarry Smith 
4334a2ae208SSatish Balay #undef __FUNCT__
4344a2ae208SSatish Balay #define __FUNCT__ "TSComputeRHSFunction"
435316643e7SJed Brown /*@
436d763cef2SBarry Smith    TSComputeRHSFunction - Evaluates the right-hand-side function.
437d763cef2SBarry Smith 
438316643e7SJed Brown    Collective on TS and Vec
439316643e7SJed Brown 
440316643e7SJed Brown    Input Parameters:
441316643e7SJed Brown +  ts - the TS context
442316643e7SJed Brown .  t - current time
4430910c330SBarry Smith -  U - state vector
444316643e7SJed Brown 
445316643e7SJed Brown    Output Parameter:
446316643e7SJed Brown .  y - right hand side
447316643e7SJed Brown 
448316643e7SJed Brown    Note:
449316643e7SJed Brown    Most users should not need to explicitly call this routine, as it
450316643e7SJed Brown    is used internally within the nonlinear solvers.
451316643e7SJed Brown 
452316643e7SJed Brown    Level: developer
453316643e7SJed Brown 
454316643e7SJed Brown .keywords: TS, compute
455316643e7SJed Brown 
456316643e7SJed Brown .seealso: TSSetRHSFunction(), TSComputeIFunction()
457316643e7SJed Brown @*/
4580910c330SBarry Smith PetscErrorCode TSComputeRHSFunction(TS ts,PetscReal t,Vec U,Vec y)
459d763cef2SBarry Smith {
460dfbe8321SBarry Smith   PetscErrorCode ierr;
46124989b8cSPeter Brune   TSRHSFunction  rhsfunction;
46224989b8cSPeter Brune   TSIFunction    ifunction;
46324989b8cSPeter Brune   void           *ctx;
46424989b8cSPeter Brune   DM             dm;
46524989b8cSPeter Brune 
466d763cef2SBarry Smith   PetscFunctionBegin;
4670700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4680910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
4690700a824SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,4);
47024989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
47124989b8cSPeter Brune   ierr = DMTSGetRHSFunction(dm,&rhsfunction,&ctx);CHKERRQ(ierr);
4720298fd71SBarry Smith   ierr = DMTSGetIFunction(dm,&ifunction,NULL);CHKERRQ(ierr);
473d763cef2SBarry Smith 
474ce94432eSBarry Smith   if (!rhsfunction && !ifunction) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSFunction() and / or TSSetIFunction()");
475d763cef2SBarry Smith 
4760910c330SBarry Smith   ierr = PetscLogEventBegin(TS_FunctionEval,ts,U,y,0);CHKERRQ(ierr);
47724989b8cSPeter Brune   if (rhsfunction) {
478d763cef2SBarry Smith     PetscStackPush("TS user right-hand-side function");
4790910c330SBarry Smith     ierr = (*rhsfunction)(ts,t,U,y,ctx);CHKERRQ(ierr);
480d763cef2SBarry Smith     PetscStackPop;
481214bc6a2SJed Brown   } else {
482214bc6a2SJed Brown     ierr = VecZeroEntries(y);CHKERRQ(ierr);
483b2cd27e8SJed Brown   }
48444a41b28SSean Farley 
4850910c330SBarry Smith   ierr = PetscLogEventEnd(TS_FunctionEval,ts,U,y,0);CHKERRQ(ierr);
486d763cef2SBarry Smith   PetscFunctionReturn(0);
487d763cef2SBarry Smith }
488d763cef2SBarry Smith 
4894a2ae208SSatish Balay #undef __FUNCT__
490ef20d060SBarry Smith #define __FUNCT__ "TSComputeSolutionFunction"
491ef20d060SBarry Smith /*@
492ef20d060SBarry Smith    TSComputeSolutionFunction - Evaluates the solution function.
493ef20d060SBarry Smith 
494ef20d060SBarry Smith    Collective on TS and Vec
495ef20d060SBarry Smith 
496ef20d060SBarry Smith    Input Parameters:
497ef20d060SBarry Smith +  ts - the TS context
498ef20d060SBarry Smith -  t - current time
499ef20d060SBarry Smith 
500ef20d060SBarry Smith    Output Parameter:
5010910c330SBarry Smith .  U - the solution
502ef20d060SBarry Smith 
503ef20d060SBarry Smith    Note:
504ef20d060SBarry Smith    Most users should not need to explicitly call this routine, as it
505ef20d060SBarry Smith    is used internally within the nonlinear solvers.
506ef20d060SBarry Smith 
507ef20d060SBarry Smith    Level: developer
508ef20d060SBarry Smith 
509ef20d060SBarry Smith .keywords: TS, compute
510ef20d060SBarry Smith 
511abd5a294SJed Brown .seealso: TSSetSolutionFunction(), TSSetRHSFunction(), TSComputeIFunction()
512ef20d060SBarry Smith @*/
5130910c330SBarry Smith PetscErrorCode TSComputeSolutionFunction(TS ts,PetscReal t,Vec U)
514ef20d060SBarry Smith {
515ef20d060SBarry Smith   PetscErrorCode     ierr;
516ef20d060SBarry Smith   TSSolutionFunction solutionfunction;
517ef20d060SBarry Smith   void               *ctx;
518ef20d060SBarry Smith   DM                 dm;
519ef20d060SBarry Smith 
520ef20d060SBarry Smith   PetscFunctionBegin;
521ef20d060SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5220910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
523ef20d060SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
524ef20d060SBarry Smith   ierr = DMTSGetSolutionFunction(dm,&solutionfunction,&ctx);CHKERRQ(ierr);
525ef20d060SBarry Smith 
526ef20d060SBarry Smith   if (solutionfunction) {
5279b7cd975SBarry Smith     PetscStackPush("TS user solution function");
5280910c330SBarry Smith     ierr = (*solutionfunction)(ts,t,U,ctx);CHKERRQ(ierr);
529ef20d060SBarry Smith     PetscStackPop;
530ef20d060SBarry Smith   }
531ef20d060SBarry Smith   PetscFunctionReturn(0);
532ef20d060SBarry Smith }
5339b7cd975SBarry Smith #undef __FUNCT__
5349b7cd975SBarry Smith #define __FUNCT__ "TSComputeForcingFunction"
5359b7cd975SBarry Smith /*@
5369b7cd975SBarry Smith    TSComputeForcingFunction - Evaluates the forcing function.
5379b7cd975SBarry Smith 
5389b7cd975SBarry Smith    Collective on TS and Vec
5399b7cd975SBarry Smith 
5409b7cd975SBarry Smith    Input Parameters:
5419b7cd975SBarry Smith +  ts - the TS context
5429b7cd975SBarry Smith -  t - current time
5439b7cd975SBarry Smith 
5449b7cd975SBarry Smith    Output Parameter:
5459b7cd975SBarry Smith .  U - the function value
5469b7cd975SBarry Smith 
5479b7cd975SBarry Smith    Note:
5489b7cd975SBarry Smith    Most users should not need to explicitly call this routine, as it
5499b7cd975SBarry Smith    is used internally within the nonlinear solvers.
5509b7cd975SBarry Smith 
5519b7cd975SBarry Smith    Level: developer
5529b7cd975SBarry Smith 
5539b7cd975SBarry Smith .keywords: TS, compute
5549b7cd975SBarry Smith 
5559b7cd975SBarry Smith .seealso: TSSetSolutionFunction(), TSSetRHSFunction(), TSComputeIFunction()
5569b7cd975SBarry Smith @*/
5579b7cd975SBarry Smith PetscErrorCode TSComputeForcingFunction(TS ts,PetscReal t,Vec U)
5589b7cd975SBarry Smith {
5599b7cd975SBarry Smith   PetscErrorCode     ierr, (*forcing)(TS,PetscReal,Vec,void*);
5609b7cd975SBarry Smith   void               *ctx;
5619b7cd975SBarry Smith   DM                 dm;
5629b7cd975SBarry Smith 
5639b7cd975SBarry Smith   PetscFunctionBegin;
5649b7cd975SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5659b7cd975SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
5669b7cd975SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
5679b7cd975SBarry Smith   ierr = DMTSGetForcingFunction(dm,&forcing,&ctx);CHKERRQ(ierr);
5689b7cd975SBarry Smith 
5699b7cd975SBarry Smith   if (forcing) {
5709b7cd975SBarry Smith     PetscStackPush("TS user forcing function");
5719b7cd975SBarry Smith     ierr = (*forcing)(ts,t,U,ctx);CHKERRQ(ierr);
5729b7cd975SBarry Smith     PetscStackPop;
5739b7cd975SBarry Smith   }
5749b7cd975SBarry Smith   PetscFunctionReturn(0);
5759b7cd975SBarry Smith }
576ef20d060SBarry Smith 
577ef20d060SBarry Smith #undef __FUNCT__
578214bc6a2SJed Brown #define __FUNCT__ "TSGetRHSVec_Private"
579214bc6a2SJed Brown static PetscErrorCode TSGetRHSVec_Private(TS ts,Vec *Frhs)
580214bc6a2SJed Brown {
5812dd45cf8SJed Brown   Vec            F;
582214bc6a2SJed Brown   PetscErrorCode ierr;
583214bc6a2SJed Brown 
584214bc6a2SJed Brown   PetscFunctionBegin;
5850298fd71SBarry Smith   *Frhs = NULL;
5860298fd71SBarry Smith   ierr  = TSGetIFunction(ts,&F,NULL,NULL);CHKERRQ(ierr);
587214bc6a2SJed Brown   if (!ts->Frhs) {
5882dd45cf8SJed Brown     ierr = VecDuplicate(F,&ts->Frhs);CHKERRQ(ierr);
589214bc6a2SJed Brown   }
590214bc6a2SJed Brown   *Frhs = ts->Frhs;
591214bc6a2SJed Brown   PetscFunctionReturn(0);
592214bc6a2SJed Brown }
593214bc6a2SJed Brown 
594214bc6a2SJed Brown #undef __FUNCT__
595214bc6a2SJed Brown #define __FUNCT__ "TSGetRHSMats_Private"
596214bc6a2SJed Brown static PetscErrorCode TSGetRHSMats_Private(TS ts,Mat *Arhs,Mat *Brhs)
597214bc6a2SJed Brown {
598214bc6a2SJed Brown   Mat            A,B;
5992dd45cf8SJed Brown   PetscErrorCode ierr;
600214bc6a2SJed Brown 
601214bc6a2SJed Brown   PetscFunctionBegin;
6020298fd71SBarry Smith   ierr = TSGetIJacobian(ts,&A,&B,NULL,NULL);CHKERRQ(ierr);
603214bc6a2SJed Brown   if (Arhs) {
604214bc6a2SJed Brown     if (!ts->Arhs) {
605214bc6a2SJed Brown       ierr = MatDuplicate(A,MAT_DO_NOT_COPY_VALUES,&ts->Arhs);CHKERRQ(ierr);
606214bc6a2SJed Brown     }
607214bc6a2SJed Brown     *Arhs = ts->Arhs;
608214bc6a2SJed Brown   }
609214bc6a2SJed Brown   if (Brhs) {
610214bc6a2SJed Brown     if (!ts->Brhs) {
611bdb70873SJed Brown       if (A != B) {
612214bc6a2SJed Brown         ierr = MatDuplicate(B,MAT_DO_NOT_COPY_VALUES,&ts->Brhs);CHKERRQ(ierr);
613bdb70873SJed Brown       } else {
614bdb70873SJed Brown         ts->Brhs = ts->Arhs;
615bdb70873SJed Brown         ierr = PetscObjectReference((PetscObject)ts->Arhs);CHKERRQ(ierr);
616bdb70873SJed Brown       }
617214bc6a2SJed Brown     }
618214bc6a2SJed Brown     *Brhs = ts->Brhs;
619214bc6a2SJed Brown   }
620214bc6a2SJed Brown   PetscFunctionReturn(0);
621214bc6a2SJed Brown }
622214bc6a2SJed Brown 
623214bc6a2SJed Brown #undef __FUNCT__
624316643e7SJed Brown #define __FUNCT__ "TSComputeIFunction"
625316643e7SJed Brown /*@
6260910c330SBarry Smith    TSComputeIFunction - Evaluates the DAE residual written in implicit form F(t,U,Udot)=0
627316643e7SJed Brown 
628316643e7SJed Brown    Collective on TS and Vec
629316643e7SJed Brown 
630316643e7SJed Brown    Input Parameters:
631316643e7SJed Brown +  ts - the TS context
632316643e7SJed Brown .  t - current time
6330910c330SBarry Smith .  U - state vector
6340910c330SBarry Smith .  Udot - time derivative of state vector
635214bc6a2SJed Brown -  imex - flag indicates if the method is IMEX so that the RHSFunction should be kept separate
636316643e7SJed Brown 
637316643e7SJed Brown    Output Parameter:
638316643e7SJed Brown .  Y - right hand side
639316643e7SJed Brown 
640316643e7SJed Brown    Note:
641316643e7SJed Brown    Most users should not need to explicitly call this routine, as it
642316643e7SJed Brown    is used internally within the nonlinear solvers.
643316643e7SJed Brown 
644316643e7SJed Brown    If the user did did not write their equations in implicit form, this
645316643e7SJed Brown    function recasts them in implicit form.
646316643e7SJed Brown 
647316643e7SJed Brown    Level: developer
648316643e7SJed Brown 
649316643e7SJed Brown .keywords: TS, compute
650316643e7SJed Brown 
651316643e7SJed Brown .seealso: TSSetIFunction(), TSComputeRHSFunction()
652316643e7SJed Brown @*/
6530910c330SBarry Smith PetscErrorCode TSComputeIFunction(TS ts,PetscReal t,Vec U,Vec Udot,Vec Y,PetscBool imex)
654316643e7SJed Brown {
655316643e7SJed Brown   PetscErrorCode ierr;
65624989b8cSPeter Brune   TSIFunction    ifunction;
65724989b8cSPeter Brune   TSRHSFunction  rhsfunction;
65824989b8cSPeter Brune   void           *ctx;
65924989b8cSPeter Brune   DM             dm;
660316643e7SJed Brown 
661316643e7SJed Brown   PetscFunctionBegin;
6620700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
6630910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
6640910c330SBarry Smith   PetscValidHeaderSpecific(Udot,VEC_CLASSID,4);
6650700a824SBarry Smith   PetscValidHeaderSpecific(Y,VEC_CLASSID,5);
666316643e7SJed Brown 
66724989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
66824989b8cSPeter Brune   ierr = DMTSGetIFunction(dm,&ifunction,&ctx);CHKERRQ(ierr);
6690298fd71SBarry Smith   ierr = DMTSGetRHSFunction(dm,&rhsfunction,NULL);CHKERRQ(ierr);
67024989b8cSPeter Brune 
671ce94432eSBarry Smith   if (!rhsfunction && !ifunction) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSFunction() and / or TSSetIFunction()");
672d90be118SSean Farley 
6730910c330SBarry Smith   ierr = PetscLogEventBegin(TS_FunctionEval,ts,U,Udot,Y);CHKERRQ(ierr);
67424989b8cSPeter Brune   if (ifunction) {
675316643e7SJed Brown     PetscStackPush("TS user implicit function");
6760910c330SBarry Smith     ierr = (*ifunction)(ts,t,U,Udot,Y,ctx);CHKERRQ(ierr);
677316643e7SJed Brown     PetscStackPop;
678214bc6a2SJed Brown   }
679214bc6a2SJed Brown   if (imex) {
68024989b8cSPeter Brune     if (!ifunction) {
6810910c330SBarry Smith       ierr = VecCopy(Udot,Y);CHKERRQ(ierr);
6822dd45cf8SJed Brown     }
68324989b8cSPeter Brune   } else if (rhsfunction) {
68424989b8cSPeter Brune     if (ifunction) {
685214bc6a2SJed Brown       Vec Frhs;
686214bc6a2SJed Brown       ierr = TSGetRHSVec_Private(ts,&Frhs);CHKERRQ(ierr);
6870910c330SBarry Smith       ierr = TSComputeRHSFunction(ts,t,U,Frhs);CHKERRQ(ierr);
688214bc6a2SJed Brown       ierr = VecAXPY(Y,-1,Frhs);CHKERRQ(ierr);
6892dd45cf8SJed Brown     } else {
6900910c330SBarry Smith       ierr = TSComputeRHSFunction(ts,t,U,Y);CHKERRQ(ierr);
6910910c330SBarry Smith       ierr = VecAYPX(Y,-1,Udot);CHKERRQ(ierr);
692316643e7SJed Brown     }
6934a6899ffSJed Brown   }
6940910c330SBarry Smith   ierr = PetscLogEventEnd(TS_FunctionEval,ts,U,Udot,Y);CHKERRQ(ierr);
695316643e7SJed Brown   PetscFunctionReturn(0);
696316643e7SJed Brown }
697316643e7SJed Brown 
698316643e7SJed Brown #undef __FUNCT__
699316643e7SJed Brown #define __FUNCT__ "TSComputeIJacobian"
700316643e7SJed Brown /*@
701316643e7SJed Brown    TSComputeIJacobian - Evaluates the Jacobian of the DAE
702316643e7SJed Brown 
703316643e7SJed Brown    Collective on TS and Vec
704316643e7SJed Brown 
705316643e7SJed Brown    Input
706316643e7SJed Brown       Input Parameters:
707316643e7SJed Brown +  ts - the TS context
708316643e7SJed Brown .  t - current timestep
7090910c330SBarry Smith .  U - state vector
7100910c330SBarry Smith .  Udot - time derivative of state vector
711214bc6a2SJed Brown .  shift - shift to apply, see note below
712214bc6a2SJed Brown -  imex - flag indicates if the method is IMEX so that the RHSJacobian should be kept separate
713316643e7SJed Brown 
714316643e7SJed Brown    Output Parameters:
715316643e7SJed Brown +  A - Jacobian matrix
716316643e7SJed Brown .  B - optional preconditioning matrix
717316643e7SJed Brown -  flag - flag indicating matrix structure
718316643e7SJed Brown 
719316643e7SJed Brown    Notes:
7200910c330SBarry Smith    If F(t,U,Udot)=0 is the DAE, the required Jacobian is
721316643e7SJed Brown 
7220910c330SBarry Smith    dF/dU + shift*dF/dUdot
723316643e7SJed Brown 
724316643e7SJed Brown    Most users should not need to explicitly call this routine, as it
725316643e7SJed Brown    is used internally within the nonlinear solvers.
726316643e7SJed Brown 
727316643e7SJed Brown    Level: developer
728316643e7SJed Brown 
729316643e7SJed Brown .keywords: TS, compute, Jacobian, matrix
730316643e7SJed Brown 
731316643e7SJed Brown .seealso:  TSSetIJacobian()
73263495f91SJed Brown @*/
7330910c330SBarry Smith PetscErrorCode TSComputeIJacobian(TS ts,PetscReal t,Vec U,Vec Udot,PetscReal shift,Mat *A,Mat *B,MatStructure *flg,PetscBool imex)
734316643e7SJed Brown {
735316643e7SJed Brown   PetscErrorCode ierr;
73624989b8cSPeter Brune   TSIJacobian    ijacobian;
73724989b8cSPeter Brune   TSRHSJacobian  rhsjacobian;
73824989b8cSPeter Brune   DM             dm;
73924989b8cSPeter Brune   void           *ctx;
740316643e7SJed Brown 
741316643e7SJed Brown   PetscFunctionBegin;
7420700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
7430910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
7440910c330SBarry Smith   PetscValidHeaderSpecific(Udot,VEC_CLASSID,4);
745316643e7SJed Brown   PetscValidPointer(A,6);
7460700a824SBarry Smith   PetscValidHeaderSpecific(*A,MAT_CLASSID,6);
747316643e7SJed Brown   PetscValidPointer(B,7);
7480700a824SBarry Smith   PetscValidHeaderSpecific(*B,MAT_CLASSID,7);
749316643e7SJed Brown   PetscValidPointer(flg,8);
75024989b8cSPeter Brune 
75124989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
75224989b8cSPeter Brune   ierr = DMTSGetIJacobian(dm,&ijacobian,&ctx);CHKERRQ(ierr);
7530298fd71SBarry Smith   ierr = DMTSGetRHSJacobian(dm,&rhsjacobian,NULL);CHKERRQ(ierr);
75424989b8cSPeter Brune 
755ce94432eSBarry Smith   if (!rhsjacobian && !ijacobian) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSJacobian() and / or TSSetIJacobian()");
756316643e7SJed Brown 
7574e684422SJed Brown   *flg = SAME_NONZERO_PATTERN;  /* In case we're solving a linear problem in which case it wouldn't get initialized below. */
7580910c330SBarry Smith   ierr = PetscLogEventBegin(TS_JacobianEval,ts,U,*A,*B);CHKERRQ(ierr);
75924989b8cSPeter Brune   if (ijacobian) {
7602dd45cf8SJed Brown     *flg = DIFFERENT_NONZERO_PATTERN;
761316643e7SJed Brown     PetscStackPush("TS user implicit Jacobian");
7620910c330SBarry Smith     ierr = (*ijacobian)(ts,t,U,Udot,shift,A,B,flg,ctx);CHKERRQ(ierr);
763316643e7SJed Brown     PetscStackPop;
764214bc6a2SJed Brown     /* make sure user returned a correct Jacobian and preconditioner */
765214bc6a2SJed Brown     PetscValidHeaderSpecific(*A,MAT_CLASSID,4);
766214bc6a2SJed Brown     PetscValidHeaderSpecific(*B,MAT_CLASSID,5);
7674a6899ffSJed Brown   }
768214bc6a2SJed Brown   if (imex) {
769b5abc632SBarry Smith     if (!ijacobian) {  /* system was written as Udot = G(t,U) */
770214bc6a2SJed Brown       ierr = MatZeroEntries(*A);CHKERRQ(ierr);
7712dd45cf8SJed Brown       ierr = MatShift(*A,shift);CHKERRQ(ierr);
772214bc6a2SJed Brown       if (*A != *B) {
773214bc6a2SJed Brown         ierr = MatZeroEntries(*B);CHKERRQ(ierr);
774214bc6a2SJed Brown         ierr = MatShift(*B,shift);CHKERRQ(ierr);
775214bc6a2SJed Brown       }
776214bc6a2SJed Brown       *flg = SAME_PRECONDITIONER;
777214bc6a2SJed Brown     }
778214bc6a2SJed Brown   } else {
779e1244c69SJed Brown     Mat Arhs = NULL,Brhs = NULL;
780e1244c69SJed Brown     MatStructure flg2;
781e1244c69SJed Brown     if (rhsjacobian) {
782*bd373395SBarry Smith       if (ijacobian) {
783e1244c69SJed Brown         ierr = TSGetRHSMats_Private(ts,&Arhs,&Brhs);CHKERRQ(ierr);
784*bd373395SBarry Smith       } else {
785*bd373395SBarry Smith         ierr = TSGetIJacobian(ts,&Arhs,&Brhs,NULL,NULL);CHKERRQ(ierr);
786*bd373395SBarry Smith       }
787e1244c69SJed Brown       ierr = TSComputeRHSJacobian(ts,t,U,&Arhs,&Brhs,&flg2);CHKERRQ(ierr);
788e1244c69SJed Brown     }
789e1244c69SJed Brown     if (Arhs == *A) {           /* No IJacobian, so we only have the RHS matrix */
790e1244c69SJed Brown       ts->rhsjacobian.scale = -1;
791e1244c69SJed Brown       ts->rhsjacobian.shift = shift;
792214bc6a2SJed Brown       ierr = MatScale(*A,-1);CHKERRQ(ierr);
793214bc6a2SJed Brown       ierr = MatShift(*A,shift);CHKERRQ(ierr);
794316643e7SJed Brown       if (*A != *B) {
795316643e7SJed Brown         ierr = MatScale(*B,-1);CHKERRQ(ierr);
796316643e7SJed Brown         ierr = MatShift(*B,shift);CHKERRQ(ierr);
797316643e7SJed Brown       }
798e1244c69SJed Brown     } else if (Arhs) {          /* Both IJacobian and RHSJacobian */
799e1244c69SJed Brown       MatStructure axpy = DIFFERENT_NONZERO_PATTERN;
800e1244c69SJed Brown       if (!ijacobian) {         /* No IJacobian provided, but we have a separate RHS matrix */
801e1244c69SJed Brown         ierr = MatZeroEntries(*A);CHKERRQ(ierr);
802e1244c69SJed Brown         ierr = MatShift(*A,shift);CHKERRQ(ierr);
803e1244c69SJed Brown         if (*A != *B) {
804e1244c69SJed Brown           ierr = MatZeroEntries(*B);CHKERRQ(ierr);
805e1244c69SJed Brown           ierr = MatShift(*B,shift);CHKERRQ(ierr);
806e1244c69SJed Brown         }
807e1244c69SJed Brown       }
808214bc6a2SJed Brown       ierr = MatAXPY(*A,-1,Arhs,axpy);CHKERRQ(ierr);
809214bc6a2SJed Brown       if (*A != *B) {
810214bc6a2SJed Brown         ierr = MatAXPY(*B,-1,Brhs,axpy);CHKERRQ(ierr);
811214bc6a2SJed Brown       }
812214bc6a2SJed Brown       *flg = PetscMin(*flg,flg2);
813214bc6a2SJed Brown     }
814316643e7SJed Brown   }
8150026cea9SSean Farley 
8160910c330SBarry Smith   ierr = PetscLogEventEnd(TS_JacobianEval,ts,U,*A,*B);CHKERRQ(ierr);
817316643e7SJed Brown   PetscFunctionReturn(0);
818316643e7SJed Brown }
819316643e7SJed Brown 
820316643e7SJed Brown #undef __FUNCT__
8214a2ae208SSatish Balay #define __FUNCT__ "TSSetRHSFunction"
822d763cef2SBarry Smith /*@C
823d763cef2SBarry Smith     TSSetRHSFunction - Sets the routine for evaluating the function,
824b5abc632SBarry Smith     where U_t = G(t,u).
825d763cef2SBarry Smith 
8263f9fe445SBarry Smith     Logically Collective on TS
827d763cef2SBarry Smith 
828d763cef2SBarry Smith     Input Parameters:
829d763cef2SBarry Smith +   ts - the TS context obtained from TSCreate()
8300298fd71SBarry Smith .   r - vector to put the computed right hand side (or NULL to have it created)
831d763cef2SBarry Smith .   f - routine for evaluating the right-hand-side function
832d763cef2SBarry Smith -   ctx - [optional] user-defined context for private data for the
8330298fd71SBarry Smith           function evaluation routine (may be NULL)
834d763cef2SBarry Smith 
835d763cef2SBarry Smith     Calling sequence of func:
83687828ca2SBarry Smith $     func (TS ts,PetscReal t,Vec u,Vec F,void *ctx);
837d763cef2SBarry Smith 
838d763cef2SBarry Smith +   t - current timestep
839d763cef2SBarry Smith .   u - input vector
840d763cef2SBarry Smith .   F - function vector
841d763cef2SBarry Smith -   ctx - [optional] user-defined function context
842d763cef2SBarry Smith 
843d763cef2SBarry Smith     Level: beginner
844d763cef2SBarry Smith 
845d763cef2SBarry Smith .keywords: TS, timestep, set, right-hand-side, function
846d763cef2SBarry Smith 
847d6cbdb99SBarry Smith .seealso: TSSetRHSJacobian(), TSSetIJacobian()
848d763cef2SBarry Smith @*/
849089b2837SJed Brown PetscErrorCode  TSSetRHSFunction(TS ts,Vec r,PetscErrorCode (*f)(TS,PetscReal,Vec,Vec,void*),void *ctx)
850d763cef2SBarry Smith {
851089b2837SJed Brown   PetscErrorCode ierr;
852089b2837SJed Brown   SNES           snes;
8530298fd71SBarry Smith   Vec            ralloc = NULL;
85424989b8cSPeter Brune   DM             dm;
855d763cef2SBarry Smith 
856089b2837SJed Brown   PetscFunctionBegin;
8570700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
858ca94891dSJed Brown   if (r) PetscValidHeaderSpecific(r,VEC_CLASSID,2);
85924989b8cSPeter Brune 
86024989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
86124989b8cSPeter Brune   ierr = DMTSSetRHSFunction(dm,f,ctx);CHKERRQ(ierr);
862089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
863e856ceecSJed Brown   if (!r && !ts->dm && ts->vec_sol) {
864e856ceecSJed Brown     ierr = VecDuplicate(ts->vec_sol,&ralloc);CHKERRQ(ierr);
865e856ceecSJed Brown     r    = ralloc;
866e856ceecSJed Brown   }
867089b2837SJed Brown   ierr = SNESSetFunction(snes,r,SNESTSFormFunction,ts);CHKERRQ(ierr);
868e856ceecSJed Brown   ierr = VecDestroy(&ralloc);CHKERRQ(ierr);
869d763cef2SBarry Smith   PetscFunctionReturn(0);
870d763cef2SBarry Smith }
871d763cef2SBarry Smith 
8724a2ae208SSatish Balay #undef __FUNCT__
873ef20d060SBarry Smith #define __FUNCT__ "TSSetSolutionFunction"
874ef20d060SBarry Smith /*@C
875abd5a294SJed Brown     TSSetSolutionFunction - Provide a function that computes the solution of the ODE or DAE
876ef20d060SBarry Smith 
877ef20d060SBarry Smith     Logically Collective on TS
878ef20d060SBarry Smith 
879ef20d060SBarry Smith     Input Parameters:
880ef20d060SBarry Smith +   ts - the TS context obtained from TSCreate()
881ef20d060SBarry Smith .   f - routine for evaluating the solution
882ef20d060SBarry Smith -   ctx - [optional] user-defined context for private data for the
8830298fd71SBarry Smith           function evaluation routine (may be NULL)
884ef20d060SBarry Smith 
885ef20d060SBarry Smith     Calling sequence of func:
886ef20d060SBarry Smith $     func (TS ts,PetscReal t,Vec u,void *ctx);
887ef20d060SBarry Smith 
888ef20d060SBarry Smith +   t - current timestep
889ef20d060SBarry Smith .   u - output vector
890ef20d060SBarry Smith -   ctx - [optional] user-defined function context
891ef20d060SBarry Smith 
892abd5a294SJed Brown     Notes:
893abd5a294SJed Brown     This routine is used for testing accuracy of time integration schemes when you already know the solution.
894abd5a294SJed Brown     If analytic solutions are not known for your system, consider using the Method of Manufactured Solutions to
895abd5a294SJed Brown     create closed-form solutions with non-physical forcing terms.
896abd5a294SJed Brown 
8974f09c107SBarry Smith     For low-dimensional problems solved in serial, such as small discrete systems, TSMonitorLGError() can be used to monitor the error history.
898abd5a294SJed Brown 
899ef20d060SBarry Smith     Level: beginner
900ef20d060SBarry Smith 
901ef20d060SBarry Smith .keywords: TS, timestep, set, right-hand-side, function
902ef20d060SBarry Smith 
9039b7cd975SBarry Smith .seealso: TSSetRHSJacobian(), TSSetIJacobian(), TSComputeSolutionFunction(), TSSetForcingFunction()
904ef20d060SBarry Smith @*/
905ef20d060SBarry Smith PetscErrorCode  TSSetSolutionFunction(TS ts,PetscErrorCode (*f)(TS,PetscReal,Vec,void*),void *ctx)
906ef20d060SBarry Smith {
907ef20d060SBarry Smith   PetscErrorCode ierr;
908ef20d060SBarry Smith   DM             dm;
909ef20d060SBarry Smith 
910ef20d060SBarry Smith   PetscFunctionBegin;
911ef20d060SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
912ef20d060SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
913ef20d060SBarry Smith   ierr = DMTSSetSolutionFunction(dm,f,ctx);CHKERRQ(ierr);
914ef20d060SBarry Smith   PetscFunctionReturn(0);
915ef20d060SBarry Smith }
916ef20d060SBarry Smith 
917ef20d060SBarry Smith #undef __FUNCT__
9189b7cd975SBarry Smith #define __FUNCT__ "TSSetForcingFunction"
9199b7cd975SBarry Smith /*@C
9209b7cd975SBarry Smith     TSSetForcingFunction - Provide a function that computes a forcing term for a ODE or PDE
9219b7cd975SBarry Smith 
9229b7cd975SBarry Smith     Logically Collective on TS
9239b7cd975SBarry Smith 
9249b7cd975SBarry Smith     Input Parameters:
9259b7cd975SBarry Smith +   ts - the TS context obtained from TSCreate()
9269b7cd975SBarry Smith .   f - routine for evaluating the forcing function
9279b7cd975SBarry Smith -   ctx - [optional] user-defined context for private data for the
9280298fd71SBarry Smith           function evaluation routine (may be NULL)
9299b7cd975SBarry Smith 
9309b7cd975SBarry Smith     Calling sequence of func:
9319b7cd975SBarry Smith $     func (TS ts,PetscReal t,Vec u,void *ctx);
9329b7cd975SBarry Smith 
9339b7cd975SBarry Smith +   t - current timestep
9349b7cd975SBarry Smith .   u - output vector
9359b7cd975SBarry Smith -   ctx - [optional] user-defined function context
9369b7cd975SBarry Smith 
9379b7cd975SBarry Smith     Notes:
9389b7cd975SBarry Smith     This routine is useful for testing accuracy of time integration schemes when using the Method of Manufactured Solutions to
9399b7cd975SBarry Smith     create closed-form solutions with a non-physical forcing term.
9409b7cd975SBarry Smith 
9419b7cd975SBarry Smith     For low-dimensional problems solved in serial, such as small discrete systems, TSMonitorLGError() can be used to monitor the error history.
9429b7cd975SBarry Smith 
9439b7cd975SBarry Smith     Level: beginner
9449b7cd975SBarry Smith 
9459b7cd975SBarry Smith .keywords: TS, timestep, set, right-hand-side, function
9469b7cd975SBarry Smith 
9479b7cd975SBarry Smith .seealso: TSSetRHSJacobian(), TSSetIJacobian(), TSComputeSolutionFunction(), TSSetSolutionFunction()
9489b7cd975SBarry Smith @*/
9499b7cd975SBarry Smith PetscErrorCode  TSSetForcingFunction(TS ts,PetscErrorCode (*f)(TS,PetscReal,Vec,void*),void *ctx)
9509b7cd975SBarry Smith {
9519b7cd975SBarry Smith   PetscErrorCode ierr;
9529b7cd975SBarry Smith   DM             dm;
9539b7cd975SBarry Smith 
9549b7cd975SBarry Smith   PetscFunctionBegin;
9559b7cd975SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
9569b7cd975SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
9579b7cd975SBarry Smith   ierr = DMTSSetForcingFunction(dm,f,ctx);CHKERRQ(ierr);
9589b7cd975SBarry Smith   PetscFunctionReturn(0);
9599b7cd975SBarry Smith }
9609b7cd975SBarry Smith 
9619b7cd975SBarry Smith #undef __FUNCT__
9624a2ae208SSatish Balay #define __FUNCT__ "TSSetRHSJacobian"
963d763cef2SBarry Smith /*@C
964d763cef2SBarry Smith    TSSetRHSJacobian - Sets the function to compute the Jacobian of F,
965b5abc632SBarry Smith    where U_t = G(U,t), as well as the location to store the matrix.
966d763cef2SBarry Smith 
9673f9fe445SBarry Smith    Logically Collective on TS
968d763cef2SBarry Smith 
969d763cef2SBarry Smith    Input Parameters:
970d763cef2SBarry Smith +  ts  - the TS context obtained from TSCreate()
971e5d3d808SBarry Smith .  Amat - (approximate) Jacobian matrix
972e5d3d808SBarry Smith .  Pmat - matrix from which preconditioner is to be constructed (usually the same as Amat)
973d763cef2SBarry Smith .  f   - the Jacobian evaluation routine
974d763cef2SBarry Smith -  ctx - [optional] user-defined context for private data for the
9750298fd71SBarry Smith          Jacobian evaluation routine (may be NULL)
976d763cef2SBarry Smith 
977d763cef2SBarry Smith    Calling sequence of func:
97887828ca2SBarry Smith $     func (TS ts,PetscReal t,Vec u,Mat *A,Mat *B,MatStructure *flag,void *ctx);
979d763cef2SBarry Smith 
980d763cef2SBarry Smith +  t - current timestep
981d763cef2SBarry Smith .  u - input vector
982e5d3d808SBarry Smith .  Amat - (approximate) Jacobian matrix
983e5d3d808SBarry Smith .  Pmat - matrix from which preconditioner is to be constructed (usually the same as Amat)
984d763cef2SBarry Smith .  flag - flag indicating information about the preconditioner matrix
98594b7f48cSBarry Smith           structure (same as flag in KSPSetOperators())
986d763cef2SBarry Smith -  ctx - [optional] user-defined context for matrix evaluation routine
987d763cef2SBarry Smith 
988d763cef2SBarry Smith    Notes:
98994b7f48cSBarry Smith    See KSPSetOperators() for important information about setting the flag
990d763cef2SBarry Smith    output parameter in the routine func().  Be sure to read this information!
991d763cef2SBarry Smith 
992d763cef2SBarry Smith    The routine func() takes Mat * as the matrix arguments rather than Mat.
993d763cef2SBarry Smith    This allows the matrix evaluation routine to replace A and/or B with a
99456335db2SHong Zhang    completely new matrix structure (not just different matrix elements)
995d763cef2SBarry Smith    when appropriate, for instance, if the nonzero structure is changing
996d763cef2SBarry Smith    throughout the global iterations.
997d763cef2SBarry Smith 
998d763cef2SBarry Smith    Level: beginner
999d763cef2SBarry Smith 
1000d763cef2SBarry Smith .keywords: TS, timestep, set, right-hand-side, Jacobian
1001d763cef2SBarry Smith 
1002e1244c69SJed Brown .seealso: SNESComputeJacobianDefaultColor(), TSSetRHSFunction(), TSRHSJacobianSetReuse()
1003d763cef2SBarry Smith 
1004d763cef2SBarry Smith @*/
1005e5d3d808SBarry Smith PetscErrorCode  TSSetRHSJacobian(TS ts,Mat Amat,Mat Pmat,TSRHSJacobian f,void *ctx)
1006d763cef2SBarry Smith {
1007277b19d0SLisandro Dalcin   PetscErrorCode ierr;
1008089b2837SJed Brown   SNES           snes;
100924989b8cSPeter Brune   DM             dm;
101024989b8cSPeter Brune   TSIJacobian    ijacobian;
1011277b19d0SLisandro Dalcin 
1012d763cef2SBarry Smith   PetscFunctionBegin;
10130700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1014e5d3d808SBarry Smith   if (Amat) PetscValidHeaderSpecific(Amat,MAT_CLASSID,2);
1015e5d3d808SBarry Smith   if (Pmat) PetscValidHeaderSpecific(Pmat,MAT_CLASSID,3);
1016e5d3d808SBarry Smith   if (Amat) PetscCheckSameComm(ts,1,Amat,2);
1017e5d3d808SBarry Smith   if (Pmat) PetscCheckSameComm(ts,1,Pmat,3);
1018d763cef2SBarry Smith 
101924989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
102024989b8cSPeter Brune   ierr = DMTSSetRHSJacobian(dm,f,ctx);CHKERRQ(ierr);
1021e1244c69SJed Brown   if (f == TSComputeRHSJacobianConstant) {
1022e1244c69SJed Brown     /* Handle this case automatically for the user; otherwise user should call themselves. */
1023e1244c69SJed Brown     ierr = TSRHSJacobianSetReuse(ts,PETSC_TRUE);CHKERRQ(ierr);
1024e1244c69SJed Brown   }
10250298fd71SBarry Smith   ierr = DMTSGetIJacobian(dm,&ijacobian,NULL);CHKERRQ(ierr);
1026089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
10275f659677SPeter Brune   if (!ijacobian) {
1028e5d3d808SBarry Smith     ierr = SNESSetJacobian(snes,Amat,Pmat,SNESTSFormJacobian,ts);CHKERRQ(ierr);
10290e4ef248SJed Brown   }
1030e5d3d808SBarry Smith   if (Amat) {
1031e5d3d808SBarry Smith     ierr = PetscObjectReference((PetscObject)Amat);CHKERRQ(ierr);
10320e4ef248SJed Brown     ierr = MatDestroy(&ts->Arhs);CHKERRQ(ierr);
1033bbd56ea5SKarl Rupp 
1034e5d3d808SBarry Smith     ts->Arhs = Amat;
10350e4ef248SJed Brown   }
1036e5d3d808SBarry Smith   if (Pmat) {
1037e5d3d808SBarry Smith     ierr = PetscObjectReference((PetscObject)Pmat);CHKERRQ(ierr);
10380e4ef248SJed Brown     ierr = MatDestroy(&ts->Brhs);CHKERRQ(ierr);
1039bbd56ea5SKarl Rupp 
1040e5d3d808SBarry Smith     ts->Brhs = Pmat;
10410e4ef248SJed Brown   }
1042d763cef2SBarry Smith   PetscFunctionReturn(0);
1043d763cef2SBarry Smith }
1044d763cef2SBarry Smith 
1045316643e7SJed Brown 
1046316643e7SJed Brown #undef __FUNCT__
1047316643e7SJed Brown #define __FUNCT__ "TSSetIFunction"
1048316643e7SJed Brown /*@C
1049b5abc632SBarry Smith    TSSetIFunction - Set the function to compute F(t,U,U_t) where F() = 0 is the DAE to be solved.
1050316643e7SJed Brown 
10513f9fe445SBarry Smith    Logically Collective on TS
1052316643e7SJed Brown 
1053316643e7SJed Brown    Input Parameters:
1054316643e7SJed Brown +  ts  - the TS context obtained from TSCreate()
10550298fd71SBarry Smith .  r   - vector to hold the residual (or NULL to have it created internally)
1056316643e7SJed Brown .  f   - the function evaluation routine
10570298fd71SBarry Smith -  ctx - user-defined context for private data for the function evaluation routine (may be NULL)
1058316643e7SJed Brown 
1059316643e7SJed Brown    Calling sequence of f:
1060316643e7SJed Brown $  f(TS ts,PetscReal t,Vec u,Vec u_t,Vec F,ctx);
1061316643e7SJed Brown 
1062316643e7SJed Brown +  t   - time at step/stage being solved
1063316643e7SJed Brown .  u   - state vector
1064316643e7SJed Brown .  u_t - time derivative of state vector
1065316643e7SJed Brown .  F   - function vector
1066316643e7SJed Brown -  ctx - [optional] user-defined context for matrix evaluation routine
1067316643e7SJed Brown 
1068316643e7SJed Brown    Important:
1069d6cbdb99SBarry Smith    The user MUST call either this routine, TSSetRHSFunction().  This routine must be used when not solving an ODE, for example a DAE.
1070316643e7SJed Brown 
1071316643e7SJed Brown    Level: beginner
1072316643e7SJed Brown 
1073316643e7SJed Brown .keywords: TS, timestep, set, DAE, Jacobian
1074316643e7SJed Brown 
1075d6cbdb99SBarry Smith .seealso: TSSetRHSJacobian(), TSSetRHSFunction(), TSSetIJacobian()
1076316643e7SJed Brown @*/
1077089b2837SJed Brown PetscErrorCode  TSSetIFunction(TS ts,Vec res,TSIFunction f,void *ctx)
1078316643e7SJed Brown {
1079089b2837SJed Brown   PetscErrorCode ierr;
1080089b2837SJed Brown   SNES           snes;
10810298fd71SBarry Smith   Vec            resalloc = NULL;
108224989b8cSPeter Brune   DM             dm;
1083316643e7SJed Brown 
1084316643e7SJed Brown   PetscFunctionBegin;
10850700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1086ca94891dSJed Brown   if (res) PetscValidHeaderSpecific(res,VEC_CLASSID,2);
108724989b8cSPeter Brune 
108824989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
108924989b8cSPeter Brune   ierr = DMTSSetIFunction(dm,f,ctx);CHKERRQ(ierr);
109024989b8cSPeter Brune 
1091089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
1092e856ceecSJed Brown   if (!res && !ts->dm && ts->vec_sol) {
1093e856ceecSJed Brown     ierr = VecDuplicate(ts->vec_sol,&resalloc);CHKERRQ(ierr);
1094e856ceecSJed Brown     res  = resalloc;
1095e856ceecSJed Brown   }
1096089b2837SJed Brown   ierr = SNESSetFunction(snes,res,SNESTSFormFunction,ts);CHKERRQ(ierr);
1097e856ceecSJed Brown   ierr = VecDestroy(&resalloc);CHKERRQ(ierr);
1098089b2837SJed Brown   PetscFunctionReturn(0);
1099089b2837SJed Brown }
1100089b2837SJed Brown 
1101089b2837SJed Brown #undef __FUNCT__
1102089b2837SJed Brown #define __FUNCT__ "TSGetIFunction"
1103089b2837SJed Brown /*@C
1104089b2837SJed Brown    TSGetIFunction - Returns the vector where the implicit residual is stored and the function/contex to compute it.
1105089b2837SJed Brown 
1106089b2837SJed Brown    Not Collective
1107089b2837SJed Brown 
1108089b2837SJed Brown    Input Parameter:
1109089b2837SJed Brown .  ts - the TS context
1110089b2837SJed Brown 
1111089b2837SJed Brown    Output Parameter:
11120298fd71SBarry Smith +  r - vector to hold residual (or NULL)
11130298fd71SBarry Smith .  func - the function to compute residual (or NULL)
11140298fd71SBarry Smith -  ctx - the function context (or NULL)
1115089b2837SJed Brown 
1116089b2837SJed Brown    Level: advanced
1117089b2837SJed Brown 
1118089b2837SJed Brown .keywords: TS, nonlinear, get, function
1119089b2837SJed Brown 
1120089b2837SJed Brown .seealso: TSSetIFunction(), SNESGetFunction()
1121089b2837SJed Brown @*/
1122089b2837SJed Brown PetscErrorCode TSGetIFunction(TS ts,Vec *r,TSIFunction *func,void **ctx)
1123089b2837SJed Brown {
1124089b2837SJed Brown   PetscErrorCode ierr;
1125089b2837SJed Brown   SNES           snes;
112624989b8cSPeter Brune   DM             dm;
1127089b2837SJed Brown 
1128089b2837SJed Brown   PetscFunctionBegin;
1129089b2837SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1130089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
11310298fd71SBarry Smith   ierr = SNESGetFunction(snes,r,NULL,NULL);CHKERRQ(ierr);
113224989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
113324989b8cSPeter Brune   ierr = DMTSGetIFunction(dm,func,ctx);CHKERRQ(ierr);
1134089b2837SJed Brown   PetscFunctionReturn(0);
1135089b2837SJed Brown }
1136089b2837SJed Brown 
1137089b2837SJed Brown #undef __FUNCT__
1138089b2837SJed Brown #define __FUNCT__ "TSGetRHSFunction"
1139089b2837SJed Brown /*@C
1140089b2837SJed Brown    TSGetRHSFunction - Returns the vector where the right hand side is stored and the function/context to compute it.
1141089b2837SJed Brown 
1142089b2837SJed Brown    Not Collective
1143089b2837SJed Brown 
1144089b2837SJed Brown    Input Parameter:
1145089b2837SJed Brown .  ts - the TS context
1146089b2837SJed Brown 
1147089b2837SJed Brown    Output Parameter:
11480298fd71SBarry Smith +  r - vector to hold computed right hand side (or NULL)
11490298fd71SBarry Smith .  func - the function to compute right hand side (or NULL)
11500298fd71SBarry Smith -  ctx - the function context (or NULL)
1151089b2837SJed Brown 
1152089b2837SJed Brown    Level: advanced
1153089b2837SJed Brown 
1154089b2837SJed Brown .keywords: TS, nonlinear, get, function
1155089b2837SJed Brown 
1156089b2837SJed Brown .seealso: TSSetRhsfunction(), SNESGetFunction()
1157089b2837SJed Brown @*/
1158089b2837SJed Brown PetscErrorCode TSGetRHSFunction(TS ts,Vec *r,TSRHSFunction *func,void **ctx)
1159089b2837SJed Brown {
1160089b2837SJed Brown   PetscErrorCode ierr;
1161089b2837SJed Brown   SNES           snes;
116224989b8cSPeter Brune   DM             dm;
1163089b2837SJed Brown 
1164089b2837SJed Brown   PetscFunctionBegin;
1165089b2837SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1166089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
11670298fd71SBarry Smith   ierr = SNESGetFunction(snes,r,NULL,NULL);CHKERRQ(ierr);
116824989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
116924989b8cSPeter Brune   ierr = DMTSGetRHSFunction(dm,func,ctx);CHKERRQ(ierr);
1170316643e7SJed Brown   PetscFunctionReturn(0);
1171316643e7SJed Brown }
1172316643e7SJed Brown 
1173316643e7SJed Brown #undef __FUNCT__
1174316643e7SJed Brown #define __FUNCT__ "TSSetIJacobian"
1175316643e7SJed Brown /*@C
1176a4f0a591SBarry Smith    TSSetIJacobian - Set the function to compute the matrix dF/dU + a*dF/dU_t where F(t,U,U_t) is the function
1177a4f0a591SBarry Smith         you provided with TSSetIFunction().
1178316643e7SJed Brown 
11793f9fe445SBarry Smith    Logically Collective on TS
1180316643e7SJed Brown 
1181316643e7SJed Brown    Input Parameters:
1182316643e7SJed Brown +  ts  - the TS context obtained from TSCreate()
1183e5d3d808SBarry Smith .  Amat - (approximate) Jacobian matrix
1184e5d3d808SBarry Smith .  Pmat - matrix used to compute preconditioner (usually the same as Amat)
1185316643e7SJed Brown .  f   - the Jacobian evaluation routine
11860298fd71SBarry Smith -  ctx - user-defined context for private data for the Jacobian evaluation routine (may be NULL)
1187316643e7SJed Brown 
1188316643e7SJed Brown    Calling sequence of f:
1189e5d3d808SBarry Smith $  f(TS ts,PetscReal t,Vec U,Vec U_t,PetscReal a,Mat *Amat,Mat *Pmat,MatStructure *flag,void *ctx);
1190316643e7SJed Brown 
1191316643e7SJed Brown +  t    - time at step/stage being solved
11921b4a444bSJed Brown .  U    - state vector
11931b4a444bSJed Brown .  U_t  - time derivative of state vector
1194316643e7SJed Brown .  a    - shift
1195e5d3d808SBarry Smith .  Amat - (approximate) Jacobian of F(t,U,W+a*U), equivalent to dF/dU + a*dF/dU_t
1196e5d3d808SBarry Smith .  Pmat - matrix used for constructing preconditioner, usually the same as Amat
1197316643e7SJed Brown .  flag - flag indicating information about the preconditioner matrix
1198316643e7SJed Brown           structure (same as flag in KSPSetOperators())
1199316643e7SJed Brown -  ctx  - [optional] user-defined context for matrix evaluation routine
1200316643e7SJed Brown 
1201316643e7SJed Brown    Notes:
1202e5d3d808SBarry Smith    The matrices Amat and Pmat are exactly the matrices that are used by SNES for the nonlinear solve.
1203316643e7SJed Brown 
1204a4f0a591SBarry Smith    The matrix dF/dU + a*dF/dU_t you provide turns out to be
1205b5abc632SBarry Smith    the Jacobian of F(t,U,W+a*U) where F(t,U,U_t) = 0 is the DAE to be solved.
1206a4f0a591SBarry Smith    The time integrator internally approximates U_t by W+a*U where the positive "shift"
1207a4f0a591SBarry Smith    a and vector W depend on the integration method, step size, and past states. For example with
1208a4f0a591SBarry Smith    the backward Euler method a = 1/dt and W = -a*U(previous timestep) so
1209a4f0a591SBarry Smith    W + a*U = a*(U - U(previous timestep)) = (U - U(previous timestep))/dt
1210a4f0a591SBarry Smith 
1211316643e7SJed Brown    Level: beginner
1212316643e7SJed Brown 
1213316643e7SJed Brown .keywords: TS, timestep, DAE, Jacobian
1214316643e7SJed Brown 
12158d359177SBarry Smith .seealso: TSSetIFunction(), TSSetRHSJacobian(), SNESComputeJacobianDefaultColor(), SNESComputeJacobianDefault()
1216316643e7SJed Brown 
1217316643e7SJed Brown @*/
1218e5d3d808SBarry Smith PetscErrorCode  TSSetIJacobian(TS ts,Mat Amat,Mat Pmat,TSIJacobian f,void *ctx)
1219316643e7SJed Brown {
1220316643e7SJed Brown   PetscErrorCode ierr;
1221089b2837SJed Brown   SNES           snes;
122224989b8cSPeter Brune   DM             dm;
1223316643e7SJed Brown 
1224316643e7SJed Brown   PetscFunctionBegin;
12250700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1226e5d3d808SBarry Smith   if (Amat) PetscValidHeaderSpecific(Amat,MAT_CLASSID,2);
1227e5d3d808SBarry Smith   if (Pmat) PetscValidHeaderSpecific(Pmat,MAT_CLASSID,3);
1228e5d3d808SBarry Smith   if (Amat) PetscCheckSameComm(ts,1,Amat,2);
1229e5d3d808SBarry Smith   if (Pmat) PetscCheckSameComm(ts,1,Pmat,3);
123024989b8cSPeter Brune 
123124989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
123224989b8cSPeter Brune   ierr = DMTSSetIJacobian(dm,f,ctx);CHKERRQ(ierr);
123324989b8cSPeter Brune 
1234089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
1235e5d3d808SBarry Smith   ierr = SNESSetJacobian(snes,Amat,Pmat,SNESTSFormJacobian,ts);CHKERRQ(ierr);
1236316643e7SJed Brown   PetscFunctionReturn(0);
1237316643e7SJed Brown }
1238316643e7SJed Brown 
12394a2ae208SSatish Balay #undef __FUNCT__
1240e1244c69SJed Brown #define __FUNCT__ "TSRHSJacobianSetReuse"
1241e1244c69SJed Brown /*@
1242e1244c69SJed Brown    TSRHSJacobianSetReuse - restore RHS Jacobian before re-evaluating.  Without this flag, TS will change the sign and
1243e1244c69SJed Brown    shift the RHS Jacobian for a finite-time-step implicit solve, in which case the user function will need to recompute
1244e1244c69SJed Brown    the entire Jacobian.  The reuse flag must be set if the evaluation function will assume that the matrix entries have
1245e1244c69SJed Brown    not been changed by the TS.
1246e1244c69SJed Brown 
1247e1244c69SJed Brown    Logically Collective
1248e1244c69SJed Brown 
1249e1244c69SJed Brown    Input Arguments:
1250e1244c69SJed Brown +  ts - TS context obtained from TSCreate()
1251e1244c69SJed Brown -  reuse - PETSC_TRUE if the RHS Jacobian
1252e1244c69SJed Brown 
1253e1244c69SJed Brown    Level: intermediate
1254e1244c69SJed Brown 
1255e1244c69SJed Brown .seealso: TSSetRHSJacobian(), TSComputeRHSJacobianConstant()
1256e1244c69SJed Brown @*/
1257e1244c69SJed Brown PetscErrorCode TSRHSJacobianSetReuse(TS ts,PetscBool reuse)
1258e1244c69SJed Brown {
1259e1244c69SJed Brown   PetscFunctionBegin;
1260e1244c69SJed Brown   ts->rhsjacobian.reuse = reuse;
1261e1244c69SJed Brown   PetscFunctionReturn(0);
1262e1244c69SJed Brown }
1263e1244c69SJed Brown 
1264e1244c69SJed Brown #undef __FUNCT__
126555849f57SBarry Smith #define __FUNCT__ "TSLoad"
126655849f57SBarry Smith /*@C
126755849f57SBarry Smith   TSLoad - Loads a KSP that has been stored in binary  with KSPView().
126855849f57SBarry Smith 
126955849f57SBarry Smith   Collective on PetscViewer
127055849f57SBarry Smith 
127155849f57SBarry Smith   Input Parameters:
127255849f57SBarry Smith + newdm - the newly loaded TS, this needs to have been created with TSCreate() or
127355849f57SBarry Smith            some related function before a call to TSLoad().
127455849f57SBarry Smith - viewer - binary file viewer, obtained from PetscViewerBinaryOpen()
127555849f57SBarry Smith 
127655849f57SBarry Smith    Level: intermediate
127755849f57SBarry Smith 
127855849f57SBarry Smith   Notes:
127955849f57SBarry Smith    The type is determined by the data in the file, any type set into the TS before this call is ignored.
128055849f57SBarry Smith 
128155849f57SBarry Smith   Notes for advanced users:
128255849f57SBarry Smith   Most users should not need to know the details of the binary storage
128355849f57SBarry Smith   format, since TSLoad() and TSView() completely hide these details.
128455849f57SBarry Smith   But for anyone who's interested, the standard binary matrix storage
128555849f57SBarry Smith   format is
128655849f57SBarry Smith .vb
128755849f57SBarry Smith      has not yet been determined
128855849f57SBarry Smith .ve
128955849f57SBarry Smith 
129055849f57SBarry Smith .seealso: PetscViewerBinaryOpen(), TSView(), MatLoad(), VecLoad()
129155849f57SBarry Smith @*/
1292f2c2a1b9SBarry Smith PetscErrorCode  TSLoad(TS ts, PetscViewer viewer)
129355849f57SBarry Smith {
129455849f57SBarry Smith   PetscErrorCode ierr;
129555849f57SBarry Smith   PetscBool      isbinary;
129655849f57SBarry Smith   PetscInt       classid;
129755849f57SBarry Smith   char           type[256];
12982d53ad75SBarry Smith   DMTS           sdm;
1299ad6bc421SBarry Smith   DM             dm;
130055849f57SBarry Smith 
130155849f57SBarry Smith   PetscFunctionBegin;
1302f2c2a1b9SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
130355849f57SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
130455849f57SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
130555849f57SBarry Smith   if (!isbinary) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Invalid viewer; open viewer with PetscViewerBinaryOpen()");
130655849f57SBarry Smith 
130755849f57SBarry Smith   ierr = PetscViewerBinaryRead(viewer,&classid,1,PETSC_INT);CHKERRQ(ierr);
1308ce94432eSBarry Smith   if (classid != TS_FILE_CLASSID) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Not TS next in file");
130955849f57SBarry Smith   ierr = PetscViewerBinaryRead(viewer,type,256,PETSC_CHAR);CHKERRQ(ierr);
1310f2c2a1b9SBarry Smith   ierr = TSSetType(ts, type);CHKERRQ(ierr);
1311f2c2a1b9SBarry Smith   if (ts->ops->load) {
1312f2c2a1b9SBarry Smith     ierr = (*ts->ops->load)(ts,viewer);CHKERRQ(ierr);
1313f2c2a1b9SBarry Smith   }
1314ce94432eSBarry Smith   ierr = DMCreate(PetscObjectComm((PetscObject)ts),&dm);CHKERRQ(ierr);
1315ad6bc421SBarry Smith   ierr = DMLoad(dm,viewer);CHKERRQ(ierr);
1316ad6bc421SBarry Smith   ierr = TSSetDM(ts,dm);CHKERRQ(ierr);
1317f2c2a1b9SBarry Smith   ierr = DMCreateGlobalVector(ts->dm,&ts->vec_sol);CHKERRQ(ierr);
1318f2c2a1b9SBarry Smith   ierr = VecLoad(ts->vec_sol,viewer);CHKERRQ(ierr);
13192d53ad75SBarry Smith   ierr = DMGetDMTS(ts->dm,&sdm);CHKERRQ(ierr);
13202d53ad75SBarry Smith   ierr = DMTSLoad(sdm,viewer);CHKERRQ(ierr);
132155849f57SBarry Smith   PetscFunctionReturn(0);
132255849f57SBarry Smith }
132355849f57SBarry Smith 
13249804daf3SBarry Smith #include <petscdraw.h>
1325e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1326e04113cfSBarry Smith #include <petscviewersaws.h>
1327f05ece33SBarry Smith #endif
132855849f57SBarry Smith #undef __FUNCT__
13294a2ae208SSatish Balay #define __FUNCT__ "TSView"
13307e2c5f70SBarry Smith /*@C
1331d763cef2SBarry Smith     TSView - Prints the TS data structure.
1332d763cef2SBarry Smith 
13334c49b128SBarry Smith     Collective on TS
1334d763cef2SBarry Smith 
1335d763cef2SBarry Smith     Input Parameters:
1336d763cef2SBarry Smith +   ts - the TS context obtained from TSCreate()
1337d763cef2SBarry Smith -   viewer - visualization context
1338d763cef2SBarry Smith 
1339d763cef2SBarry Smith     Options Database Key:
1340d763cef2SBarry Smith .   -ts_view - calls TSView() at end of TSStep()
1341d763cef2SBarry Smith 
1342d763cef2SBarry Smith     Notes:
1343d763cef2SBarry Smith     The available visualization contexts include
1344b0a32e0cSBarry Smith +     PETSC_VIEWER_STDOUT_SELF - standard output (default)
1345b0a32e0cSBarry Smith -     PETSC_VIEWER_STDOUT_WORLD - synchronized standard
1346d763cef2SBarry Smith          output where only the first processor opens
1347d763cef2SBarry Smith          the file.  All other processors send their
1348d763cef2SBarry Smith          data to the first processor to print.
1349d763cef2SBarry Smith 
1350d763cef2SBarry Smith     The user can open an alternative visualization context with
1351b0a32e0cSBarry Smith     PetscViewerASCIIOpen() - output to a specified file.
1352d763cef2SBarry Smith 
1353d763cef2SBarry Smith     Level: beginner
1354d763cef2SBarry Smith 
1355d763cef2SBarry Smith .keywords: TS, timestep, view
1356d763cef2SBarry Smith 
1357b0a32e0cSBarry Smith .seealso: PetscViewerASCIIOpen()
1358d763cef2SBarry Smith @*/
13597087cfbeSBarry Smith PetscErrorCode  TSView(TS ts,PetscViewer viewer)
1360d763cef2SBarry Smith {
1361dfbe8321SBarry Smith   PetscErrorCode ierr;
136219fd82e9SBarry Smith   TSType         type;
13632b0a91c0SBarry Smith   PetscBool      iascii,isstring,isundials,isbinary,isdraw;
13642d53ad75SBarry Smith   DMTS           sdm;
1365e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1366f05ece33SBarry Smith   PetscBool      isams;
1367f05ece33SBarry Smith #endif
1368d763cef2SBarry Smith 
1369d763cef2SBarry Smith   PetscFunctionBegin;
13700700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
13713050cee2SBarry Smith   if (!viewer) {
1372ce94432eSBarry Smith     ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)ts),&viewer);CHKERRQ(ierr);
13733050cee2SBarry Smith   }
13740700a824SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
1375c9780b6fSBarry Smith   PetscCheckSameComm(ts,1,viewer,2);
1376fd16b177SBarry Smith 
1377251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr);
1378251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSTRING,&isstring);CHKERRQ(ierr);
137955849f57SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
13802b0a91c0SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
1381e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1382e04113cfSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSAWS,&isams);CHKERRQ(ierr);
1383f05ece33SBarry Smith #endif
138432077d6dSBarry Smith   if (iascii) {
1385dae58748SBarry Smith     ierr = PetscObjectPrintClassNamePrefixType((PetscObject)ts,viewer);CHKERRQ(ierr);
138677431f27SBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  maximum steps=%D\n",ts->max_steps);CHKERRQ(ierr);
1387a83599f4SBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  maximum time=%G\n",ts->max_time);CHKERRQ(ierr);
1388d763cef2SBarry Smith     if (ts->problem_type == TS_NONLINEAR) {
13895ef26d82SJed Brown       ierr = PetscViewerASCIIPrintf(viewer,"  total number of nonlinear solver iterations=%D\n",ts->snes_its);CHKERRQ(ierr);
1390c610991cSLisandro Dalcin       ierr = PetscViewerASCIIPrintf(viewer,"  total number of nonlinear solve failures=%D\n",ts->num_snes_failures);CHKERRQ(ierr);
1391d763cef2SBarry Smith     }
13925ef26d82SJed Brown     ierr = PetscViewerASCIIPrintf(viewer,"  total number of linear solver iterations=%D\n",ts->ksp_its);CHKERRQ(ierr);
1393193ac0bcSJed Brown     ierr = PetscViewerASCIIPrintf(viewer,"  total number of rejected steps=%D\n",ts->reject);CHKERRQ(ierr);
13942d53ad75SBarry Smith     ierr = DMGetDMTS(ts->dm,&sdm);CHKERRQ(ierr);
13952d53ad75SBarry Smith     ierr = DMTSView(sdm,viewer);CHKERRQ(ierr);
1396d52bd9f3SBarry Smith     if (ts->ops->view) {
1397d52bd9f3SBarry Smith       ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
1398d52bd9f3SBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
1399d52bd9f3SBarry Smith       ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
1400d52bd9f3SBarry Smith     }
14010f5bd95cSBarry Smith   } else if (isstring) {
1402a313700dSBarry Smith     ierr = TSGetType(ts,&type);CHKERRQ(ierr);
1403b0a32e0cSBarry Smith     ierr = PetscViewerStringSPrintf(viewer," %-7.7s",type);CHKERRQ(ierr);
140455849f57SBarry Smith   } else if (isbinary) {
140555849f57SBarry Smith     PetscInt    classid = TS_FILE_CLASSID;
140655849f57SBarry Smith     MPI_Comm    comm;
140755849f57SBarry Smith     PetscMPIInt rank;
140855849f57SBarry Smith     char        type[256];
140955849f57SBarry Smith 
141055849f57SBarry Smith     ierr = PetscObjectGetComm((PetscObject)ts,&comm);CHKERRQ(ierr);
141155849f57SBarry Smith     ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
141255849f57SBarry Smith     if (!rank) {
141355849f57SBarry Smith       ierr = PetscViewerBinaryWrite(viewer,&classid,1,PETSC_INT,PETSC_FALSE);CHKERRQ(ierr);
141455849f57SBarry Smith       ierr = PetscStrncpy(type,((PetscObject)ts)->type_name,256);CHKERRQ(ierr);
141555849f57SBarry Smith       ierr = PetscViewerBinaryWrite(viewer,type,256,PETSC_CHAR,PETSC_FALSE);CHKERRQ(ierr);
141655849f57SBarry Smith     }
141755849f57SBarry Smith     if (ts->ops->view) {
141855849f57SBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
141955849f57SBarry Smith     }
1420f2c2a1b9SBarry Smith     ierr = DMView(ts->dm,viewer);CHKERRQ(ierr);
1421f2c2a1b9SBarry Smith     ierr = VecView(ts->vec_sol,viewer);CHKERRQ(ierr);
14222d53ad75SBarry Smith     ierr = DMGetDMTS(ts->dm,&sdm);CHKERRQ(ierr);
14232d53ad75SBarry Smith     ierr = DMTSView(sdm,viewer);CHKERRQ(ierr);
14242b0a91c0SBarry Smith   } else if (isdraw) {
14252b0a91c0SBarry Smith     PetscDraw draw;
14262b0a91c0SBarry Smith     char      str[36];
142789fd9fafSBarry Smith     PetscReal x,y,bottom,h;
14282b0a91c0SBarry Smith 
14292b0a91c0SBarry Smith     ierr   = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
14302b0a91c0SBarry Smith     ierr   = PetscDrawGetCurrentPoint(draw,&x,&y);CHKERRQ(ierr);
14312b0a91c0SBarry Smith     ierr   = PetscStrcpy(str,"TS: ");CHKERRQ(ierr);
14322b0a91c0SBarry Smith     ierr   = PetscStrcat(str,((PetscObject)ts)->type_name);CHKERRQ(ierr);
14330298fd71SBarry Smith     ierr   = PetscDrawBoxedString(draw,x,y,PETSC_DRAW_BLACK,PETSC_DRAW_BLACK,str,NULL,&h);CHKERRQ(ierr);
143489fd9fafSBarry Smith     bottom = y - h;
14352b0a91c0SBarry Smith     ierr   = PetscDrawPushCurrentPoint(draw,x,bottom);CHKERRQ(ierr);
14362b0a91c0SBarry Smith     if (ts->ops->view) {
14372b0a91c0SBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
14382b0a91c0SBarry Smith     }
14392b0a91c0SBarry Smith     ierr = PetscDrawPopCurrentPoint(draw);CHKERRQ(ierr);
1440e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1441f05ece33SBarry Smith   } else if (isams) {
1442d45a07a7SBarry Smith     PetscMPIInt rank;
14432657e9d9SBarry Smith     const char  *name;
14442657e9d9SBarry Smith 
14452657e9d9SBarry Smith     ierr = PetscObjectGetName((PetscObject)ts,&name);CHKERRQ(ierr);
1446d45a07a7SBarry Smith     ierr = MPI_Comm_rank(PETSC_COMM_WORLD,&rank);CHKERRQ(ierr);
1447d45a07a7SBarry Smith     if (!((PetscObject)ts)->amsmem && !rank) {
1448d45a07a7SBarry Smith       char       dir[1024];
1449d45a07a7SBarry Smith 
1450e04113cfSBarry Smith       ierr = PetscObjectViewSAWs((PetscObject)ts,viewer);CHKERRQ(ierr);
1451a0931e03SBarry Smith       ierr = PetscSNPrintf(dir,1024,"/PETSc/Objects/%s/time_step",name);CHKERRQ(ierr);
14522657e9d9SBarry Smith       PetscStackCallSAWs(SAWs_Register,(dir,&ts->steps,1,SAWs_READ,SAWs_INT));
14532657e9d9SBarry Smith       ierr = PetscSNPrintf(dir,1024,"/PETSc/Objects/%s/time",name);CHKERRQ(ierr);
14542657e9d9SBarry Smith       PetscStackCallSAWs(SAWs_Register,(dir,&ts->ptime,1,SAWs_READ,SAWs_DOUBLE));
1455d763cef2SBarry Smith     }
14560acecf5bSBarry Smith     if (ts->ops->view) {
14570acecf5bSBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
14580acecf5bSBarry Smith     }
1459f05ece33SBarry Smith #endif
1460f05ece33SBarry Smith   }
1461f05ece33SBarry Smith 
1462b0a32e0cSBarry Smith   ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
1463251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)ts,TSSUNDIALS,&isundials);CHKERRQ(ierr);
1464b0a32e0cSBarry Smith   ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
1465d763cef2SBarry Smith   PetscFunctionReturn(0);
1466d763cef2SBarry Smith }
1467d763cef2SBarry Smith 
1468d763cef2SBarry Smith 
14694a2ae208SSatish Balay #undef __FUNCT__
14704a2ae208SSatish Balay #define __FUNCT__ "TSSetApplicationContext"
1471b07ff414SBarry Smith /*@
1472d763cef2SBarry Smith    TSSetApplicationContext - Sets an optional user-defined context for
1473d763cef2SBarry Smith    the timesteppers.
1474d763cef2SBarry Smith 
14753f9fe445SBarry Smith    Logically Collective on TS
1476d763cef2SBarry Smith 
1477d763cef2SBarry Smith    Input Parameters:
1478d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
1479d763cef2SBarry Smith -  usrP - optional user context
1480d763cef2SBarry Smith 
1481d763cef2SBarry Smith    Level: intermediate
1482d763cef2SBarry Smith 
1483d763cef2SBarry Smith .keywords: TS, timestep, set, application, context
1484d763cef2SBarry Smith 
1485d763cef2SBarry Smith .seealso: TSGetApplicationContext()
1486d763cef2SBarry Smith @*/
14877087cfbeSBarry Smith PetscErrorCode  TSSetApplicationContext(TS ts,void *usrP)
1488d763cef2SBarry Smith {
1489d763cef2SBarry Smith   PetscFunctionBegin;
14900700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1491d763cef2SBarry Smith   ts->user = usrP;
1492d763cef2SBarry Smith   PetscFunctionReturn(0);
1493d763cef2SBarry Smith }
1494d763cef2SBarry Smith 
14954a2ae208SSatish Balay #undef __FUNCT__
14964a2ae208SSatish Balay #define __FUNCT__ "TSGetApplicationContext"
1497b07ff414SBarry Smith /*@
1498d763cef2SBarry Smith     TSGetApplicationContext - Gets the user-defined context for the
1499d763cef2SBarry Smith     timestepper.
1500d763cef2SBarry Smith 
1501d763cef2SBarry Smith     Not Collective
1502d763cef2SBarry Smith 
1503d763cef2SBarry Smith     Input Parameter:
1504d763cef2SBarry Smith .   ts - the TS context obtained from TSCreate()
1505d763cef2SBarry Smith 
1506d763cef2SBarry Smith     Output Parameter:
1507d763cef2SBarry Smith .   usrP - user context
1508d763cef2SBarry Smith 
1509d763cef2SBarry Smith     Level: intermediate
1510d763cef2SBarry Smith 
1511d763cef2SBarry Smith .keywords: TS, timestep, get, application, context
1512d763cef2SBarry Smith 
1513d763cef2SBarry Smith .seealso: TSSetApplicationContext()
1514d763cef2SBarry Smith @*/
1515e71120c6SJed Brown PetscErrorCode  TSGetApplicationContext(TS ts,void *usrP)
1516d763cef2SBarry Smith {
1517d763cef2SBarry Smith   PetscFunctionBegin;
15180700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1519e71120c6SJed Brown   *(void**)usrP = ts->user;
1520d763cef2SBarry Smith   PetscFunctionReturn(0);
1521d763cef2SBarry Smith }
1522d763cef2SBarry Smith 
15234a2ae208SSatish Balay #undef __FUNCT__
15244a2ae208SSatish Balay #define __FUNCT__ "TSGetTimeStepNumber"
1525d763cef2SBarry Smith /*@
1526b8123daeSJed Brown    TSGetTimeStepNumber - Gets the number of time steps completed.
1527d763cef2SBarry Smith 
1528d763cef2SBarry Smith    Not Collective
1529d763cef2SBarry Smith 
1530d763cef2SBarry Smith    Input Parameter:
1531d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
1532d763cef2SBarry Smith 
1533d763cef2SBarry Smith    Output Parameter:
1534b8123daeSJed Brown .  iter - number of steps completed so far
1535d763cef2SBarry Smith 
1536d763cef2SBarry Smith    Level: intermediate
1537d763cef2SBarry Smith 
1538d763cef2SBarry Smith .keywords: TS, timestep, get, iteration, number
15399be3e283SDebojyoti Ghosh .seealso: TSGetTime(), TSGetTimeStep(), TSSetPreStep(), TSSetPreStage(), TSSetPostStage(), TSSetPostStep()
1540d763cef2SBarry Smith @*/
15417087cfbeSBarry Smith PetscErrorCode  TSGetTimeStepNumber(TS ts,PetscInt *iter)
1542d763cef2SBarry Smith {
1543d763cef2SBarry Smith   PetscFunctionBegin;
15440700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
15454482741eSBarry Smith   PetscValidIntPointer(iter,2);
1546d763cef2SBarry Smith   *iter = ts->steps;
1547d763cef2SBarry Smith   PetscFunctionReturn(0);
1548d763cef2SBarry Smith }
1549d763cef2SBarry Smith 
15504a2ae208SSatish Balay #undef __FUNCT__
15514a2ae208SSatish Balay #define __FUNCT__ "TSSetInitialTimeStep"
1552d763cef2SBarry Smith /*@
1553d763cef2SBarry Smith    TSSetInitialTimeStep - Sets the initial timestep to be used,
1554d763cef2SBarry Smith    as well as the initial time.
1555d763cef2SBarry Smith 
15563f9fe445SBarry Smith    Logically Collective on TS
1557d763cef2SBarry Smith 
1558d763cef2SBarry Smith    Input Parameters:
1559d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
1560d763cef2SBarry Smith .  initial_time - the initial time
1561d763cef2SBarry Smith -  time_step - the size of the timestep
1562d763cef2SBarry Smith 
1563d763cef2SBarry Smith    Level: intermediate
1564d763cef2SBarry Smith 
1565d763cef2SBarry Smith .seealso: TSSetTimeStep(), TSGetTimeStep()
1566d763cef2SBarry Smith 
1567d763cef2SBarry Smith .keywords: TS, set, initial, timestep
1568d763cef2SBarry Smith @*/
15697087cfbeSBarry Smith PetscErrorCode  TSSetInitialTimeStep(TS ts,PetscReal initial_time,PetscReal time_step)
1570d763cef2SBarry Smith {
1571e144a568SJed Brown   PetscErrorCode ierr;
1572e144a568SJed Brown 
1573d763cef2SBarry Smith   PetscFunctionBegin;
15740700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1575e144a568SJed Brown   ierr = TSSetTimeStep(ts,time_step);CHKERRQ(ierr);
1576d8cd7023SBarry Smith   ierr = TSSetTime(ts,initial_time);CHKERRQ(ierr);
1577d763cef2SBarry Smith   PetscFunctionReturn(0);
1578d763cef2SBarry Smith }
1579d763cef2SBarry Smith 
15804a2ae208SSatish Balay #undef __FUNCT__
15814a2ae208SSatish Balay #define __FUNCT__ "TSSetTimeStep"
1582d763cef2SBarry Smith /*@
1583d763cef2SBarry Smith    TSSetTimeStep - Allows one to reset the timestep at any time,
1584d763cef2SBarry Smith    useful for simple pseudo-timestepping codes.
1585d763cef2SBarry Smith 
15863f9fe445SBarry Smith    Logically Collective on TS
1587d763cef2SBarry Smith 
1588d763cef2SBarry Smith    Input Parameters:
1589d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
1590d763cef2SBarry Smith -  time_step - the size of the timestep
1591d763cef2SBarry Smith 
1592d763cef2SBarry Smith    Level: intermediate
1593d763cef2SBarry Smith 
1594d763cef2SBarry Smith .seealso: TSSetInitialTimeStep(), TSGetTimeStep()
1595d763cef2SBarry Smith 
1596d763cef2SBarry Smith .keywords: TS, set, timestep
1597d763cef2SBarry Smith @*/
15987087cfbeSBarry Smith PetscErrorCode  TSSetTimeStep(TS ts,PetscReal time_step)
1599d763cef2SBarry Smith {
1600d763cef2SBarry Smith   PetscFunctionBegin;
16010700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1602c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(ts,time_step,2);
1603d763cef2SBarry Smith   ts->time_step      = time_step;
160431748224SBarry Smith   ts->time_step_orig = time_step;
1605d763cef2SBarry Smith   PetscFunctionReturn(0);
1606d763cef2SBarry Smith }
1607d763cef2SBarry Smith 
16084a2ae208SSatish Balay #undef __FUNCT__
1609a43b19c4SJed Brown #define __FUNCT__ "TSSetExactFinalTime"
1610a43b19c4SJed Brown /*@
161149354f04SShri Abhyankar    TSSetExactFinalTime - Determines whether to adapt the final time step to
161249354f04SShri Abhyankar      match the exact final time, interpolate solution to the exact final time,
161349354f04SShri Abhyankar      or just return at the final time TS computed.
1614a43b19c4SJed Brown 
1615a43b19c4SJed Brown   Logically Collective on TS
1616a43b19c4SJed Brown 
1617a43b19c4SJed Brown    Input Parameter:
1618a43b19c4SJed Brown +   ts - the time-step context
161949354f04SShri Abhyankar -   eftopt - exact final time option
1620a43b19c4SJed Brown 
1621a43b19c4SJed Brown    Level: beginner
1622a43b19c4SJed Brown 
1623a2ea699eSBarry Smith .seealso: TSExactFinalTimeOption
1624a43b19c4SJed Brown @*/
162549354f04SShri Abhyankar PetscErrorCode  TSSetExactFinalTime(TS ts,TSExactFinalTimeOption eftopt)
1626a43b19c4SJed Brown {
1627a43b19c4SJed Brown   PetscFunctionBegin;
1628a43b19c4SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
162949354f04SShri Abhyankar   PetscValidLogicalCollectiveEnum(ts,eftopt,2);
163049354f04SShri Abhyankar   ts->exact_final_time = eftopt;
1631a43b19c4SJed Brown   PetscFunctionReturn(0);
1632a43b19c4SJed Brown }
1633a43b19c4SJed Brown 
1634a43b19c4SJed Brown #undef __FUNCT__
16354a2ae208SSatish Balay #define __FUNCT__ "TSGetTimeStep"
1636d763cef2SBarry Smith /*@
1637d763cef2SBarry Smith    TSGetTimeStep - Gets the current timestep size.
1638d763cef2SBarry Smith 
1639d763cef2SBarry Smith    Not Collective
1640d763cef2SBarry Smith 
1641d763cef2SBarry Smith    Input Parameter:
1642d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
1643d763cef2SBarry Smith 
1644d763cef2SBarry Smith    Output Parameter:
1645d763cef2SBarry Smith .  dt - the current timestep size
1646d763cef2SBarry Smith 
1647d763cef2SBarry Smith    Level: intermediate
1648d763cef2SBarry Smith 
1649d763cef2SBarry Smith .seealso: TSSetInitialTimeStep(), TSGetTimeStep()
1650d763cef2SBarry Smith 
1651d763cef2SBarry Smith .keywords: TS, get, timestep
1652d763cef2SBarry Smith @*/
16537087cfbeSBarry Smith PetscErrorCode  TSGetTimeStep(TS ts,PetscReal *dt)
1654d763cef2SBarry Smith {
1655d763cef2SBarry Smith   PetscFunctionBegin;
16560700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1657f7cf8827SBarry Smith   PetscValidRealPointer(dt,2);
1658d763cef2SBarry Smith   *dt = ts->time_step;
1659d763cef2SBarry Smith   PetscFunctionReturn(0);
1660d763cef2SBarry Smith }
1661d763cef2SBarry Smith 
16624a2ae208SSatish Balay #undef __FUNCT__
16634a2ae208SSatish Balay #define __FUNCT__ "TSGetSolution"
1664d8e5e3e6SSatish Balay /*@
1665d763cef2SBarry Smith    TSGetSolution - Returns the solution at the present timestep. It
1666d763cef2SBarry Smith    is valid to call this routine inside the function that you are evaluating
1667d763cef2SBarry Smith    in order to move to the new timestep. This vector not changed until
1668d763cef2SBarry Smith    the solution at the next timestep has been calculated.
1669d763cef2SBarry Smith 
1670d763cef2SBarry Smith    Not Collective, but Vec returned is parallel if TS is parallel
1671d763cef2SBarry Smith 
1672d763cef2SBarry Smith    Input Parameter:
1673d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
1674d763cef2SBarry Smith 
1675d763cef2SBarry Smith    Output Parameter:
1676d763cef2SBarry Smith .  v - the vector containing the solution
1677d763cef2SBarry Smith 
1678d763cef2SBarry Smith    Level: intermediate
1679d763cef2SBarry Smith 
1680d763cef2SBarry Smith .seealso: TSGetTimeStep()
1681d763cef2SBarry Smith 
1682d763cef2SBarry Smith .keywords: TS, timestep, get, solution
1683d763cef2SBarry Smith @*/
16847087cfbeSBarry Smith PetscErrorCode  TSGetSolution(TS ts,Vec *v)
1685d763cef2SBarry Smith {
1686d763cef2SBarry Smith   PetscFunctionBegin;
16870700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
16884482741eSBarry Smith   PetscValidPointer(v,2);
16898737fe31SLisandro Dalcin   *v = ts->vec_sol;
1690d763cef2SBarry Smith   PetscFunctionReturn(0);
1691d763cef2SBarry Smith }
1692d763cef2SBarry Smith 
1693bdad233fSMatthew Knepley /* ----- Routines to initialize and destroy a timestepper ---- */
16944a2ae208SSatish Balay #undef __FUNCT__
1695bdad233fSMatthew Knepley #define __FUNCT__ "TSSetProblemType"
1696d8e5e3e6SSatish Balay /*@
1697bdad233fSMatthew Knepley   TSSetProblemType - Sets the type of problem to be solved.
1698d763cef2SBarry Smith 
1699bdad233fSMatthew Knepley   Not collective
1700d763cef2SBarry Smith 
1701bdad233fSMatthew Knepley   Input Parameters:
1702bdad233fSMatthew Knepley + ts   - The TS
1703bdad233fSMatthew Knepley - type - One of TS_LINEAR, TS_NONLINEAR where these types refer to problems of the forms
1704d763cef2SBarry Smith .vb
17050910c330SBarry Smith          U_t - A U = 0      (linear)
17060910c330SBarry Smith          U_t - A(t) U = 0   (linear)
17070910c330SBarry Smith          F(t,U,U_t) = 0     (nonlinear)
1708d763cef2SBarry Smith .ve
1709d763cef2SBarry Smith 
1710d763cef2SBarry Smith    Level: beginner
1711d763cef2SBarry Smith 
1712bdad233fSMatthew Knepley .keywords: TS, problem type
1713bdad233fSMatthew Knepley .seealso: TSSetUp(), TSProblemType, TS
1714d763cef2SBarry Smith @*/
17157087cfbeSBarry Smith PetscErrorCode  TSSetProblemType(TS ts, TSProblemType type)
1716a7cc72afSBarry Smith {
17179e2a6581SJed Brown   PetscErrorCode ierr;
17189e2a6581SJed Brown 
1719d763cef2SBarry Smith   PetscFunctionBegin;
17200700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
1721bdad233fSMatthew Knepley   ts->problem_type = type;
17229e2a6581SJed Brown   if (type == TS_LINEAR) {
17239e2a6581SJed Brown     SNES snes;
17249e2a6581SJed Brown     ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
17259e2a6581SJed Brown     ierr = SNESSetType(snes,SNESKSPONLY);CHKERRQ(ierr);
17269e2a6581SJed Brown   }
1727d763cef2SBarry Smith   PetscFunctionReturn(0);
1728d763cef2SBarry Smith }
1729d763cef2SBarry Smith 
1730bdad233fSMatthew Knepley #undef __FUNCT__
1731bdad233fSMatthew Knepley #define __FUNCT__ "TSGetProblemType"
1732bdad233fSMatthew Knepley /*@C
1733bdad233fSMatthew Knepley   TSGetProblemType - Gets the type of problem to be solved.
1734bdad233fSMatthew Knepley 
1735bdad233fSMatthew Knepley   Not collective
1736bdad233fSMatthew Knepley 
1737bdad233fSMatthew Knepley   Input Parameter:
1738bdad233fSMatthew Knepley . ts   - The TS
1739bdad233fSMatthew Knepley 
1740bdad233fSMatthew Knepley   Output Parameter:
1741bdad233fSMatthew Knepley . type - One of TS_LINEAR, TS_NONLINEAR where these types refer to problems of the forms
1742bdad233fSMatthew Knepley .vb
1743089b2837SJed Brown          M U_t = A U
1744089b2837SJed Brown          M(t) U_t = A(t) U
1745b5abc632SBarry Smith          F(t,U,U_t)
1746bdad233fSMatthew Knepley .ve
1747bdad233fSMatthew Knepley 
1748bdad233fSMatthew Knepley    Level: beginner
1749bdad233fSMatthew Knepley 
1750bdad233fSMatthew Knepley .keywords: TS, problem type
1751bdad233fSMatthew Knepley .seealso: TSSetUp(), TSProblemType, TS
1752bdad233fSMatthew Knepley @*/
17537087cfbeSBarry Smith PetscErrorCode  TSGetProblemType(TS ts, TSProblemType *type)
1754a7cc72afSBarry Smith {
1755bdad233fSMatthew Knepley   PetscFunctionBegin;
17560700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
17574482741eSBarry Smith   PetscValidIntPointer(type,2);
1758bdad233fSMatthew Knepley   *type = ts->problem_type;
1759bdad233fSMatthew Knepley   PetscFunctionReturn(0);
1760bdad233fSMatthew Knepley }
1761d763cef2SBarry Smith 
17624a2ae208SSatish Balay #undef __FUNCT__
17634a2ae208SSatish Balay #define __FUNCT__ "TSSetUp"
1764d763cef2SBarry Smith /*@
1765d763cef2SBarry Smith    TSSetUp - Sets up the internal data structures for the later use
1766d763cef2SBarry Smith    of a timestepper.
1767d763cef2SBarry Smith 
1768d763cef2SBarry Smith    Collective on TS
1769d763cef2SBarry Smith 
1770d763cef2SBarry Smith    Input Parameter:
1771d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
1772d763cef2SBarry Smith 
1773d763cef2SBarry Smith    Notes:
1774d763cef2SBarry Smith    For basic use of the TS solvers the user need not explicitly call
1775d763cef2SBarry Smith    TSSetUp(), since these actions will automatically occur during
1776d763cef2SBarry Smith    the call to TSStep().  However, if one wishes to control this
1777d763cef2SBarry Smith    phase separately, TSSetUp() should be called after TSCreate()
1778d763cef2SBarry Smith    and optional routines of the form TSSetXXX(), but before TSStep().
1779d763cef2SBarry Smith 
1780d763cef2SBarry Smith    Level: advanced
1781d763cef2SBarry Smith 
1782d763cef2SBarry Smith .keywords: TS, timestep, setup
1783d763cef2SBarry Smith 
1784d763cef2SBarry Smith .seealso: TSCreate(), TSStep(), TSDestroy()
1785d763cef2SBarry Smith @*/
17867087cfbeSBarry Smith PetscErrorCode  TSSetUp(TS ts)
1787d763cef2SBarry Smith {
1788dfbe8321SBarry Smith   PetscErrorCode ierr;
17896c6b9e74SPeter Brune   DM             dm;
17906c6b9e74SPeter Brune   PetscErrorCode (*func)(SNES,Vec,Vec,void*);
17916c6b9e74SPeter Brune   PetscErrorCode (*jac)(SNES,Vec,Mat*,Mat*,MatStructure*,void*);
17926c6b9e74SPeter Brune   TSIJacobian    ijac;
17936c6b9e74SPeter Brune   TSRHSJacobian  rhsjac;
1794d763cef2SBarry Smith 
1795d763cef2SBarry Smith   PetscFunctionBegin;
17960700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1797277b19d0SLisandro Dalcin   if (ts->setupcalled) PetscFunctionReturn(0);
1798277b19d0SLisandro Dalcin 
17997adad957SLisandro Dalcin   if (!((PetscObject)ts)->type_name) {
18009596e0b4SJed Brown     ierr = TSSetType(ts,TSEULER);CHKERRQ(ierr);
1801d763cef2SBarry Smith   }
1802277b19d0SLisandro Dalcin 
1803277b19d0SLisandro Dalcin   if (!ts->vec_sol) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Must call TSSetSolution() first");
1804277b19d0SLisandro Dalcin 
1805552698daSJed Brown   ierr = TSGetAdapt(ts,&ts->adapt);CHKERRQ(ierr);
18061c3436cfSJed Brown 
1807e1244c69SJed Brown   if (ts->rhsjacobian.reuse) {
1808e1244c69SJed Brown     Mat Amat,Pmat;
1809e1244c69SJed Brown     SNES snes;
1810e1244c69SJed Brown     ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
1811e1244c69SJed Brown     ierr = SNESGetJacobian(snes,&Amat,&Pmat,NULL,NULL);CHKERRQ(ierr);
1812e1244c69SJed Brown     /* Matching matrices implies that an IJacobian is NOT set, because if it had been set, the IJacobian's matrix would
1813e1244c69SJed Brown      * have displaced the RHS matrix */
1814e1244c69SJed Brown     if (Amat == ts->Arhs) {
1815e1244c69SJed Brown       ierr = MatDuplicate(ts->Arhs,MAT_DO_NOT_COPY_VALUES,&Amat);CHKERRQ(ierr);
1816e1244c69SJed Brown       ierr = SNESSetJacobian(snes,Amat,NULL,NULL,NULL);CHKERRQ(ierr);
1817e1244c69SJed Brown       ierr = MatDestroy(&Amat);CHKERRQ(ierr);
1818e1244c69SJed Brown     }
1819e1244c69SJed Brown     if (Pmat == ts->Brhs) {
1820e1244c69SJed Brown       ierr = MatDuplicate(ts->Brhs,MAT_DO_NOT_COPY_VALUES,&Pmat);CHKERRQ(ierr);
1821e1244c69SJed Brown       ierr = SNESSetJacobian(snes,NULL,Pmat,NULL,NULL);CHKERRQ(ierr);
1822e1244c69SJed Brown       ierr = MatDestroy(&Pmat);CHKERRQ(ierr);
1823e1244c69SJed Brown     }
1824e1244c69SJed Brown   }
1825e1244c69SJed Brown 
1826277b19d0SLisandro Dalcin   if (ts->ops->setup) {
1827000e7ae3SMatthew Knepley     ierr = (*ts->ops->setup)(ts);CHKERRQ(ierr);
1828277b19d0SLisandro Dalcin   }
1829277b19d0SLisandro Dalcin 
18306c6b9e74SPeter Brune   /* in the case where we've set a DMTSFunction or what have you, we need the default SNESFunction
18316c6b9e74SPeter Brune    to be set right but can't do it elsewhere due to the overreliance on ctx=ts.
18326c6b9e74SPeter Brune    */
18336c6b9e74SPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
18340298fd71SBarry Smith   ierr = DMSNESGetFunction(dm,&func,NULL);CHKERRQ(ierr);
18356c6b9e74SPeter Brune   if (!func) {
18366c6b9e74SPeter Brune     ierr =DMSNESSetFunction(dm,SNESTSFormFunction,ts);CHKERRQ(ierr);
18376c6b9e74SPeter Brune   }
18386c6b9e74SPeter 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.
18396c6b9e74SPeter Brune      Otherwise, the SNES will use coloring internally to form the Jacobian.
18406c6b9e74SPeter Brune    */
18410298fd71SBarry Smith   ierr = DMSNESGetJacobian(dm,&jac,NULL);CHKERRQ(ierr);
18420298fd71SBarry Smith   ierr = DMTSGetIJacobian(dm,&ijac,NULL);CHKERRQ(ierr);
18430298fd71SBarry Smith   ierr = DMTSGetRHSJacobian(dm,&rhsjac,NULL);CHKERRQ(ierr);
18446c6b9e74SPeter Brune   if (!jac && (ijac || rhsjac)) {
18456c6b9e74SPeter Brune     ierr = DMSNESSetJacobian(dm,SNESTSFormJacobian,ts);CHKERRQ(ierr);
18466c6b9e74SPeter Brune   }
1847277b19d0SLisandro Dalcin   ts->setupcalled = PETSC_TRUE;
1848277b19d0SLisandro Dalcin   PetscFunctionReturn(0);
1849277b19d0SLisandro Dalcin }
1850277b19d0SLisandro Dalcin 
1851277b19d0SLisandro Dalcin #undef __FUNCT__
1852277b19d0SLisandro Dalcin #define __FUNCT__ "TSReset"
1853277b19d0SLisandro Dalcin /*@
1854277b19d0SLisandro Dalcin    TSReset - Resets a TS context and removes any allocated Vecs and Mats.
1855277b19d0SLisandro Dalcin 
1856277b19d0SLisandro Dalcin    Collective on TS
1857277b19d0SLisandro Dalcin 
1858277b19d0SLisandro Dalcin    Input Parameter:
1859277b19d0SLisandro Dalcin .  ts - the TS context obtained from TSCreate()
1860277b19d0SLisandro Dalcin 
1861277b19d0SLisandro Dalcin    Level: beginner
1862277b19d0SLisandro Dalcin 
1863277b19d0SLisandro Dalcin .keywords: TS, timestep, reset
1864277b19d0SLisandro Dalcin 
1865277b19d0SLisandro Dalcin .seealso: TSCreate(), TSSetup(), TSDestroy()
1866277b19d0SLisandro Dalcin @*/
1867277b19d0SLisandro Dalcin PetscErrorCode  TSReset(TS ts)
1868277b19d0SLisandro Dalcin {
1869277b19d0SLisandro Dalcin   PetscErrorCode ierr;
1870277b19d0SLisandro Dalcin 
1871277b19d0SLisandro Dalcin   PetscFunctionBegin;
1872277b19d0SLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1873277b19d0SLisandro Dalcin   if (ts->ops->reset) {
1874277b19d0SLisandro Dalcin     ierr = (*ts->ops->reset)(ts);CHKERRQ(ierr);
1875277b19d0SLisandro Dalcin   }
1876277b19d0SLisandro Dalcin   if (ts->snes) {ierr = SNESReset(ts->snes);CHKERRQ(ierr);}
1877bbd56ea5SKarl Rupp 
18784e684422SJed Brown   ierr = MatDestroy(&ts->Arhs);CHKERRQ(ierr);
18794e684422SJed Brown   ierr = MatDestroy(&ts->Brhs);CHKERRQ(ierr);
1880214bc6a2SJed Brown   ierr = VecDestroy(&ts->Frhs);CHKERRQ(ierr);
18816bf464f9SBarry Smith   ierr = VecDestroy(&ts->vec_sol);CHKERRQ(ierr);
1882e3d84a46SJed Brown   ierr = VecDestroy(&ts->vatol);CHKERRQ(ierr);
1883e3d84a46SJed Brown   ierr = VecDestroy(&ts->vrtol);CHKERRQ(ierr);
188438637c2eSJed Brown   ierr = VecDestroyVecs(ts->nwork,&ts->work);CHKERRQ(ierr);
1885bbd56ea5SKarl Rupp 
1886277b19d0SLisandro Dalcin   ts->setupcalled = PETSC_FALSE;
1887d763cef2SBarry Smith   PetscFunctionReturn(0);
1888d763cef2SBarry Smith }
1889d763cef2SBarry Smith 
18904a2ae208SSatish Balay #undef __FUNCT__
18914a2ae208SSatish Balay #define __FUNCT__ "TSDestroy"
1892d8e5e3e6SSatish Balay /*@
1893d763cef2SBarry Smith    TSDestroy - Destroys the timestepper context that was created
1894d763cef2SBarry Smith    with TSCreate().
1895d763cef2SBarry Smith 
1896d763cef2SBarry Smith    Collective on TS
1897d763cef2SBarry Smith 
1898d763cef2SBarry Smith    Input Parameter:
1899d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
1900d763cef2SBarry Smith 
1901d763cef2SBarry Smith    Level: beginner
1902d763cef2SBarry Smith 
1903d763cef2SBarry Smith .keywords: TS, timestepper, destroy
1904d763cef2SBarry Smith 
1905d763cef2SBarry Smith .seealso: TSCreate(), TSSetUp(), TSSolve()
1906d763cef2SBarry Smith @*/
19076bf464f9SBarry Smith PetscErrorCode  TSDestroy(TS *ts)
1908d763cef2SBarry Smith {
19096849ba73SBarry Smith   PetscErrorCode ierr;
1910d763cef2SBarry Smith 
1911d763cef2SBarry Smith   PetscFunctionBegin;
19126bf464f9SBarry Smith   if (!*ts) PetscFunctionReturn(0);
19136bf464f9SBarry Smith   PetscValidHeaderSpecific((*ts),TS_CLASSID,1);
19146bf464f9SBarry Smith   if (--((PetscObject)(*ts))->refct > 0) {*ts = 0; PetscFunctionReturn(0);}
1915d763cef2SBarry Smith 
19166bf464f9SBarry Smith   ierr = TSReset((*ts));CHKERRQ(ierr);
1917277b19d0SLisandro Dalcin 
1918e04113cfSBarry Smith   /* if memory was published with SAWs then destroy it */
1919e04113cfSBarry Smith   ierr = PetscObjectSAWsViewOff((PetscObject)*ts);CHKERRQ(ierr);
19206bf464f9SBarry Smith   if ((*ts)->ops->destroy) {ierr = (*(*ts)->ops->destroy)((*ts));CHKERRQ(ierr);}
19216d4c513bSLisandro Dalcin 
192284df9cb4SJed Brown   ierr = TSAdaptDestroy(&(*ts)->adapt);CHKERRQ(ierr);
19236bf464f9SBarry Smith   ierr = SNESDestroy(&(*ts)->snes);CHKERRQ(ierr);
19246bf464f9SBarry Smith   ierr = DMDestroy(&(*ts)->dm);CHKERRQ(ierr);
19256bf464f9SBarry Smith   ierr = TSMonitorCancel((*ts));CHKERRQ(ierr);
19266d4c513bSLisandro Dalcin 
1927a79aaaedSSatish Balay   ierr = PetscHeaderDestroy(ts);CHKERRQ(ierr);
1928d763cef2SBarry Smith   PetscFunctionReturn(0);
1929d763cef2SBarry Smith }
1930d763cef2SBarry Smith 
19314a2ae208SSatish Balay #undef __FUNCT__
19324a2ae208SSatish Balay #define __FUNCT__ "TSGetSNES"
1933d8e5e3e6SSatish Balay /*@
1934d763cef2SBarry Smith    TSGetSNES - Returns the SNES (nonlinear solver) associated with
1935d763cef2SBarry Smith    a TS (timestepper) context. Valid only for nonlinear problems.
1936d763cef2SBarry Smith 
1937d763cef2SBarry Smith    Not Collective, but SNES is parallel if TS is parallel
1938d763cef2SBarry Smith 
1939d763cef2SBarry Smith    Input Parameter:
1940d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
1941d763cef2SBarry Smith 
1942d763cef2SBarry Smith    Output Parameter:
1943d763cef2SBarry Smith .  snes - the nonlinear solver context
1944d763cef2SBarry Smith 
1945d763cef2SBarry Smith    Notes:
1946d763cef2SBarry Smith    The user can then directly manipulate the SNES context to set various
1947d763cef2SBarry Smith    options, etc.  Likewise, the user can then extract and manipulate the
194894b7f48cSBarry Smith    KSP, KSP, and PC contexts as well.
1949d763cef2SBarry Smith 
1950d763cef2SBarry Smith    TSGetSNES() does not work for integrators that do not use SNES; in
19510298fd71SBarry Smith    this case TSGetSNES() returns NULL in snes.
1952d763cef2SBarry Smith 
1953d763cef2SBarry Smith    Level: beginner
1954d763cef2SBarry Smith 
1955d763cef2SBarry Smith .keywords: timestep, get, SNES
1956d763cef2SBarry Smith @*/
19577087cfbeSBarry Smith PetscErrorCode  TSGetSNES(TS ts,SNES *snes)
1958d763cef2SBarry Smith {
1959d372ba47SLisandro Dalcin   PetscErrorCode ierr;
1960d372ba47SLisandro Dalcin 
1961d763cef2SBarry Smith   PetscFunctionBegin;
19620700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
19634482741eSBarry Smith   PetscValidPointer(snes,2);
1964d372ba47SLisandro Dalcin   if (!ts->snes) {
1965ce94432eSBarry Smith     ierr = SNESCreate(PetscObjectComm((PetscObject)ts),&ts->snes);CHKERRQ(ierr);
19660298fd71SBarry Smith     ierr = SNESSetFunction(ts->snes,NULL,SNESTSFormFunction,ts);CHKERRQ(ierr);
19673bb1ff40SBarry Smith     ierr = PetscLogObjectParent((PetscObject)ts,(PetscObject)ts->snes);CHKERRQ(ierr);
1968d372ba47SLisandro Dalcin     ierr = PetscObjectIncrementTabLevel((PetscObject)ts->snes,(PetscObject)ts,1);CHKERRQ(ierr);
1969496e6a7aSJed Brown     if (ts->dm) {ierr = SNESSetDM(ts->snes,ts->dm);CHKERRQ(ierr);}
19709e2a6581SJed Brown     if (ts->problem_type == TS_LINEAR) {
19719e2a6581SJed Brown       ierr = SNESSetType(ts->snes,SNESKSPONLY);CHKERRQ(ierr);
19729e2a6581SJed Brown     }
1973d372ba47SLisandro Dalcin   }
1974d763cef2SBarry Smith   *snes = ts->snes;
1975d763cef2SBarry Smith   PetscFunctionReturn(0);
1976d763cef2SBarry Smith }
1977d763cef2SBarry Smith 
19784a2ae208SSatish Balay #undef __FUNCT__
1979deb2cd25SJed Brown #define __FUNCT__ "TSSetSNES"
1980deb2cd25SJed Brown /*@
1981deb2cd25SJed Brown    TSSetSNES - Set the SNES (nonlinear solver) to be used by the timestepping context
1982deb2cd25SJed Brown 
1983deb2cd25SJed Brown    Collective
1984deb2cd25SJed Brown 
1985deb2cd25SJed Brown    Input Parameter:
1986deb2cd25SJed Brown +  ts - the TS context obtained from TSCreate()
1987deb2cd25SJed Brown -  snes - the nonlinear solver context
1988deb2cd25SJed Brown 
1989deb2cd25SJed Brown    Notes:
1990deb2cd25SJed Brown    Most users should have the TS created by calling TSGetSNES()
1991deb2cd25SJed Brown 
1992deb2cd25SJed Brown    Level: developer
1993deb2cd25SJed Brown 
1994deb2cd25SJed Brown .keywords: timestep, set, SNES
1995deb2cd25SJed Brown @*/
1996deb2cd25SJed Brown PetscErrorCode TSSetSNES(TS ts,SNES snes)
1997deb2cd25SJed Brown {
1998deb2cd25SJed Brown   PetscErrorCode ierr;
1999740132f1SEmil Constantinescu   PetscErrorCode (*func)(SNES,Vec,Mat*,Mat*,MatStructure*,void*);
2000deb2cd25SJed Brown 
2001deb2cd25SJed Brown   PetscFunctionBegin;
2002deb2cd25SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2003deb2cd25SJed Brown   PetscValidHeaderSpecific(snes,SNES_CLASSID,2);
2004deb2cd25SJed Brown   ierr = PetscObjectReference((PetscObject)snes);CHKERRQ(ierr);
2005deb2cd25SJed Brown   ierr = SNESDestroy(&ts->snes);CHKERRQ(ierr);
2006bbd56ea5SKarl Rupp 
2007deb2cd25SJed Brown   ts->snes = snes;
2008bbd56ea5SKarl Rupp 
20090298fd71SBarry Smith   ierr = SNESSetFunction(ts->snes,NULL,SNESTSFormFunction,ts);CHKERRQ(ierr);
20100298fd71SBarry Smith   ierr = SNESGetJacobian(ts->snes,NULL,NULL,&func,NULL);CHKERRQ(ierr);
2011740132f1SEmil Constantinescu   if (func == SNESTSFormJacobian) {
20120298fd71SBarry Smith     ierr = SNESSetJacobian(ts->snes,NULL,NULL,SNESTSFormJacobian,ts);CHKERRQ(ierr);
2013740132f1SEmil Constantinescu   }
2014deb2cd25SJed Brown   PetscFunctionReturn(0);
2015deb2cd25SJed Brown }
2016deb2cd25SJed Brown 
2017deb2cd25SJed Brown #undef __FUNCT__
201894b7f48cSBarry Smith #define __FUNCT__ "TSGetKSP"
2019d8e5e3e6SSatish Balay /*@
202094b7f48cSBarry Smith    TSGetKSP - Returns the KSP (linear solver) associated with
2021d763cef2SBarry Smith    a TS (timestepper) context.
2022d763cef2SBarry Smith 
202394b7f48cSBarry Smith    Not Collective, but KSP is parallel if TS is parallel
2024d763cef2SBarry Smith 
2025d763cef2SBarry Smith    Input Parameter:
2026d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2027d763cef2SBarry Smith 
2028d763cef2SBarry Smith    Output Parameter:
202994b7f48cSBarry Smith .  ksp - the nonlinear solver context
2030d763cef2SBarry Smith 
2031d763cef2SBarry Smith    Notes:
203294b7f48cSBarry Smith    The user can then directly manipulate the KSP context to set various
2033d763cef2SBarry Smith    options, etc.  Likewise, the user can then extract and manipulate the
2034d763cef2SBarry Smith    KSP and PC contexts as well.
2035d763cef2SBarry Smith 
203694b7f48cSBarry Smith    TSGetKSP() does not work for integrators that do not use KSP;
20370298fd71SBarry Smith    in this case TSGetKSP() returns NULL in ksp.
2038d763cef2SBarry Smith 
2039d763cef2SBarry Smith    Level: beginner
2040d763cef2SBarry Smith 
204194b7f48cSBarry Smith .keywords: timestep, get, KSP
2042d763cef2SBarry Smith @*/
20437087cfbeSBarry Smith PetscErrorCode  TSGetKSP(TS ts,KSP *ksp)
2044d763cef2SBarry Smith {
2045d372ba47SLisandro Dalcin   PetscErrorCode ierr;
2046089b2837SJed Brown   SNES           snes;
2047d372ba47SLisandro Dalcin 
2048d763cef2SBarry Smith   PetscFunctionBegin;
20490700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
20504482741eSBarry Smith   PetscValidPointer(ksp,2);
205117186662SBarry Smith   if (!((PetscObject)ts)->type_name) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NULL,"KSP is not created yet. Call TSSetType() first");
2052e32f2f54SBarry Smith   if (ts->problem_type != TS_LINEAR) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Linear only; use TSGetSNES()");
2053089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
2054089b2837SJed Brown   ierr = SNESGetKSP(snes,ksp);CHKERRQ(ierr);
2055d763cef2SBarry Smith   PetscFunctionReturn(0);
2056d763cef2SBarry Smith }
2057d763cef2SBarry Smith 
2058d763cef2SBarry Smith /* ----------- Routines to set solver parameters ---------- */
2059d763cef2SBarry Smith 
20604a2ae208SSatish Balay #undef __FUNCT__
2061adb62b0dSMatthew Knepley #define __FUNCT__ "TSGetDuration"
2062adb62b0dSMatthew Knepley /*@
2063adb62b0dSMatthew Knepley    TSGetDuration - Gets the maximum number of timesteps to use and
2064adb62b0dSMatthew Knepley    maximum time for iteration.
2065adb62b0dSMatthew Knepley 
20663f9fe445SBarry Smith    Not Collective
2067adb62b0dSMatthew Knepley 
2068adb62b0dSMatthew Knepley    Input Parameters:
2069adb62b0dSMatthew Knepley +  ts       - the TS context obtained from TSCreate()
20700298fd71SBarry Smith .  maxsteps - maximum number of iterations to use, or NULL
20710298fd71SBarry Smith -  maxtime  - final time to iterate to, or NULL
2072adb62b0dSMatthew Knepley 
2073adb62b0dSMatthew Knepley    Level: intermediate
2074adb62b0dSMatthew Knepley 
2075adb62b0dSMatthew Knepley .keywords: TS, timestep, get, maximum, iterations, time
2076adb62b0dSMatthew Knepley @*/
20777087cfbeSBarry Smith PetscErrorCode  TSGetDuration(TS ts, PetscInt *maxsteps, PetscReal *maxtime)
2078adb62b0dSMatthew Knepley {
2079adb62b0dSMatthew Knepley   PetscFunctionBegin;
20800700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2081abc0a331SBarry Smith   if (maxsteps) {
20824482741eSBarry Smith     PetscValidIntPointer(maxsteps,2);
2083adb62b0dSMatthew Knepley     *maxsteps = ts->max_steps;
2084adb62b0dSMatthew Knepley   }
2085abc0a331SBarry Smith   if (maxtime) {
20864482741eSBarry Smith     PetscValidScalarPointer(maxtime,3);
2087adb62b0dSMatthew Knepley     *maxtime = ts->max_time;
2088adb62b0dSMatthew Knepley   }
2089adb62b0dSMatthew Knepley   PetscFunctionReturn(0);
2090adb62b0dSMatthew Knepley }
2091adb62b0dSMatthew Knepley 
2092adb62b0dSMatthew Knepley #undef __FUNCT__
20934a2ae208SSatish Balay #define __FUNCT__ "TSSetDuration"
2094d763cef2SBarry Smith /*@
2095d763cef2SBarry Smith    TSSetDuration - Sets the maximum number of timesteps to use and
2096d763cef2SBarry Smith    maximum time for iteration.
2097d763cef2SBarry Smith 
20983f9fe445SBarry Smith    Logically Collective on TS
2099d763cef2SBarry Smith 
2100d763cef2SBarry Smith    Input Parameters:
2101d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
2102d763cef2SBarry Smith .  maxsteps - maximum number of iterations to use
2103d763cef2SBarry Smith -  maxtime - final time to iterate to
2104d763cef2SBarry Smith 
2105d763cef2SBarry Smith    Options Database Keys:
2106d763cef2SBarry Smith .  -ts_max_steps <maxsteps> - Sets maxsteps
21073bca7d26SBarry Smith .  -ts_final_time <maxtime> - Sets maxtime
2108d763cef2SBarry Smith 
2109d763cef2SBarry Smith    Notes:
2110d763cef2SBarry Smith    The default maximum number of iterations is 5000. Default time is 5.0
2111d763cef2SBarry Smith 
2112d763cef2SBarry Smith    Level: intermediate
2113d763cef2SBarry Smith 
2114d763cef2SBarry Smith .keywords: TS, timestep, set, maximum, iterations
2115a43b19c4SJed Brown 
2116a43b19c4SJed Brown .seealso: TSSetExactFinalTime()
2117d763cef2SBarry Smith @*/
21187087cfbeSBarry Smith PetscErrorCode  TSSetDuration(TS ts,PetscInt maxsteps,PetscReal maxtime)
2119d763cef2SBarry Smith {
2120d763cef2SBarry Smith   PetscFunctionBegin;
21210700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2122c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(ts,maxsteps,2);
2123c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(ts,maxtime,2);
212439b7ec4bSSean Farley   if (maxsteps >= 0) ts->max_steps = maxsteps;
212539b7ec4bSSean Farley   if (maxtime != PETSC_DEFAULT) ts->max_time = maxtime;
2126d763cef2SBarry Smith   PetscFunctionReturn(0);
2127d763cef2SBarry Smith }
2128d763cef2SBarry Smith 
21294a2ae208SSatish Balay #undef __FUNCT__
21304a2ae208SSatish Balay #define __FUNCT__ "TSSetSolution"
2131d763cef2SBarry Smith /*@
2132d763cef2SBarry Smith    TSSetSolution - Sets the initial solution vector
2133d763cef2SBarry Smith    for use by the TS routines.
2134d763cef2SBarry Smith 
21353f9fe445SBarry Smith    Logically Collective on TS and Vec
2136d763cef2SBarry Smith 
2137d763cef2SBarry Smith    Input Parameters:
2138d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
21390910c330SBarry Smith -  u - the solution vector
2140d763cef2SBarry Smith 
2141d763cef2SBarry Smith    Level: beginner
2142d763cef2SBarry Smith 
2143d763cef2SBarry Smith .keywords: TS, timestep, set, solution, initial conditions
2144d763cef2SBarry Smith @*/
21450910c330SBarry Smith PetscErrorCode  TSSetSolution(TS ts,Vec u)
2146d763cef2SBarry Smith {
21478737fe31SLisandro Dalcin   PetscErrorCode ierr;
2148496e6a7aSJed Brown   DM             dm;
21498737fe31SLisandro Dalcin 
2150d763cef2SBarry Smith   PetscFunctionBegin;
21510700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
21520910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,2);
21530910c330SBarry Smith   ierr = PetscObjectReference((PetscObject)u);CHKERRQ(ierr);
21546bf464f9SBarry Smith   ierr = VecDestroy(&ts->vec_sol);CHKERRQ(ierr);
2155bbd56ea5SKarl Rupp 
21560910c330SBarry Smith   ts->vec_sol = u;
2157bbd56ea5SKarl Rupp 
2158496e6a7aSJed Brown   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
21590910c330SBarry Smith   ierr = DMShellSetGlobalVector(dm,u);CHKERRQ(ierr);
2160d763cef2SBarry Smith   PetscFunctionReturn(0);
2161d763cef2SBarry Smith }
2162d763cef2SBarry Smith 
2163e74ef692SMatthew Knepley #undef __FUNCT__
2164e74ef692SMatthew Knepley #define __FUNCT__ "TSSetPreStep"
2165ac226902SBarry Smith /*@C
2166000e7ae3SMatthew Knepley   TSSetPreStep - Sets the general-purpose function
21673f2090d5SJed Brown   called once at the beginning of each time step.
2168000e7ae3SMatthew Knepley 
21693f9fe445SBarry Smith   Logically Collective on TS
2170000e7ae3SMatthew Knepley 
2171000e7ae3SMatthew Knepley   Input Parameters:
2172000e7ae3SMatthew Knepley + ts   - The TS context obtained from TSCreate()
2173000e7ae3SMatthew Knepley - func - The function
2174000e7ae3SMatthew Knepley 
2175000e7ae3SMatthew Knepley   Calling sequence of func:
2176000e7ae3SMatthew Knepley . func (TS ts);
2177000e7ae3SMatthew Knepley 
2178000e7ae3SMatthew Knepley   Level: intermediate
2179000e7ae3SMatthew Knepley 
2180b8123daeSJed Brown   Note:
2181b8123daeSJed Brown   If a step is rejected, TSStep() will call this routine again before each attempt.
2182b8123daeSJed Brown   The last completed time step number can be queried using TSGetTimeStepNumber(), the
2183b8123daeSJed Brown   size of the step being attempted can be obtained using TSGetTimeStep().
2184b8123daeSJed Brown 
2185000e7ae3SMatthew Knepley .keywords: TS, timestep
21869be3e283SDebojyoti Ghosh .seealso: TSSetPreStage(), TSSetPostStage(), TSSetPostStep(), TSStep()
2187000e7ae3SMatthew Knepley @*/
21887087cfbeSBarry Smith PetscErrorCode  TSSetPreStep(TS ts, PetscErrorCode (*func)(TS))
2189000e7ae3SMatthew Knepley {
2190000e7ae3SMatthew Knepley   PetscFunctionBegin;
21910700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2192ae60f76fSBarry Smith   ts->prestep = func;
2193000e7ae3SMatthew Knepley   PetscFunctionReturn(0);
2194000e7ae3SMatthew Knepley }
2195000e7ae3SMatthew Knepley 
2196e74ef692SMatthew Knepley #undef __FUNCT__
21973f2090d5SJed Brown #define __FUNCT__ "TSPreStep"
219809ee8438SJed Brown /*@
21993f2090d5SJed Brown   TSPreStep - Runs the user-defined pre-step function.
22003f2090d5SJed Brown 
22013f2090d5SJed Brown   Collective on TS
22023f2090d5SJed Brown 
22033f2090d5SJed Brown   Input Parameters:
22043f2090d5SJed Brown . ts   - The TS context obtained from TSCreate()
22053f2090d5SJed Brown 
22063f2090d5SJed Brown   Notes:
22073f2090d5SJed Brown   TSPreStep() is typically used within time stepping implementations,
22083f2090d5SJed Brown   so most users would not generally call this routine themselves.
22093f2090d5SJed Brown 
22103f2090d5SJed Brown   Level: developer
22113f2090d5SJed Brown 
22123f2090d5SJed Brown .keywords: TS, timestep
22139be3e283SDebojyoti Ghosh .seealso: TSSetPreStep(), TSPreStage(), TSPostStage(), TSPostStep()
22143f2090d5SJed Brown @*/
22157087cfbeSBarry Smith PetscErrorCode  TSPreStep(TS ts)
22163f2090d5SJed Brown {
22173f2090d5SJed Brown   PetscErrorCode ierr;
22183f2090d5SJed Brown 
22193f2090d5SJed Brown   PetscFunctionBegin;
22200700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2221ae60f76fSBarry Smith   if (ts->prestep) {
2222ae60f76fSBarry Smith     PetscStackCallStandard((*ts->prestep),(ts));
2223312ce896SJed Brown   }
22243f2090d5SJed Brown   PetscFunctionReturn(0);
22253f2090d5SJed Brown }
22263f2090d5SJed Brown 
22273f2090d5SJed Brown #undef __FUNCT__
2228b8123daeSJed Brown #define __FUNCT__ "TSSetPreStage"
2229b8123daeSJed Brown /*@C
2230b8123daeSJed Brown   TSSetPreStage - Sets the general-purpose function
2231b8123daeSJed Brown   called once at the beginning of each stage.
2232b8123daeSJed Brown 
2233b8123daeSJed Brown   Logically Collective on TS
2234b8123daeSJed Brown 
2235b8123daeSJed Brown   Input Parameters:
2236b8123daeSJed Brown + ts   - The TS context obtained from TSCreate()
2237b8123daeSJed Brown - func - The function
2238b8123daeSJed Brown 
2239b8123daeSJed Brown   Calling sequence of func:
2240b8123daeSJed Brown . PetscErrorCode func(TS ts, PetscReal stagetime);
2241b8123daeSJed Brown 
2242b8123daeSJed Brown   Level: intermediate
2243b8123daeSJed Brown 
2244b8123daeSJed Brown   Note:
2245b8123daeSJed Brown   There may be several stages per time step. If the solve for a given stage fails, the step may be rejected and retried.
2246b8123daeSJed Brown   The time step number being computed can be queried using TSGetTimeStepNumber() and the total size of the step being
2247b8123daeSJed Brown   attempted can be obtained using TSGetTimeStep(). The time at the start of the step is available via TSGetTime().
2248b8123daeSJed Brown 
2249b8123daeSJed Brown .keywords: TS, timestep
22509be3e283SDebojyoti Ghosh .seealso: TSSetPostStage(), TSSetPreStep(), TSSetPostStep(), TSGetApplicationContext()
2251b8123daeSJed Brown @*/
2252b8123daeSJed Brown PetscErrorCode  TSSetPreStage(TS ts, PetscErrorCode (*func)(TS,PetscReal))
2253b8123daeSJed Brown {
2254b8123daeSJed Brown   PetscFunctionBegin;
2255b8123daeSJed Brown   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2256ae60f76fSBarry Smith   ts->prestage = func;
2257b8123daeSJed Brown   PetscFunctionReturn(0);
2258b8123daeSJed Brown }
2259b8123daeSJed Brown 
2260b8123daeSJed Brown #undef __FUNCT__
22619be3e283SDebojyoti Ghosh #define __FUNCT__ "TSSetPostStage"
22629be3e283SDebojyoti Ghosh /*@C
22639be3e283SDebojyoti Ghosh   TSSetPostStage - Sets the general-purpose function
22649be3e283SDebojyoti Ghosh   called once at the end of each stage.
22659be3e283SDebojyoti Ghosh 
22669be3e283SDebojyoti Ghosh   Logically Collective on TS
22679be3e283SDebojyoti Ghosh 
22689be3e283SDebojyoti Ghosh   Input Parameters:
22699be3e283SDebojyoti Ghosh + ts   - The TS context obtained from TSCreate()
22709be3e283SDebojyoti Ghosh - func - The function
22719be3e283SDebojyoti Ghosh 
22729be3e283SDebojyoti Ghosh   Calling sequence of func:
22739be3e283SDebojyoti Ghosh . PetscErrorCode func(TS ts, PetscReal stagetime, PetscInt stageindex, Vec* Y);
22749be3e283SDebojyoti Ghosh 
22759be3e283SDebojyoti Ghosh   Level: intermediate
22769be3e283SDebojyoti Ghosh 
22779be3e283SDebojyoti Ghosh   Note:
22789be3e283SDebojyoti Ghosh   There may be several stages per time step. If the solve for a given stage fails, the step may be rejected and retried.
22799be3e283SDebojyoti Ghosh   The time step number being computed can be queried using TSGetTimeStepNumber() and the total size of the step being
22809be3e283SDebojyoti Ghosh   attempted can be obtained using TSGetTimeStep(). The time at the start of the step is available via TSGetTime().
22819be3e283SDebojyoti Ghosh 
22829be3e283SDebojyoti Ghosh .keywords: TS, timestep
22839be3e283SDebojyoti Ghosh .seealso: TSSetPreStage(), TSSetPreStep(), TSSetPostStep(), TSGetApplicationContext()
22849be3e283SDebojyoti Ghosh @*/
22859be3e283SDebojyoti Ghosh PetscErrorCode  TSSetPostStage(TS ts, PetscErrorCode (*func)(TS,PetscReal,PetscInt,Vec*))
22869be3e283SDebojyoti Ghosh {
22879be3e283SDebojyoti Ghosh   PetscFunctionBegin;
22889be3e283SDebojyoti Ghosh   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
22899be3e283SDebojyoti Ghosh   ts->poststage = func;
22909be3e283SDebojyoti Ghosh   PetscFunctionReturn(0);
22919be3e283SDebojyoti Ghosh }
22929be3e283SDebojyoti Ghosh 
22939be3e283SDebojyoti Ghosh #undef __FUNCT__
2294b8123daeSJed Brown #define __FUNCT__ "TSPreStage"
2295b8123daeSJed Brown /*@
2296b8123daeSJed Brown   TSPreStage - Runs the user-defined pre-stage function set using TSSetPreStage()
2297b8123daeSJed Brown 
2298b8123daeSJed Brown   Collective on TS
2299b8123daeSJed Brown 
2300b8123daeSJed Brown   Input Parameters:
2301b8123daeSJed Brown . ts          - The TS context obtained from TSCreate()
23029be3e283SDebojyoti Ghosh   stagetime   - The absolute time of the current stage
2303b8123daeSJed Brown 
2304b8123daeSJed Brown   Notes:
2305b8123daeSJed Brown   TSPreStage() is typically used within time stepping implementations,
2306b8123daeSJed Brown   most users would not generally call this routine themselves.
2307b8123daeSJed Brown 
2308b8123daeSJed Brown   Level: developer
2309b8123daeSJed Brown 
2310b8123daeSJed Brown .keywords: TS, timestep
23119be3e283SDebojyoti Ghosh .seealso: TSPostStage(), TSSetPreStep(), TSPreStep(), TSPostStep()
2312b8123daeSJed Brown @*/
2313b8123daeSJed Brown PetscErrorCode  TSPreStage(TS ts, PetscReal stagetime)
2314b8123daeSJed Brown {
2315b8123daeSJed Brown   PetscErrorCode ierr;
2316b8123daeSJed Brown 
2317b8123daeSJed Brown   PetscFunctionBegin;
2318b8123daeSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2319ae60f76fSBarry Smith   if (ts->prestage) {
2320ae60f76fSBarry Smith     PetscStackCallStandard((*ts->prestage),(ts,stagetime));
2321b8123daeSJed Brown   }
2322b8123daeSJed Brown   PetscFunctionReturn(0);
2323b8123daeSJed Brown }
2324b8123daeSJed Brown 
2325b8123daeSJed Brown #undef __FUNCT__
23269be3e283SDebojyoti Ghosh #define __FUNCT__ "TSPostStage"
23279be3e283SDebojyoti Ghosh /*@
23289be3e283SDebojyoti Ghosh   TSPostStage - Runs the user-defined post-stage function set using TSSetPostStage()
23299be3e283SDebojyoti Ghosh 
23309be3e283SDebojyoti Ghosh   Collective on TS
23319be3e283SDebojyoti Ghosh 
23329be3e283SDebojyoti Ghosh   Input Parameters:
23339be3e283SDebojyoti Ghosh . ts          - The TS context obtained from TSCreate()
23349be3e283SDebojyoti Ghosh   stagetime   - The absolute time of the current stage
23359be3e283SDebojyoti Ghosh   stageindex  - Stage number
23369be3e283SDebojyoti Ghosh   Y           - Array of vectors (of size = total number
23379be3e283SDebojyoti Ghosh                 of stages) with the stage solutions
23389be3e283SDebojyoti Ghosh 
23399be3e283SDebojyoti Ghosh   Notes:
23409be3e283SDebojyoti Ghosh   TSPostStage() is typically used within time stepping implementations,
23419be3e283SDebojyoti Ghosh   most users would not generally call this routine themselves.
23429be3e283SDebojyoti Ghosh 
23439be3e283SDebojyoti Ghosh   Level: developer
23449be3e283SDebojyoti Ghosh 
23459be3e283SDebojyoti Ghosh .keywords: TS, timestep
23469be3e283SDebojyoti Ghosh .seealso: TSPreStage(), TSSetPreStep(), TSPreStep(), TSPostStep()
23479be3e283SDebojyoti Ghosh @*/
23489be3e283SDebojyoti Ghosh PetscErrorCode  TSPostStage(TS ts, PetscReal stagetime, PetscInt stageindex, Vec *Y)
23499be3e283SDebojyoti Ghosh {
23509be3e283SDebojyoti Ghosh   PetscErrorCode ierr;
23519be3e283SDebojyoti Ghosh 
23529be3e283SDebojyoti Ghosh   PetscFunctionBegin;
23539be3e283SDebojyoti Ghosh   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
23549be3e283SDebojyoti Ghosh   if (ts->prestage) {
23559be3e283SDebojyoti Ghosh     PetscStackCallStandard((*ts->poststage),(ts,stagetime,stageindex,Y));
23569be3e283SDebojyoti Ghosh   }
23579be3e283SDebojyoti Ghosh   PetscFunctionReturn(0);
23589be3e283SDebojyoti Ghosh }
23599be3e283SDebojyoti Ghosh 
23609be3e283SDebojyoti Ghosh #undef __FUNCT__
2361e74ef692SMatthew Knepley #define __FUNCT__ "TSSetPostStep"
2362ac226902SBarry Smith /*@C
2363000e7ae3SMatthew Knepley   TSSetPostStep - Sets the general-purpose function
23643f2090d5SJed Brown   called once at the end of each time step.
2365000e7ae3SMatthew Knepley 
23663f9fe445SBarry Smith   Logically Collective on TS
2367000e7ae3SMatthew Knepley 
2368000e7ae3SMatthew Knepley   Input Parameters:
2369000e7ae3SMatthew Knepley + ts   - The TS context obtained from TSCreate()
2370000e7ae3SMatthew Knepley - func - The function
2371000e7ae3SMatthew Knepley 
2372000e7ae3SMatthew Knepley   Calling sequence of func:
2373b8123daeSJed Brown $ func (TS ts);
2374000e7ae3SMatthew Knepley 
2375000e7ae3SMatthew Knepley   Level: intermediate
2376000e7ae3SMatthew Knepley 
2377000e7ae3SMatthew Knepley .keywords: TS, timestep
2378b8123daeSJed Brown .seealso: TSSetPreStep(), TSSetPreStage(), TSGetTimeStep(), TSGetTimeStepNumber(), TSGetTime()
2379000e7ae3SMatthew Knepley @*/
23807087cfbeSBarry Smith PetscErrorCode  TSSetPostStep(TS ts, PetscErrorCode (*func)(TS))
2381000e7ae3SMatthew Knepley {
2382000e7ae3SMatthew Knepley   PetscFunctionBegin;
23830700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2384ae60f76fSBarry Smith   ts->poststep = func;
2385000e7ae3SMatthew Knepley   PetscFunctionReturn(0);
2386000e7ae3SMatthew Knepley }
2387000e7ae3SMatthew Knepley 
2388e74ef692SMatthew Knepley #undef __FUNCT__
23893f2090d5SJed Brown #define __FUNCT__ "TSPostStep"
239009ee8438SJed Brown /*@
23913f2090d5SJed Brown   TSPostStep - Runs the user-defined post-step function.
23923f2090d5SJed Brown 
23933f2090d5SJed Brown   Collective on TS
23943f2090d5SJed Brown 
23953f2090d5SJed Brown   Input Parameters:
23963f2090d5SJed Brown . ts   - The TS context obtained from TSCreate()
23973f2090d5SJed Brown 
23983f2090d5SJed Brown   Notes:
23993f2090d5SJed Brown   TSPostStep() is typically used within time stepping implementations,
24003f2090d5SJed Brown   so most users would not generally call this routine themselves.
24013f2090d5SJed Brown 
24023f2090d5SJed Brown   Level: developer
24033f2090d5SJed Brown 
24043f2090d5SJed Brown .keywords: TS, timestep
24053f2090d5SJed Brown @*/
24067087cfbeSBarry Smith PetscErrorCode  TSPostStep(TS ts)
24073f2090d5SJed Brown {
24083f2090d5SJed Brown   PetscErrorCode ierr;
24093f2090d5SJed Brown 
24103f2090d5SJed Brown   PetscFunctionBegin;
24110700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2412ae60f76fSBarry Smith   if (ts->poststep) {
2413ae60f76fSBarry Smith     PetscStackCallStandard((*ts->poststep),(ts));
241472ac3e02SJed Brown   }
24153f2090d5SJed Brown   PetscFunctionReturn(0);
24163f2090d5SJed Brown }
24173f2090d5SJed Brown 
2418d763cef2SBarry Smith /* ------------ Routines to set performance monitoring options ----------- */
2419d763cef2SBarry Smith 
24204a2ae208SSatish Balay #undef __FUNCT__
2421a6570f20SBarry Smith #define __FUNCT__ "TSMonitorSet"
2422d763cef2SBarry Smith /*@C
2423a6570f20SBarry Smith    TSMonitorSet - Sets an ADDITIONAL function that is to be used at every
2424d763cef2SBarry Smith    timestep to display the iteration's  progress.
2425d763cef2SBarry Smith 
24263f9fe445SBarry Smith    Logically Collective on TS
2427d763cef2SBarry Smith 
2428d763cef2SBarry Smith    Input Parameters:
2429d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
2430e213d8f1SJed Brown .  monitor - monitoring routine
2431329f5518SBarry Smith .  mctx - [optional] user-defined context for private data for the
24320298fd71SBarry Smith              monitor routine (use NULL if no context is desired)
2433b3006f0bSLois Curfman McInnes -  monitordestroy - [optional] routine that frees monitor context
24340298fd71SBarry Smith           (may be NULL)
2435d763cef2SBarry Smith 
2436e213d8f1SJed Brown    Calling sequence of monitor:
24370910c330SBarry Smith $    int monitor(TS ts,PetscInt steps,PetscReal time,Vec u,void *mctx)
2438d763cef2SBarry Smith 
2439d763cef2SBarry Smith +    ts - the TS context
244088c05cc5SBarry 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
244188c05cc5SBarry Smith                                been interpolated to)
24421f06c33eSBarry Smith .    time - current time
24430910c330SBarry Smith .    u - current iterate
2444d763cef2SBarry Smith -    mctx - [optional] monitoring context
2445d763cef2SBarry Smith 
2446d763cef2SBarry Smith    Notes:
2447d763cef2SBarry Smith    This routine adds an additional monitor to the list of monitors that
2448d763cef2SBarry Smith    already has been loaded.
2449d763cef2SBarry Smith 
2450025f1a04SBarry Smith    Fortran notes: Only a single monitor function can be set for each TS object
2451025f1a04SBarry Smith 
2452d763cef2SBarry Smith    Level: intermediate
2453d763cef2SBarry Smith 
2454d763cef2SBarry Smith .keywords: TS, timestep, set, monitor
2455d763cef2SBarry Smith 
2456a6570f20SBarry Smith .seealso: TSMonitorDefault(), TSMonitorCancel()
2457d763cef2SBarry Smith @*/
2458c2efdce3SBarry Smith PetscErrorCode  TSMonitorSet(TS ts,PetscErrorCode (*monitor)(TS,PetscInt,PetscReal,Vec,void*),void *mctx,PetscErrorCode (*mdestroy)(void**))
2459d763cef2SBarry Smith {
2460d763cef2SBarry Smith   PetscFunctionBegin;
24610700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
246217186662SBarry Smith   if (ts->numbermonitors >= MAXTSMONITORS) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Too many monitors set");
2463d763cef2SBarry Smith   ts->monitor[ts->numbermonitors]          = monitor;
24648704b422SBarry Smith   ts->monitordestroy[ts->numbermonitors]   = mdestroy;
2465d763cef2SBarry Smith   ts->monitorcontext[ts->numbermonitors++] = (void*)mctx;
2466d763cef2SBarry Smith   PetscFunctionReturn(0);
2467d763cef2SBarry Smith }
2468d763cef2SBarry Smith 
24694a2ae208SSatish Balay #undef __FUNCT__
2470a6570f20SBarry Smith #define __FUNCT__ "TSMonitorCancel"
2471d763cef2SBarry Smith /*@C
2472a6570f20SBarry Smith    TSMonitorCancel - Clears all the monitors that have been set on a time-step object.
2473d763cef2SBarry Smith 
24743f9fe445SBarry Smith    Logically Collective on TS
2475d763cef2SBarry Smith 
2476d763cef2SBarry Smith    Input Parameters:
2477d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2478d763cef2SBarry Smith 
2479d763cef2SBarry Smith    Notes:
2480d763cef2SBarry Smith    There is no way to remove a single, specific monitor.
2481d763cef2SBarry Smith 
2482d763cef2SBarry Smith    Level: intermediate
2483d763cef2SBarry Smith 
2484d763cef2SBarry Smith .keywords: TS, timestep, set, monitor
2485d763cef2SBarry Smith 
2486a6570f20SBarry Smith .seealso: TSMonitorDefault(), TSMonitorSet()
2487d763cef2SBarry Smith @*/
24887087cfbeSBarry Smith PetscErrorCode  TSMonitorCancel(TS ts)
2489d763cef2SBarry Smith {
2490d952e501SBarry Smith   PetscErrorCode ierr;
2491d952e501SBarry Smith   PetscInt       i;
2492d952e501SBarry Smith 
2493d763cef2SBarry Smith   PetscFunctionBegin;
24940700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2495d952e501SBarry Smith   for (i=0; i<ts->numbermonitors; i++) {
24968704b422SBarry Smith     if (ts->monitordestroy[i]) {
24978704b422SBarry Smith       ierr = (*ts->monitordestroy[i])(&ts->monitorcontext[i]);CHKERRQ(ierr);
2498d952e501SBarry Smith     }
2499d952e501SBarry Smith   }
2500d763cef2SBarry Smith   ts->numbermonitors = 0;
2501d763cef2SBarry Smith   PetscFunctionReturn(0);
2502d763cef2SBarry Smith }
2503d763cef2SBarry Smith 
25044a2ae208SSatish Balay #undef __FUNCT__
2505a6570f20SBarry Smith #define __FUNCT__ "TSMonitorDefault"
2506d8e5e3e6SSatish Balay /*@
2507a6570f20SBarry Smith    TSMonitorDefault - Sets the Default monitor
25085516499fSSatish Balay 
25095516499fSSatish Balay    Level: intermediate
251041251cbbSSatish Balay 
25115516499fSSatish Balay .keywords: TS, set, monitor
25125516499fSSatish Balay 
251341251cbbSSatish Balay .seealso: TSMonitorDefault(), TSMonitorSet()
251441251cbbSSatish Balay @*/
2515649052a6SBarry Smith PetscErrorCode TSMonitorDefault(TS ts,PetscInt step,PetscReal ptime,Vec v,void *dummy)
2516d763cef2SBarry Smith {
2517dfbe8321SBarry Smith   PetscErrorCode ierr;
2518ce94432eSBarry Smith   PetscViewer    viewer = dummy ? (PetscViewer) dummy : PETSC_VIEWER_STDOUT_(PetscObjectComm((PetscObject)ts));
2519d132466eSBarry Smith 
2520d763cef2SBarry Smith   PetscFunctionBegin;
2521649052a6SBarry Smith   ierr = PetscViewerASCIIAddTab(viewer,((PetscObject)ts)->tablevel);CHKERRQ(ierr);
2522971832b6SBarry Smith   ierr = PetscViewerASCIIPrintf(viewer,"%D TS dt %g time %g\n",step,(double)ts->time_step,(double)ptime);CHKERRQ(ierr);
2523649052a6SBarry Smith   ierr = PetscViewerASCIISubtractTab(viewer,((PetscObject)ts)->tablevel);CHKERRQ(ierr);
2524d763cef2SBarry Smith   PetscFunctionReturn(0);
2525d763cef2SBarry Smith }
2526d763cef2SBarry Smith 
25274a2ae208SSatish Balay #undef __FUNCT__
2528cd652676SJed Brown #define __FUNCT__ "TSSetRetainStages"
2529cd652676SJed Brown /*@
2530cd652676SJed Brown    TSSetRetainStages - Request that all stages in the upcoming step be stored so that interpolation will be available.
2531cd652676SJed Brown 
2532cd652676SJed Brown    Logically Collective on TS
2533cd652676SJed Brown 
2534cd652676SJed Brown    Input Argument:
2535cd652676SJed Brown .  ts - time stepping context
2536cd652676SJed Brown 
2537cd652676SJed Brown    Output Argument:
2538cd652676SJed Brown .  flg - PETSC_TRUE or PETSC_FALSE
2539cd652676SJed Brown 
2540cd652676SJed Brown    Level: intermediate
2541cd652676SJed Brown 
2542cd652676SJed Brown .keywords: TS, set
2543cd652676SJed Brown 
2544cd652676SJed Brown .seealso: TSInterpolate(), TSSetPostStep()
2545cd652676SJed Brown @*/
2546cd652676SJed Brown PetscErrorCode TSSetRetainStages(TS ts,PetscBool flg)
2547cd652676SJed Brown {
2548cd652676SJed Brown   PetscFunctionBegin;
2549cd652676SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2550cd652676SJed Brown   ts->retain_stages = flg;
2551cd652676SJed Brown   PetscFunctionReturn(0);
2552cd652676SJed Brown }
2553cd652676SJed Brown 
2554cd652676SJed Brown #undef __FUNCT__
2555cd652676SJed Brown #define __FUNCT__ "TSInterpolate"
2556cd652676SJed Brown /*@
2557cd652676SJed Brown    TSInterpolate - Interpolate the solution computed during the previous step to an arbitrary location in the interval
2558cd652676SJed Brown 
2559cd652676SJed Brown    Collective on TS
2560cd652676SJed Brown 
2561cd652676SJed Brown    Input Argument:
2562cd652676SJed Brown +  ts - time stepping context
2563cd652676SJed Brown -  t - time to interpolate to
2564cd652676SJed Brown 
2565cd652676SJed Brown    Output Argument:
25660910c330SBarry Smith .  U - state at given time
2567cd652676SJed Brown 
2568cd652676SJed Brown    Notes:
2569cd652676SJed Brown    The user should call TSSetRetainStages() before taking a step in which interpolation will be requested.
2570cd652676SJed Brown 
2571cd652676SJed Brown    Level: intermediate
2572cd652676SJed Brown 
2573cd652676SJed Brown    Developer Notes:
2574cd652676SJed Brown    TSInterpolate() and the storing of previous steps/stages should be generalized to support delay differential equations and continuous adjoints.
2575cd652676SJed Brown 
2576cd652676SJed Brown .keywords: TS, set
2577cd652676SJed Brown 
2578cd652676SJed Brown .seealso: TSSetRetainStages(), TSSetPostStep()
2579cd652676SJed Brown @*/
25800910c330SBarry Smith PetscErrorCode TSInterpolate(TS ts,PetscReal t,Vec U)
2581cd652676SJed Brown {
2582cd652676SJed Brown   PetscErrorCode ierr;
2583cd652676SJed Brown 
2584cd652676SJed Brown   PetscFunctionBegin;
2585cd652676SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2586b06615a5SLisandro Dalcin   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
2587ce94432eSBarry 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,ts->ptime-ts->time_step_prev,ts->ptime);
2588ce94432eSBarry Smith   if (!ts->ops->interpolate) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"%s does not provide interpolation",((PetscObject)ts)->type_name);
25890910c330SBarry Smith   ierr = (*ts->ops->interpolate)(ts,t,U);CHKERRQ(ierr);
2590cd652676SJed Brown   PetscFunctionReturn(0);
2591cd652676SJed Brown }
2592cd652676SJed Brown 
2593cd652676SJed Brown #undef __FUNCT__
25944a2ae208SSatish Balay #define __FUNCT__ "TSStep"
2595d763cef2SBarry Smith /*@
25966d9e5789SSean Farley    TSStep - Steps one time step
2597d763cef2SBarry Smith 
2598d763cef2SBarry Smith    Collective on TS
2599d763cef2SBarry Smith 
2600d763cef2SBarry Smith    Input Parameter:
2601d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2602d763cef2SBarry Smith 
26036d9e5789SSean Farley    Level: intermediate
2604d763cef2SBarry Smith 
2605b8123daeSJed Brown    Notes:
2606b8123daeSJed Brown    The hook set using TSSetPreStep() is called before each attempt to take the step. In general, the time step size may
2607b8123daeSJed Brown    be changed due to adaptive error controller or solve failures. Note that steps may contain multiple stages.
2608b8123daeSJed Brown 
260925cb2221SBarry Smith    This may over-step the final time provided in TSSetDuration() depending on the time-step used. TSSolve() interpolates to exactly the
261025cb2221SBarry Smith    time provided in TSSetDuration(). One can use TSInterpolate() to determine an interpolated solution within the final timestep.
261125cb2221SBarry Smith 
2612d763cef2SBarry Smith .keywords: TS, timestep, solve
2613d763cef2SBarry Smith 
26149be3e283SDebojyoti Ghosh .seealso: TSCreate(), TSSetUp(), TSDestroy(), TSSolve(), TSSetPreStep(), TSSetPreStage(), TSSetPostStage(), TSInterpolate()
2615d763cef2SBarry Smith @*/
2616193ac0bcSJed Brown PetscErrorCode  TSStep(TS ts)
2617d763cef2SBarry Smith {
2618362cd11cSLisandro Dalcin   PetscReal      ptime_prev;
2619dfbe8321SBarry Smith   PetscErrorCode ierr;
2620d763cef2SBarry Smith 
2621d763cef2SBarry Smith   PetscFunctionBegin;
26220700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2623d405a339SMatthew Knepley   ierr = TSSetUp(ts);CHKERRQ(ierr);
2624d405a339SMatthew Knepley 
2625362cd11cSLisandro Dalcin   ts->reason = TS_CONVERGED_ITERATING;
2626362cd11cSLisandro Dalcin   ptime_prev = ts->ptime;
2627bbd56ea5SKarl Rupp 
2628d5ba7fb7SMatthew Knepley   ierr = PetscLogEventBegin(TS_Step,ts,0,0,0);CHKERRQ(ierr);
2629193ac0bcSJed Brown   ierr = (*ts->ops->step)(ts);CHKERRQ(ierr);
2630d5ba7fb7SMatthew Knepley   ierr = PetscLogEventEnd(TS_Step,ts,0,0,0);CHKERRQ(ierr);
2631bbd56ea5SKarl Rupp 
2632362cd11cSLisandro Dalcin   ts->time_step_prev = ts->ptime - ptime_prev;
2633362cd11cSLisandro Dalcin 
2634362cd11cSLisandro Dalcin   if (ts->reason < 0) {
2635cef5090cSJed Brown     if (ts->errorifstepfailed) {
2636cef5090cSJed Brown       if (ts->reason == TS_DIVERGED_NONLINEAR_SOLVE) {
2637ce94432eSBarry 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]);
2638ce94432eSBarry Smith       } else SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed due to %s",TSConvergedReasons[ts->reason]);
2639cef5090cSJed Brown     }
2640362cd11cSLisandro Dalcin   } else if (!ts->reason) {
2641db4deed7SKarl Rupp     if (ts->steps >= ts->max_steps)     ts->reason = TS_CONVERGED_ITS;
2642db4deed7SKarl Rupp     else if (ts->ptime >= ts->max_time) ts->reason = TS_CONVERGED_TIME;
2643362cd11cSLisandro Dalcin   }
2644d763cef2SBarry Smith   PetscFunctionReturn(0);
2645d763cef2SBarry Smith }
2646d763cef2SBarry Smith 
26474a2ae208SSatish Balay #undef __FUNCT__
264805175c85SJed Brown #define __FUNCT__ "TSEvaluateStep"
264905175c85SJed Brown /*@
265005175c85SJed Brown    TSEvaluateStep - Evaluate the solution at the end of a time step with a given order of accuracy.
265105175c85SJed Brown 
26521c3436cfSJed Brown    Collective on TS
265305175c85SJed Brown 
265405175c85SJed Brown    Input Arguments:
26551c3436cfSJed Brown +  ts - time stepping context
26561c3436cfSJed Brown .  order - desired order of accuracy
26570298fd71SBarry Smith -  done - whether the step was evaluated at this order (pass NULL to generate an error if not available)
265805175c85SJed Brown 
265905175c85SJed Brown    Output Arguments:
26600910c330SBarry Smith .  U - state at the end of the current step
266105175c85SJed Brown 
266205175c85SJed Brown    Level: advanced
266305175c85SJed Brown 
2664108c343cSJed Brown    Notes:
2665108c343cSJed Brown    This function cannot be called until all stages have been evaluated.
2666108c343cSJed 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.
2667108c343cSJed Brown 
26681c3436cfSJed Brown .seealso: TSStep(), TSAdapt
266905175c85SJed Brown @*/
26700910c330SBarry Smith PetscErrorCode TSEvaluateStep(TS ts,PetscInt order,Vec U,PetscBool *done)
267105175c85SJed Brown {
267205175c85SJed Brown   PetscErrorCode ierr;
267305175c85SJed Brown 
267405175c85SJed Brown   PetscFunctionBegin;
267505175c85SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
267605175c85SJed Brown   PetscValidType(ts,1);
26770910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
2678ce94432eSBarry Smith   if (!ts->ops->evaluatestep) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"TSEvaluateStep not implemented for type '%s'",((PetscObject)ts)->type_name);
26790910c330SBarry Smith   ierr = (*ts->ops->evaluatestep)(ts,order,U,done);CHKERRQ(ierr);
268005175c85SJed Brown   PetscFunctionReturn(0);
268105175c85SJed Brown }
268205175c85SJed Brown 
268305175c85SJed Brown #undef __FUNCT__
26846a4d4014SLisandro Dalcin #define __FUNCT__ "TSSolve"
26856a4d4014SLisandro Dalcin /*@
26866a4d4014SLisandro Dalcin    TSSolve - Steps the requested number of timesteps.
26876a4d4014SLisandro Dalcin 
26886a4d4014SLisandro Dalcin    Collective on TS
26896a4d4014SLisandro Dalcin 
26906a4d4014SLisandro Dalcin    Input Parameter:
26916a4d4014SLisandro Dalcin +  ts - the TS context obtained from TSCreate()
2692cc708dedSBarry Smith -  u - the solution vector  (can be null if TSSetSolution() was used, otherwise must contain the initial conditions)
26935a3a76d0SJed Brown 
26946a4d4014SLisandro Dalcin    Level: beginner
26956a4d4014SLisandro Dalcin 
26965a3a76d0SJed Brown    Notes:
26975a3a76d0SJed Brown    The final time returned by this function may be different from the time of the internally
26985a3a76d0SJed Brown    held state accessible by TSGetSolution() and TSGetTime() because the method may have
26995a3a76d0SJed Brown    stepped over the final time.
27005a3a76d0SJed Brown 
27016a4d4014SLisandro Dalcin .keywords: TS, timestep, solve
27026a4d4014SLisandro Dalcin 
27036a4d4014SLisandro Dalcin .seealso: TSCreate(), TSSetSolution(), TSStep()
27046a4d4014SLisandro Dalcin @*/
2705cc708dedSBarry Smith PetscErrorCode TSSolve(TS ts,Vec u)
27066a4d4014SLisandro Dalcin {
2707b06615a5SLisandro Dalcin   Vec               solution;
27086a4d4014SLisandro Dalcin   PetscErrorCode    ierr;
2709f22f69f0SBarry Smith 
27106a4d4014SLisandro Dalcin   PetscFunctionBegin;
27110700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2712f2c2a1b9SBarry Smith   if (u) PetscValidHeaderSpecific(u,VEC_CLASSID,2);
271349354f04SShri Abhyankar   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 */
2714b06615a5SLisandro Dalcin     PetscValidHeaderSpecific(u,VEC_CLASSID,2);
27150910c330SBarry Smith     if (!ts->vec_sol || u == ts->vec_sol) {
2716b06615a5SLisandro Dalcin       ierr = VecDuplicate(u,&solution);CHKERRQ(ierr);
2717b06615a5SLisandro Dalcin       ierr = TSSetSolution(ts,solution);CHKERRQ(ierr);
2718b06615a5SLisandro Dalcin       ierr = VecDestroy(&solution);CHKERRQ(ierr); /* grant ownership */
27195a3a76d0SJed Brown     }
27200910c330SBarry Smith     ierr = VecCopy(u,ts->vec_sol);CHKERRQ(ierr);
2721bbd56ea5SKarl Rupp   } else if (u) {
27220910c330SBarry Smith     ierr = TSSetSolution(ts,u);CHKERRQ(ierr);
27235a3a76d0SJed Brown   }
2724b5d403baSSean Farley   ierr = TSSetUp(ts);CHKERRQ(ierr);
27256a4d4014SLisandro Dalcin   /* reset time step and iteration counters */
2726193ac0bcSJed Brown   ts->steps             = 0;
27275ef26d82SJed Brown   ts->ksp_its           = 0;
27285ef26d82SJed Brown   ts->snes_its          = 0;
2729c610991cSLisandro Dalcin   ts->num_snes_failures = 0;
2730c610991cSLisandro Dalcin   ts->reject            = 0;
2731193ac0bcSJed Brown   ts->reason            = TS_CONVERGED_ITERATING;
2732193ac0bcSJed Brown 
2733ce1779c8SBarry Smith   ierr = TSViewFromOptions(ts,NULL,"-ts_view_pre");CHKERRQ(ierr);
2734f05ece33SBarry Smith 
2735193ac0bcSJed Brown   if (ts->ops->solve) {         /* This private interface is transitional and should be removed when all implementations are updated. */
2736193ac0bcSJed Brown     ierr = (*ts->ops->solve)(ts);CHKERRQ(ierr);
27370910c330SBarry Smith     ierr = VecCopy(ts->vec_sol,u);CHKERRQ(ierr);
2738cc708dedSBarry Smith     ts->solvetime = ts->ptime;
2739193ac0bcSJed Brown   } else {
27406a4d4014SLisandro Dalcin     /* steps the requested number of timesteps. */
2741db4deed7SKarl Rupp     if (ts->steps >= ts->max_steps)     ts->reason = TS_CONVERGED_ITS;
2742db4deed7SKarl Rupp     else if (ts->ptime >= ts->max_time) ts->reason = TS_CONVERGED_TIME;
2743e1a7a14fSJed Brown     while (!ts->reason) {
2744b06615a5SLisandro Dalcin       ierr = TSMonitor(ts,ts->steps,ts->ptime,ts->vec_sol);CHKERRQ(ierr);
2745193ac0bcSJed Brown       ierr = TSStep(ts);CHKERRQ(ierr);
2746193ac0bcSJed Brown       ierr = TSPostStep(ts);CHKERRQ(ierr);
2747193ac0bcSJed Brown     }
274849354f04SShri Abhyankar     if (ts->exact_final_time == TS_EXACTFINALTIME_INTERPOLATE && ts->ptime > ts->max_time) {
27490910c330SBarry Smith       ierr = TSInterpolate(ts,ts->max_time,u);CHKERRQ(ierr);
2750cc708dedSBarry Smith       ts->solvetime = ts->max_time;
2751b06615a5SLisandro Dalcin       solution = u;
27520574a7fbSJed Brown     } else {
2753ad6bc421SBarry Smith       if (u) {ierr = VecCopy(ts->vec_sol,u);CHKERRQ(ierr);}
2754cc708dedSBarry Smith       ts->solvetime = ts->ptime;
2755b06615a5SLisandro Dalcin       solution = ts->vec_sol;
27560574a7fbSJed Brown     }
2757b06615a5SLisandro Dalcin     ierr = TSMonitor(ts,ts->steps,ts->solvetime,solution);CHKERRQ(ierr);
2758193ac0bcSJed Brown   }
2759ce1779c8SBarry Smith   ierr = TSViewFromOptions(ts,NULL,"-ts_view");CHKERRQ(ierr);
276056f85f32SBarry Smith   ierr = PetscObjectSAWsBlock((PetscObject)ts);CHKERRQ(ierr);
27616a4d4014SLisandro Dalcin   PetscFunctionReturn(0);
27626a4d4014SLisandro Dalcin }
27636a4d4014SLisandro Dalcin 
27646a4d4014SLisandro Dalcin #undef __FUNCT__
27654a2ae208SSatish Balay #define __FUNCT__ "TSMonitor"
2766228d79bcSJed Brown /*@
2767228d79bcSJed Brown    TSMonitor - Runs all user-provided monitor routines set using TSMonitorSet()
2768228d79bcSJed Brown 
2769228d79bcSJed Brown    Collective on TS
2770228d79bcSJed Brown 
2771228d79bcSJed Brown    Input Parameters:
2772228d79bcSJed Brown +  ts - time stepping context obtained from TSCreate()
2773228d79bcSJed Brown .  step - step number that has just completed
2774228d79bcSJed Brown .  ptime - model time of the state
27750910c330SBarry Smith -  u - state at the current model time
2776228d79bcSJed Brown 
2777228d79bcSJed Brown    Notes:
2778228d79bcSJed Brown    TSMonitor() is typically used within the time stepping implementations.
2779228d79bcSJed Brown    Users might call this function when using the TSStep() interface instead of TSSolve().
2780228d79bcSJed Brown 
2781228d79bcSJed Brown    Level: advanced
2782228d79bcSJed Brown 
2783228d79bcSJed Brown .keywords: TS, timestep
2784228d79bcSJed Brown @*/
27850910c330SBarry Smith PetscErrorCode TSMonitor(TS ts,PetscInt step,PetscReal ptime,Vec u)
2786d763cef2SBarry Smith {
27876849ba73SBarry Smith   PetscErrorCode ierr;
2788a7cc72afSBarry Smith   PetscInt       i,n = ts->numbermonitors;
2789d763cef2SBarry Smith 
2790d763cef2SBarry Smith   PetscFunctionBegin;
2791b06615a5SLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2792b06615a5SLisandro Dalcin   PetscValidHeaderSpecific(u,VEC_CLASSID,4);
2793d763cef2SBarry Smith   for (i=0; i<n; i++) {
27940910c330SBarry Smith     ierr = (*ts->monitor[i])(ts,step,ptime,u,ts->monitorcontext[i]);CHKERRQ(ierr);
2795d763cef2SBarry Smith   }
2796d763cef2SBarry Smith   PetscFunctionReturn(0);
2797d763cef2SBarry Smith }
2798d763cef2SBarry Smith 
2799d763cef2SBarry Smith /* ------------------------------------------------------------------------*/
28004a2ae208SSatish Balay #undef __FUNCT__
2801a9f9c1f6SBarry Smith #define __FUNCT__ "TSMonitorLGCtxCreate"
2802d763cef2SBarry Smith /*@C
2803a9f9c1f6SBarry Smith    TSMonitorLGCtxCreate - Creates a line graph context for use with
2804a9f9c1f6SBarry Smith    TS to monitor the solution process graphically in various ways
2805d763cef2SBarry Smith 
2806d763cef2SBarry Smith    Collective on TS
2807d763cef2SBarry Smith 
2808d763cef2SBarry Smith    Input Parameters:
2809d763cef2SBarry Smith +  host - the X display to open, or null for the local machine
2810d763cef2SBarry Smith .  label - the title to put in the title bar
28117c922b88SBarry Smith .  x, y - the screen coordinates of the upper left coordinate of the window
2812a9f9c1f6SBarry Smith .  m, n - the screen width and height in pixels
2813a9f9c1f6SBarry Smith -  howoften - if positive then determines the frequency of the plotting, if -1 then only at the final time
2814d763cef2SBarry Smith 
2815d763cef2SBarry Smith    Output Parameter:
28160b039ecaSBarry Smith .  ctx - the context
2817d763cef2SBarry Smith 
2818d763cef2SBarry Smith    Options Database Key:
28194f09c107SBarry Smith +  -ts_monitor_lg_timestep - automatically sets line graph monitor
28204f09c107SBarry Smith .  -ts_monitor_lg_solution -
282199fdda47SBarry Smith .  -ts_monitor_lg_error -
282299fdda47SBarry Smith .  -ts_monitor_lg_ksp_iterations -
282399fdda47SBarry Smith .  -ts_monitor_lg_snes_iterations -
282499fdda47SBarry Smith -  -lg_indicate_data_points <true,false> - indicate the data points (at each time step) on the plot; default is true
2825d763cef2SBarry Smith 
2826d763cef2SBarry Smith    Notes:
2827a9f9c1f6SBarry Smith    Use TSMonitorLGCtxDestroy() to destroy.
2828d763cef2SBarry Smith 
2829d763cef2SBarry Smith    Level: intermediate
2830d763cef2SBarry Smith 
28317c922b88SBarry Smith .keywords: TS, monitor, line graph, residual, seealso
2832d763cef2SBarry Smith 
28334f09c107SBarry Smith .seealso: TSMonitorLGTimeStep(), TSMonitorSet(), TSMonitorLGSolution(), TSMonitorLGError()
28347c922b88SBarry Smith 
2835d763cef2SBarry Smith @*/
2836a9f9c1f6SBarry Smith PetscErrorCode  TSMonitorLGCtxCreate(MPI_Comm comm,const char host[],const char label[],int x,int y,int m,int n,PetscInt howoften,TSMonitorLGCtx *ctx)
2837d763cef2SBarry Smith {
2838b0a32e0cSBarry Smith   PetscDraw      win;
2839dfbe8321SBarry Smith   PetscErrorCode ierr;
2840d763cef2SBarry Smith 
2841d763cef2SBarry Smith   PetscFunctionBegin;
2842b00a9115SJed Brown   ierr = PetscNew(ctx);CHKERRQ(ierr);
2843a80ad3e0SBarry Smith   ierr = PetscDrawCreate(comm,host,label,x,y,m,n,&win);CHKERRQ(ierr);
28443fbbecb0SBarry Smith   ierr = PetscDrawSetFromOptions(win);CHKERRQ(ierr);
28450b039ecaSBarry Smith   ierr = PetscDrawLGCreate(win,1,&(*ctx)->lg);CHKERRQ(ierr);
28463bb1ff40SBarry Smith   ierr = PetscLogObjectParent((PetscObject)(*ctx)->lg,(PetscObject)win);CHKERRQ(ierr);
2847287de1a7SBarry Smith   ierr = PetscDrawLGIndicateDataPoints((*ctx)->lg,PETSC_TRUE);CHKERRQ(ierr);
2848287de1a7SBarry Smith   ierr = PetscDrawLGSetFromOptions((*ctx)->lg);CHKERRQ(ierr);
2849a9f9c1f6SBarry Smith   (*ctx)->howoften = howoften;
2850d763cef2SBarry Smith   PetscFunctionReturn(0);
2851d763cef2SBarry Smith }
2852d763cef2SBarry Smith 
28534a2ae208SSatish Balay #undef __FUNCT__
28544f09c107SBarry Smith #define __FUNCT__ "TSMonitorLGTimeStep"
2855b06615a5SLisandro Dalcin PetscErrorCode TSMonitorLGTimeStep(TS ts,PetscInt step,PetscReal ptime,Vec v,void *monctx)
2856d763cef2SBarry Smith {
28570b039ecaSBarry Smith   TSMonitorLGCtx ctx = (TSMonitorLGCtx) monctx;
2858c32365f1SBarry Smith   PetscReal      x   = ptime,y;
2859dfbe8321SBarry Smith   PetscErrorCode ierr;
2860d763cef2SBarry Smith 
2861d763cef2SBarry Smith   PetscFunctionBegin;
2862b06615a5SLisandro Dalcin   if (!step) {
2863a9f9c1f6SBarry Smith     PetscDrawAxis axis;
2864a9f9c1f6SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
2865a9f9c1f6SBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Timestep as function of time","Time","Time step");CHKERRQ(ierr);
2866a9f9c1f6SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
2867287de1a7SBarry Smith     ierr = PetscDrawLGIndicateDataPoints(ctx->lg,PETSC_TRUE);CHKERRQ(ierr);
2868a9f9c1f6SBarry Smith   }
2869c32365f1SBarry Smith   ierr = TSGetTimeStep(ts,&y);CHKERRQ(ierr);
28700b039ecaSBarry Smith   ierr = PetscDrawLGAddPoint(ctx->lg,&x,&y);CHKERRQ(ierr);
2871b06615a5SLisandro Dalcin   if (((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason)) {
28720b039ecaSBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
28733923b477SBarry Smith   }
2874d763cef2SBarry Smith   PetscFunctionReturn(0);
2875d763cef2SBarry Smith }
2876d763cef2SBarry Smith 
28774a2ae208SSatish Balay #undef __FUNCT__
2878a9f9c1f6SBarry Smith #define __FUNCT__ "TSMonitorLGCtxDestroy"
2879d763cef2SBarry Smith /*@C
2880a9f9c1f6SBarry Smith    TSMonitorLGCtxDestroy - Destroys a line graph context that was created
2881a9f9c1f6SBarry Smith    with TSMonitorLGCtxCreate().
2882d763cef2SBarry Smith 
28830b039ecaSBarry Smith    Collective on TSMonitorLGCtx
2884d763cef2SBarry Smith 
2885d763cef2SBarry Smith    Input Parameter:
28860b039ecaSBarry Smith .  ctx - the monitor context
2887d763cef2SBarry Smith 
2888d763cef2SBarry Smith    Level: intermediate
2889d763cef2SBarry Smith 
2890d763cef2SBarry Smith .keywords: TS, monitor, line graph, destroy
2891d763cef2SBarry Smith 
28924f09c107SBarry Smith .seealso: TSMonitorLGCtxCreate(),  TSMonitorSet(), TSMonitorLGTimeStep();
2893d763cef2SBarry Smith @*/
2894a9f9c1f6SBarry Smith PetscErrorCode  TSMonitorLGCtxDestroy(TSMonitorLGCtx *ctx)
2895d763cef2SBarry Smith {
2896b0a32e0cSBarry Smith   PetscDraw      draw;
2897dfbe8321SBarry Smith   PetscErrorCode ierr;
2898d763cef2SBarry Smith 
2899d763cef2SBarry Smith   PetscFunctionBegin;
29000b039ecaSBarry Smith   ierr = PetscDrawLGGetDraw((*ctx)->lg,&draw);CHKERRQ(ierr);
29016bf464f9SBarry Smith   ierr = PetscDrawDestroy(&draw);CHKERRQ(ierr);
29020b039ecaSBarry Smith   ierr = PetscDrawLGDestroy(&(*ctx)->lg);CHKERRQ(ierr);
29030b039ecaSBarry Smith   ierr = PetscFree(*ctx);CHKERRQ(ierr);
2904d763cef2SBarry Smith   PetscFunctionReturn(0);
2905d763cef2SBarry Smith }
2906d763cef2SBarry Smith 
29074a2ae208SSatish Balay #undef __FUNCT__
29084a2ae208SSatish Balay #define __FUNCT__ "TSGetTime"
2909d763cef2SBarry Smith /*@
2910b8123daeSJed Brown    TSGetTime - Gets the time of the most recently completed step.
2911d763cef2SBarry Smith 
2912d763cef2SBarry Smith    Not Collective
2913d763cef2SBarry Smith 
2914d763cef2SBarry Smith    Input Parameter:
2915d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2916d763cef2SBarry Smith 
2917d763cef2SBarry Smith    Output Parameter:
2918d763cef2SBarry Smith .  t  - the current time
2919d763cef2SBarry Smith 
2920d763cef2SBarry Smith    Level: beginner
2921d763cef2SBarry Smith 
2922b8123daeSJed Brown    Note:
2923b8123daeSJed Brown    When called during time step evaluation (e.g. during residual evaluation or via hooks set using TSSetPreStep(),
29249be3e283SDebojyoti Ghosh    TSSetPreStage(), TSSetPostStage(), or TSSetPostStep()), the time is the time at the start of the step being evaluated.
2925b8123daeSJed Brown 
2926d763cef2SBarry Smith .seealso: TSSetInitialTimeStep(), TSGetTimeStep()
2927d763cef2SBarry Smith 
2928d763cef2SBarry Smith .keywords: TS, get, time
2929d763cef2SBarry Smith @*/
29307087cfbeSBarry Smith PetscErrorCode  TSGetTime(TS ts,PetscReal *t)
2931d763cef2SBarry Smith {
2932d763cef2SBarry Smith   PetscFunctionBegin;
29330700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2934f7cf8827SBarry Smith   PetscValidRealPointer(t,2);
2935d763cef2SBarry Smith   *t = ts->ptime;
2936d763cef2SBarry Smith   PetscFunctionReturn(0);
2937d763cef2SBarry Smith }
2938d763cef2SBarry Smith 
29394a2ae208SSatish Balay #undef __FUNCT__
29406a4d4014SLisandro Dalcin #define __FUNCT__ "TSSetTime"
29416a4d4014SLisandro Dalcin /*@
29426a4d4014SLisandro Dalcin    TSSetTime - Allows one to reset the time.
29436a4d4014SLisandro Dalcin 
29443f9fe445SBarry Smith    Logically Collective on TS
29456a4d4014SLisandro Dalcin 
29466a4d4014SLisandro Dalcin    Input Parameters:
29476a4d4014SLisandro Dalcin +  ts - the TS context obtained from TSCreate()
29486a4d4014SLisandro Dalcin -  time - the time
29496a4d4014SLisandro Dalcin 
29506a4d4014SLisandro Dalcin    Level: intermediate
29516a4d4014SLisandro Dalcin 
29526a4d4014SLisandro Dalcin .seealso: TSGetTime(), TSSetDuration()
29536a4d4014SLisandro Dalcin 
29546a4d4014SLisandro Dalcin .keywords: TS, set, time
29556a4d4014SLisandro Dalcin @*/
29567087cfbeSBarry Smith PetscErrorCode  TSSetTime(TS ts, PetscReal t)
29576a4d4014SLisandro Dalcin {
29586a4d4014SLisandro Dalcin   PetscFunctionBegin;
29590700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2960c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(ts,t,2);
29616a4d4014SLisandro Dalcin   ts->ptime = t;
29626a4d4014SLisandro Dalcin   PetscFunctionReturn(0);
29636a4d4014SLisandro Dalcin }
29646a4d4014SLisandro Dalcin 
29656a4d4014SLisandro Dalcin #undef __FUNCT__
29664a2ae208SSatish Balay #define __FUNCT__ "TSSetOptionsPrefix"
2967d763cef2SBarry Smith /*@C
2968d763cef2SBarry Smith    TSSetOptionsPrefix - Sets the prefix used for searching for all
2969d763cef2SBarry Smith    TS options in the database.
2970d763cef2SBarry Smith 
29713f9fe445SBarry Smith    Logically Collective on TS
2972d763cef2SBarry Smith 
2973d763cef2SBarry Smith    Input Parameter:
2974d763cef2SBarry Smith +  ts     - The TS context
2975d763cef2SBarry Smith -  prefix - The prefix to prepend to all option names
2976d763cef2SBarry Smith 
2977d763cef2SBarry Smith    Notes:
2978d763cef2SBarry Smith    A hyphen (-) must NOT be given at the beginning of the prefix name.
2979d763cef2SBarry Smith    The first character of all runtime options is AUTOMATICALLY the
2980d763cef2SBarry Smith    hyphen.
2981d763cef2SBarry Smith 
2982d763cef2SBarry Smith    Level: advanced
2983d763cef2SBarry Smith 
2984d763cef2SBarry Smith .keywords: TS, set, options, prefix, database
2985d763cef2SBarry Smith 
2986d763cef2SBarry Smith .seealso: TSSetFromOptions()
2987d763cef2SBarry Smith 
2988d763cef2SBarry Smith @*/
29897087cfbeSBarry Smith PetscErrorCode  TSSetOptionsPrefix(TS ts,const char prefix[])
2990d763cef2SBarry Smith {
2991dfbe8321SBarry Smith   PetscErrorCode ierr;
2992089b2837SJed Brown   SNES           snes;
2993d763cef2SBarry Smith 
2994d763cef2SBarry Smith   PetscFunctionBegin;
29950700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2996d763cef2SBarry Smith   ierr = PetscObjectSetOptionsPrefix((PetscObject)ts,prefix);CHKERRQ(ierr);
2997089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
2998089b2837SJed Brown   ierr = SNESSetOptionsPrefix(snes,prefix);CHKERRQ(ierr);
2999d763cef2SBarry Smith   PetscFunctionReturn(0);
3000d763cef2SBarry Smith }
3001d763cef2SBarry Smith 
3002d763cef2SBarry Smith 
30034a2ae208SSatish Balay #undef __FUNCT__
30044a2ae208SSatish Balay #define __FUNCT__ "TSAppendOptionsPrefix"
3005d763cef2SBarry Smith /*@C
3006d763cef2SBarry Smith    TSAppendOptionsPrefix - Appends to the prefix used for searching for all
3007d763cef2SBarry Smith    TS options in the database.
3008d763cef2SBarry Smith 
30093f9fe445SBarry Smith    Logically Collective on TS
3010d763cef2SBarry Smith 
3011d763cef2SBarry Smith    Input Parameter:
3012d763cef2SBarry Smith +  ts     - The TS context
3013d763cef2SBarry Smith -  prefix - The prefix to prepend to all option names
3014d763cef2SBarry Smith 
3015d763cef2SBarry Smith    Notes:
3016d763cef2SBarry Smith    A hyphen (-) must NOT be given at the beginning of the prefix name.
3017d763cef2SBarry Smith    The first character of all runtime options is AUTOMATICALLY the
3018d763cef2SBarry Smith    hyphen.
3019d763cef2SBarry Smith 
3020d763cef2SBarry Smith    Level: advanced
3021d763cef2SBarry Smith 
3022d763cef2SBarry Smith .keywords: TS, append, options, prefix, database
3023d763cef2SBarry Smith 
3024d763cef2SBarry Smith .seealso: TSGetOptionsPrefix()
3025d763cef2SBarry Smith 
3026d763cef2SBarry Smith @*/
30277087cfbeSBarry Smith PetscErrorCode  TSAppendOptionsPrefix(TS ts,const char prefix[])
3028d763cef2SBarry Smith {
3029dfbe8321SBarry Smith   PetscErrorCode ierr;
3030089b2837SJed Brown   SNES           snes;
3031d763cef2SBarry Smith 
3032d763cef2SBarry Smith   PetscFunctionBegin;
30330700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3034d763cef2SBarry Smith   ierr = PetscObjectAppendOptionsPrefix((PetscObject)ts,prefix);CHKERRQ(ierr);
3035089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
3036089b2837SJed Brown   ierr = SNESAppendOptionsPrefix(snes,prefix);CHKERRQ(ierr);
3037d763cef2SBarry Smith   PetscFunctionReturn(0);
3038d763cef2SBarry Smith }
3039d763cef2SBarry Smith 
30404a2ae208SSatish Balay #undef __FUNCT__
30414a2ae208SSatish Balay #define __FUNCT__ "TSGetOptionsPrefix"
3042d763cef2SBarry Smith /*@C
3043d763cef2SBarry Smith    TSGetOptionsPrefix - Sets the prefix used for searching for all
3044d763cef2SBarry Smith    TS options in the database.
3045d763cef2SBarry Smith 
3046d763cef2SBarry Smith    Not Collective
3047d763cef2SBarry Smith 
3048d763cef2SBarry Smith    Input Parameter:
3049d763cef2SBarry Smith .  ts - The TS context
3050d763cef2SBarry Smith 
3051d763cef2SBarry Smith    Output Parameter:
3052d763cef2SBarry Smith .  prefix - A pointer to the prefix string used
3053d763cef2SBarry Smith 
3054d763cef2SBarry Smith    Notes: On the fortran side, the user should pass in a string 'prifix' of
3055d763cef2SBarry Smith    sufficient length to hold the prefix.
3056d763cef2SBarry Smith 
3057d763cef2SBarry Smith    Level: intermediate
3058d763cef2SBarry Smith 
3059d763cef2SBarry Smith .keywords: TS, get, options, prefix, database
3060d763cef2SBarry Smith 
3061d763cef2SBarry Smith .seealso: TSAppendOptionsPrefix()
3062d763cef2SBarry Smith @*/
30637087cfbeSBarry Smith PetscErrorCode  TSGetOptionsPrefix(TS ts,const char *prefix[])
3064d763cef2SBarry Smith {
3065dfbe8321SBarry Smith   PetscErrorCode ierr;
3066d763cef2SBarry Smith 
3067d763cef2SBarry Smith   PetscFunctionBegin;
30680700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
30694482741eSBarry Smith   PetscValidPointer(prefix,2);
3070d763cef2SBarry Smith   ierr = PetscObjectGetOptionsPrefix((PetscObject)ts,prefix);CHKERRQ(ierr);
3071d763cef2SBarry Smith   PetscFunctionReturn(0);
3072d763cef2SBarry Smith }
3073d763cef2SBarry Smith 
30744a2ae208SSatish Balay #undef __FUNCT__
30754a2ae208SSatish Balay #define __FUNCT__ "TSGetRHSJacobian"
3076d763cef2SBarry Smith /*@C
3077d763cef2SBarry Smith    TSGetRHSJacobian - Returns the Jacobian J at the present timestep.
3078d763cef2SBarry Smith 
3079d763cef2SBarry Smith    Not Collective, but parallel objects are returned if TS is parallel
3080d763cef2SBarry Smith 
3081d763cef2SBarry Smith    Input Parameter:
3082d763cef2SBarry Smith .  ts  - The TS context obtained from TSCreate()
3083d763cef2SBarry Smith 
3084d763cef2SBarry Smith    Output Parameters:
3085e4357dc4SBarry Smith +  Amat - The (approximate) Jacobian J of G, where U_t = G(U,t)  (or NULL)
3086e4357dc4SBarry Smith .  Pmat - The matrix from which the preconditioner is constructed, usually the same as Amat  (or NULL)
3087e4357dc4SBarry Smith .  func - Function to compute the Jacobian of the RHS  (or NULL)
3088e4357dc4SBarry Smith -  ctx - User-defined context for Jacobian evaluation routine  (or NULL)
3089d763cef2SBarry Smith 
30900298fd71SBarry Smith    Notes: You can pass in NULL for any return argument you do not need.
3091d763cef2SBarry Smith 
3092d763cef2SBarry Smith    Level: intermediate
3093d763cef2SBarry Smith 
309426d46c62SHong Zhang .seealso: TSGetTimeStep(), TSGetMatrices(), TSGetTime(), TSGetTimeStepNumber()
3095d763cef2SBarry Smith 
3096d763cef2SBarry Smith .keywords: TS, timestep, get, matrix, Jacobian
3097d763cef2SBarry Smith @*/
3098e4357dc4SBarry Smith PetscErrorCode  TSGetRHSJacobian(TS ts,Mat *Amat,Mat *Pmat,TSRHSJacobian *func,void **ctx)
3099d763cef2SBarry Smith {
3100089b2837SJed Brown   PetscErrorCode ierr;
3101089b2837SJed Brown   SNES           snes;
310224989b8cSPeter Brune   DM             dm;
3103089b2837SJed Brown 
3104d763cef2SBarry Smith   PetscFunctionBegin;
3105089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
3106e4357dc4SBarry Smith   ierr = SNESGetJacobian(snes,Amat,Pmat,NULL,NULL);CHKERRQ(ierr);
310724989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
310824989b8cSPeter Brune   ierr = DMTSGetRHSJacobian(dm,func,ctx);CHKERRQ(ierr);
3109d763cef2SBarry Smith   PetscFunctionReturn(0);
3110d763cef2SBarry Smith }
3111d763cef2SBarry Smith 
31121713a123SBarry Smith #undef __FUNCT__
31132eca1d9cSJed Brown #define __FUNCT__ "TSGetIJacobian"
31142eca1d9cSJed Brown /*@C
31152eca1d9cSJed Brown    TSGetIJacobian - Returns the implicit Jacobian at the present timestep.
31162eca1d9cSJed Brown 
31172eca1d9cSJed Brown    Not Collective, but parallel objects are returned if TS is parallel
31182eca1d9cSJed Brown 
31192eca1d9cSJed Brown    Input Parameter:
31202eca1d9cSJed Brown .  ts  - The TS context obtained from TSCreate()
31212eca1d9cSJed Brown 
31222eca1d9cSJed Brown    Output Parameters:
3123e4357dc4SBarry Smith +  Amat  - The (approximate) Jacobian of F(t,U,U_t)
3124e4357dc4SBarry Smith .  Pmat - The matrix from which the preconditioner is constructed, often the same as Amat
31252eca1d9cSJed Brown .  f   - The function to compute the matrices
31262eca1d9cSJed Brown - ctx - User-defined context for Jacobian evaluation routine
31272eca1d9cSJed Brown 
31280298fd71SBarry Smith    Notes: You can pass in NULL for any return argument you do not need.
31292eca1d9cSJed Brown 
31302eca1d9cSJed Brown    Level: advanced
31312eca1d9cSJed Brown 
31322eca1d9cSJed Brown .seealso: TSGetTimeStep(), TSGetRHSJacobian(), TSGetMatrices(), TSGetTime(), TSGetTimeStepNumber()
31332eca1d9cSJed Brown 
31342eca1d9cSJed Brown .keywords: TS, timestep, get, matrix, Jacobian
31352eca1d9cSJed Brown @*/
3136e4357dc4SBarry Smith PetscErrorCode  TSGetIJacobian(TS ts,Mat *Amat,Mat *Pmat,TSIJacobian *f,void **ctx)
31372eca1d9cSJed Brown {
3138089b2837SJed Brown   PetscErrorCode ierr;
3139089b2837SJed Brown   SNES           snes;
314024989b8cSPeter Brune   DM             dm;
31410910c330SBarry Smith 
31422eca1d9cSJed Brown   PetscFunctionBegin;
3143089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
3144f7d39f7aSBarry Smith   ierr = SNESSetUpMatrices(snes);CHKERRQ(ierr);
3145e4357dc4SBarry Smith   ierr = SNESGetJacobian(snes,Amat,Pmat,NULL,NULL);CHKERRQ(ierr);
314624989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
314724989b8cSPeter Brune   ierr = DMTSGetIJacobian(dm,f,ctx);CHKERRQ(ierr);
31482eca1d9cSJed Brown   PetscFunctionReturn(0);
31492eca1d9cSJed Brown }
31502eca1d9cSJed Brown 
31516083293cSBarry Smith 
31522eca1d9cSJed Brown #undef __FUNCT__
315383a4ac43SBarry Smith #define __FUNCT__ "TSMonitorDrawSolution"
31541713a123SBarry Smith /*@C
315583a4ac43SBarry Smith    TSMonitorDrawSolution - Monitors progress of the TS solvers by calling
31561713a123SBarry Smith    VecView() for the solution at each timestep
31571713a123SBarry Smith 
31581713a123SBarry Smith    Collective on TS
31591713a123SBarry Smith 
31601713a123SBarry Smith    Input Parameters:
31611713a123SBarry Smith +  ts - the TS context
31621713a123SBarry Smith .  step - current time-step
3163142b95e3SSatish Balay .  ptime - current time
31640298fd71SBarry Smith -  dummy - either a viewer or NULL
31651713a123SBarry Smith 
316699fdda47SBarry Smith    Options Database:
316799fdda47SBarry Smith .   -ts_monitor_draw_solution_initial - show initial solution as well as current solution
316899fdda47SBarry Smith 
316999fdda47SBarry 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
317099fdda47SBarry Smith        will look bad
317199fdda47SBarry Smith 
31721713a123SBarry Smith    Level: intermediate
31731713a123SBarry Smith 
31741713a123SBarry Smith .keywords: TS,  vector, monitor, view
31751713a123SBarry Smith 
3176a6570f20SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
31771713a123SBarry Smith @*/
31780910c330SBarry Smith PetscErrorCode  TSMonitorDrawSolution(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
31791713a123SBarry Smith {
3180dfbe8321SBarry Smith   PetscErrorCode   ierr;
318183a4ac43SBarry Smith   TSMonitorDrawCtx ictx = (TSMonitorDrawCtx)dummy;
3182473a3ab2SBarry Smith   PetscDraw        draw;
31831713a123SBarry Smith 
31841713a123SBarry Smith   PetscFunctionBegin;
31856083293cSBarry Smith   if (!step && ictx->showinitial) {
31866083293cSBarry Smith     if (!ictx->initialsolution) {
31870910c330SBarry Smith       ierr = VecDuplicate(u,&ictx->initialsolution);CHKERRQ(ierr);
31881713a123SBarry Smith     }
31890910c330SBarry Smith     ierr = VecCopy(u,ictx->initialsolution);CHKERRQ(ierr);
31906083293cSBarry Smith   }
3191b06615a5SLisandro Dalcin   if (!(((ictx->howoften > 0) && (!(step % ictx->howoften))) || ((ictx->howoften == -1) && ts->reason))) PetscFunctionReturn(0);
31920dcf80beSBarry Smith 
31936083293cSBarry Smith   if (ictx->showinitial) {
31946083293cSBarry Smith     PetscReal pause;
31956083293cSBarry Smith     ierr = PetscViewerDrawGetPause(ictx->viewer,&pause);CHKERRQ(ierr);
31966083293cSBarry Smith     ierr = PetscViewerDrawSetPause(ictx->viewer,0.0);CHKERRQ(ierr);
31976083293cSBarry Smith     ierr = VecView(ictx->initialsolution,ictx->viewer);CHKERRQ(ierr);
31986083293cSBarry Smith     ierr = PetscViewerDrawSetPause(ictx->viewer,pause);CHKERRQ(ierr);
31996083293cSBarry Smith     ierr = PetscViewerDrawSetHold(ictx->viewer,PETSC_TRUE);CHKERRQ(ierr);
32006083293cSBarry Smith   }
32010910c330SBarry Smith   ierr = VecView(u,ictx->viewer);CHKERRQ(ierr);
3202473a3ab2SBarry Smith   if (ictx->showtimestepandtime) {
3203473a3ab2SBarry Smith     PetscReal xl,yl,xr,yr,tw,w,h;
3204473a3ab2SBarry Smith     char      time[32];
3205473a3ab2SBarry Smith     size_t    len;
3206473a3ab2SBarry Smith 
3207473a3ab2SBarry Smith     ierr = PetscViewerDrawGetDraw(ictx->viewer,0,&draw);CHKERRQ(ierr);
3208473a3ab2SBarry Smith     ierr = PetscSNPrintf(time,32,"Timestep %d Time %f",(int)step,(double)ptime);CHKERRQ(ierr);
3209473a3ab2SBarry Smith     ierr = PetscDrawGetCoordinates(draw,&xl,&yl,&xr,&yr);CHKERRQ(ierr);
3210473a3ab2SBarry Smith     ierr =  PetscStrlen(time,&len);CHKERRQ(ierr);
32110298fd71SBarry Smith     ierr = PetscDrawStringGetSize(draw,&tw,NULL);CHKERRQ(ierr);
3212473a3ab2SBarry Smith     w    = xl + .5*(xr - xl) - .5*len*tw;
3213473a3ab2SBarry Smith     h    = yl + .95*(yr - yl);
3214473a3ab2SBarry Smith     ierr = PetscDrawString(draw,w,h,PETSC_DRAW_BLACK,time);CHKERRQ(ierr);
3215473a3ab2SBarry Smith     ierr = PetscDrawFlush(draw);CHKERRQ(ierr);
3216473a3ab2SBarry Smith   }
3217473a3ab2SBarry Smith 
32186083293cSBarry Smith   if (ictx->showinitial) {
32196083293cSBarry Smith     ierr = PetscViewerDrawSetHold(ictx->viewer,PETSC_FALSE);CHKERRQ(ierr);
32206083293cSBarry Smith   }
32211713a123SBarry Smith   PetscFunctionReturn(0);
32221713a123SBarry Smith }
32231713a123SBarry Smith 
32242d5ee99bSBarry Smith #undef __FUNCT__
32252d5ee99bSBarry Smith #define __FUNCT__ "TSMonitorDrawSolutionPhase"
32262d5ee99bSBarry Smith /*@C
32272d5ee99bSBarry Smith    TSMonitorDrawSolutionPhase - Monitors progress of the TS solvers by plotting the solution as a phase diagram
32282d5ee99bSBarry Smith 
32292d5ee99bSBarry Smith    Collective on TS
32302d5ee99bSBarry Smith 
32312d5ee99bSBarry Smith    Input Parameters:
32322d5ee99bSBarry Smith +  ts - the TS context
32332d5ee99bSBarry Smith .  step - current time-step
32342d5ee99bSBarry Smith .  ptime - current time
32352d5ee99bSBarry Smith -  dummy - either a viewer or NULL
32362d5ee99bSBarry Smith 
32372d5ee99bSBarry Smith    Level: intermediate
32382d5ee99bSBarry Smith 
32392d5ee99bSBarry Smith .keywords: TS,  vector, monitor, view
32402d5ee99bSBarry Smith 
32412d5ee99bSBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
32422d5ee99bSBarry Smith @*/
32432d5ee99bSBarry Smith PetscErrorCode  TSMonitorDrawSolutionPhase(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
32442d5ee99bSBarry Smith {
32452d5ee99bSBarry Smith   PetscErrorCode    ierr;
32462d5ee99bSBarry Smith   TSMonitorDrawCtx  ictx = (TSMonitorDrawCtx)dummy;
32472d5ee99bSBarry Smith   PetscDraw         draw;
32482d5ee99bSBarry Smith   MPI_Comm          comm;
32492d5ee99bSBarry Smith   PetscInt          n;
32502d5ee99bSBarry Smith   PetscMPIInt       size;
32512d5ee99bSBarry Smith   PetscReal         xl,yl,xr,yr,tw,w,h;
32522d5ee99bSBarry Smith   char              time[32];
32532d5ee99bSBarry Smith   size_t            len;
32542d5ee99bSBarry Smith   const PetscScalar *U;
32552d5ee99bSBarry Smith 
32562d5ee99bSBarry Smith   PetscFunctionBegin;
32572d5ee99bSBarry Smith   ierr = PetscObjectGetComm((PetscObject)ts,&comm);CHKERRQ(ierr);
32582d5ee99bSBarry Smith   ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr);
32592d5ee99bSBarry Smith   if (size != 1) SETERRQ(comm,PETSC_ERR_SUP,"Only allowed for sequential runs");
32602d5ee99bSBarry Smith   ierr = VecGetSize(u,&n);CHKERRQ(ierr);
32612d5ee99bSBarry Smith   if (n != 2) SETERRQ(comm,PETSC_ERR_SUP,"Only for ODEs with two unknowns");
32622d5ee99bSBarry Smith 
32632d5ee99bSBarry Smith   ierr = PetscViewerDrawGetDraw(ictx->viewer,0,&draw);CHKERRQ(ierr);
32642d5ee99bSBarry Smith 
32652d5ee99bSBarry Smith   ierr = VecGetArrayRead(u,&U);CHKERRQ(ierr);
32664b363babSBarry Smith   ierr = PetscDrawAxisGetLimits(ictx->axis,&xl,&xr,&yl,&yr);CHKERRQ(ierr);
3267ba5783adSMatthew G Knepley   if ((PetscRealPart(U[0]) < xl) || (PetscRealPart(U[1]) < yl) || (PetscRealPart(U[0]) > xr) || (PetscRealPart(U[1]) > yr)) {
3268a4494fc1SBarry Smith       ierr = VecRestoreArrayRead(u,&U);CHKERRQ(ierr);
3269a4494fc1SBarry Smith       PetscFunctionReturn(0);
3270a4494fc1SBarry Smith   }
32712d5ee99bSBarry Smith   if (!step) ictx->color++;
32722d5ee99bSBarry Smith   ierr = PetscDrawPoint(draw,PetscRealPart(U[0]),PetscRealPart(U[1]),ictx->color);CHKERRQ(ierr);
32732d5ee99bSBarry Smith   ierr = VecRestoreArrayRead(u,&U);CHKERRQ(ierr);
32742d5ee99bSBarry Smith 
32752d5ee99bSBarry Smith   if (ictx->showtimestepandtime) {
32764b363babSBarry Smith     ierr = PetscDrawGetCoordinates(draw,&xl,&yl,&xr,&yr);CHKERRQ(ierr);
32772d5ee99bSBarry Smith     ierr = PetscSNPrintf(time,32,"Timestep %d Time %f",(int)step,(double)ptime);CHKERRQ(ierr);
32782d5ee99bSBarry Smith     ierr = PetscStrlen(time,&len);CHKERRQ(ierr);
32792d5ee99bSBarry Smith     ierr = PetscDrawStringGetSize(draw,&tw,NULL);CHKERRQ(ierr);
32802d5ee99bSBarry Smith     w    = xl + .5*(xr - xl) - .5*len*tw;
32812d5ee99bSBarry Smith     h    = yl + .95*(yr - yl);
32822d5ee99bSBarry Smith     ierr = PetscDrawString(draw,w,h,PETSC_DRAW_BLACK,time);CHKERRQ(ierr);
32832d5ee99bSBarry Smith   }
32842d5ee99bSBarry Smith   ierr = PetscDrawFlush(draw);CHKERRQ(ierr);
32852d5ee99bSBarry Smith   PetscFunctionReturn(0);
32862d5ee99bSBarry Smith }
32872d5ee99bSBarry Smith 
32881713a123SBarry Smith 
32896c699258SBarry Smith #undef __FUNCT__
329083a4ac43SBarry Smith #define __FUNCT__ "TSMonitorDrawCtxDestroy"
32916083293cSBarry Smith /*@C
329283a4ac43SBarry Smith    TSMonitorDrawCtxDestroy - Destroys the monitor context for TSMonitorDrawSolution()
32936083293cSBarry Smith 
32946083293cSBarry Smith    Collective on TS
32956083293cSBarry Smith 
32966083293cSBarry Smith    Input Parameters:
32976083293cSBarry Smith .    ctx - the monitor context
32986083293cSBarry Smith 
32996083293cSBarry Smith    Level: intermediate
33006083293cSBarry Smith 
33016083293cSBarry Smith .keywords: TS,  vector, monitor, view
33026083293cSBarry Smith 
330383a4ac43SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorDrawSolution(), TSMonitorDrawError()
33046083293cSBarry Smith @*/
330583a4ac43SBarry Smith PetscErrorCode  TSMonitorDrawCtxDestroy(TSMonitorDrawCtx *ictx)
33066083293cSBarry Smith {
33076083293cSBarry Smith   PetscErrorCode ierr;
33086083293cSBarry Smith 
33096083293cSBarry Smith   PetscFunctionBegin;
33104b363babSBarry Smith   ierr = PetscDrawAxisDestroy(&(*ictx)->axis);CHKERRQ(ierr);
331183a4ac43SBarry Smith   ierr = PetscViewerDestroy(&(*ictx)->viewer);CHKERRQ(ierr);
331283a4ac43SBarry Smith   ierr = VecDestroy(&(*ictx)->initialsolution);CHKERRQ(ierr);
331383a4ac43SBarry Smith   ierr = PetscFree(*ictx);CHKERRQ(ierr);
33146083293cSBarry Smith   PetscFunctionReturn(0);
33156083293cSBarry Smith }
33166083293cSBarry Smith 
33176083293cSBarry Smith #undef __FUNCT__
331883a4ac43SBarry Smith #define __FUNCT__ "TSMonitorDrawCtxCreate"
33196083293cSBarry Smith /*@C
332083a4ac43SBarry Smith    TSMonitorDrawCtxCreate - Creates the monitor context for TSMonitorDrawCtx
33216083293cSBarry Smith 
33226083293cSBarry Smith    Collective on TS
33236083293cSBarry Smith 
33246083293cSBarry Smith    Input Parameter:
33256083293cSBarry Smith .    ts - time-step context
33266083293cSBarry Smith 
33276083293cSBarry Smith    Output Patameter:
33286083293cSBarry Smith .    ctx - the monitor context
33296083293cSBarry Smith 
333099fdda47SBarry Smith    Options Database:
333199fdda47SBarry Smith .   -ts_monitor_draw_solution_initial - show initial solution as well as current solution
333299fdda47SBarry Smith 
33336083293cSBarry Smith    Level: intermediate
33346083293cSBarry Smith 
33356083293cSBarry Smith .keywords: TS,  vector, monitor, view
33366083293cSBarry Smith 
333783a4ac43SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorDrawCtx()
33386083293cSBarry Smith @*/
333983a4ac43SBarry Smith PetscErrorCode  TSMonitorDrawCtxCreate(MPI_Comm comm,const char host[],const char label[],int x,int y,int m,int n,PetscInt howoften,TSMonitorDrawCtx *ctx)
33406083293cSBarry Smith {
33416083293cSBarry Smith   PetscErrorCode   ierr;
33426083293cSBarry Smith 
33436083293cSBarry Smith   PetscFunctionBegin;
3344b00a9115SJed Brown   ierr = PetscNew(ctx);CHKERRQ(ierr);
334583a4ac43SBarry Smith   ierr = PetscViewerDrawOpen(comm,host,label,x,y,m,n,&(*ctx)->viewer);CHKERRQ(ierr);
3346e9457bf7SBarry Smith   ierr = PetscViewerSetFromOptions((*ctx)->viewer);CHKERRQ(ierr);
3347bbd56ea5SKarl Rupp 
334883a4ac43SBarry Smith   (*ctx)->howoften    = howoften;
3349473a3ab2SBarry Smith   (*ctx)->showinitial = PETSC_FALSE;
33500298fd71SBarry Smith   ierr = PetscOptionsGetBool(NULL,"-ts_monitor_draw_solution_initial",&(*ctx)->showinitial,NULL);CHKERRQ(ierr);
3351473a3ab2SBarry Smith 
3352473a3ab2SBarry Smith   (*ctx)->showtimestepandtime = PETSC_FALSE;
33530298fd71SBarry Smith   ierr = PetscOptionsGetBool(NULL,"-ts_monitor_draw_solution_show_time",&(*ctx)->showtimestepandtime,NULL);CHKERRQ(ierr);
33542d5ee99bSBarry Smith   (*ctx)->color = PETSC_DRAW_WHITE;
33556083293cSBarry Smith   PetscFunctionReturn(0);
33566083293cSBarry Smith }
33576083293cSBarry Smith 
33586083293cSBarry Smith #undef __FUNCT__
335983a4ac43SBarry Smith #define __FUNCT__ "TSMonitorDrawError"
33603a471f94SBarry Smith /*@C
336183a4ac43SBarry Smith    TSMonitorDrawError - Monitors progress of the TS solvers by calling
33623a471f94SBarry Smith    VecView() for the error at each timestep
33633a471f94SBarry Smith 
33643a471f94SBarry Smith    Collective on TS
33653a471f94SBarry Smith 
33663a471f94SBarry Smith    Input Parameters:
33673a471f94SBarry Smith +  ts - the TS context
33683a471f94SBarry Smith .  step - current time-step
33693a471f94SBarry Smith .  ptime - current time
33700298fd71SBarry Smith -  dummy - either a viewer or NULL
33713a471f94SBarry Smith 
33723a471f94SBarry Smith    Level: intermediate
33733a471f94SBarry Smith 
33743a471f94SBarry Smith .keywords: TS,  vector, monitor, view
33753a471f94SBarry Smith 
33763a471f94SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
33773a471f94SBarry Smith @*/
33780910c330SBarry Smith PetscErrorCode  TSMonitorDrawError(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
33793a471f94SBarry Smith {
33803a471f94SBarry Smith   PetscErrorCode   ierr;
338183a4ac43SBarry Smith   TSMonitorDrawCtx ctx    = (TSMonitorDrawCtx)dummy;
338283a4ac43SBarry Smith   PetscViewer      viewer = ctx->viewer;
33833a471f94SBarry Smith   Vec              work;
33843a471f94SBarry Smith 
33853a471f94SBarry Smith   PetscFunctionBegin;
3386b06615a5SLisandro Dalcin   if (!(((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason))) PetscFunctionReturn(0);
33870910c330SBarry Smith   ierr = VecDuplicate(u,&work);CHKERRQ(ierr);
33883a471f94SBarry Smith   ierr = TSComputeSolutionFunction(ts,ptime,work);CHKERRQ(ierr);
33890910c330SBarry Smith   ierr = VecAXPY(work,-1.0,u);CHKERRQ(ierr);
33903a471f94SBarry Smith   ierr = VecView(work,viewer);CHKERRQ(ierr);
33913a471f94SBarry Smith   ierr = VecDestroy(&work);CHKERRQ(ierr);
33923a471f94SBarry Smith   PetscFunctionReturn(0);
33933a471f94SBarry Smith }
33943a471f94SBarry Smith 
33952a34c10cSBarry Smith #include <petsc-private/dmimpl.h>
33963a471f94SBarry Smith #undef __FUNCT__
33976c699258SBarry Smith #define __FUNCT__ "TSSetDM"
33986c699258SBarry Smith /*@
33996c699258SBarry Smith    TSSetDM - Sets the DM that may be used by some preconditioners
34006c699258SBarry Smith 
34013f9fe445SBarry Smith    Logically Collective on TS and DM
34026c699258SBarry Smith 
34036c699258SBarry Smith    Input Parameters:
34046c699258SBarry Smith +  ts - the preconditioner context
34056c699258SBarry Smith -  dm - the dm
34066c699258SBarry Smith 
34076c699258SBarry Smith    Level: intermediate
34086c699258SBarry Smith 
34096c699258SBarry Smith 
34106c699258SBarry Smith .seealso: TSGetDM(), SNESSetDM(), SNESGetDM()
34116c699258SBarry Smith @*/
34127087cfbeSBarry Smith PetscErrorCode  TSSetDM(TS ts,DM dm)
34136c699258SBarry Smith {
34146c699258SBarry Smith   PetscErrorCode ierr;
3415089b2837SJed Brown   SNES           snes;
3416942e3340SBarry Smith   DMTS           tsdm;
34176c699258SBarry Smith 
34186c699258SBarry Smith   PetscFunctionBegin;
34190700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
342070663e4aSLisandro Dalcin   ierr = PetscObjectReference((PetscObject)dm);CHKERRQ(ierr);
3421942e3340SBarry Smith   if (ts->dm) {               /* Move the DMTS context over to the new DM unless the new DM already has one */
34222a34c10cSBarry Smith     if (ts->dm->dmts && !dm->dmts) {
3423942e3340SBarry Smith       ierr = DMCopyDMTS(ts->dm,dm);CHKERRQ(ierr);
3424942e3340SBarry Smith       ierr = DMGetDMTS(ts->dm,&tsdm);CHKERRQ(ierr);
342524989b8cSPeter Brune       if (tsdm->originaldm == ts->dm) { /* Grant write privileges to the replacement DM */
342624989b8cSPeter Brune         tsdm->originaldm = dm;
342724989b8cSPeter Brune       }
342824989b8cSPeter Brune     }
34296bf464f9SBarry Smith     ierr = DMDestroy(&ts->dm);CHKERRQ(ierr);
343024989b8cSPeter Brune   }
34316c699258SBarry Smith   ts->dm = dm;
3432bbd56ea5SKarl Rupp 
3433089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
3434089b2837SJed Brown   ierr = SNESSetDM(snes,dm);CHKERRQ(ierr);
34356c699258SBarry Smith   PetscFunctionReturn(0);
34366c699258SBarry Smith }
34376c699258SBarry Smith 
34386c699258SBarry Smith #undef __FUNCT__
34396c699258SBarry Smith #define __FUNCT__ "TSGetDM"
34406c699258SBarry Smith /*@
34416c699258SBarry Smith    TSGetDM - Gets the DM that may be used by some preconditioners
34426c699258SBarry Smith 
34433f9fe445SBarry Smith    Not Collective
34446c699258SBarry Smith 
34456c699258SBarry Smith    Input Parameter:
34466c699258SBarry Smith . ts - the preconditioner context
34476c699258SBarry Smith 
34486c699258SBarry Smith    Output Parameter:
34496c699258SBarry Smith .  dm - the dm
34506c699258SBarry Smith 
34516c699258SBarry Smith    Level: intermediate
34526c699258SBarry Smith 
34536c699258SBarry Smith 
34546c699258SBarry Smith .seealso: TSSetDM(), SNESSetDM(), SNESGetDM()
34556c699258SBarry Smith @*/
34567087cfbeSBarry Smith PetscErrorCode  TSGetDM(TS ts,DM *dm)
34576c699258SBarry Smith {
3458496e6a7aSJed Brown   PetscErrorCode ierr;
3459496e6a7aSJed Brown 
34606c699258SBarry Smith   PetscFunctionBegin;
34610700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3462496e6a7aSJed Brown   if (!ts->dm) {
3463ce94432eSBarry Smith     ierr = DMShellCreate(PetscObjectComm((PetscObject)ts),&ts->dm);CHKERRQ(ierr);
3464496e6a7aSJed Brown     if (ts->snes) {ierr = SNESSetDM(ts->snes,ts->dm);CHKERRQ(ierr);}
3465496e6a7aSJed Brown   }
34666c699258SBarry Smith   *dm = ts->dm;
34676c699258SBarry Smith   PetscFunctionReturn(0);
34686c699258SBarry Smith }
34691713a123SBarry Smith 
34700f5c6efeSJed Brown #undef __FUNCT__
34710f5c6efeSJed Brown #define __FUNCT__ "SNESTSFormFunction"
34720f5c6efeSJed Brown /*@
34730f5c6efeSJed Brown    SNESTSFormFunction - Function to evaluate nonlinear residual
34740f5c6efeSJed Brown 
34753f9fe445SBarry Smith    Logically Collective on SNES
34760f5c6efeSJed Brown 
34770f5c6efeSJed Brown    Input Parameter:
3478d42a1c89SJed Brown + snes - nonlinear solver
34790910c330SBarry Smith . U - the current state at which to evaluate the residual
3480d42a1c89SJed Brown - ctx - user context, must be a TS
34810f5c6efeSJed Brown 
34820f5c6efeSJed Brown    Output Parameter:
34830f5c6efeSJed Brown . F - the nonlinear residual
34840f5c6efeSJed Brown 
34850f5c6efeSJed Brown    Notes:
34860f5c6efeSJed Brown    This function is not normally called by users and is automatically registered with the SNES used by TS.
34870f5c6efeSJed Brown    It is most frequently passed to MatFDColoringSetFunction().
34880f5c6efeSJed Brown 
34890f5c6efeSJed Brown    Level: advanced
34900f5c6efeSJed Brown 
34910f5c6efeSJed Brown .seealso: SNESSetFunction(), MatFDColoringSetFunction()
34920f5c6efeSJed Brown @*/
34930910c330SBarry Smith PetscErrorCode  SNESTSFormFunction(SNES snes,Vec U,Vec F,void *ctx)
34940f5c6efeSJed Brown {
34950f5c6efeSJed Brown   TS             ts = (TS)ctx;
34960f5c6efeSJed Brown   PetscErrorCode ierr;
34970f5c6efeSJed Brown 
34980f5c6efeSJed Brown   PetscFunctionBegin;
34990f5c6efeSJed Brown   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
35000910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,2);
35010f5c6efeSJed Brown   PetscValidHeaderSpecific(F,VEC_CLASSID,3);
35020f5c6efeSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,4);
35030910c330SBarry Smith   ierr = (ts->ops->snesfunction)(snes,U,F,ts);CHKERRQ(ierr);
35040f5c6efeSJed Brown   PetscFunctionReturn(0);
35050f5c6efeSJed Brown }
35060f5c6efeSJed Brown 
35070f5c6efeSJed Brown #undef __FUNCT__
35080f5c6efeSJed Brown #define __FUNCT__ "SNESTSFormJacobian"
35090f5c6efeSJed Brown /*@
35100f5c6efeSJed Brown    SNESTSFormJacobian - Function to evaluate the Jacobian
35110f5c6efeSJed Brown 
35120f5c6efeSJed Brown    Collective on SNES
35130f5c6efeSJed Brown 
35140f5c6efeSJed Brown    Input Parameter:
35150f5c6efeSJed Brown + snes - nonlinear solver
35160910c330SBarry Smith . U - the current state at which to evaluate the residual
35170f5c6efeSJed Brown - ctx - user context, must be a TS
35180f5c6efeSJed Brown 
35190f5c6efeSJed Brown    Output Parameter:
35200f5c6efeSJed Brown + A - the Jacobian
35210f5c6efeSJed Brown . B - the preconditioning matrix (may be the same as A)
35220f5c6efeSJed Brown - flag - indicates any structure change in the matrix
35230f5c6efeSJed Brown 
35240f5c6efeSJed Brown    Notes:
35250f5c6efeSJed Brown    This function is not normally called by users and is automatically registered with the SNES used by TS.
35260f5c6efeSJed Brown 
35270f5c6efeSJed Brown    Level: developer
35280f5c6efeSJed Brown 
35290f5c6efeSJed Brown .seealso: SNESSetJacobian()
35300f5c6efeSJed Brown @*/
35310910c330SBarry Smith PetscErrorCode  SNESTSFormJacobian(SNES snes,Vec U,Mat *A,Mat *B,MatStructure *flag,void *ctx)
35320f5c6efeSJed Brown {
35330f5c6efeSJed Brown   TS             ts = (TS)ctx;
35340f5c6efeSJed Brown   PetscErrorCode ierr;
35350f5c6efeSJed Brown 
35360f5c6efeSJed Brown   PetscFunctionBegin;
35370f5c6efeSJed Brown   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
35380910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,2);
35390f5c6efeSJed Brown   PetscValidPointer(A,3);
35400f5c6efeSJed Brown   PetscValidHeaderSpecific(*A,MAT_CLASSID,3);
35410f5c6efeSJed Brown   PetscValidPointer(B,4);
35420f5c6efeSJed Brown   PetscValidHeaderSpecific(*B,MAT_CLASSID,4);
35430f5c6efeSJed Brown   PetscValidPointer(flag,5);
35440f5c6efeSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,6);
35450910c330SBarry Smith   ierr = (ts->ops->snesjacobian)(snes,U,A,B,flag,ts);CHKERRQ(ierr);
35460f5c6efeSJed Brown   PetscFunctionReturn(0);
35470f5c6efeSJed Brown }
3548325fc9f4SBarry Smith 
35490e4ef248SJed Brown #undef __FUNCT__
35500e4ef248SJed Brown #define __FUNCT__ "TSComputeRHSFunctionLinear"
35510e4ef248SJed Brown /*@C
35520e4ef248SJed Brown    TSComputeRHSFunctionLinear - Evaluate the right hand side via the user-provided Jacobian, for linear problems only
35530e4ef248SJed Brown 
35540e4ef248SJed Brown    Collective on TS
35550e4ef248SJed Brown 
35560e4ef248SJed Brown    Input Arguments:
35570e4ef248SJed Brown +  ts - time stepping context
35580e4ef248SJed Brown .  t - time at which to evaluate
35590910c330SBarry Smith .  U - state at which to evaluate
35600e4ef248SJed Brown -  ctx - context
35610e4ef248SJed Brown 
35620e4ef248SJed Brown    Output Arguments:
35630e4ef248SJed Brown .  F - right hand side
35640e4ef248SJed Brown 
35650e4ef248SJed Brown    Level: intermediate
35660e4ef248SJed Brown 
35670e4ef248SJed Brown    Notes:
35680e4ef248SJed Brown    This function is intended to be passed to TSSetRHSFunction() to evaluate the right hand side for linear problems.
35690e4ef248SJed Brown    The matrix (and optionally the evaluation context) should be passed to TSSetRHSJacobian().
35700e4ef248SJed Brown 
35710e4ef248SJed Brown .seealso: TSSetRHSFunction(), TSSetRHSJacobian(), TSComputeRHSJacobianConstant()
35720e4ef248SJed Brown @*/
35730910c330SBarry Smith PetscErrorCode TSComputeRHSFunctionLinear(TS ts,PetscReal t,Vec U,Vec F,void *ctx)
35740e4ef248SJed Brown {
35750e4ef248SJed Brown   PetscErrorCode ierr;
35760e4ef248SJed Brown   Mat            Arhs,Brhs;
35770e4ef248SJed Brown   MatStructure   flg2;
35780e4ef248SJed Brown 
35790e4ef248SJed Brown   PetscFunctionBegin;
35800e4ef248SJed Brown   ierr = TSGetRHSMats_Private(ts,&Arhs,&Brhs);CHKERRQ(ierr);
35810910c330SBarry Smith   ierr = TSComputeRHSJacobian(ts,t,U,&Arhs,&Brhs,&flg2);CHKERRQ(ierr);
35820910c330SBarry Smith   ierr = MatMult(Arhs,U,F);CHKERRQ(ierr);
35830e4ef248SJed Brown   PetscFunctionReturn(0);
35840e4ef248SJed Brown }
35850e4ef248SJed Brown 
35860e4ef248SJed Brown #undef __FUNCT__
35870e4ef248SJed Brown #define __FUNCT__ "TSComputeRHSJacobianConstant"
35880e4ef248SJed Brown /*@C
35890e4ef248SJed Brown    TSComputeRHSJacobianConstant - Reuses a Jacobian that is time-independent.
35900e4ef248SJed Brown 
35910e4ef248SJed Brown    Collective on TS
35920e4ef248SJed Brown 
35930e4ef248SJed Brown    Input Arguments:
35940e4ef248SJed Brown +  ts - time stepping context
35950e4ef248SJed Brown .  t - time at which to evaluate
35960910c330SBarry Smith .  U - state at which to evaluate
35970e4ef248SJed Brown -  ctx - context
35980e4ef248SJed Brown 
35990e4ef248SJed Brown    Output Arguments:
36000e4ef248SJed Brown +  A - pointer to operator
36010e4ef248SJed Brown .  B - pointer to preconditioning matrix
36020e4ef248SJed Brown -  flg - matrix structure flag
36030e4ef248SJed Brown 
36040e4ef248SJed Brown    Level: intermediate
36050e4ef248SJed Brown 
36060e4ef248SJed Brown    Notes:
36070e4ef248SJed Brown    This function is intended to be passed to TSSetRHSJacobian() to evaluate the Jacobian for linear time-independent problems.
36080e4ef248SJed Brown 
36090e4ef248SJed Brown .seealso: TSSetRHSFunction(), TSSetRHSJacobian(), TSComputeRHSFunctionLinear()
36100e4ef248SJed Brown @*/
36110910c330SBarry Smith PetscErrorCode TSComputeRHSJacobianConstant(TS ts,PetscReal t,Vec U,Mat *A,Mat *B,MatStructure *flg,void *ctx)
36120e4ef248SJed Brown {
36130e4ef248SJed Brown   PetscFunctionBegin;
36140e4ef248SJed Brown   *flg = SAME_PRECONDITIONER;
36150e4ef248SJed Brown   PetscFunctionReturn(0);
36160e4ef248SJed Brown }
36170e4ef248SJed Brown 
36180026cea9SSean Farley #undef __FUNCT__
36190026cea9SSean Farley #define __FUNCT__ "TSComputeIFunctionLinear"
36200026cea9SSean Farley /*@C
36210026cea9SSean Farley    TSComputeIFunctionLinear - Evaluate the left hand side via the user-provided Jacobian, for linear problems only
36220026cea9SSean Farley 
36230026cea9SSean Farley    Collective on TS
36240026cea9SSean Farley 
36250026cea9SSean Farley    Input Arguments:
36260026cea9SSean Farley +  ts - time stepping context
36270026cea9SSean Farley .  t - time at which to evaluate
36280910c330SBarry Smith .  U - state at which to evaluate
36290910c330SBarry Smith .  Udot - time derivative of state vector
36300026cea9SSean Farley -  ctx - context
36310026cea9SSean Farley 
36320026cea9SSean Farley    Output Arguments:
36330026cea9SSean Farley .  F - left hand side
36340026cea9SSean Farley 
36350026cea9SSean Farley    Level: intermediate
36360026cea9SSean Farley 
36370026cea9SSean Farley    Notes:
36380910c330SBarry 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
36390026cea9SSean Farley    user is required to write their own TSComputeIFunction.
36400026cea9SSean Farley    This function is intended to be passed to TSSetIFunction() to evaluate the left hand side for linear problems.
36410026cea9SSean Farley    The matrix (and optionally the evaluation context) should be passed to TSSetIJacobian().
36420026cea9SSean Farley 
36430026cea9SSean Farley .seealso: TSSetIFunction(), TSSetIJacobian(), TSComputeIJacobianConstant()
36440026cea9SSean Farley @*/
36450910c330SBarry Smith PetscErrorCode TSComputeIFunctionLinear(TS ts,PetscReal t,Vec U,Vec Udot,Vec F,void *ctx)
36460026cea9SSean Farley {
36470026cea9SSean Farley   PetscErrorCode ierr;
36480026cea9SSean Farley   Mat            A,B;
36490026cea9SSean Farley   MatStructure   flg2;
36500026cea9SSean Farley 
36510026cea9SSean Farley   PetscFunctionBegin;
36520298fd71SBarry Smith   ierr = TSGetIJacobian(ts,&A,&B,NULL,NULL);CHKERRQ(ierr);
36530910c330SBarry Smith   ierr = TSComputeIJacobian(ts,t,U,Udot,1.0,&A,&B,&flg2,PETSC_TRUE);CHKERRQ(ierr);
36540910c330SBarry Smith   ierr = MatMult(A,Udot,F);CHKERRQ(ierr);
36550026cea9SSean Farley   PetscFunctionReturn(0);
36560026cea9SSean Farley }
36570026cea9SSean Farley 
36580026cea9SSean Farley #undef __FUNCT__
36590026cea9SSean Farley #define __FUNCT__ "TSComputeIJacobianConstant"
36600026cea9SSean Farley /*@C
3661b41af12eSJed Brown    TSComputeIJacobianConstant - Reuses a time-independent for a semi-implicit DAE or ODE
36620026cea9SSean Farley 
36630026cea9SSean Farley    Collective on TS
36640026cea9SSean Farley 
36650026cea9SSean Farley    Input Arguments:
36660026cea9SSean Farley +  ts - time stepping context
36670026cea9SSean Farley .  t - time at which to evaluate
36680910c330SBarry Smith .  U - state at which to evaluate
36690910c330SBarry Smith .  Udot - time derivative of state vector
36700026cea9SSean Farley .  shift - shift to apply
36710026cea9SSean Farley -  ctx - context
36720026cea9SSean Farley 
36730026cea9SSean Farley    Output Arguments:
36740026cea9SSean Farley +  A - pointer to operator
36750026cea9SSean Farley .  B - pointer to preconditioning matrix
36760026cea9SSean Farley -  flg - matrix structure flag
36770026cea9SSean Farley 
3678b41af12eSJed Brown    Level: advanced
36790026cea9SSean Farley 
36800026cea9SSean Farley    Notes:
36810026cea9SSean Farley    This function is intended to be passed to TSSetIJacobian() to evaluate the Jacobian for linear time-independent problems.
36820026cea9SSean Farley 
3683b41af12eSJed Brown    It is only appropriate for problems of the form
3684b41af12eSJed Brown 
3685b41af12eSJed Brown $     M Udot = F(U,t)
3686b41af12eSJed Brown 
3687b41af12eSJed Brown   where M is constant and F is non-stiff.  The user must pass M to TSSetIJacobian().  The current implementation only
3688b41af12eSJed Brown   works with IMEX time integration methods such as TSROSW and TSARKIMEX, since there is no support for de-constructing
3689b41af12eSJed Brown   an implicit operator of the form
3690b41af12eSJed Brown 
3691b41af12eSJed Brown $    shift*M + J
3692b41af12eSJed Brown 
3693b41af12eSJed 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
3694b41af12eSJed Brown   a copy of M or reassemble it when requested.
3695b41af12eSJed Brown 
36960026cea9SSean Farley .seealso: TSSetIFunction(), TSSetIJacobian(), TSComputeIFunctionLinear()
36970026cea9SSean Farley @*/
36980910c330SBarry Smith PetscErrorCode TSComputeIJacobianConstant(TS ts,PetscReal t,Vec U,Vec Udot,PetscReal shift,Mat *A,Mat *B,MatStructure *flg,void *ctx)
36990026cea9SSean Farley {
3700b41af12eSJed Brown   PetscErrorCode ierr;
3701b41af12eSJed Brown 
37020026cea9SSean Farley   PetscFunctionBegin;
3703b41af12eSJed Brown   ierr = MatScale(*A, shift / ts->ijacobian.shift);CHKERRQ(ierr);
3704b41af12eSJed Brown   ts->ijacobian.shift = shift;
37050026cea9SSean Farley   *flg = SAME_PRECONDITIONER;
37060026cea9SSean Farley   PetscFunctionReturn(0);
37070026cea9SSean Farley }
3708b41af12eSJed Brown 
3709e817cc15SEmil Constantinescu #undef __FUNCT__
3710e817cc15SEmil Constantinescu #define __FUNCT__ "TSGetEquationType"
3711e817cc15SEmil Constantinescu /*@
3712e817cc15SEmil Constantinescu    TSGetEquationType - Gets the type of the equation that TS is solving.
3713e817cc15SEmil Constantinescu 
3714e817cc15SEmil Constantinescu    Not Collective
3715e817cc15SEmil Constantinescu 
3716e817cc15SEmil Constantinescu    Input Parameter:
3717e817cc15SEmil Constantinescu .  ts - the TS context
3718e817cc15SEmil Constantinescu 
3719e817cc15SEmil Constantinescu    Output Parameter:
37204e6b9ce4SEmil Constantinescu .  equation_type - see TSEquationType
3721e817cc15SEmil Constantinescu 
3722e817cc15SEmil Constantinescu    Level: beginner
3723e817cc15SEmil Constantinescu 
3724e817cc15SEmil Constantinescu .keywords: TS, equation type
3725e817cc15SEmil Constantinescu 
3726e817cc15SEmil Constantinescu .seealso: TSSetEquationType(), TSEquationType
3727e817cc15SEmil Constantinescu @*/
3728e817cc15SEmil Constantinescu PetscErrorCode  TSGetEquationType(TS ts,TSEquationType *equation_type)
3729e817cc15SEmil Constantinescu {
3730e817cc15SEmil Constantinescu   PetscFunctionBegin;
3731e817cc15SEmil Constantinescu   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3732e817cc15SEmil Constantinescu   PetscValidPointer(equation_type,2);
3733e817cc15SEmil Constantinescu   *equation_type = ts->equation_type;
3734e817cc15SEmil Constantinescu   PetscFunctionReturn(0);
3735e817cc15SEmil Constantinescu }
3736e817cc15SEmil Constantinescu 
3737e817cc15SEmil Constantinescu #undef __FUNCT__
3738e817cc15SEmil Constantinescu #define __FUNCT__ "TSSetEquationType"
3739e817cc15SEmil Constantinescu /*@
3740e817cc15SEmil Constantinescu    TSSetEquationType - Sets the type of the equation that TS is solving.
3741e817cc15SEmil Constantinescu 
3742e817cc15SEmil Constantinescu    Not Collective
3743e817cc15SEmil Constantinescu 
3744e817cc15SEmil Constantinescu    Input Parameter:
3745e817cc15SEmil Constantinescu +  ts - the TS context
37464e6b9ce4SEmil Constantinescu .  equation_type - see TSEquationType
3747e817cc15SEmil Constantinescu 
3748e817cc15SEmil Constantinescu    Level: advanced
3749e817cc15SEmil Constantinescu 
3750e817cc15SEmil Constantinescu .keywords: TS, equation type
3751e817cc15SEmil Constantinescu 
3752e817cc15SEmil Constantinescu .seealso: TSGetEquationType(), TSEquationType
3753e817cc15SEmil Constantinescu @*/
3754e817cc15SEmil Constantinescu PetscErrorCode  TSSetEquationType(TS ts,TSEquationType equation_type)
3755e817cc15SEmil Constantinescu {
3756e817cc15SEmil Constantinescu   PetscFunctionBegin;
3757e817cc15SEmil Constantinescu   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3758e817cc15SEmil Constantinescu   ts->equation_type = equation_type;
3759e817cc15SEmil Constantinescu   PetscFunctionReturn(0);
3760e817cc15SEmil Constantinescu }
37610026cea9SSean Farley 
37624af1b03aSJed Brown #undef __FUNCT__
37634af1b03aSJed Brown #define __FUNCT__ "TSGetConvergedReason"
37644af1b03aSJed Brown /*@
37654af1b03aSJed Brown    TSGetConvergedReason - Gets the reason the TS iteration was stopped.
37664af1b03aSJed Brown 
37674af1b03aSJed Brown    Not Collective
37684af1b03aSJed Brown 
37694af1b03aSJed Brown    Input Parameter:
37704af1b03aSJed Brown .  ts - the TS context
37714af1b03aSJed Brown 
37724af1b03aSJed Brown    Output Parameter:
37734af1b03aSJed Brown .  reason - negative value indicates diverged, positive value converged, see TSConvergedReason or the
37744af1b03aSJed Brown             manual pages for the individual convergence tests for complete lists
37754af1b03aSJed Brown 
3776487e0bb9SJed Brown    Level: beginner
37774af1b03aSJed Brown 
3778cd652676SJed Brown    Notes:
3779cd652676SJed Brown    Can only be called after the call to TSSolve() is complete.
37804af1b03aSJed Brown 
37814af1b03aSJed Brown .keywords: TS, nonlinear, set, convergence, test
37824af1b03aSJed Brown 
37834af1b03aSJed Brown .seealso: TSSetConvergenceTest(), TSConvergedReason
37844af1b03aSJed Brown @*/
37854af1b03aSJed Brown PetscErrorCode  TSGetConvergedReason(TS ts,TSConvergedReason *reason)
37864af1b03aSJed Brown {
37874af1b03aSJed Brown   PetscFunctionBegin;
37884af1b03aSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
37894af1b03aSJed Brown   PetscValidPointer(reason,2);
37904af1b03aSJed Brown   *reason = ts->reason;
37914af1b03aSJed Brown   PetscFunctionReturn(0);
37924af1b03aSJed Brown }
37934af1b03aSJed Brown 
3794fb1732b5SBarry Smith #undef __FUNCT__
3795d6ad946cSShri Abhyankar #define __FUNCT__ "TSSetConvergedReason"
3796d6ad946cSShri Abhyankar /*@
3797d6ad946cSShri Abhyankar    TSSetConvergedReason - Sets the reason for handling the convergence of TSSolve.
3798d6ad946cSShri Abhyankar 
3799d6ad946cSShri Abhyankar    Not Collective
3800d6ad946cSShri Abhyankar 
3801d6ad946cSShri Abhyankar    Input Parameter:
3802d6ad946cSShri Abhyankar +  ts - the TS context
3803d6ad946cSShri Abhyankar .  reason - negative value indicates diverged, positive value converged, see TSConvergedReason or the
3804d6ad946cSShri Abhyankar             manual pages for the individual convergence tests for complete lists
3805d6ad946cSShri Abhyankar 
3806f5abba47SShri Abhyankar    Level: advanced
3807d6ad946cSShri Abhyankar 
3808d6ad946cSShri Abhyankar    Notes:
3809d6ad946cSShri Abhyankar    Can only be called during TSSolve() is active.
3810d6ad946cSShri Abhyankar 
3811d6ad946cSShri Abhyankar .keywords: TS, nonlinear, set, convergence, test
3812d6ad946cSShri Abhyankar 
3813d6ad946cSShri Abhyankar .seealso: TSConvergedReason
3814d6ad946cSShri Abhyankar @*/
3815d6ad946cSShri Abhyankar PetscErrorCode  TSSetConvergedReason(TS ts,TSConvergedReason reason)
3816d6ad946cSShri Abhyankar {
3817d6ad946cSShri Abhyankar   PetscFunctionBegin;
3818d6ad946cSShri Abhyankar   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3819d6ad946cSShri Abhyankar   ts->reason = reason;
3820d6ad946cSShri Abhyankar   PetscFunctionReturn(0);
3821d6ad946cSShri Abhyankar }
3822d6ad946cSShri Abhyankar 
3823d6ad946cSShri Abhyankar #undef __FUNCT__
3824cc708dedSBarry Smith #define __FUNCT__ "TSGetSolveTime"
3825cc708dedSBarry Smith /*@
3826cc708dedSBarry Smith    TSGetSolveTime - Gets the time after a call to TSSolve()
3827cc708dedSBarry Smith 
3828cc708dedSBarry Smith    Not Collective
3829cc708dedSBarry Smith 
3830cc708dedSBarry Smith    Input Parameter:
3831cc708dedSBarry Smith .  ts - the TS context
3832cc708dedSBarry Smith 
3833cc708dedSBarry Smith    Output Parameter:
3834cc708dedSBarry Smith .  ftime - the final time. This time should correspond to the final time set with TSSetDuration()
3835cc708dedSBarry Smith 
3836487e0bb9SJed Brown    Level: beginner
3837cc708dedSBarry Smith 
3838cc708dedSBarry Smith    Notes:
3839cc708dedSBarry Smith    Can only be called after the call to TSSolve() is complete.
3840cc708dedSBarry Smith 
3841cc708dedSBarry Smith .keywords: TS, nonlinear, set, convergence, test
3842cc708dedSBarry Smith 
3843cc708dedSBarry Smith .seealso: TSSetConvergenceTest(), TSConvergedReason
3844cc708dedSBarry Smith @*/
3845cc708dedSBarry Smith PetscErrorCode  TSGetSolveTime(TS ts,PetscReal *ftime)
3846cc708dedSBarry Smith {
3847cc708dedSBarry Smith   PetscFunctionBegin;
3848cc708dedSBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3849cc708dedSBarry Smith   PetscValidPointer(ftime,2);
3850cc708dedSBarry Smith   *ftime = ts->solvetime;
3851cc708dedSBarry Smith   PetscFunctionReturn(0);
3852cc708dedSBarry Smith }
3853cc708dedSBarry Smith 
3854cc708dedSBarry Smith #undef __FUNCT__
38555ef26d82SJed Brown #define __FUNCT__ "TSGetSNESIterations"
38569f67acb7SJed Brown /*@
38575ef26d82SJed Brown    TSGetSNESIterations - Gets the total number of nonlinear iterations
38589f67acb7SJed Brown    used by the time integrator.
38599f67acb7SJed Brown 
38609f67acb7SJed Brown    Not Collective
38619f67acb7SJed Brown 
38629f67acb7SJed Brown    Input Parameter:
38639f67acb7SJed Brown .  ts - TS context
38649f67acb7SJed Brown 
38659f67acb7SJed Brown    Output Parameter:
38669f67acb7SJed Brown .  nits - number of nonlinear iterations
38679f67acb7SJed Brown 
38689f67acb7SJed Brown    Notes:
38699f67acb7SJed Brown    This counter is reset to zero for each successive call to TSSolve().
38709f67acb7SJed Brown 
38719f67acb7SJed Brown    Level: intermediate
38729f67acb7SJed Brown 
38739f67acb7SJed Brown .keywords: TS, get, number, nonlinear, iterations
38749f67acb7SJed Brown 
38755ef26d82SJed Brown .seealso:  TSGetKSPIterations()
38769f67acb7SJed Brown @*/
38775ef26d82SJed Brown PetscErrorCode TSGetSNESIterations(TS ts,PetscInt *nits)
38789f67acb7SJed Brown {
38799f67acb7SJed Brown   PetscFunctionBegin;
38809f67acb7SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
38819f67acb7SJed Brown   PetscValidIntPointer(nits,2);
38825ef26d82SJed Brown   *nits = ts->snes_its;
38839f67acb7SJed Brown   PetscFunctionReturn(0);
38849f67acb7SJed Brown }
38859f67acb7SJed Brown 
38869f67acb7SJed Brown #undef __FUNCT__
38875ef26d82SJed Brown #define __FUNCT__ "TSGetKSPIterations"
38889f67acb7SJed Brown /*@
38895ef26d82SJed Brown    TSGetKSPIterations - Gets the total number of linear iterations
38909f67acb7SJed Brown    used by the time integrator.
38919f67acb7SJed Brown 
38929f67acb7SJed Brown    Not Collective
38939f67acb7SJed Brown 
38949f67acb7SJed Brown    Input Parameter:
38959f67acb7SJed Brown .  ts - TS context
38969f67acb7SJed Brown 
38979f67acb7SJed Brown    Output Parameter:
38989f67acb7SJed Brown .  lits - number of linear iterations
38999f67acb7SJed Brown 
39009f67acb7SJed Brown    Notes:
39019f67acb7SJed Brown    This counter is reset to zero for each successive call to TSSolve().
39029f67acb7SJed Brown 
39039f67acb7SJed Brown    Level: intermediate
39049f67acb7SJed Brown 
39059f67acb7SJed Brown .keywords: TS, get, number, linear, iterations
39069f67acb7SJed Brown 
39075ef26d82SJed Brown .seealso:  TSGetSNESIterations(), SNESGetKSPIterations()
39089f67acb7SJed Brown @*/
39095ef26d82SJed Brown PetscErrorCode TSGetKSPIterations(TS ts,PetscInt *lits)
39109f67acb7SJed Brown {
39119f67acb7SJed Brown   PetscFunctionBegin;
39129f67acb7SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
39139f67acb7SJed Brown   PetscValidIntPointer(lits,2);
39145ef26d82SJed Brown   *lits = ts->ksp_its;
39159f67acb7SJed Brown   PetscFunctionReturn(0);
39169f67acb7SJed Brown }
39179f67acb7SJed Brown 
39189f67acb7SJed Brown #undef __FUNCT__
3919cef5090cSJed Brown #define __FUNCT__ "TSGetStepRejections"
3920cef5090cSJed Brown /*@
3921cef5090cSJed Brown    TSGetStepRejections - Gets the total number of rejected steps.
3922cef5090cSJed Brown 
3923cef5090cSJed Brown    Not Collective
3924cef5090cSJed Brown 
3925cef5090cSJed Brown    Input Parameter:
3926cef5090cSJed Brown .  ts - TS context
3927cef5090cSJed Brown 
3928cef5090cSJed Brown    Output Parameter:
3929cef5090cSJed Brown .  rejects - number of steps rejected
3930cef5090cSJed Brown 
3931cef5090cSJed Brown    Notes:
3932cef5090cSJed Brown    This counter is reset to zero for each successive call to TSSolve().
3933cef5090cSJed Brown 
3934cef5090cSJed Brown    Level: intermediate
3935cef5090cSJed Brown 
3936cef5090cSJed Brown .keywords: TS, get, number
3937cef5090cSJed Brown 
39385ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetSNESFailures(), TSSetMaxSNESFailures(), TSSetErrorIfStepFails()
3939cef5090cSJed Brown @*/
3940cef5090cSJed Brown PetscErrorCode TSGetStepRejections(TS ts,PetscInt *rejects)
3941cef5090cSJed Brown {
3942cef5090cSJed Brown   PetscFunctionBegin;
3943cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3944cef5090cSJed Brown   PetscValidIntPointer(rejects,2);
3945cef5090cSJed Brown   *rejects = ts->reject;
3946cef5090cSJed Brown   PetscFunctionReturn(0);
3947cef5090cSJed Brown }
3948cef5090cSJed Brown 
3949cef5090cSJed Brown #undef __FUNCT__
3950cef5090cSJed Brown #define __FUNCT__ "TSGetSNESFailures"
3951cef5090cSJed Brown /*@
3952cef5090cSJed Brown    TSGetSNESFailures - Gets the total number of failed SNES solves
3953cef5090cSJed Brown 
3954cef5090cSJed Brown    Not Collective
3955cef5090cSJed Brown 
3956cef5090cSJed Brown    Input Parameter:
3957cef5090cSJed Brown .  ts - TS context
3958cef5090cSJed Brown 
3959cef5090cSJed Brown    Output Parameter:
3960cef5090cSJed Brown .  fails - number of failed nonlinear solves
3961cef5090cSJed Brown 
3962cef5090cSJed Brown    Notes:
3963cef5090cSJed Brown    This counter is reset to zero for each successive call to TSSolve().
3964cef5090cSJed Brown 
3965cef5090cSJed Brown    Level: intermediate
3966cef5090cSJed Brown 
3967cef5090cSJed Brown .keywords: TS, get, number
3968cef5090cSJed Brown 
39695ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetStepRejections(), TSSetMaxSNESFailures()
3970cef5090cSJed Brown @*/
3971cef5090cSJed Brown PetscErrorCode TSGetSNESFailures(TS ts,PetscInt *fails)
3972cef5090cSJed Brown {
3973cef5090cSJed Brown   PetscFunctionBegin;
3974cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3975cef5090cSJed Brown   PetscValidIntPointer(fails,2);
3976cef5090cSJed Brown   *fails = ts->num_snes_failures;
3977cef5090cSJed Brown   PetscFunctionReturn(0);
3978cef5090cSJed Brown }
3979cef5090cSJed Brown 
3980cef5090cSJed Brown #undef __FUNCT__
3981cef5090cSJed Brown #define __FUNCT__ "TSSetMaxStepRejections"
3982cef5090cSJed Brown /*@
3983cef5090cSJed Brown    TSSetMaxStepRejections - Sets the maximum number of step rejections before a step fails
3984cef5090cSJed Brown 
3985cef5090cSJed Brown    Not Collective
3986cef5090cSJed Brown 
3987cef5090cSJed Brown    Input Parameter:
3988cef5090cSJed Brown +  ts - TS context
3989cef5090cSJed Brown -  rejects - maximum number of rejected steps, pass -1 for unlimited
3990cef5090cSJed Brown 
3991cef5090cSJed Brown    Notes:
3992cef5090cSJed Brown    The counter is reset to zero for each step
3993cef5090cSJed Brown 
3994cef5090cSJed Brown    Options Database Key:
3995cef5090cSJed Brown  .  -ts_max_reject - Maximum number of step rejections before a step fails
3996cef5090cSJed Brown 
3997cef5090cSJed Brown    Level: intermediate
3998cef5090cSJed Brown 
3999cef5090cSJed Brown .keywords: TS, set, maximum, number
4000cef5090cSJed Brown 
40015ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxSNESFailures(), TSGetStepRejections(), TSGetSNESFailures(), TSSetErrorIfStepFails(), TSGetConvergedReason()
4002cef5090cSJed Brown @*/
4003cef5090cSJed Brown PetscErrorCode TSSetMaxStepRejections(TS ts,PetscInt rejects)
4004cef5090cSJed Brown {
4005cef5090cSJed Brown   PetscFunctionBegin;
4006cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4007cef5090cSJed Brown   ts->max_reject = rejects;
4008cef5090cSJed Brown   PetscFunctionReturn(0);
4009cef5090cSJed Brown }
4010cef5090cSJed Brown 
4011cef5090cSJed Brown #undef __FUNCT__
4012cef5090cSJed Brown #define __FUNCT__ "TSSetMaxSNESFailures"
4013cef5090cSJed Brown /*@
4014cef5090cSJed Brown    TSSetMaxSNESFailures - Sets the maximum number of failed SNES solves
4015cef5090cSJed Brown 
4016cef5090cSJed Brown    Not Collective
4017cef5090cSJed Brown 
4018cef5090cSJed Brown    Input Parameter:
4019cef5090cSJed Brown +  ts - TS context
4020cef5090cSJed Brown -  fails - maximum number of failed nonlinear solves, pass -1 for unlimited
4021cef5090cSJed Brown 
4022cef5090cSJed Brown    Notes:
4023cef5090cSJed Brown    The counter is reset to zero for each successive call to TSSolve().
4024cef5090cSJed Brown 
4025cef5090cSJed Brown    Options Database Key:
4026cef5090cSJed Brown  .  -ts_max_snes_failures - Maximum number of nonlinear solve failures
4027cef5090cSJed Brown 
4028cef5090cSJed Brown    Level: intermediate
4029cef5090cSJed Brown 
4030cef5090cSJed Brown .keywords: TS, set, maximum, number
4031cef5090cSJed Brown 
40325ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetStepRejections(), TSGetSNESFailures(), SNESGetConvergedReason(), TSGetConvergedReason()
4033cef5090cSJed Brown @*/
4034cef5090cSJed Brown PetscErrorCode TSSetMaxSNESFailures(TS ts,PetscInt fails)
4035cef5090cSJed Brown {
4036cef5090cSJed Brown   PetscFunctionBegin;
4037cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4038cef5090cSJed Brown   ts->max_snes_failures = fails;
4039cef5090cSJed Brown   PetscFunctionReturn(0);
4040cef5090cSJed Brown }
4041cef5090cSJed Brown 
4042cef5090cSJed Brown #undef __FUNCT__
40434e8de811SJed Brown #define __FUNCT__ "TSSetErrorIfStepFails"
4044cef5090cSJed Brown /*@
4045cef5090cSJed Brown    TSSetErrorIfStepFails - Error if no step succeeds
4046cef5090cSJed Brown 
4047cef5090cSJed Brown    Not Collective
4048cef5090cSJed Brown 
4049cef5090cSJed Brown    Input Parameter:
4050cef5090cSJed Brown +  ts - TS context
4051cef5090cSJed Brown -  err - PETSC_TRUE to error if no step succeeds, PETSC_FALSE to return without failure
4052cef5090cSJed Brown 
4053cef5090cSJed Brown    Options Database Key:
4054cef5090cSJed Brown  .  -ts_error_if_step_fails - Error if no step succeeds
4055cef5090cSJed Brown 
4056cef5090cSJed Brown    Level: intermediate
4057cef5090cSJed Brown 
4058cef5090cSJed Brown .keywords: TS, set, error
4059cef5090cSJed Brown 
40605ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetStepRejections(), TSGetSNESFailures(), TSSetErrorIfStepFails(), TSGetConvergedReason()
4061cef5090cSJed Brown @*/
4062cef5090cSJed Brown PetscErrorCode TSSetErrorIfStepFails(TS ts,PetscBool err)
4063cef5090cSJed Brown {
4064cef5090cSJed Brown   PetscFunctionBegin;
4065cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4066cef5090cSJed Brown   ts->errorifstepfailed = err;
4067cef5090cSJed Brown   PetscFunctionReturn(0);
4068cef5090cSJed Brown }
4069cef5090cSJed Brown 
4070cef5090cSJed Brown #undef __FUNCT__
4071fb1732b5SBarry Smith #define __FUNCT__ "TSMonitorSolutionBinary"
4072fb1732b5SBarry Smith /*@C
4073fb1732b5SBarry Smith    TSMonitorSolutionBinary - Monitors progress of the TS solvers by VecView() for the solution at each timestep. Normally the viewer is a binary file
4074fb1732b5SBarry Smith 
4075fb1732b5SBarry Smith    Collective on TS
4076fb1732b5SBarry Smith 
4077fb1732b5SBarry Smith    Input Parameters:
4078fb1732b5SBarry Smith +  ts - the TS context
4079fb1732b5SBarry Smith .  step - current time-step
4080fb1732b5SBarry Smith .  ptime - current time
40810910c330SBarry Smith .  u - current state
4082fb1732b5SBarry Smith -  viewer - binary viewer
4083fb1732b5SBarry Smith 
4084fb1732b5SBarry Smith    Level: intermediate
4085fb1732b5SBarry Smith 
4086fb1732b5SBarry Smith .keywords: TS,  vector, monitor, view
4087fb1732b5SBarry Smith 
4088fb1732b5SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
4089fb1732b5SBarry Smith @*/
40900910c330SBarry Smith PetscErrorCode  TSMonitorSolutionBinary(TS ts,PetscInt step,PetscReal ptime,Vec u,void *viewer)
4091fb1732b5SBarry Smith {
4092fb1732b5SBarry Smith   PetscErrorCode ierr;
4093ed81e22dSJed Brown   PetscViewer    v = (PetscViewer)viewer;
4094fb1732b5SBarry Smith 
4095fb1732b5SBarry Smith   PetscFunctionBegin;
40960910c330SBarry Smith   ierr = VecView(u,v);CHKERRQ(ierr);
4097ed81e22dSJed Brown   PetscFunctionReturn(0);
4098ed81e22dSJed Brown }
4099ed81e22dSJed Brown 
4100ed81e22dSJed Brown #undef __FUNCT__
4101ed81e22dSJed Brown #define __FUNCT__ "TSMonitorSolutionVTK"
4102ed81e22dSJed Brown /*@C
4103ed81e22dSJed Brown    TSMonitorSolutionVTK - Monitors progress of the TS solvers by VecView() for the solution at each timestep.
4104ed81e22dSJed Brown 
4105ed81e22dSJed Brown    Collective on TS
4106ed81e22dSJed Brown 
4107ed81e22dSJed Brown    Input Parameters:
4108ed81e22dSJed Brown +  ts - the TS context
4109ed81e22dSJed Brown .  step - current time-step
4110ed81e22dSJed Brown .  ptime - current time
41110910c330SBarry Smith .  u - current state
4112ed81e22dSJed Brown -  filenametemplate - string containing a format specifier for the integer time step (e.g. %03D)
4113ed81e22dSJed Brown 
4114ed81e22dSJed Brown    Level: intermediate
4115ed81e22dSJed Brown 
4116ed81e22dSJed Brown    Notes:
4117ed81e22dSJed 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.
4118ed81e22dSJed Brown    These are named according to the file name template.
4119ed81e22dSJed Brown 
4120ed81e22dSJed Brown    This function is normally passed as an argument to TSMonitorSet() along with TSMonitorSolutionVTKDestroy().
4121ed81e22dSJed Brown 
4122ed81e22dSJed Brown .keywords: TS,  vector, monitor, view
4123ed81e22dSJed Brown 
4124ed81e22dSJed Brown .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
4125ed81e22dSJed Brown @*/
41260910c330SBarry Smith PetscErrorCode TSMonitorSolutionVTK(TS ts,PetscInt step,PetscReal ptime,Vec u,void *filenametemplate)
4127ed81e22dSJed Brown {
4128ed81e22dSJed Brown   PetscErrorCode ierr;
4129ed81e22dSJed Brown   char           filename[PETSC_MAX_PATH_LEN];
4130ed81e22dSJed Brown   PetscViewer    viewer;
4131ed81e22dSJed Brown 
4132ed81e22dSJed Brown   PetscFunctionBegin;
41338caf3d72SBarry Smith   ierr = PetscSNPrintf(filename,sizeof(filename),(const char*)filenametemplate,step);CHKERRQ(ierr);
4134ce94432eSBarry Smith   ierr = PetscViewerVTKOpen(PetscObjectComm((PetscObject)ts),filename,FILE_MODE_WRITE,&viewer);CHKERRQ(ierr);
41350910c330SBarry Smith   ierr = VecView(u,viewer);CHKERRQ(ierr);
4136ed81e22dSJed Brown   ierr = PetscViewerDestroy(&viewer);CHKERRQ(ierr);
4137ed81e22dSJed Brown   PetscFunctionReturn(0);
4138ed81e22dSJed Brown }
4139ed81e22dSJed Brown 
4140ed81e22dSJed Brown #undef __FUNCT__
4141ed81e22dSJed Brown #define __FUNCT__ "TSMonitorSolutionVTKDestroy"
4142ed81e22dSJed Brown /*@C
4143ed81e22dSJed Brown    TSMonitorSolutionVTKDestroy - Destroy context for monitoring
4144ed81e22dSJed Brown 
4145ed81e22dSJed Brown    Collective on TS
4146ed81e22dSJed Brown 
4147ed81e22dSJed Brown    Input Parameters:
4148ed81e22dSJed Brown .  filenametemplate - string containing a format specifier for the integer time step (e.g. %03D)
4149ed81e22dSJed Brown 
4150ed81e22dSJed Brown    Level: intermediate
4151ed81e22dSJed Brown 
4152ed81e22dSJed Brown    Note:
4153ed81e22dSJed Brown    This function is normally passed to TSMonitorSet() along with TSMonitorSolutionVTK().
4154ed81e22dSJed Brown 
4155ed81e22dSJed Brown .keywords: TS,  vector, monitor, view
4156ed81e22dSJed Brown 
4157ed81e22dSJed Brown .seealso: TSMonitorSet(), TSMonitorSolutionVTK()
4158ed81e22dSJed Brown @*/
4159ed81e22dSJed Brown PetscErrorCode TSMonitorSolutionVTKDestroy(void *filenametemplate)
4160ed81e22dSJed Brown {
4161ed81e22dSJed Brown   PetscErrorCode ierr;
4162ed81e22dSJed Brown 
4163ed81e22dSJed Brown   PetscFunctionBegin;
4164ed81e22dSJed Brown   ierr = PetscFree(*(char**)filenametemplate);CHKERRQ(ierr);
4165fb1732b5SBarry Smith   PetscFunctionReturn(0);
4166fb1732b5SBarry Smith }
4167fb1732b5SBarry Smith 
416884df9cb4SJed Brown #undef __FUNCT__
4169552698daSJed Brown #define __FUNCT__ "TSGetAdapt"
417084df9cb4SJed Brown /*@
4171552698daSJed Brown    TSGetAdapt - Get the adaptive controller context for the current method
417284df9cb4SJed Brown 
4173ed81e22dSJed Brown    Collective on TS if controller has not been created yet
417484df9cb4SJed Brown 
417584df9cb4SJed Brown    Input Arguments:
4176ed81e22dSJed Brown .  ts - time stepping context
417784df9cb4SJed Brown 
417884df9cb4SJed Brown    Output Arguments:
4179ed81e22dSJed Brown .  adapt - adaptive controller
418084df9cb4SJed Brown 
418184df9cb4SJed Brown    Level: intermediate
418284df9cb4SJed Brown 
4183ed81e22dSJed Brown .seealso: TSAdapt, TSAdaptSetType(), TSAdaptChoose()
418484df9cb4SJed Brown @*/
4185552698daSJed Brown PetscErrorCode TSGetAdapt(TS ts,TSAdapt *adapt)
418684df9cb4SJed Brown {
418784df9cb4SJed Brown   PetscErrorCode ierr;
418884df9cb4SJed Brown 
418984df9cb4SJed Brown   PetscFunctionBegin;
419084df9cb4SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
419184df9cb4SJed Brown   PetscValidPointer(adapt,2);
419284df9cb4SJed Brown   if (!ts->adapt) {
4193ce94432eSBarry Smith     ierr = TSAdaptCreate(PetscObjectComm((PetscObject)ts),&ts->adapt);CHKERRQ(ierr);
41943bb1ff40SBarry Smith     ierr = PetscLogObjectParent((PetscObject)ts,(PetscObject)ts->adapt);CHKERRQ(ierr);
41951c3436cfSJed Brown     ierr = PetscObjectIncrementTabLevel((PetscObject)ts->adapt,(PetscObject)ts,1);CHKERRQ(ierr);
419684df9cb4SJed Brown   }
419784df9cb4SJed Brown   *adapt = ts->adapt;
419884df9cb4SJed Brown   PetscFunctionReturn(0);
419984df9cb4SJed Brown }
4200d6ebe24aSShri Abhyankar 
4201d6ebe24aSShri Abhyankar #undef __FUNCT__
42021c3436cfSJed Brown #define __FUNCT__ "TSSetTolerances"
42031c3436cfSJed Brown /*@
42041c3436cfSJed Brown    TSSetTolerances - Set tolerances for local truncation error when using adaptive controller
42051c3436cfSJed Brown 
42061c3436cfSJed Brown    Logically Collective
42071c3436cfSJed Brown 
42081c3436cfSJed Brown    Input Arguments:
42091c3436cfSJed Brown +  ts - time integration context
42101c3436cfSJed Brown .  atol - scalar absolute tolerances, PETSC_DECIDE to leave current value
42110298fd71SBarry Smith .  vatol - vector of absolute tolerances or NULL, used in preference to atol if present
42121c3436cfSJed Brown .  rtol - scalar relative tolerances, PETSC_DECIDE to leave current value
42130298fd71SBarry Smith -  vrtol - vector of relative tolerances or NULL, used in preference to atol if present
42141c3436cfSJed Brown 
42151c3436cfSJed Brown    Level: beginner
42161c3436cfSJed Brown 
4217c5033834SJed Brown .seealso: TS, TSAdapt, TSVecNormWRMS(), TSGetTolerances()
42181c3436cfSJed Brown @*/
42191c3436cfSJed Brown PetscErrorCode TSSetTolerances(TS ts,PetscReal atol,Vec vatol,PetscReal rtol,Vec vrtol)
42201c3436cfSJed Brown {
42211c3436cfSJed Brown   PetscErrorCode ierr;
42221c3436cfSJed Brown 
42231c3436cfSJed Brown   PetscFunctionBegin;
4224c5033834SJed Brown   if (atol != PETSC_DECIDE && atol != PETSC_DEFAULT) ts->atol = atol;
42251c3436cfSJed Brown   if (vatol) {
42261c3436cfSJed Brown     ierr = PetscObjectReference((PetscObject)vatol);CHKERRQ(ierr);
42271c3436cfSJed Brown     ierr = VecDestroy(&ts->vatol);CHKERRQ(ierr);
4228bbd56ea5SKarl Rupp 
42291c3436cfSJed Brown     ts->vatol = vatol;
42301c3436cfSJed Brown   }
4231c5033834SJed Brown   if (rtol != PETSC_DECIDE && rtol != PETSC_DEFAULT) ts->rtol = rtol;
42321c3436cfSJed Brown   if (vrtol) {
42331c3436cfSJed Brown     ierr = PetscObjectReference((PetscObject)vrtol);CHKERRQ(ierr);
42341c3436cfSJed Brown     ierr = VecDestroy(&ts->vrtol);CHKERRQ(ierr);
4235bbd56ea5SKarl Rupp 
42361c3436cfSJed Brown     ts->vrtol = vrtol;
42371c3436cfSJed Brown   }
42381c3436cfSJed Brown   PetscFunctionReturn(0);
42391c3436cfSJed Brown }
42401c3436cfSJed Brown 
42411c3436cfSJed Brown #undef __FUNCT__
4242c5033834SJed Brown #define __FUNCT__ "TSGetTolerances"
4243c5033834SJed Brown /*@
4244c5033834SJed Brown    TSGetTolerances - Get tolerances for local truncation error when using adaptive controller
4245c5033834SJed Brown 
4246c5033834SJed Brown    Logically Collective
4247c5033834SJed Brown 
4248c5033834SJed Brown    Input Arguments:
4249c5033834SJed Brown .  ts - time integration context
4250c5033834SJed Brown 
4251c5033834SJed Brown    Output Arguments:
42520298fd71SBarry Smith +  atol - scalar absolute tolerances, NULL to ignore
42530298fd71SBarry Smith .  vatol - vector of absolute tolerances, NULL to ignore
42540298fd71SBarry Smith .  rtol - scalar relative tolerances, NULL to ignore
42550298fd71SBarry Smith -  vrtol - vector of relative tolerances, NULL to ignore
4256c5033834SJed Brown 
4257c5033834SJed Brown    Level: beginner
4258c5033834SJed Brown 
4259c5033834SJed Brown .seealso: TS, TSAdapt, TSVecNormWRMS(), TSSetTolerances()
4260c5033834SJed Brown @*/
4261c5033834SJed Brown PetscErrorCode TSGetTolerances(TS ts,PetscReal *atol,Vec *vatol,PetscReal *rtol,Vec *vrtol)
4262c5033834SJed Brown {
4263c5033834SJed Brown   PetscFunctionBegin;
4264c5033834SJed Brown   if (atol)  *atol  = ts->atol;
4265c5033834SJed Brown   if (vatol) *vatol = ts->vatol;
4266c5033834SJed Brown   if (rtol)  *rtol  = ts->rtol;
4267c5033834SJed Brown   if (vrtol) *vrtol = ts->vrtol;
4268c5033834SJed Brown   PetscFunctionReturn(0);
4269c5033834SJed Brown }
4270c5033834SJed Brown 
4271c5033834SJed Brown #undef __FUNCT__
42721c3436cfSJed Brown #define __FUNCT__ "TSErrorNormWRMS"
42731c3436cfSJed Brown /*@
42741c3436cfSJed Brown    TSErrorNormWRMS - compute a weighted norm of the difference between a vector and the current state
42751c3436cfSJed Brown 
42761c3436cfSJed Brown    Collective on TS
42771c3436cfSJed Brown 
42781c3436cfSJed Brown    Input Arguments:
42791c3436cfSJed Brown +  ts - time stepping context
42801c3436cfSJed Brown -  Y - state vector to be compared to ts->vec_sol
42811c3436cfSJed Brown 
42821c3436cfSJed Brown    Output Arguments:
42831c3436cfSJed Brown .  norm - weighted norm, a value of 1.0 is considered small
42841c3436cfSJed Brown 
42851c3436cfSJed Brown    Level: developer
42861c3436cfSJed Brown 
42871c3436cfSJed Brown .seealso: TSSetTolerances()
42881c3436cfSJed Brown @*/
42891c3436cfSJed Brown PetscErrorCode TSErrorNormWRMS(TS ts,Vec Y,PetscReal *norm)
42901c3436cfSJed Brown {
42911c3436cfSJed Brown   PetscErrorCode    ierr;
42921c3436cfSJed Brown   PetscInt          i,n,N;
42930910c330SBarry Smith   const PetscScalar *u,*y;
42940910c330SBarry Smith   Vec               U;
42951c3436cfSJed Brown   PetscReal         sum,gsum;
42961c3436cfSJed Brown 
42971c3436cfSJed Brown   PetscFunctionBegin;
42981c3436cfSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
42991c3436cfSJed Brown   PetscValidHeaderSpecific(Y,VEC_CLASSID,2);
43001c3436cfSJed Brown   PetscValidPointer(norm,3);
43010910c330SBarry Smith   U = ts->vec_sol;
43020910c330SBarry Smith   PetscCheckSameTypeAndComm(U,1,Y,2);
4303ce94432eSBarry Smith   if (U == Y) SETERRQ(PetscObjectComm((PetscObject)U),PETSC_ERR_ARG_IDN,"Y cannot be the TS solution vector");
43041c3436cfSJed Brown 
43050910c330SBarry Smith   ierr = VecGetSize(U,&N);CHKERRQ(ierr);
43060910c330SBarry Smith   ierr = VecGetLocalSize(U,&n);CHKERRQ(ierr);
43070910c330SBarry Smith   ierr = VecGetArrayRead(U,&u);CHKERRQ(ierr);
43081c3436cfSJed Brown   ierr = VecGetArrayRead(Y,&y);CHKERRQ(ierr);
43091c3436cfSJed Brown   sum  = 0.;
4310ceefc113SJed Brown   if (ts->vatol && ts->vrtol) {
4311ceefc113SJed Brown     const PetscScalar *atol,*rtol;
4312ceefc113SJed Brown     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
4313ceefc113SJed Brown     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
4314ceefc113SJed Brown     for (i=0; i<n; i++) {
43150910c330SBarry Smith       PetscReal tol = PetscRealPart(atol[i]) + PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
43160910c330SBarry Smith       sum += PetscSqr(PetscAbsScalar(y[i] - u[i]) / tol);
4317ceefc113SJed Brown     }
4318ceefc113SJed Brown     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
4319ceefc113SJed Brown     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
4320ceefc113SJed Brown   } else if (ts->vatol) {       /* vector atol, scalar rtol */
4321ceefc113SJed Brown     const PetscScalar *atol;
4322ceefc113SJed Brown     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
4323ceefc113SJed Brown     for (i=0; i<n; i++) {
43240910c330SBarry Smith       PetscReal tol = PetscRealPart(atol[i]) + ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
43250910c330SBarry Smith       sum += PetscSqr(PetscAbsScalar(y[i] - u[i]) / tol);
4326ceefc113SJed Brown     }
4327ceefc113SJed Brown     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
4328ceefc113SJed Brown   } else if (ts->vrtol) {       /* scalar atol, vector rtol */
4329ceefc113SJed Brown     const PetscScalar *rtol;
4330ceefc113SJed Brown     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
4331ceefc113SJed Brown     for (i=0; i<n; i++) {
43320910c330SBarry Smith       PetscReal tol = ts->atol + PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
43330910c330SBarry Smith       sum += PetscSqr(PetscAbsScalar(y[i] - u[i]) / tol);
4334ceefc113SJed Brown     }
4335ceefc113SJed Brown     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
4336ceefc113SJed Brown   } else {                      /* scalar atol, scalar rtol */
43371c3436cfSJed Brown     for (i=0; i<n; i++) {
43380910c330SBarry Smith       PetscReal tol = ts->atol + ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
43390910c330SBarry Smith       sum += PetscSqr(PetscAbsScalar(y[i] - u[i]) / tol);
43401c3436cfSJed Brown     }
4341ceefc113SJed Brown   }
43420910c330SBarry Smith   ierr = VecRestoreArrayRead(U,&u);CHKERRQ(ierr);
43431c3436cfSJed Brown   ierr = VecRestoreArrayRead(Y,&y);CHKERRQ(ierr);
43441c3436cfSJed Brown 
4345ce94432eSBarry Smith   ierr  = MPI_Allreduce(&sum,&gsum,1,MPIU_REAL,MPIU_SUM,PetscObjectComm((PetscObject)ts));CHKERRQ(ierr);
43461c3436cfSJed Brown   *norm = PetscSqrtReal(gsum / N);
4347ce94432eSBarry Smith   if (PetscIsInfOrNanScalar(*norm)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norm");
43481c3436cfSJed Brown   PetscFunctionReturn(0);
43491c3436cfSJed Brown }
43501c3436cfSJed Brown 
43511c3436cfSJed Brown #undef __FUNCT__
43528d59e960SJed Brown #define __FUNCT__ "TSSetCFLTimeLocal"
43538d59e960SJed Brown /*@
43548d59e960SJed Brown    TSSetCFLTimeLocal - Set the local CFL constraint relative to forward Euler
43558d59e960SJed Brown 
43568d59e960SJed Brown    Logically Collective on TS
43578d59e960SJed Brown 
43588d59e960SJed Brown    Input Arguments:
43598d59e960SJed Brown +  ts - time stepping context
43608d59e960SJed Brown -  cfltime - maximum stable time step if using forward Euler (value can be different on each process)
43618d59e960SJed Brown 
43628d59e960SJed Brown    Note:
43638d59e960SJed Brown    After calling this function, the global CFL time can be obtained by calling TSGetCFLTime()
43648d59e960SJed Brown 
43658d59e960SJed Brown    Level: intermediate
43668d59e960SJed Brown 
43678d59e960SJed Brown .seealso: TSGetCFLTime(), TSADAPTCFL
43688d59e960SJed Brown @*/
43698d59e960SJed Brown PetscErrorCode TSSetCFLTimeLocal(TS ts,PetscReal cfltime)
43708d59e960SJed Brown {
43718d59e960SJed Brown   PetscFunctionBegin;
43728d59e960SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
43738d59e960SJed Brown   ts->cfltime_local = cfltime;
43748d59e960SJed Brown   ts->cfltime       = -1.;
43758d59e960SJed Brown   PetscFunctionReturn(0);
43768d59e960SJed Brown }
43778d59e960SJed Brown 
43788d59e960SJed Brown #undef __FUNCT__
43798d59e960SJed Brown #define __FUNCT__ "TSGetCFLTime"
43808d59e960SJed Brown /*@
43818d59e960SJed Brown    TSGetCFLTime - Get the maximum stable time step according to CFL criteria applied to forward Euler
43828d59e960SJed Brown 
43838d59e960SJed Brown    Collective on TS
43848d59e960SJed Brown 
43858d59e960SJed Brown    Input Arguments:
43868d59e960SJed Brown .  ts - time stepping context
43878d59e960SJed Brown 
43888d59e960SJed Brown    Output Arguments:
43898d59e960SJed Brown .  cfltime - maximum stable time step for forward Euler
43908d59e960SJed Brown 
43918d59e960SJed Brown    Level: advanced
43928d59e960SJed Brown 
43938d59e960SJed Brown .seealso: TSSetCFLTimeLocal()
43948d59e960SJed Brown @*/
43958d59e960SJed Brown PetscErrorCode TSGetCFLTime(TS ts,PetscReal *cfltime)
43968d59e960SJed Brown {
43978d59e960SJed Brown   PetscErrorCode ierr;
43988d59e960SJed Brown 
43998d59e960SJed Brown   PetscFunctionBegin;
44008d59e960SJed Brown   if (ts->cfltime < 0) {
4401ce94432eSBarry Smith     ierr = MPI_Allreduce(&ts->cfltime_local,&ts->cfltime,1,MPIU_REAL,MPIU_MIN,PetscObjectComm((PetscObject)ts));CHKERRQ(ierr);
44028d59e960SJed Brown   }
44038d59e960SJed Brown   *cfltime = ts->cfltime;
44048d59e960SJed Brown   PetscFunctionReturn(0);
44058d59e960SJed Brown }
44068d59e960SJed Brown 
44078d59e960SJed Brown #undef __FUNCT__
4408d6ebe24aSShri Abhyankar #define __FUNCT__ "TSVISetVariableBounds"
4409d6ebe24aSShri Abhyankar /*@
4410d6ebe24aSShri Abhyankar    TSVISetVariableBounds - Sets the lower and upper bounds for the solution vector. xl <= x <= xu
4411d6ebe24aSShri Abhyankar 
4412d6ebe24aSShri Abhyankar    Input Parameters:
4413d6ebe24aSShri Abhyankar .  ts   - the TS context.
4414d6ebe24aSShri Abhyankar .  xl   - lower bound.
4415d6ebe24aSShri Abhyankar .  xu   - upper bound.
4416d6ebe24aSShri Abhyankar 
4417d6ebe24aSShri Abhyankar    Notes:
4418d6ebe24aSShri Abhyankar    If this routine is not called then the lower and upper bounds are set to
441933c0c2ddSJed Brown    SNES_VI_NINF and SNES_VI_INF respectively during SNESSetUp().
4420d6ebe24aSShri Abhyankar 
44212bd2b0e6SSatish Balay    Level: advanced
44222bd2b0e6SSatish Balay 
4423d6ebe24aSShri Abhyankar @*/
4424d6ebe24aSShri Abhyankar PetscErrorCode TSVISetVariableBounds(TS ts, Vec xl, Vec xu)
4425d6ebe24aSShri Abhyankar {
4426d6ebe24aSShri Abhyankar   PetscErrorCode ierr;
4427d6ebe24aSShri Abhyankar   SNES           snes;
4428d6ebe24aSShri Abhyankar 
4429d6ebe24aSShri Abhyankar   PetscFunctionBegin;
4430d6ebe24aSShri Abhyankar   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
4431d6ebe24aSShri Abhyankar   ierr = SNESVISetVariableBounds(snes,xl,xu);CHKERRQ(ierr);
4432d6ebe24aSShri Abhyankar   PetscFunctionReturn(0);
4433d6ebe24aSShri Abhyankar }
4434d6ebe24aSShri Abhyankar 
4435325fc9f4SBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE)
4436c6db04a5SJed Brown #include <mex.h>
4437325fc9f4SBarry Smith 
4438325fc9f4SBarry Smith typedef struct {char *funcname; mxArray *ctx;} TSMatlabContext;
4439325fc9f4SBarry Smith 
4440325fc9f4SBarry Smith #undef __FUNCT__
4441325fc9f4SBarry Smith #define __FUNCT__ "TSComputeFunction_Matlab"
4442325fc9f4SBarry Smith /*
4443325fc9f4SBarry Smith    TSComputeFunction_Matlab - Calls the function that has been set with
4444325fc9f4SBarry Smith                          TSSetFunctionMatlab().
4445325fc9f4SBarry Smith 
4446325fc9f4SBarry Smith    Collective on TS
4447325fc9f4SBarry Smith 
4448325fc9f4SBarry Smith    Input Parameters:
4449325fc9f4SBarry Smith +  snes - the TS context
44500910c330SBarry Smith -  u - input vector
4451325fc9f4SBarry Smith 
4452325fc9f4SBarry Smith    Output Parameter:
4453325fc9f4SBarry Smith .  y - function vector, as set by TSSetFunction()
4454325fc9f4SBarry Smith 
4455325fc9f4SBarry Smith    Notes:
4456325fc9f4SBarry Smith    TSComputeFunction() is typically used within nonlinear solvers
4457325fc9f4SBarry Smith    implementations, so most users would not generally call this routine
4458325fc9f4SBarry Smith    themselves.
4459325fc9f4SBarry Smith 
4460325fc9f4SBarry Smith    Level: developer
4461325fc9f4SBarry Smith 
4462325fc9f4SBarry Smith .keywords: TS, nonlinear, compute, function
4463325fc9f4SBarry Smith 
4464325fc9f4SBarry Smith .seealso: TSSetFunction(), TSGetFunction()
4465325fc9f4SBarry Smith */
44660910c330SBarry Smith PetscErrorCode  TSComputeFunction_Matlab(TS snes,PetscReal time,Vec u,Vec udot,Vec y, void *ctx)
4467325fc9f4SBarry Smith {
4468325fc9f4SBarry Smith   PetscErrorCode  ierr;
4469325fc9f4SBarry Smith   TSMatlabContext *sctx = (TSMatlabContext*)ctx;
4470325fc9f4SBarry Smith   int             nlhs  = 1,nrhs = 7;
4471325fc9f4SBarry Smith   mxArray         *plhs[1],*prhs[7];
4472325fc9f4SBarry Smith   long long int   lx = 0,lxdot = 0,ly = 0,ls = 0;
4473325fc9f4SBarry Smith 
4474325fc9f4SBarry Smith   PetscFunctionBegin;
4475325fc9f4SBarry Smith   PetscValidHeaderSpecific(snes,TS_CLASSID,1);
44760910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,3);
44770910c330SBarry Smith   PetscValidHeaderSpecific(udot,VEC_CLASSID,4);
4478325fc9f4SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,5);
44790910c330SBarry Smith   PetscCheckSameComm(snes,1,u,3);
4480325fc9f4SBarry Smith   PetscCheckSameComm(snes,1,y,5);
4481325fc9f4SBarry Smith 
4482325fc9f4SBarry Smith   ierr = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr);
44830910c330SBarry Smith   ierr = PetscMemcpy(&lx,&u,sizeof(u));CHKERRQ(ierr);
44840910c330SBarry Smith   ierr = PetscMemcpy(&lxdot,&udot,sizeof(udot));CHKERRQ(ierr);
44850910c330SBarry Smith   ierr = PetscMemcpy(&ly,&y,sizeof(u));CHKERRQ(ierr);
4486bbd56ea5SKarl Rupp 
4487325fc9f4SBarry Smith   prhs[0] =  mxCreateDoubleScalar((double)ls);
4488325fc9f4SBarry Smith   prhs[1] =  mxCreateDoubleScalar(time);
4489325fc9f4SBarry Smith   prhs[2] =  mxCreateDoubleScalar((double)lx);
4490325fc9f4SBarry Smith   prhs[3] =  mxCreateDoubleScalar((double)lxdot);
4491325fc9f4SBarry Smith   prhs[4] =  mxCreateDoubleScalar((double)ly);
4492325fc9f4SBarry Smith   prhs[5] =  mxCreateString(sctx->funcname);
4493325fc9f4SBarry Smith   prhs[6] =  sctx->ctx;
4494325fc9f4SBarry Smith   ierr    =  mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscTSComputeFunctionInternal");CHKERRQ(ierr);
4495325fc9f4SBarry Smith   ierr    =  mxGetScalar(plhs[0]);CHKERRQ(ierr);
4496325fc9f4SBarry Smith   mxDestroyArray(prhs[0]);
4497325fc9f4SBarry Smith   mxDestroyArray(prhs[1]);
4498325fc9f4SBarry Smith   mxDestroyArray(prhs[2]);
4499325fc9f4SBarry Smith   mxDestroyArray(prhs[3]);
4500325fc9f4SBarry Smith   mxDestroyArray(prhs[4]);
4501325fc9f4SBarry Smith   mxDestroyArray(prhs[5]);
4502325fc9f4SBarry Smith   mxDestroyArray(plhs[0]);
4503325fc9f4SBarry Smith   PetscFunctionReturn(0);
4504325fc9f4SBarry Smith }
4505325fc9f4SBarry Smith 
4506325fc9f4SBarry Smith 
4507325fc9f4SBarry Smith #undef __FUNCT__
4508325fc9f4SBarry Smith #define __FUNCT__ "TSSetFunctionMatlab"
4509325fc9f4SBarry Smith /*
4510325fc9f4SBarry Smith    TSSetFunctionMatlab - Sets the function evaluation routine and function
4511325fc9f4SBarry Smith    vector for use by the TS routines in solving ODEs
4512e3c5b3baSBarry Smith    equations from MATLAB. Here the function is a string containing the name of a MATLAB function
4513325fc9f4SBarry Smith 
4514325fc9f4SBarry Smith    Logically Collective on TS
4515325fc9f4SBarry Smith 
4516325fc9f4SBarry Smith    Input Parameters:
4517325fc9f4SBarry Smith +  ts - the TS context
4518325fc9f4SBarry Smith -  func - function evaluation routine
4519325fc9f4SBarry Smith 
4520325fc9f4SBarry Smith    Calling sequence of func:
45210910c330SBarry Smith $    func (TS ts,PetscReal time,Vec u,Vec udot,Vec f,void *ctx);
4522325fc9f4SBarry Smith 
4523325fc9f4SBarry Smith    Level: beginner
4524325fc9f4SBarry Smith 
4525325fc9f4SBarry Smith .keywords: TS, nonlinear, set, function
4526325fc9f4SBarry Smith 
4527325fc9f4SBarry Smith .seealso: TSGetFunction(), TSComputeFunction(), TSSetJacobian(), TSSetFunction()
4528325fc9f4SBarry Smith */
4529cdcf91faSSean Farley PetscErrorCode  TSSetFunctionMatlab(TS ts,const char *func,mxArray *ctx)
4530325fc9f4SBarry Smith {
4531325fc9f4SBarry Smith   PetscErrorCode  ierr;
4532325fc9f4SBarry Smith   TSMatlabContext *sctx;
4533325fc9f4SBarry Smith 
4534325fc9f4SBarry Smith   PetscFunctionBegin;
4535325fc9f4SBarry Smith   /* currently sctx is memory bleed */
4536325fc9f4SBarry Smith   ierr = PetscMalloc(sizeof(TSMatlabContext),&sctx);CHKERRQ(ierr);
4537325fc9f4SBarry Smith   ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr);
4538325fc9f4SBarry Smith   /*
4539325fc9f4SBarry Smith      This should work, but it doesn't
4540325fc9f4SBarry Smith   sctx->ctx = ctx;
4541325fc9f4SBarry Smith   mexMakeArrayPersistent(sctx->ctx);
4542325fc9f4SBarry Smith   */
4543325fc9f4SBarry Smith   sctx->ctx = mxDuplicateArray(ctx);
4544bbd56ea5SKarl Rupp 
45450298fd71SBarry Smith   ierr = TSSetIFunction(ts,NULL,TSComputeFunction_Matlab,sctx);CHKERRQ(ierr);
4546325fc9f4SBarry Smith   PetscFunctionReturn(0);
4547325fc9f4SBarry Smith }
4548325fc9f4SBarry Smith 
4549325fc9f4SBarry Smith #undef __FUNCT__
4550325fc9f4SBarry Smith #define __FUNCT__ "TSComputeJacobian_Matlab"
4551325fc9f4SBarry Smith /*
4552325fc9f4SBarry Smith    TSComputeJacobian_Matlab - Calls the function that has been set with
4553325fc9f4SBarry Smith                          TSSetJacobianMatlab().
4554325fc9f4SBarry Smith 
4555325fc9f4SBarry Smith    Collective on TS
4556325fc9f4SBarry Smith 
4557325fc9f4SBarry Smith    Input Parameters:
4558cdcf91faSSean Farley +  ts - the TS context
45590910c330SBarry Smith .  u - input vector
4560325fc9f4SBarry Smith .  A, B - the matrices
4561325fc9f4SBarry Smith -  ctx - user context
4562325fc9f4SBarry Smith 
4563325fc9f4SBarry Smith    Output Parameter:
4564325fc9f4SBarry Smith .  flag - structure of the matrix
4565325fc9f4SBarry Smith 
4566325fc9f4SBarry Smith    Level: developer
4567325fc9f4SBarry Smith 
4568325fc9f4SBarry Smith .keywords: TS, nonlinear, compute, function
4569325fc9f4SBarry Smith 
4570325fc9f4SBarry Smith .seealso: TSSetFunction(), TSGetFunction()
4571325fc9f4SBarry Smith @*/
45720910c330SBarry Smith PetscErrorCode  TSComputeJacobian_Matlab(TS ts,PetscReal time,Vec u,Vec udot,PetscReal shift,Mat *A,Mat *B,MatStructure *flag, void *ctx)
4573325fc9f4SBarry Smith {
4574325fc9f4SBarry Smith   PetscErrorCode  ierr;
4575325fc9f4SBarry Smith   TSMatlabContext *sctx = (TSMatlabContext*)ctx;
4576325fc9f4SBarry Smith   int             nlhs  = 2,nrhs = 9;
4577325fc9f4SBarry Smith   mxArray         *plhs[2],*prhs[9];
4578325fc9f4SBarry Smith   long long int   lx = 0,lxdot = 0,lA = 0,ls = 0, lB = 0;
4579325fc9f4SBarry Smith 
4580325fc9f4SBarry Smith   PetscFunctionBegin;
4581cdcf91faSSean Farley   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
45820910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,3);
4583325fc9f4SBarry Smith 
45840910c330SBarry Smith   /* call Matlab function in ctx with arguments u and y */
4585325fc9f4SBarry Smith 
4586cdcf91faSSean Farley   ierr = PetscMemcpy(&ls,&ts,sizeof(ts));CHKERRQ(ierr);
45870910c330SBarry Smith   ierr = PetscMemcpy(&lx,&u,sizeof(u));CHKERRQ(ierr);
45880910c330SBarry Smith   ierr = PetscMemcpy(&lxdot,&udot,sizeof(u));CHKERRQ(ierr);
45890910c330SBarry Smith   ierr = PetscMemcpy(&lA,A,sizeof(u));CHKERRQ(ierr);
45900910c330SBarry Smith   ierr = PetscMemcpy(&lB,B,sizeof(u));CHKERRQ(ierr);
4591bbd56ea5SKarl Rupp 
4592325fc9f4SBarry Smith   prhs[0] =  mxCreateDoubleScalar((double)ls);
4593325fc9f4SBarry Smith   prhs[1] =  mxCreateDoubleScalar((double)time);
4594325fc9f4SBarry Smith   prhs[2] =  mxCreateDoubleScalar((double)lx);
4595325fc9f4SBarry Smith   prhs[3] =  mxCreateDoubleScalar((double)lxdot);
4596325fc9f4SBarry Smith   prhs[4] =  mxCreateDoubleScalar((double)shift);
4597325fc9f4SBarry Smith   prhs[5] =  mxCreateDoubleScalar((double)lA);
4598325fc9f4SBarry Smith   prhs[6] =  mxCreateDoubleScalar((double)lB);
4599325fc9f4SBarry Smith   prhs[7] =  mxCreateString(sctx->funcname);
4600325fc9f4SBarry Smith   prhs[8] =  sctx->ctx;
4601325fc9f4SBarry Smith   ierr    =  mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscTSComputeJacobianInternal");CHKERRQ(ierr);
4602325fc9f4SBarry Smith   ierr    =  mxGetScalar(plhs[0]);CHKERRQ(ierr);
4603325fc9f4SBarry Smith   *flag   =  (MatStructure) mxGetScalar(plhs[1]);CHKERRQ(ierr);
4604325fc9f4SBarry Smith   mxDestroyArray(prhs[0]);
4605325fc9f4SBarry Smith   mxDestroyArray(prhs[1]);
4606325fc9f4SBarry Smith   mxDestroyArray(prhs[2]);
4607325fc9f4SBarry Smith   mxDestroyArray(prhs[3]);
4608325fc9f4SBarry Smith   mxDestroyArray(prhs[4]);
4609325fc9f4SBarry Smith   mxDestroyArray(prhs[5]);
4610325fc9f4SBarry Smith   mxDestroyArray(prhs[6]);
4611325fc9f4SBarry Smith   mxDestroyArray(prhs[7]);
4612325fc9f4SBarry Smith   mxDestroyArray(plhs[0]);
4613325fc9f4SBarry Smith   mxDestroyArray(plhs[1]);
4614325fc9f4SBarry Smith   PetscFunctionReturn(0);
4615325fc9f4SBarry Smith }
4616325fc9f4SBarry Smith 
4617325fc9f4SBarry Smith 
4618325fc9f4SBarry Smith #undef __FUNCT__
4619325fc9f4SBarry Smith #define __FUNCT__ "TSSetJacobianMatlab"
4620325fc9f4SBarry Smith /*
4621325fc9f4SBarry Smith    TSSetJacobianMatlab - Sets the Jacobian function evaluation routine and two empty Jacobian matrices
4622e3c5b3baSBarry 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
4623325fc9f4SBarry Smith 
4624325fc9f4SBarry Smith    Logically Collective on TS
4625325fc9f4SBarry Smith 
4626325fc9f4SBarry Smith    Input Parameters:
4627cdcf91faSSean Farley +  ts - the TS context
4628325fc9f4SBarry Smith .  A,B - Jacobian matrices
4629325fc9f4SBarry Smith .  func - function evaluation routine
4630325fc9f4SBarry Smith -  ctx - user context
4631325fc9f4SBarry Smith 
4632325fc9f4SBarry Smith    Calling sequence of func:
46330910c330SBarry Smith $    flag = func (TS ts,PetscReal time,Vec u,Vec udot,Mat A,Mat B,void *ctx);
4634325fc9f4SBarry Smith 
4635325fc9f4SBarry Smith 
4636325fc9f4SBarry Smith    Level: developer
4637325fc9f4SBarry Smith 
4638325fc9f4SBarry Smith .keywords: TS, nonlinear, set, function
4639325fc9f4SBarry Smith 
4640325fc9f4SBarry Smith .seealso: TSGetFunction(), TSComputeFunction(), TSSetJacobian(), TSSetFunction()
4641325fc9f4SBarry Smith */
4642cdcf91faSSean Farley PetscErrorCode  TSSetJacobianMatlab(TS ts,Mat A,Mat B,const char *func,mxArray *ctx)
4643325fc9f4SBarry Smith {
4644325fc9f4SBarry Smith   PetscErrorCode  ierr;
4645325fc9f4SBarry Smith   TSMatlabContext *sctx;
4646325fc9f4SBarry Smith 
4647325fc9f4SBarry Smith   PetscFunctionBegin;
4648325fc9f4SBarry Smith   /* currently sctx is memory bleed */
4649325fc9f4SBarry Smith   ierr = PetscMalloc(sizeof(TSMatlabContext),&sctx);CHKERRQ(ierr);
4650325fc9f4SBarry Smith   ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr);
4651325fc9f4SBarry Smith   /*
4652325fc9f4SBarry Smith      This should work, but it doesn't
4653325fc9f4SBarry Smith   sctx->ctx = ctx;
4654325fc9f4SBarry Smith   mexMakeArrayPersistent(sctx->ctx);
4655325fc9f4SBarry Smith   */
4656325fc9f4SBarry Smith   sctx->ctx = mxDuplicateArray(ctx);
4657bbd56ea5SKarl Rupp 
4658cdcf91faSSean Farley   ierr = TSSetIJacobian(ts,A,B,TSComputeJacobian_Matlab,sctx);CHKERRQ(ierr);
4659325fc9f4SBarry Smith   PetscFunctionReturn(0);
4660325fc9f4SBarry Smith }
4661325fc9f4SBarry Smith 
4662b5b1a830SBarry Smith #undef __FUNCT__
4663b5b1a830SBarry Smith #define __FUNCT__ "TSMonitor_Matlab"
4664b5b1a830SBarry Smith /*
4665b5b1a830SBarry Smith    TSMonitor_Matlab - Calls the function that has been set with TSMonitorSetMatlab().
4666b5b1a830SBarry Smith 
4667b5b1a830SBarry Smith    Collective on TS
4668b5b1a830SBarry Smith 
4669b5b1a830SBarry Smith .seealso: TSSetFunction(), TSGetFunction()
4670b5b1a830SBarry Smith @*/
46710910c330SBarry Smith PetscErrorCode  TSMonitor_Matlab(TS ts,PetscInt it, PetscReal time,Vec u, void *ctx)
4672b5b1a830SBarry Smith {
4673b5b1a830SBarry Smith   PetscErrorCode  ierr;
4674b5b1a830SBarry Smith   TSMatlabContext *sctx = (TSMatlabContext*)ctx;
4675a530c242SBarry Smith   int             nlhs  = 1,nrhs = 6;
4676b5b1a830SBarry Smith   mxArray         *plhs[1],*prhs[6];
4677b5b1a830SBarry Smith   long long int   lx = 0,ls = 0;
4678b5b1a830SBarry Smith 
4679b5b1a830SBarry Smith   PetscFunctionBegin;
4680cdcf91faSSean Farley   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
46810910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,4);
4682b5b1a830SBarry Smith 
4683cdcf91faSSean Farley   ierr = PetscMemcpy(&ls,&ts,sizeof(ts));CHKERRQ(ierr);
46840910c330SBarry Smith   ierr = PetscMemcpy(&lx,&u,sizeof(u));CHKERRQ(ierr);
4685bbd56ea5SKarl Rupp 
4686b5b1a830SBarry Smith   prhs[0] =  mxCreateDoubleScalar((double)ls);
4687b5b1a830SBarry Smith   prhs[1] =  mxCreateDoubleScalar((double)it);
4688b5b1a830SBarry Smith   prhs[2] =  mxCreateDoubleScalar((double)time);
4689b5b1a830SBarry Smith   prhs[3] =  mxCreateDoubleScalar((double)lx);
4690b5b1a830SBarry Smith   prhs[4] =  mxCreateString(sctx->funcname);
4691b5b1a830SBarry Smith   prhs[5] =  sctx->ctx;
4692b5b1a830SBarry Smith   ierr    =  mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscTSMonitorInternal");CHKERRQ(ierr);
4693b5b1a830SBarry Smith   ierr    =  mxGetScalar(plhs[0]);CHKERRQ(ierr);
4694b5b1a830SBarry Smith   mxDestroyArray(prhs[0]);
4695b5b1a830SBarry Smith   mxDestroyArray(prhs[1]);
4696b5b1a830SBarry Smith   mxDestroyArray(prhs[2]);
4697b5b1a830SBarry Smith   mxDestroyArray(prhs[3]);
4698b5b1a830SBarry Smith   mxDestroyArray(prhs[4]);
4699b5b1a830SBarry Smith   mxDestroyArray(plhs[0]);
4700b5b1a830SBarry Smith   PetscFunctionReturn(0);
4701b5b1a830SBarry Smith }
4702b5b1a830SBarry Smith 
4703b5b1a830SBarry Smith 
4704b5b1a830SBarry Smith #undef __FUNCT__
4705b5b1a830SBarry Smith #define __FUNCT__ "TSMonitorSetMatlab"
4706b5b1a830SBarry Smith /*
4707b5b1a830SBarry Smith    TSMonitorSetMatlab - Sets the monitor function from Matlab
4708b5b1a830SBarry Smith 
4709b5b1a830SBarry Smith    Level: developer
4710b5b1a830SBarry Smith 
4711b5b1a830SBarry Smith .keywords: TS, nonlinear, set, function
4712b5b1a830SBarry Smith 
4713b5b1a830SBarry Smith .seealso: TSGetFunction(), TSComputeFunction(), TSSetJacobian(), TSSetFunction()
4714b5b1a830SBarry Smith */
4715cdcf91faSSean Farley PetscErrorCode  TSMonitorSetMatlab(TS ts,const char *func,mxArray *ctx)
4716b5b1a830SBarry Smith {
4717b5b1a830SBarry Smith   PetscErrorCode  ierr;
4718b5b1a830SBarry Smith   TSMatlabContext *sctx;
4719b5b1a830SBarry Smith 
4720b5b1a830SBarry Smith   PetscFunctionBegin;
4721b5b1a830SBarry Smith   /* currently sctx is memory bleed */
4722b5b1a830SBarry Smith   ierr = PetscMalloc(sizeof(TSMatlabContext),&sctx);CHKERRQ(ierr);
4723b5b1a830SBarry Smith   ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr);
4724b5b1a830SBarry Smith   /*
4725b5b1a830SBarry Smith      This should work, but it doesn't
4726b5b1a830SBarry Smith   sctx->ctx = ctx;
4727b5b1a830SBarry Smith   mexMakeArrayPersistent(sctx->ctx);
4728b5b1a830SBarry Smith   */
4729b5b1a830SBarry Smith   sctx->ctx = mxDuplicateArray(ctx);
4730bbd56ea5SKarl Rupp 
47310298fd71SBarry Smith   ierr = TSMonitorSet(ts,TSMonitor_Matlab,sctx,NULL);CHKERRQ(ierr);
4732b5b1a830SBarry Smith   PetscFunctionReturn(0);
4733b5b1a830SBarry Smith }
4734325fc9f4SBarry Smith #endif
4735b3603a34SBarry Smith 
47360b039ecaSBarry Smith 
47370b039ecaSBarry Smith 
4738b3603a34SBarry Smith #undef __FUNCT__
47394f09c107SBarry Smith #define __FUNCT__ "TSMonitorLGSolution"
4740b3603a34SBarry Smith /*@C
47414f09c107SBarry Smith    TSMonitorLGSolution - Monitors progress of the TS solvers by plotting each component of the solution vector
4742b3603a34SBarry Smith        in a time based line graph
4743b3603a34SBarry Smith 
4744b3603a34SBarry Smith    Collective on TS
4745b3603a34SBarry Smith 
4746b3603a34SBarry Smith    Input Parameters:
4747b3603a34SBarry Smith +  ts - the TS context
4748b3603a34SBarry Smith .  step - current time-step
4749b3603a34SBarry Smith .  ptime - current time
4750b3603a34SBarry Smith -  lg - a line graph object
4751b3603a34SBarry Smith 
4752b3603a34SBarry Smith    Level: intermediate
4753b3603a34SBarry Smith 
47540b039ecaSBarry Smith     Notes: each process in a parallel run displays its component solutions in a separate window
4755b3603a34SBarry Smith 
4756b3603a34SBarry Smith .keywords: TS,  vector, monitor, view
4757b3603a34SBarry Smith 
4758b3603a34SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
4759b3603a34SBarry Smith @*/
47600910c330SBarry Smith PetscErrorCode  TSMonitorLGSolution(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
4761b3603a34SBarry Smith {
4762b3603a34SBarry Smith   PetscErrorCode    ierr;
47630b039ecaSBarry Smith   TSMonitorLGCtx    ctx = (TSMonitorLGCtx)dummy;
4764b3603a34SBarry Smith   const PetscScalar *yy;
476558ff32f7SBarry Smith   PetscInt          dim;
4766b3603a34SBarry Smith 
4767b3603a34SBarry Smith   PetscFunctionBegin;
476858ff32f7SBarry Smith   if (!step) {
4769a9f9c1f6SBarry Smith     PetscDrawAxis axis;
4770a9f9c1f6SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
4771a9f9c1f6SBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Solution as function of time","Time","Solution");CHKERRQ(ierr);
47720910c330SBarry Smith     ierr = VecGetLocalSize(u,&dim);CHKERRQ(ierr);
47730b039ecaSBarry Smith     ierr = PetscDrawLGSetDimension(ctx->lg,dim);CHKERRQ(ierr);
47740b039ecaSBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
477558ff32f7SBarry Smith   }
47760910c330SBarry Smith   ierr = VecGetArrayRead(u,&yy);CHKERRQ(ierr);
4777e3efe391SJed Brown #if defined(PETSC_USE_COMPLEX)
4778e3efe391SJed Brown   {
4779e3efe391SJed Brown     PetscReal *yreal;
4780e3efe391SJed Brown     PetscInt  i,n;
47810910c330SBarry Smith     ierr = VecGetLocalSize(u,&n);CHKERRQ(ierr);
4782785e854fSJed Brown     ierr = PetscMalloc1(n,&yreal);CHKERRQ(ierr);
4783e3efe391SJed Brown     for (i=0; i<n; i++) yreal[i] = PetscRealPart(yy[i]);
47840b039ecaSBarry Smith     ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yreal);CHKERRQ(ierr);
4785e3efe391SJed Brown     ierr = PetscFree(yreal);CHKERRQ(ierr);
4786e3efe391SJed Brown   }
4787e3efe391SJed Brown #else
47880b039ecaSBarry Smith   ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yy);CHKERRQ(ierr);
4789e3efe391SJed Brown #endif
47900910c330SBarry Smith   ierr = VecRestoreArrayRead(u,&yy);CHKERRQ(ierr);
4791b06615a5SLisandro Dalcin   if (((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason)) {
47920b039ecaSBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
47933923b477SBarry Smith   }
4794b3603a34SBarry Smith   PetscFunctionReturn(0);
4795b3603a34SBarry Smith }
4796b3603a34SBarry Smith 
4797b3603a34SBarry Smith #undef __FUNCT__
47984f09c107SBarry Smith #define __FUNCT__ "TSMonitorLGError"
4799ef20d060SBarry Smith /*@C
48004f09c107SBarry Smith    TSMonitorLGError - Monitors progress of the TS solvers by plotting each component of the solution vector
4801ef20d060SBarry Smith        in a time based line graph
4802ef20d060SBarry Smith 
4803ef20d060SBarry Smith    Collective on TS
4804ef20d060SBarry Smith 
4805ef20d060SBarry Smith    Input Parameters:
4806ef20d060SBarry Smith +  ts - the TS context
4807ef20d060SBarry Smith .  step - current time-step
4808ef20d060SBarry Smith .  ptime - current time
4809ef20d060SBarry Smith -  lg - a line graph object
4810ef20d060SBarry Smith 
4811ef20d060SBarry Smith    Level: intermediate
4812ef20d060SBarry Smith 
4813abd5a294SJed Brown    Notes:
4814abd5a294SJed Brown    Only for sequential solves.
4815abd5a294SJed Brown 
4816abd5a294SJed Brown    The user must provide the solution using TSSetSolutionFunction() to use this monitor.
4817abd5a294SJed Brown 
4818abd5a294SJed Brown    Options Database Keys:
48194f09c107SBarry Smith .  -ts_monitor_lg_error - create a graphical monitor of error history
4820ef20d060SBarry Smith 
4821ef20d060SBarry Smith .keywords: TS,  vector, monitor, view
4822ef20d060SBarry Smith 
4823abd5a294SJed Brown .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSSetSolutionFunction()
4824ef20d060SBarry Smith @*/
48250910c330SBarry Smith PetscErrorCode  TSMonitorLGError(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
4826ef20d060SBarry Smith {
4827ef20d060SBarry Smith   PetscErrorCode    ierr;
48280b039ecaSBarry Smith   TSMonitorLGCtx    ctx = (TSMonitorLGCtx)dummy;
4829ef20d060SBarry Smith   const PetscScalar *yy;
4830ef20d060SBarry Smith   Vec               y;
4831a9f9c1f6SBarry Smith   PetscInt          dim;
4832ef20d060SBarry Smith 
4833ef20d060SBarry Smith   PetscFunctionBegin;
4834a9f9c1f6SBarry Smith   if (!step) {
4835a9f9c1f6SBarry Smith     PetscDrawAxis axis;
4836a9f9c1f6SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
48371ae185eaSBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Error in solution as function of time","Time","Solution");CHKERRQ(ierr);
48380910c330SBarry Smith     ierr = VecGetLocalSize(u,&dim);CHKERRQ(ierr);
4839a9f9c1f6SBarry Smith     ierr = PetscDrawLGSetDimension(ctx->lg,dim);CHKERRQ(ierr);
4840a9f9c1f6SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
4841a9f9c1f6SBarry Smith   }
48420910c330SBarry Smith   ierr = VecDuplicate(u,&y);CHKERRQ(ierr);
4843ef20d060SBarry Smith   ierr = TSComputeSolutionFunction(ts,ptime,y);CHKERRQ(ierr);
48440910c330SBarry Smith   ierr = VecAXPY(y,-1.0,u);CHKERRQ(ierr);
4845ef20d060SBarry Smith   ierr = VecGetArrayRead(y,&yy);CHKERRQ(ierr);
4846e3efe391SJed Brown #if defined(PETSC_USE_COMPLEX)
4847e3efe391SJed Brown   {
4848e3efe391SJed Brown     PetscReal *yreal;
4849e3efe391SJed Brown     PetscInt  i,n;
4850e3efe391SJed Brown     ierr = VecGetLocalSize(y,&n);CHKERRQ(ierr);
4851785e854fSJed Brown     ierr = PetscMalloc1(n,&yreal);CHKERRQ(ierr);
4852e3efe391SJed Brown     for (i=0; i<n; i++) yreal[i] = PetscRealPart(yy[i]);
48530b039ecaSBarry Smith     ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yreal);CHKERRQ(ierr);
4854e3efe391SJed Brown     ierr = PetscFree(yreal);CHKERRQ(ierr);
4855e3efe391SJed Brown   }
4856e3efe391SJed Brown #else
48570b039ecaSBarry Smith   ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yy);CHKERRQ(ierr);
4858e3efe391SJed Brown #endif
4859ef20d060SBarry Smith   ierr = VecRestoreArrayRead(y,&yy);CHKERRQ(ierr);
4860ef20d060SBarry Smith   ierr = VecDestroy(&y);CHKERRQ(ierr);
4861b06615a5SLisandro Dalcin   if (((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason)) {
48620b039ecaSBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
48633923b477SBarry Smith   }
4864ef20d060SBarry Smith   PetscFunctionReturn(0);
4865ef20d060SBarry Smith }
4866ef20d060SBarry Smith 
4867201da799SBarry Smith #undef __FUNCT__
4868201da799SBarry Smith #define __FUNCT__ "TSMonitorLGSNESIterations"
4869201da799SBarry Smith PetscErrorCode TSMonitorLGSNESIterations(TS ts,PetscInt n,PetscReal ptime,Vec v,void *monctx)
4870201da799SBarry Smith {
4871201da799SBarry Smith   TSMonitorLGCtx ctx = (TSMonitorLGCtx) monctx;
4872201da799SBarry Smith   PetscReal      x   = ptime,y;
4873201da799SBarry Smith   PetscErrorCode ierr;
4874201da799SBarry Smith   PetscInt       its;
4875201da799SBarry Smith 
4876201da799SBarry Smith   PetscFunctionBegin;
4877201da799SBarry Smith   if (!n) {
4878201da799SBarry Smith     PetscDrawAxis axis;
4879bbd56ea5SKarl Rupp 
4880201da799SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
4881201da799SBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Nonlinear iterations as function of time","Time","SNES Iterations");CHKERRQ(ierr);
4882201da799SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
4883bbd56ea5SKarl Rupp 
4884201da799SBarry Smith     ctx->snes_its = 0;
4885201da799SBarry Smith   }
4886201da799SBarry Smith   ierr = TSGetSNESIterations(ts,&its);CHKERRQ(ierr);
4887201da799SBarry Smith   y    = its - ctx->snes_its;
4888201da799SBarry Smith   ierr = PetscDrawLGAddPoint(ctx->lg,&x,&y);CHKERRQ(ierr);
48893fbbecb0SBarry Smith   if (((ctx->howoften > 0) && (!(n % ctx->howoften)) && (n > -1)) || ((ctx->howoften == -1) && (n == -1))) {
4890201da799SBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
4891201da799SBarry Smith   }
4892201da799SBarry Smith   ctx->snes_its = its;
4893201da799SBarry Smith   PetscFunctionReturn(0);
4894201da799SBarry Smith }
4895201da799SBarry Smith 
4896201da799SBarry Smith #undef __FUNCT__
4897201da799SBarry Smith #define __FUNCT__ "TSMonitorLGKSPIterations"
4898201da799SBarry Smith PetscErrorCode TSMonitorLGKSPIterations(TS ts,PetscInt n,PetscReal ptime,Vec v,void *monctx)
4899201da799SBarry Smith {
4900201da799SBarry Smith   TSMonitorLGCtx ctx = (TSMonitorLGCtx) monctx;
4901201da799SBarry Smith   PetscReal      x   = ptime,y;
4902201da799SBarry Smith   PetscErrorCode ierr;
4903201da799SBarry Smith   PetscInt       its;
4904201da799SBarry Smith 
4905201da799SBarry Smith   PetscFunctionBegin;
4906201da799SBarry Smith   if (!n) {
4907201da799SBarry Smith     PetscDrawAxis axis;
4908bbd56ea5SKarl Rupp 
4909201da799SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
4910201da799SBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Linear iterations as function of time","Time","KSP Iterations");CHKERRQ(ierr);
4911201da799SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
4912bbd56ea5SKarl Rupp 
4913201da799SBarry Smith     ctx->ksp_its = 0;
4914201da799SBarry Smith   }
4915201da799SBarry Smith   ierr = TSGetKSPIterations(ts,&its);CHKERRQ(ierr);
4916201da799SBarry Smith   y    = its - ctx->ksp_its;
4917201da799SBarry Smith   ierr = PetscDrawLGAddPoint(ctx->lg,&x,&y);CHKERRQ(ierr);
491899fdda47SBarry Smith   if (((ctx->howoften > 0) && (!(n % ctx->howoften)) && (n > -1)) || ((ctx->howoften == -1) && (n == -1))) {
4919201da799SBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
4920201da799SBarry Smith   }
4921201da799SBarry Smith   ctx->ksp_its = its;
4922201da799SBarry Smith   PetscFunctionReturn(0);
4923201da799SBarry Smith }
4924f9c1d6abSBarry Smith 
4925f9c1d6abSBarry Smith #undef __FUNCT__
4926f9c1d6abSBarry Smith #define __FUNCT__ "TSComputeLinearStability"
4927f9c1d6abSBarry Smith /*@
4928f9c1d6abSBarry Smith    TSComputeLinearStability - computes the linear stability function at a point
4929f9c1d6abSBarry Smith 
4930f9c1d6abSBarry Smith    Collective on TS and Vec
4931f9c1d6abSBarry Smith 
4932f9c1d6abSBarry Smith    Input Parameters:
4933f9c1d6abSBarry Smith +  ts - the TS context
4934f9c1d6abSBarry Smith -  xr,xi - real and imaginary part of input arguments
4935f9c1d6abSBarry Smith 
4936f9c1d6abSBarry Smith    Output Parameters:
4937f9c1d6abSBarry Smith .  yr,yi - real and imaginary part of function value
4938f9c1d6abSBarry Smith 
4939f9c1d6abSBarry Smith    Level: developer
4940f9c1d6abSBarry Smith 
4941f9c1d6abSBarry Smith .keywords: TS, compute
4942f9c1d6abSBarry Smith 
4943f9c1d6abSBarry Smith .seealso: TSSetRHSFunction(), TSComputeIFunction()
4944f9c1d6abSBarry Smith @*/
4945f9c1d6abSBarry Smith PetscErrorCode TSComputeLinearStability(TS ts,PetscReal xr,PetscReal xi,PetscReal *yr,PetscReal *yi)
4946f9c1d6abSBarry Smith {
4947f9c1d6abSBarry Smith   PetscErrorCode ierr;
4948f9c1d6abSBarry Smith 
4949f9c1d6abSBarry Smith   PetscFunctionBegin;
4950f9c1d6abSBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4951ce94432eSBarry Smith   if (!ts->ops->linearstability) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"Linearized stability function not provided for this method");
4952f9c1d6abSBarry Smith   ierr = (*ts->ops->linearstability)(ts,xr,xi,yr,yi);CHKERRQ(ierr);
4953f9c1d6abSBarry Smith   PetscFunctionReturn(0);
4954f9c1d6abSBarry Smith }
4955