xref: /petsc/src/ts/interface/ts.c (revision 2ffb926422a8b5c382798f6a505f1ae8e898069a)
163dd3a1aSKris Buschelman 
2af0996ceSBarry Smith #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;
108d0ad7a8SHong Zhang PetscLogEvent TS_AdjointStep, TS_Step, TS_PseudoComputeTimeStep, TS_FunctionEval, TS_JacobianEval;
11d405a339SMatthew Knepley 
12feed9e9dSBarry Smith const char *const TSExactFinalTimeOptions[] = {"UNSPECIFIED","STEPOVER","INTERPOLATE","MATCHSTEP","TSExactFinalTimeOption","TS_EXACTFINALTIME_",0};
1349354f04SShri Abhyankar 
142d5ee99bSBarry Smith struct _n_TSMonitorDrawCtx {
152d5ee99bSBarry Smith   PetscViewer   viewer;
162d5ee99bSBarry Smith   Vec           initialsolution;
172d5ee99bSBarry Smith   PetscBool     showinitial;
182d5ee99bSBarry Smith   PetscInt      howoften;  /* when > 0 uses step % howoften, when negative only final solution plotted */
192d5ee99bSBarry Smith   PetscBool     showtimestepandtime;
202d5ee99bSBarry Smith };
212d5ee99bSBarry Smith 
22fde5950dSBarry Smith /*@C
23fde5950dSBarry Smith    TSMonitorSetFromOptions - Sets a monitor function and viewer appropriate for the type indicated by the user
24fde5950dSBarry Smith 
25fde5950dSBarry Smith    Collective on TS
26fde5950dSBarry Smith 
27fde5950dSBarry Smith    Input Parameters:
28fde5950dSBarry Smith +  ts - TS object you wish to monitor
29fde5950dSBarry Smith .  name - the monitor type one is seeking
30fde5950dSBarry Smith .  help - message indicating what monitoring is done
31fde5950dSBarry Smith .  manual - manual page for the monitor
32fde5950dSBarry Smith .  monitor - the monitor function
33fde5950dSBarry Smith -  monitorsetup - a function that is called once ONLY if the user selected this monitor that may set additional features of the TS or PetscViewer objects
34fde5950dSBarry Smith 
35fde5950dSBarry Smith    Level: developer
36fde5950dSBarry Smith 
37fde5950dSBarry Smith .seealso: PetscOptionsGetViewer(), PetscOptionsGetReal(), PetscOptionsHasName(), PetscOptionsGetString(),
38fde5950dSBarry Smith           PetscOptionsGetIntArray(), PetscOptionsGetRealArray(), PetscOptionsBool()
39fde5950dSBarry Smith           PetscOptionsInt(), PetscOptionsString(), PetscOptionsReal(), PetscOptionsBool(),
40fde5950dSBarry Smith           PetscOptionsName(), PetscOptionsBegin(), PetscOptionsEnd(), PetscOptionsHead(),
41fde5950dSBarry Smith           PetscOptionsStringArray(),PetscOptionsRealArray(), PetscOptionsScalar(),
42fde5950dSBarry Smith           PetscOptionsBoolGroupBegin(), PetscOptionsBoolGroup(), PetscOptionsBoolGroupEnd(),
43fde5950dSBarry Smith           PetscOptionsFList(), PetscOptionsEList()
44fde5950dSBarry Smith @*/
45721cd6eeSBarry Smith PetscErrorCode  TSMonitorSetFromOptions(TS ts,const char name[],const char help[], const char manual[],PetscErrorCode (*monitor)(TS,PetscInt,PetscReal,Vec,PetscViewerAndFormat*),PetscErrorCode (*monitorsetup)(TS,PetscViewerAndFormat*))
46fde5950dSBarry Smith {
47fde5950dSBarry Smith   PetscErrorCode    ierr;
48fde5950dSBarry Smith   PetscViewer       viewer;
49fde5950dSBarry Smith   PetscViewerFormat format;
50fde5950dSBarry Smith   PetscBool         flg;
51fde5950dSBarry Smith 
52fde5950dSBarry Smith   PetscFunctionBegin;
53fde5950dSBarry Smith   ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)ts),((PetscObject)ts)->prefix,name,&viewer,&format,&flg);CHKERRQ(ierr);
54fde5950dSBarry Smith   if (flg) {
55721cd6eeSBarry Smith     PetscViewerAndFormat *vf;
56721cd6eeSBarry Smith     ierr = PetscViewerAndFormatCreate(viewer,format,&vf);CHKERRQ(ierr);
57721cd6eeSBarry Smith     ierr = PetscObjectDereference((PetscObject)viewer);CHKERRQ(ierr);
58fde5950dSBarry Smith     if (monitorsetup) {
59721cd6eeSBarry Smith       ierr = (*monitorsetup)(ts,vf);CHKERRQ(ierr);
60fde5950dSBarry Smith     }
61721cd6eeSBarry Smith     ierr = TSMonitorSet(ts,(PetscErrorCode (*)(TS,PetscInt,PetscReal,Vec,void*))monitor,vf,(PetscErrorCode (*)(void**))PetscViewerAndFormatDestroy);CHKERRQ(ierr);
62fde5950dSBarry Smith   }
63fde5950dSBarry Smith   PetscFunctionReturn(0);
64fde5950dSBarry Smith }
65fde5950dSBarry Smith 
66fde5950dSBarry Smith /*@C
67fde5950dSBarry Smith    TSAdjointMonitorSetFromOptions - Sets a monitor function and viewer appropriate for the type indicated by the user
68fde5950dSBarry Smith 
69fde5950dSBarry Smith    Collective on TS
70fde5950dSBarry Smith 
71fde5950dSBarry Smith    Input Parameters:
72fde5950dSBarry Smith +  ts - TS object you wish to monitor
73fde5950dSBarry Smith .  name - the monitor type one is seeking
74fde5950dSBarry Smith .  help - message indicating what monitoring is done
75fde5950dSBarry Smith .  manual - manual page for the monitor
76fde5950dSBarry Smith .  monitor - the monitor function
77fde5950dSBarry Smith -  monitorsetup - a function that is called once ONLY if the user selected this monitor that may set additional features of the TS or PetscViewer objects
78fde5950dSBarry Smith 
79fde5950dSBarry Smith    Level: developer
80fde5950dSBarry Smith 
81fde5950dSBarry Smith .seealso: PetscOptionsGetViewer(), PetscOptionsGetReal(), PetscOptionsHasName(), PetscOptionsGetString(),
82fde5950dSBarry Smith           PetscOptionsGetIntArray(), PetscOptionsGetRealArray(), PetscOptionsBool()
83fde5950dSBarry Smith           PetscOptionsInt(), PetscOptionsString(), PetscOptionsReal(), PetscOptionsBool(),
84fde5950dSBarry Smith           PetscOptionsName(), PetscOptionsBegin(), PetscOptionsEnd(), PetscOptionsHead(),
85fde5950dSBarry Smith           PetscOptionsStringArray(),PetscOptionsRealArray(), PetscOptionsScalar(),
86fde5950dSBarry Smith           PetscOptionsBoolGroupBegin(), PetscOptionsBoolGroup(), PetscOptionsBoolGroupEnd(),
87fde5950dSBarry Smith           PetscOptionsFList(), PetscOptionsEList()
88fde5950dSBarry Smith @*/
89721cd6eeSBarry Smith PetscErrorCode  TSAdjointMonitorSetFromOptions(TS ts,const char name[],const char help[], const char manual[],PetscErrorCode (*monitor)(TS,PetscInt,PetscReal,Vec,PetscInt,Vec*,Vec*,PetscViewerAndFormat*),PetscErrorCode (*monitorsetup)(TS,PetscViewerAndFormat*))
90fde5950dSBarry Smith {
91fde5950dSBarry Smith   PetscErrorCode    ierr;
92fde5950dSBarry Smith   PetscViewer       viewer;
93fde5950dSBarry Smith   PetscViewerFormat format;
94fde5950dSBarry Smith   PetscBool         flg;
95fde5950dSBarry Smith 
96fde5950dSBarry Smith   PetscFunctionBegin;
97fde5950dSBarry Smith   ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)ts),((PetscObject)ts)->prefix,name,&viewer,&format,&flg);CHKERRQ(ierr);
98fde5950dSBarry Smith   if (flg) {
99721cd6eeSBarry Smith     PetscViewerAndFormat *vf;
100721cd6eeSBarry Smith     ierr = PetscViewerAndFormatCreate(viewer,format,&vf);CHKERRQ(ierr);
101721cd6eeSBarry Smith     ierr = PetscObjectDereference((PetscObject)viewer);CHKERRQ(ierr);
102fde5950dSBarry Smith     if (monitorsetup) {
103721cd6eeSBarry Smith       ierr = (*monitorsetup)(ts,vf);CHKERRQ(ierr);
104fde5950dSBarry Smith     }
105721cd6eeSBarry Smith     ierr = TSAdjointMonitorSet(ts,(PetscErrorCode (*)(TS,PetscInt,PetscReal,Vec,PetscInt,Vec*,Vec*,void*))monitor,vf,(PetscErrorCode (*)(void**))PetscViewerAndFormatDestroy);CHKERRQ(ierr);
106fde5950dSBarry Smith   }
107fde5950dSBarry Smith   PetscFunctionReturn(0);
108fde5950dSBarry Smith }
109fde5950dSBarry Smith 
110*2ffb9264SLisandro Dalcin static PetscErrorCode TSAdaptSetDefaultType(TSAdapt adapt,TSAdaptType default_type)
111*2ffb9264SLisandro Dalcin {
112*2ffb9264SLisandro Dalcin   PetscErrorCode ierr;
113*2ffb9264SLisandro Dalcin 
114*2ffb9264SLisandro Dalcin   PetscFunctionBegin;
115*2ffb9264SLisandro Dalcin   if (!((PetscObject)adapt)->type_name) {
116*2ffb9264SLisandro Dalcin     if (!default_type) default_type = TSADAPTBASIC;
117*2ffb9264SLisandro Dalcin     ierr = TSAdaptSetType(adapt,default_type);CHKERRQ(ierr);
118*2ffb9264SLisandro Dalcin   }
119*2ffb9264SLisandro Dalcin   PetscFunctionReturn(0);
120*2ffb9264SLisandro Dalcin }
121*2ffb9264SLisandro Dalcin 
122bdad233fSMatthew Knepley /*@
123bdad233fSMatthew Knepley    TSSetFromOptions - Sets various TS parameters from user options.
124bdad233fSMatthew Knepley 
125bdad233fSMatthew Knepley    Collective on TS
126bdad233fSMatthew Knepley 
127bdad233fSMatthew Knepley    Input Parameter:
128bdad233fSMatthew Knepley .  ts - the TS context obtained from TSCreate()
129bdad233fSMatthew Knepley 
130bdad233fSMatthew Knepley    Options Database Keys:
131b6a60446SDebojyoti Ghosh +  -ts_type <type> - TSEULER, TSBEULER, TSSUNDIALS, TSPSEUDO, TSCN, TSRK, TSTHETA, TSALPHA, TSGLLE, TSSSP, TSGLEE
132ef222394SBarry Smith .  -ts_save_trajectory - checkpoint the solution at each time-step
1333e4cdcaaSBarry Smith .  -ts_max_steps <maxsteps> - maximum number of time-steps to take
1343e4cdcaaSBarry Smith .  -ts_final_time <time> - maximum time to compute to
1353e4cdcaaSBarry Smith .  -ts_dt <dt> - initial time step
136a3cdaa26SBarry Smith .  -ts_exact_final_time <stepover,interpolate,matchstep> whether to stop at the exact given final time and how to compute the solution at that ti,e
137a3cdaa26SBarry Smith .  -ts_max_snes_failures <maxfailures> - Maximum number of nonlinear solve failures allowed
138a3cdaa26SBarry Smith .  -ts_max_reject <maxrejects> - Maximum number of step rejections before step fails
139a3cdaa26SBarry Smith .  -ts_error_if_step_fails <true,false> - Error if no step succeeds
140a3cdaa26SBarry Smith .  -ts_rtol <rtol> - relative tolerance for local truncation error
141a3cdaa26SBarry Smith .  -ts_atol <atol> Absolute tolerance for local truncation error
142ef222394SBarry Smith .  -ts_adjoint_solve <yes,no> After solving the ODE/DAE solve the adjoint problem (requires -ts_save_trajectory)
143847ff0e1SMatthew G. Knepley .  -ts_fd_color - Use finite differences with coloring to compute IJacobian
144bdad233fSMatthew Knepley .  -ts_monitor - print information at each timestep
145de06c3feSJed Brown .  -ts_monitor_lg_solution - Monitor solution graphically
146de06c3feSJed Brown .  -ts_monitor_lg_error - Monitor error graphically
1476934998bSLisandro Dalcin .  -ts_monitor_lg_timestep - Monitor timestep size graphically
148de06c3feSJed Brown .  -ts_monitor_lg_snes_iterations - Monitor number nonlinear iterations for each timestep graphically
149de06c3feSJed Brown .  -ts_monitor_lg_ksp_iterations - Monitor number nonlinear iterations for each timestep graphically
150de06c3feSJed Brown .  -ts_monitor_sp_eig - Monitor eigenvalues of linearized operator graphically
151de06c3feSJed Brown .  -ts_monitor_draw_solution - Monitor solution graphically
1523e4cdcaaSBarry Smith .  -ts_monitor_draw_solution_phase  <xleft,yleft,xright,yright> - Monitor solution graphically with phase diagram, requires problem with exactly 2 degrees of freedom
1533e4cdcaaSBarry Smith .  -ts_monitor_draw_error - Monitor error graphically, requires use to have provided TSSetSolutionFunction()
154fde5950dSBarry Smith .  -ts_monitor_solution [ascii binary draw][:filename][:viewerformat] - monitors the solution at each timestep
155e4160dc7SJulian Andrej .  -ts_monitor_solution_vtk <filename.vts,filename.vtu> - Save each time step to a binary file, use filename-%%03D.vts (filename-%%03D.vtu)
156110eb670SHong Zhang .  -ts_monitor_envelope - determine maximum and minimum value of each component of the solution over the solution time
157110eb670SHong Zhang .  -ts_adjoint_monitor - print information at each adjoint time step
15853ea634cSHong Zhang -  -ts_adjoint_monitor_draw_sensi - monitor the sensitivity of the first cost function wrt initial conditions (lambda[0]) graphically
15953ea634cSHong Zhang 
16091b97e58SBarry Smith    Developer Note: We should unify all the -ts_monitor options in the way that -xxx_view has been unified
161bdad233fSMatthew Knepley 
162bdad233fSMatthew Knepley    Level: beginner
163bdad233fSMatthew Knepley 
164bdad233fSMatthew Knepley .keywords: TS, timestep, set, options, database
165bdad233fSMatthew Knepley 
166a313700dSBarry Smith .seealso: TSGetType()
167bdad233fSMatthew Knepley @*/
1687087cfbeSBarry Smith PetscErrorCode  TSSetFromOptions(TS ts)
169bdad233fSMatthew Knepley {
170bc952696SBarry Smith   PetscBool              opt,flg,tflg;
171dfbe8321SBarry Smith   PetscErrorCode         ierr;
172eabae89aSBarry Smith   char                   monfilename[PETSC_MAX_PATH_LEN];
17331748224SBarry Smith   PetscReal              time_step;
17449354f04SShri Abhyankar   TSExactFinalTimeOption eftopt;
175d1212d36SBarry Smith   char                   dir[16];
176cd11d68dSLisandro Dalcin   TSIFunction            ifun;
1776991f827SBarry Smith   const char             *defaultType;
1786991f827SBarry Smith   char                   typeName[256];
179bdad233fSMatthew Knepley 
180bdad233fSMatthew Knepley   PetscFunctionBegin;
1810700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
1826991f827SBarry Smith 
1836991f827SBarry Smith   ierr = TSRegisterAll();CHKERRQ(ierr);
184cd11d68dSLisandro Dalcin   ierr = TSGetIFunction(ts,NULL,&ifun,NULL);CHKERRQ(ierr);
185cd11d68dSLisandro Dalcin 
186cd11d68dSLisandro Dalcin   ierr = PetscObjectOptionsBegin((PetscObject)ts);CHKERRQ(ierr);
187cd11d68dSLisandro Dalcin   if (((PetscObject)ts)->type_name)
188cd11d68dSLisandro Dalcin     defaultType = ((PetscObject)ts)->type_name;
189cd11d68dSLisandro Dalcin   else
190cd11d68dSLisandro Dalcin     defaultType = ifun ? TSBEULER : TSEULER;
1916991f827SBarry Smith   ierr = PetscOptionsFList("-ts_type","TS method","TSSetType",TSList,defaultType,typeName,256,&opt);CHKERRQ(ierr);
1926991f827SBarry Smith   if (opt) {
1936991f827SBarry Smith     ierr = TSSetType(ts,typeName);CHKERRQ(ierr);
1946991f827SBarry Smith   } else {
1956991f827SBarry Smith     ierr = TSSetType(ts,defaultType);CHKERRQ(ierr);
1966991f827SBarry Smith   }
197bdad233fSMatthew Knepley 
198bdad233fSMatthew Knepley   /* Handle generic TS options */
1990298fd71SBarry Smith   ierr = PetscOptionsInt("-ts_max_steps","Maximum number of time steps","TSSetDuration",ts->max_steps,&ts->max_steps,NULL);CHKERRQ(ierr);
2000298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_final_time","Time to run to","TSSetDuration",ts->max_time,&ts->max_time,NULL);CHKERRQ(ierr);
2010298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_init_time","Initial time","TSSetTime",ts->ptime,&ts->ptime,NULL);CHKERRQ(ierr);
20231748224SBarry Smith   ierr = PetscOptionsReal("-ts_dt","Initial time step","TSSetTimeStep",ts->time_step,&time_step,&flg);CHKERRQ(ierr);
203cd11d68dSLisandro Dalcin   if (flg) {ierr = TSSetTimeStep(ts,time_step);CHKERRQ(ierr);}
20449354f04SShri 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);
20549354f04SShri Abhyankar   if (flg) {ierr = TSSetExactFinalTime(ts,eftopt);CHKERRQ(ierr);}
2060298fd71SBarry 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);
2070298fd71SBarry Smith   ierr = PetscOptionsInt("-ts_max_reject","Maximum number of step rejections before step fails","TSSetMaxStepRejections",ts->max_reject,&ts->max_reject,NULL);CHKERRQ(ierr);
2080298fd71SBarry Smith   ierr = PetscOptionsBool("-ts_error_if_step_fails","Error if no step succeeds","TSSetErrorIfStepFails",ts->errorifstepfailed,&ts->errorifstepfailed,NULL);CHKERRQ(ierr);
2090298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_rtol","Relative tolerance for local truncation error","TSSetTolerances",ts->rtol,&ts->rtol,NULL);CHKERRQ(ierr);
2100298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_atol","Absolute tolerance for local truncation error","TSSetTolerances",ts->atol,&ts->atol,NULL);CHKERRQ(ierr);
211bdad233fSMatthew Knepley 
21256f85f32SBarry Smith #if defined(PETSC_HAVE_SAWS)
21356f85f32SBarry Smith   {
21456f85f32SBarry Smith   PetscBool set;
21556f85f32SBarry Smith   flg  = PETSC_FALSE;
21656f85f32SBarry Smith   ierr = PetscOptionsBool("-ts_saws_block","Block for SAWs memory snooper at end of TSSolve","PetscObjectSAWsBlock",((PetscObject)ts)->amspublishblock,&flg,&set);CHKERRQ(ierr);
21756f85f32SBarry Smith   if (set) {
21856f85f32SBarry Smith     ierr = PetscObjectSAWsSetBlock((PetscObject)ts,flg);CHKERRQ(ierr);
21956f85f32SBarry Smith   }
22056f85f32SBarry Smith   }
22156f85f32SBarry Smith #endif
22256f85f32SBarry Smith 
223bdad233fSMatthew Knepley   /* Monitor options */
224cd11d68dSLisandro Dalcin   ierr = TSMonitorSetFromOptions(ts,"-ts_monitor","Monitor time and timestep size","TSMonitorDefault",TSMonitorDefault,NULL);CHKERRQ(ierr);
225fde5950dSBarry Smith   ierr = TSMonitorSetFromOptions(ts,"-ts_monitor_solution","View the solution at each timestep","TSMonitorSolution",TSMonitorSolution,NULL);CHKERRQ(ierr);
226fde5950dSBarry Smith   ierr = TSAdjointMonitorSetFromOptions(ts,"-ts_adjoint_monitor","Monitor adjoint timestep size","TSAdjointMonitorDefault",TSAdjointMonitorDefault,NULL);CHKERRQ(ierr);
227fde5950dSBarry Smith 
2285180491cSLisandro Dalcin   ierr = PetscOptionsString("-ts_monitor_python","Use Python function","TSMonitorSet",0,monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr);
2295180491cSLisandro Dalcin   if (flg) {ierr = PetscPythonMonitorSet((PetscObject)ts,monfilename);CHKERRQ(ierr);}
2305180491cSLisandro Dalcin 
2314f09c107SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_solution","Monitor solution graphically","TSMonitorLGSolution",&opt);CHKERRQ(ierr);
232b3603a34SBarry Smith   if (opt) {
2330b039ecaSBarry Smith     TSMonitorLGCtx ctx;
2343923b477SBarry Smith     PetscInt       howoften = 1;
235b3603a34SBarry Smith 
2360298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_solution","Monitor solution graphically","TSMonitorLGSolution",howoften,&howoften,NULL);CHKERRQ(ierr);
2376ba87a44SLisandro Dalcin     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,400,300,howoften,&ctx);CHKERRQ(ierr);
2384f09c107SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGSolution,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
239bdad233fSMatthew Knepley   }
2406ba87a44SLisandro Dalcin 
2414f09c107SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_error","Monitor error graphically","TSMonitorLGError",&opt);CHKERRQ(ierr);
242ef20d060SBarry Smith   if (opt) {
2430b039ecaSBarry Smith     TSMonitorLGCtx ctx;
2443923b477SBarry Smith     PetscInt       howoften = 1;
245ef20d060SBarry Smith 
2460298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_error","Monitor error graphically","TSMonitorLGError",howoften,&howoften,NULL);CHKERRQ(ierr);
2476ba87a44SLisandro Dalcin     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,400,300,howoften,&ctx);CHKERRQ(ierr);
2484f09c107SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGError,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
249ef20d060SBarry Smith   }
2506934998bSLisandro Dalcin 
2516934998bSLisandro Dalcin   ierr = PetscOptionsName("-ts_monitor_lg_timestep","Monitor timestep size graphically","TSMonitorLGTimeStep",&opt);CHKERRQ(ierr);
2526934998bSLisandro Dalcin   if (opt) {
2536934998bSLisandro Dalcin     TSMonitorLGCtx ctx;
2546934998bSLisandro Dalcin     PetscInt       howoften = 1;
2556934998bSLisandro Dalcin 
2566934998bSLisandro Dalcin     ierr = PetscOptionsInt("-ts_monitor_lg_timestep","Monitor timestep size graphically","TSMonitorLGTimeStep",howoften,&howoften,NULL);CHKERRQ(ierr);
2576ba87a44SLisandro Dalcin     ierr = TSMonitorLGCtxCreate(PetscObjectComm((PetscObject)ts),NULL,NULL,PETSC_DECIDE,PETSC_DECIDE,400,300,howoften,&ctx);CHKERRQ(ierr);
2586934998bSLisandro Dalcin     ierr = TSMonitorSet(ts,TSMonitorLGTimeStep,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
2596934998bSLisandro Dalcin   }
260201da799SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_snes_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGSNESIterations",&opt);CHKERRQ(ierr);
261201da799SBarry Smith   if (opt) {
262201da799SBarry Smith     TSMonitorLGCtx ctx;
263201da799SBarry Smith     PetscInt       howoften = 1;
264201da799SBarry Smith 
2650298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_snes_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGSNESIterations",howoften,&howoften,NULL);CHKERRQ(ierr);
2666ba87a44SLisandro Dalcin     ierr = TSMonitorLGCtxCreate(PetscObjectComm((PetscObject)ts),NULL,NULL,PETSC_DECIDE,PETSC_DECIDE,400,300,howoften,&ctx);CHKERRQ(ierr);
267201da799SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGSNESIterations,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
268201da799SBarry Smith   }
269201da799SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_ksp_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGKSPIterations",&opt);CHKERRQ(ierr);
270201da799SBarry Smith   if (opt) {
271201da799SBarry Smith     TSMonitorLGCtx ctx;
272201da799SBarry Smith     PetscInt       howoften = 1;
273201da799SBarry Smith 
2740298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_ksp_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGKSPIterations",howoften,&howoften,NULL);CHKERRQ(ierr);
2756ba87a44SLisandro Dalcin     ierr = TSMonitorLGCtxCreate(PetscObjectComm((PetscObject)ts),NULL,NULL,PETSC_DECIDE,PETSC_DECIDE,400,300,howoften,&ctx);CHKERRQ(ierr);
276201da799SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGKSPIterations,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
277201da799SBarry Smith   }
2788189c53fSBarry Smith   ierr = PetscOptionsName("-ts_monitor_sp_eig","Monitor eigenvalues of linearized operator graphically","TSMonitorSPEig",&opt);CHKERRQ(ierr);
2798189c53fSBarry Smith   if (opt) {
2808189c53fSBarry Smith     TSMonitorSPEigCtx ctx;
2818189c53fSBarry Smith     PetscInt          howoften = 1;
2828189c53fSBarry Smith 
2830298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_sp_eig","Monitor eigenvalues of linearized operator graphically","TSMonitorSPEig",howoften,&howoften,NULL);CHKERRQ(ierr);
2846934998bSLisandro Dalcin     ierr = TSMonitorSPEigCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,howoften,&ctx);CHKERRQ(ierr);
2858189c53fSBarry Smith     ierr = TSMonitorSet(ts,TSMonitorSPEig,ctx,(PetscErrorCode (*)(void**))TSMonitorSPEigCtxDestroy);CHKERRQ(ierr);
2868189c53fSBarry Smith   }
287ef20d060SBarry Smith   opt  = PETSC_FALSE;
2880dcf80beSBarry Smith   ierr = PetscOptionsName("-ts_monitor_draw_solution","Monitor solution graphically","TSMonitorDrawSolution",&opt);CHKERRQ(ierr);
289a7cc72afSBarry Smith   if (opt) {
29083a4ac43SBarry Smith     TSMonitorDrawCtx ctx;
29183a4ac43SBarry Smith     PetscInt         howoften = 1;
292a80ad3e0SBarry Smith 
2930298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_draw_solution","Monitor solution graphically","TSMonitorDrawSolution",howoften,&howoften,NULL);CHKERRQ(ierr);
2946934998bSLisandro Dalcin     ierr = TSMonitorDrawCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,howoften,&ctx);CHKERRQ(ierr);
29583a4ac43SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDrawSolution,ctx,(PetscErrorCode (*)(void**))TSMonitorDrawCtxDestroy);CHKERRQ(ierr);
296bdad233fSMatthew Knepley   }
297fb1732b5SBarry Smith   opt  = PETSC_FALSE;
2989110b2e7SHong Zhang   ierr = PetscOptionsName("-ts_adjoint_monitor_draw_sensi","Monitor adjoint sensitivities (lambda only) graphically","TSAdjointMonitorDrawSensi",&opt);CHKERRQ(ierr);
2999110b2e7SHong Zhang   if (opt) {
3009110b2e7SHong Zhang     TSMonitorDrawCtx ctx;
3019110b2e7SHong Zhang     PetscInt         howoften = 1;
3029110b2e7SHong Zhang 
3039110b2e7SHong Zhang     ierr = PetscOptionsInt("-ts_adjoint_monitor_draw_sensi","Monitor adjoint sensitivities (lambda only) graphically","TSAdjointMonitorDrawSensi",howoften,&howoften,NULL);CHKERRQ(ierr);
3046934998bSLisandro Dalcin     ierr = TSMonitorDrawCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,howoften,&ctx);CHKERRQ(ierr);
3059110b2e7SHong Zhang     ierr = TSAdjointMonitorSet(ts,TSAdjointMonitorDrawSensi,ctx,(PetscErrorCode (*)(void**))TSMonitorDrawCtxDestroy);CHKERRQ(ierr);
3069110b2e7SHong Zhang   }
3079110b2e7SHong Zhang   opt  = PETSC_FALSE;
3082d5ee99bSBarry Smith   ierr = PetscOptionsName("-ts_monitor_draw_solution_phase","Monitor solution graphically","TSMonitorDrawSolutionPhase",&opt);CHKERRQ(ierr);
3092d5ee99bSBarry Smith   if (opt) {
3102d5ee99bSBarry Smith     TSMonitorDrawCtx ctx;
3112d5ee99bSBarry Smith     PetscReal        bounds[4];
3122d5ee99bSBarry Smith     PetscInt         n = 4;
3132d5ee99bSBarry Smith     PetscDraw        draw;
3146934998bSLisandro Dalcin     PetscDrawAxis    axis;
3152d5ee99bSBarry Smith 
3162d5ee99bSBarry Smith     ierr = PetscOptionsRealArray("-ts_monitor_draw_solution_phase","Monitor solution graphically","TSMonitorDrawSolutionPhase",bounds,&n,NULL);CHKERRQ(ierr);
3172d5ee99bSBarry Smith     if (n != 4) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Must provide bounding box of phase field");
3186934998bSLisandro Dalcin     ierr = TSMonitorDrawCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,1,&ctx);CHKERRQ(ierr);
3192d5ee99bSBarry Smith     ierr = PetscViewerDrawGetDraw(ctx->viewer,0,&draw);CHKERRQ(ierr);
3206934998bSLisandro Dalcin     ierr = PetscViewerDrawGetDrawAxis(ctx->viewer,0,&axis);CHKERRQ(ierr);
3216934998bSLisandro Dalcin     ierr = PetscDrawAxisSetLimits(axis,bounds[0],bounds[2],bounds[1],bounds[3]);CHKERRQ(ierr);
3226934998bSLisandro Dalcin     ierr = PetscDrawAxisSetLabels(axis,"Phase Diagram","Variable 1","Variable 2");CHKERRQ(ierr);
3232d5ee99bSBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDrawSolutionPhase,ctx,(PetscErrorCode (*)(void**))TSMonitorDrawCtxDestroy);CHKERRQ(ierr);
3242d5ee99bSBarry Smith   }
3252d5ee99bSBarry Smith   opt  = PETSC_FALSE;
3260dcf80beSBarry Smith   ierr = PetscOptionsName("-ts_monitor_draw_error","Monitor error graphically","TSMonitorDrawError",&opt);CHKERRQ(ierr);
3273a471f94SBarry Smith   if (opt) {
32883a4ac43SBarry Smith     TSMonitorDrawCtx ctx;
32983a4ac43SBarry Smith     PetscInt         howoften = 1;
3303a471f94SBarry Smith 
3310298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_draw_error","Monitor error graphically","TSMonitorDrawError",howoften,&howoften,NULL);CHKERRQ(ierr);
3326934998bSLisandro Dalcin     ierr = TSMonitorDrawCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,howoften,&ctx);CHKERRQ(ierr);
33383a4ac43SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDrawError,ctx,(PetscErrorCode (*)(void**))TSMonitorDrawCtxDestroy);CHKERRQ(ierr);
3343a471f94SBarry Smith   }
335fde5950dSBarry Smith 
336ed81e22dSJed Brown   opt  = PETSC_FALSE;
33791b97e58SBarry 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);
338ed81e22dSJed Brown   if (flg) {
339ed81e22dSJed Brown     const char *ptr,*ptr2;
340ed81e22dSJed Brown     char       *filetemplate;
341ce94432eSBarry Smith     if (!monfilename[0]) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"-ts_monitor_solution_vtk requires a file template, e.g. filename-%%03D.vts");
342ed81e22dSJed Brown     /* Do some cursory validation of the input. */
343ed81e22dSJed Brown     ierr = PetscStrstr(monfilename,"%",(char**)&ptr);CHKERRQ(ierr);
344ce94432eSBarry Smith     if (!ptr) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"-ts_monitor_solution_vtk requires a file template, e.g. filename-%%03D.vts");
345ed81e22dSJed Brown     for (ptr++; ptr && *ptr; ptr++) {
346ed81e22dSJed Brown       ierr = PetscStrchr("DdiouxX",*ptr,(char**)&ptr2);CHKERRQ(ierr);
347ce94432eSBarry 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");
348ed81e22dSJed Brown       if (ptr2) break;
349ed81e22dSJed Brown     }
350ed81e22dSJed Brown     ierr = PetscStrallocpy(monfilename,&filetemplate);CHKERRQ(ierr);
351ed81e22dSJed Brown     ierr = TSMonitorSet(ts,TSMonitorSolutionVTK,filetemplate,(PetscErrorCode (*)(void**))TSMonitorSolutionVTKDestroy);CHKERRQ(ierr);
352ed81e22dSJed Brown   }
353bdad233fSMatthew Knepley 
354d1212d36SBarry Smith   ierr = PetscOptionsString("-ts_monitor_dmda_ray","Display a ray of the solution","None","y=0",dir,16,&flg);CHKERRQ(ierr);
355d1212d36SBarry Smith   if (flg) {
356d1212d36SBarry Smith     TSMonitorDMDARayCtx *rayctx;
357d1212d36SBarry Smith     int                  ray = 0;
358d1212d36SBarry Smith     DMDADirection        ddir;
359d1212d36SBarry Smith     DM                   da;
360d1212d36SBarry Smith     PetscMPIInt          rank;
361d1212d36SBarry Smith 
362ce94432eSBarry Smith     if (dir[1] != '=') SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Unknown ray %s",dir);
363d1212d36SBarry Smith     if (dir[0] == 'x') ddir = DMDA_X;
364d1212d36SBarry Smith     else if (dir[0] == 'y') ddir = DMDA_Y;
365ce94432eSBarry Smith     else SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Unknown ray %s",dir);
366d1212d36SBarry Smith     sscanf(dir+2,"%d",&ray);
367d1212d36SBarry Smith 
368d1212d36SBarry Smith     ierr = PetscInfo2(((PetscObject)ts),"Displaying DMDA ray %c = %D\n",dir[0],ray);CHKERRQ(ierr);
369b00a9115SJed Brown     ierr = PetscNew(&rayctx);CHKERRQ(ierr);
370d1212d36SBarry Smith     ierr = TSGetDM(ts,&da);CHKERRQ(ierr);
371d1212d36SBarry Smith     ierr = DMDAGetRay(da,ddir,ray,&rayctx->ray,&rayctx->scatter);CHKERRQ(ierr);
372ce94432eSBarry Smith     ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)ts),&rank);CHKERRQ(ierr);
373d1212d36SBarry Smith     if (!rank) {
374d1212d36SBarry Smith       ierr = PetscViewerDrawOpen(PETSC_COMM_SELF,0,0,0,0,600,300,&rayctx->viewer);CHKERRQ(ierr);
375d1212d36SBarry Smith     }
37651b4a12fSMatthew G. Knepley     rayctx->lgctx = NULL;
377d1212d36SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDMDARay,rayctx,TSMonitorDMDARayDestroy);CHKERRQ(ierr);
378d1212d36SBarry Smith   }
37951b4a12fSMatthew G. Knepley   ierr = PetscOptionsString("-ts_monitor_lg_dmda_ray","Display a ray of the solution","None","x=0",dir,16,&flg);CHKERRQ(ierr);
38051b4a12fSMatthew G. Knepley   if (flg) {
38151b4a12fSMatthew G. Knepley     TSMonitorDMDARayCtx *rayctx;
38251b4a12fSMatthew G. Knepley     int                 ray = 0;
38351b4a12fSMatthew G. Knepley     DMDADirection       ddir;
38451b4a12fSMatthew G. Knepley     DM                  da;
38551b4a12fSMatthew G. Knepley     PetscInt            howoften = 1;
386d1212d36SBarry Smith 
38751b4a12fSMatthew G. Knepley     if (dir[1] != '=') SETERRQ1(PetscObjectComm((PetscObject) ts), PETSC_ERR_ARG_WRONG, "Malformed ray %s", dir);
38851b4a12fSMatthew G. Knepley     if      (dir[0] == 'x') ddir = DMDA_X;
38951b4a12fSMatthew G. Knepley     else if (dir[0] == 'y') ddir = DMDA_Y;
39051b4a12fSMatthew G. Knepley     else SETERRQ1(PetscObjectComm((PetscObject) ts), PETSC_ERR_ARG_WRONG, "Unknown ray direction %s", dir);
39151b4a12fSMatthew G. Knepley     sscanf(dir+2, "%d", &ray);
3921c3436cfSJed Brown 
39351b4a12fSMatthew G. Knepley     ierr = PetscInfo2(((PetscObject) ts),"Displaying LG DMDA ray %c = %D\n", dir[0], ray);CHKERRQ(ierr);
394b00a9115SJed Brown     ierr = PetscNew(&rayctx);CHKERRQ(ierr);
39551b4a12fSMatthew G. Knepley     ierr = TSGetDM(ts, &da);CHKERRQ(ierr);
39651b4a12fSMatthew G. Knepley     ierr = DMDAGetRay(da, ddir, ray, &rayctx->ray, &rayctx->scatter);CHKERRQ(ierr);
39751b4a12fSMatthew G. Knepley     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,howoften,&rayctx->lgctx);CHKERRQ(ierr);
39851b4a12fSMatthew G. Knepley     ierr = TSMonitorSet(ts, TSMonitorLGDMDARay, rayctx, TSMonitorDMDARayDestroy);CHKERRQ(ierr);
39951b4a12fSMatthew G. Knepley   }
400a7a1495cSBarry Smith 
401b3d3934dSBarry Smith   ierr = PetscOptionsName("-ts_monitor_envelope","Monitor maximum and minimum value of each component of the solution","TSMonitorEnvelope",&opt);CHKERRQ(ierr);
402b3d3934dSBarry Smith   if (opt) {
403b3d3934dSBarry Smith     TSMonitorEnvelopeCtx ctx;
404b3d3934dSBarry Smith 
405b3d3934dSBarry Smith     ierr = TSMonitorEnvelopeCtxCreate(ts,&ctx);CHKERRQ(ierr);
406b3d3934dSBarry Smith     ierr = TSMonitorSet(ts,TSMonitorEnvelope,ctx,(PetscErrorCode (*)(void**))TSMonitorEnvelopeCtxDestroy);CHKERRQ(ierr);
407b3d3934dSBarry Smith   }
408b3d3934dSBarry Smith 
409847ff0e1SMatthew G. Knepley   flg  = PETSC_FALSE;
410847ff0e1SMatthew G. Knepley   ierr = PetscOptionsBool("-ts_fd_color", "Use finite differences with coloring to compute IJacobian", "TSComputeJacobianDefaultColor", flg, &flg, NULL);CHKERRQ(ierr);
411847ff0e1SMatthew G. Knepley   if (flg) {
412847ff0e1SMatthew G. Knepley     DM   dm;
413847ff0e1SMatthew G. Knepley     DMTS tdm;
414847ff0e1SMatthew G. Knepley 
415847ff0e1SMatthew G. Knepley     ierr = TSGetDM(ts, &dm);CHKERRQ(ierr);
416847ff0e1SMatthew G. Knepley     ierr = DMGetDMTS(dm, &tdm);CHKERRQ(ierr);
417847ff0e1SMatthew G. Knepley     tdm->ijacobianctx = NULL;
418847ff0e1SMatthew G. Knepley     ierr = TSSetIJacobian(ts, NULL, NULL, TSComputeIJacobianDefaultColor, 0);CHKERRQ(ierr);
419847ff0e1SMatthew G. Knepley     ierr = PetscInfo(ts, "Setting default finite difference coloring Jacobian matrix\n");CHKERRQ(ierr);
420847ff0e1SMatthew G. Knepley   }
421847ff0e1SMatthew G. Knepley 
422*2ffb9264SLisandro Dalcin   /* Handle TSAdapt options */
423*2ffb9264SLisandro Dalcin   ierr = TSGetAdapt(ts,&ts->adapt);CHKERRQ(ierr);
424*2ffb9264SLisandro Dalcin   ierr = TSAdaptSetDefaultType(ts->adapt,ts->default_adapt_type);CHKERRQ(ierr);
425ee346746SBarry Smith   ierr = TSAdaptSetFromOptions(PetscOptionsObject,ts->adapt);CHKERRQ(ierr);
426d763cef2SBarry Smith 
427d763cef2SBarry Smith   /* Handle specific TS options */
428d763cef2SBarry Smith   if (ts->ops->setfromoptions) {
4296991f827SBarry Smith     ierr = (*ts->ops->setfromoptions)(PetscOptionsObject,ts);CHKERRQ(ierr);
430d763cef2SBarry Smith   }
431fbc52257SHong Zhang 
43268bece0bSHong Zhang   /* TS trajectory must be set after TS, since it may use some TS options above */
4334f122a70SLisandro Dalcin   tflg = ts->trajectory ? PETSC_TRUE : PETSC_FALSE;
43468bece0bSHong Zhang   ierr = PetscOptionsBool("-ts_save_trajectory","Save the solution at each timestep","TSSetSaveTrajectory",tflg,&tflg,NULL);CHKERRQ(ierr);
43568bece0bSHong Zhang   if (tflg) {
43668bece0bSHong Zhang     ierr = TSSetSaveTrajectory(ts);CHKERRQ(ierr);
43768bece0bSHong Zhang   }
4384f122a70SLisandro Dalcin   tflg = ts->adjoint_solve ? PETSC_TRUE : PETSC_FALSE;
43968bece0bSHong Zhang   ierr = PetscOptionsBool("-ts_adjoint_solve","Solve the adjoint problem immediately after solving the forward problem","",tflg,&tflg,&flg);CHKERRQ(ierr);
44068bece0bSHong Zhang   if (flg) {
44168bece0bSHong Zhang     ierr = TSSetSaveTrajectory(ts);CHKERRQ(ierr);
44268bece0bSHong Zhang     ts->adjoint_solve = tflg;
44368bece0bSHong Zhang   }
444d763cef2SBarry Smith 
445d763cef2SBarry Smith   /* process any options handlers added with PetscObjectAddOptionsHandler() */
4460633abcbSJed Brown   ierr = PetscObjectProcessOptionsHandlers(PetscOptionsObject,(PetscObject)ts);CHKERRQ(ierr);
447fbc52257SHong Zhang   ierr = PetscOptionsEnd();CHKERRQ(ierr);
448d763cef2SBarry Smith 
4494f122a70SLisandro Dalcin   if (ts->trajectory) {
4504f122a70SLisandro Dalcin     ierr = TSTrajectorySetFromOptions(ts->trajectory,ts);CHKERRQ(ierr);
451d763cef2SBarry Smith   }
45268bece0bSHong Zhang 
4534f122a70SLisandro Dalcin   ierr = TSGetSNES(ts,&ts->snes);CHKERRQ(ierr);
4544f122a70SLisandro Dalcin   if (ts->problem_type == TS_LINEAR) {ierr = SNESSetType(ts->snes,SNESKSPONLY);CHKERRQ(ierr);}
4554f122a70SLisandro Dalcin   ierr = SNESSetFromOptions(ts->snes);CHKERRQ(ierr);
456d763cef2SBarry Smith   PetscFunctionReturn(0);
457d763cef2SBarry Smith }
458d763cef2SBarry Smith 
459d2daff3dSHong Zhang /*@
46078fbdcc8SBarry Smith    TSGetTrajectory - Gets the trajectory from a TS if it exists
46178fbdcc8SBarry Smith 
46278fbdcc8SBarry Smith    Collective on TS
46378fbdcc8SBarry Smith 
46478fbdcc8SBarry Smith    Input Parameters:
46578fbdcc8SBarry Smith .  ts - the TS context obtained from TSCreate()
46678fbdcc8SBarry Smith 
46778fbdcc8SBarry Smith    Output Parameters;
46878fbdcc8SBarry Smith .  tr - the TSTrajectory object, if it exists
46978fbdcc8SBarry Smith 
47078fbdcc8SBarry Smith    Note: This routine should be called after all TS options have been set
47178fbdcc8SBarry Smith 
47278fbdcc8SBarry Smith    Level: advanced
47378fbdcc8SBarry Smith 
47478fbdcc8SBarry Smith .seealso: TSGetTrajectory(), TSAdjointSolve(), TSTrajectory, TSTrajectoryCreate()
47578fbdcc8SBarry Smith 
47678fbdcc8SBarry Smith .keywords: TS, set, checkpoint,
47778fbdcc8SBarry Smith @*/
47878fbdcc8SBarry Smith PetscErrorCode  TSGetTrajectory(TS ts,TSTrajectory *tr)
47978fbdcc8SBarry Smith {
48078fbdcc8SBarry Smith   PetscFunctionBegin;
48178fbdcc8SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
48278fbdcc8SBarry Smith   *tr = ts->trajectory;
48378fbdcc8SBarry Smith   PetscFunctionReturn(0);
48478fbdcc8SBarry Smith }
48578fbdcc8SBarry Smith 
48678fbdcc8SBarry Smith /*@
487bc952696SBarry Smith    TSSetSaveTrajectory - Causes the TS to save its solutions as it iterates forward in time in a TSTrajectory object
488d2daff3dSHong Zhang 
489d2daff3dSHong Zhang    Collective on TS
490d2daff3dSHong Zhang 
491d2daff3dSHong Zhang    Input Parameters:
492bc952696SBarry Smith .  ts - the TS context obtained from TSCreate()
493bc952696SBarry Smith 
49478fbdcc8SBarry Smith    Options Database:
49578fbdcc8SBarry Smith +  -ts_save_trajectory - saves the trajectory to a file
49678fbdcc8SBarry Smith -  -ts_trajectory_type type
49778fbdcc8SBarry Smith 
49868bece0bSHong Zhang Note: This routine should be called after all TS options have been set
499d2daff3dSHong Zhang 
50078fbdcc8SBarry Smith     The TSTRAJECTORYVISUALIZATION files can be loaded into Python with $PETSC_DIR/bin/PetscBinaryIOTrajectory.py and
50178fbdcc8SBarry Smith    MATLAB with $PETSC_DIR/share/petsc/matlab/PetscReadBinaryTrajectory.m
50278fbdcc8SBarry Smith 
503d2daff3dSHong Zhang    Level: intermediate
504d2daff3dSHong Zhang 
50578fbdcc8SBarry Smith .seealso: TSGetTrajectory(), TSAdjointSolve(), TSTrajectoryType, TSSetTrajectoryType()
506d2daff3dSHong Zhang 
507bc952696SBarry Smith .keywords: TS, set, checkpoint,
508d2daff3dSHong Zhang @*/
509bc952696SBarry Smith PetscErrorCode  TSSetSaveTrajectory(TS ts)
510d2daff3dSHong Zhang {
511bc952696SBarry Smith   PetscErrorCode ierr;
512bc952696SBarry Smith 
513d2daff3dSHong Zhang   PetscFunctionBegin;
514d2daff3dSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
515bc952696SBarry Smith   if (!ts->trajectory) {
516bc952696SBarry Smith     ierr = TSTrajectoryCreate(PetscObjectComm((PetscObject)ts),&ts->trajectory);CHKERRQ(ierr);
517972caf09SHong Zhang     ierr = TSTrajectorySetFromOptions(ts->trajectory,ts);CHKERRQ(ierr);
518bc952696SBarry Smith   }
519d2daff3dSHong Zhang   PetscFunctionReturn(0);
520d2daff3dSHong Zhang }
521d2daff3dSHong Zhang 
522a7a1495cSBarry Smith /*@
523a7a1495cSBarry Smith    TSComputeRHSJacobian - Computes the Jacobian matrix that has been
524a7a1495cSBarry Smith       set with TSSetRHSJacobian().
525a7a1495cSBarry Smith 
526a7a1495cSBarry Smith    Collective on TS and Vec
527a7a1495cSBarry Smith 
528a7a1495cSBarry Smith    Input Parameters:
529316643e7SJed Brown +  ts - the TS context
530a7a1495cSBarry Smith .  t - current timestep
5310910c330SBarry Smith -  U - input vector
532a7a1495cSBarry Smith 
533a7a1495cSBarry Smith    Output Parameters:
534a7a1495cSBarry Smith +  A - Jacobian matrix
535a7a1495cSBarry Smith .  B - optional preconditioning matrix
536a7a1495cSBarry Smith -  flag - flag indicating matrix structure
537a7a1495cSBarry Smith 
538a7a1495cSBarry Smith    Notes:
539a7a1495cSBarry Smith    Most users should not need to explicitly call this routine, as it
540a7a1495cSBarry Smith    is used internally within the nonlinear solvers.
541a7a1495cSBarry Smith 
54294b7f48cSBarry Smith    See KSPSetOperators() for important information about setting the
543a7a1495cSBarry Smith    flag parameter.
544a7a1495cSBarry Smith 
545a7a1495cSBarry Smith    Level: developer
546a7a1495cSBarry Smith 
547a7a1495cSBarry Smith .keywords: SNES, compute, Jacobian, matrix
548a7a1495cSBarry Smith 
54994b7f48cSBarry Smith .seealso:  TSSetRHSJacobian(), KSPSetOperators()
550a7a1495cSBarry Smith @*/
551d1e9a80fSBarry Smith PetscErrorCode  TSComputeRHSJacobian(TS ts,PetscReal t,Vec U,Mat A,Mat B)
552a7a1495cSBarry Smith {
553dfbe8321SBarry Smith   PetscErrorCode ierr;
554270bf2e7SJed Brown   PetscObjectState Ustate;
55524989b8cSPeter Brune   DM             dm;
556942e3340SBarry Smith   DMTS           tsdm;
55724989b8cSPeter Brune   TSRHSJacobian  rhsjacobianfunc;
55824989b8cSPeter Brune   void           *ctx;
55924989b8cSPeter Brune   TSIJacobian    ijacobianfunc;
560b2df71adSDebojyoti Ghosh   TSRHSFunction  rhsfunction;
561a7a1495cSBarry Smith 
562a7a1495cSBarry Smith   PetscFunctionBegin;
5630700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5640910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
5650910c330SBarry Smith   PetscCheckSameComm(ts,1,U,3);
56624989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
567942e3340SBarry Smith   ierr = DMGetDMTS(dm,&tsdm);CHKERRQ(ierr);
56824989b8cSPeter Brune   ierr = DMTSGetRHSJacobian(dm,&rhsjacobianfunc,&ctx);CHKERRQ(ierr);
5690298fd71SBarry Smith   ierr = DMTSGetIJacobian(dm,&ijacobianfunc,NULL);CHKERRQ(ierr);
570b2df71adSDebojyoti Ghosh   ierr = DMTSGetRHSFunction(dm,&rhsfunction,&ctx);CHKERRQ(ierr);
57159e4f3c8SBarry Smith   ierr = PetscObjectStateGet((PetscObject)U,&Ustate);CHKERRQ(ierr);
572b2df71adSDebojyoti Ghosh   if (ts->rhsjacobian.time == t && (ts->problem_type == TS_LINEAR || (ts->rhsjacobian.X == U && ts->rhsjacobian.Xstate == Ustate)) && (rhsfunction != TSComputeRHSFunctionLinear)) {
5730e4ef248SJed Brown     PetscFunctionReturn(0);
574f8ede8e7SJed Brown   }
575d90be118SSean Farley 
576ce94432eSBarry Smith   if (!rhsjacobianfunc && !ijacobianfunc) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSJacobian() and / or TSSetIJacobian()");
577d90be118SSean Farley 
578e1244c69SJed Brown   if (ts->rhsjacobian.reuse) {
57994ab13aaSBarry Smith     ierr = MatShift(A,-ts->rhsjacobian.shift);CHKERRQ(ierr);
58094ab13aaSBarry Smith     ierr = MatScale(A,1./ts->rhsjacobian.scale);CHKERRQ(ierr);
58194ab13aaSBarry Smith     if (A != B) {
58294ab13aaSBarry Smith       ierr = MatShift(B,-ts->rhsjacobian.shift);CHKERRQ(ierr);
58394ab13aaSBarry Smith       ierr = MatScale(B,1./ts->rhsjacobian.scale);CHKERRQ(ierr);
584e1244c69SJed Brown     }
585e1244c69SJed Brown     ts->rhsjacobian.shift = 0;
586e1244c69SJed Brown     ts->rhsjacobian.scale = 1.;
587e1244c69SJed Brown   }
588e1244c69SJed Brown 
58924989b8cSPeter Brune   if (rhsjacobianfunc) {
5906cd88445SBarry Smith     PetscBool missing;
59194ab13aaSBarry Smith     ierr = PetscLogEventBegin(TS_JacobianEval,ts,U,A,B);CHKERRQ(ierr);
592a7a1495cSBarry Smith     PetscStackPush("TS user Jacobian function");
593d1e9a80fSBarry Smith     ierr = (*rhsjacobianfunc)(ts,t,U,A,B,ctx);CHKERRQ(ierr);
594a7a1495cSBarry Smith     PetscStackPop;
59594ab13aaSBarry Smith     ierr = PetscLogEventEnd(TS_JacobianEval,ts,U,A,B);CHKERRQ(ierr);
5966cd88445SBarry Smith     if (A) {
5976cd88445SBarry Smith       ierr = MatMissingDiagonal(A,&missing,NULL);CHKERRQ(ierr);
5986cd88445SBarry Smith       if (missing) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Amat passed to TSSetRHSJacobian() must have all diagonal entries set, if they are zero you must still set them with a zero value");
5996cd88445SBarry Smith     }
6006cd88445SBarry Smith     if (B && B != A) {
6016cd88445SBarry Smith       ierr = MatMissingDiagonal(B,&missing,NULL);CHKERRQ(ierr);
6026cd88445SBarry Smith       if (missing) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Bmat passed to TSSetRHSJacobian() must have all diagonal entries set, if they are zero you must still set them with a zero value");
6036cd88445SBarry Smith     }
604ef66eb69SBarry Smith   } else {
60594ab13aaSBarry Smith     ierr = MatZeroEntries(A);CHKERRQ(ierr);
60694ab13aaSBarry Smith     if (A != B) {ierr = MatZeroEntries(B);CHKERRQ(ierr);}
607ef66eb69SBarry Smith   }
6080e4ef248SJed Brown   ts->rhsjacobian.time       = t;
6090910c330SBarry Smith   ts->rhsjacobian.X          = U;
61059e4f3c8SBarry Smith   ierr                       = PetscObjectStateGet((PetscObject)U,&ts->rhsjacobian.Xstate);CHKERRQ(ierr);
611a7a1495cSBarry Smith   PetscFunctionReturn(0);
612a7a1495cSBarry Smith }
613a7a1495cSBarry Smith 
614316643e7SJed Brown /*@
615d763cef2SBarry Smith    TSComputeRHSFunction - Evaluates the right-hand-side function.
616d763cef2SBarry Smith 
617316643e7SJed Brown    Collective on TS and Vec
618316643e7SJed Brown 
619316643e7SJed Brown    Input Parameters:
620316643e7SJed Brown +  ts - the TS context
621316643e7SJed Brown .  t - current time
6220910c330SBarry Smith -  U - state vector
623316643e7SJed Brown 
624316643e7SJed Brown    Output Parameter:
625316643e7SJed Brown .  y - right hand side
626316643e7SJed Brown 
627316643e7SJed Brown    Note:
628316643e7SJed Brown    Most users should not need to explicitly call this routine, as it
629316643e7SJed Brown    is used internally within the nonlinear solvers.
630316643e7SJed Brown 
631316643e7SJed Brown    Level: developer
632316643e7SJed Brown 
633316643e7SJed Brown .keywords: TS, compute
634316643e7SJed Brown 
635316643e7SJed Brown .seealso: TSSetRHSFunction(), TSComputeIFunction()
636316643e7SJed Brown @*/
6370910c330SBarry Smith PetscErrorCode TSComputeRHSFunction(TS ts,PetscReal t,Vec U,Vec y)
638d763cef2SBarry Smith {
639dfbe8321SBarry Smith   PetscErrorCode ierr;
64024989b8cSPeter Brune   TSRHSFunction  rhsfunction;
64124989b8cSPeter Brune   TSIFunction    ifunction;
64224989b8cSPeter Brune   void           *ctx;
64324989b8cSPeter Brune   DM             dm;
64424989b8cSPeter Brune 
645d763cef2SBarry Smith   PetscFunctionBegin;
6460700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
6470910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
6480700a824SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,4);
64924989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
65024989b8cSPeter Brune   ierr = DMTSGetRHSFunction(dm,&rhsfunction,&ctx);CHKERRQ(ierr);
6510298fd71SBarry Smith   ierr = DMTSGetIFunction(dm,&ifunction,NULL);CHKERRQ(ierr);
652d763cef2SBarry Smith 
653ce94432eSBarry Smith   if (!rhsfunction && !ifunction) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSFunction() and / or TSSetIFunction()");
654d763cef2SBarry Smith 
6550910c330SBarry Smith   ierr = PetscLogEventBegin(TS_FunctionEval,ts,U,y,0);CHKERRQ(ierr);
65624989b8cSPeter Brune   if (rhsfunction) {
657d763cef2SBarry Smith     PetscStackPush("TS user right-hand-side function");
6580910c330SBarry Smith     ierr = (*rhsfunction)(ts,t,U,y,ctx);CHKERRQ(ierr);
659d763cef2SBarry Smith     PetscStackPop;
660214bc6a2SJed Brown   } else {
661214bc6a2SJed Brown     ierr = VecZeroEntries(y);CHKERRQ(ierr);
662b2cd27e8SJed Brown   }
66344a41b28SSean Farley 
6640910c330SBarry Smith   ierr = PetscLogEventEnd(TS_FunctionEval,ts,U,y,0);CHKERRQ(ierr);
665d763cef2SBarry Smith   PetscFunctionReturn(0);
666d763cef2SBarry Smith }
667d763cef2SBarry Smith 
668ef20d060SBarry Smith /*@
669ef20d060SBarry Smith    TSComputeSolutionFunction - Evaluates the solution function.
670ef20d060SBarry Smith 
671ef20d060SBarry Smith    Collective on TS and Vec
672ef20d060SBarry Smith 
673ef20d060SBarry Smith    Input Parameters:
674ef20d060SBarry Smith +  ts - the TS context
675ef20d060SBarry Smith -  t - current time
676ef20d060SBarry Smith 
677ef20d060SBarry Smith    Output Parameter:
6780910c330SBarry Smith .  U - the solution
679ef20d060SBarry Smith 
680ef20d060SBarry Smith    Note:
681ef20d060SBarry Smith    Most users should not need to explicitly call this routine, as it
682ef20d060SBarry Smith    is used internally within the nonlinear solvers.
683ef20d060SBarry Smith 
684ef20d060SBarry Smith    Level: developer
685ef20d060SBarry Smith 
686ef20d060SBarry Smith .keywords: TS, compute
687ef20d060SBarry Smith 
688abd5a294SJed Brown .seealso: TSSetSolutionFunction(), TSSetRHSFunction(), TSComputeIFunction()
689ef20d060SBarry Smith @*/
6900910c330SBarry Smith PetscErrorCode TSComputeSolutionFunction(TS ts,PetscReal t,Vec U)
691ef20d060SBarry Smith {
692ef20d060SBarry Smith   PetscErrorCode     ierr;
693ef20d060SBarry Smith   TSSolutionFunction solutionfunction;
694ef20d060SBarry Smith   void               *ctx;
695ef20d060SBarry Smith   DM                 dm;
696ef20d060SBarry Smith 
697ef20d060SBarry Smith   PetscFunctionBegin;
698ef20d060SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
6990910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
700ef20d060SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
701ef20d060SBarry Smith   ierr = DMTSGetSolutionFunction(dm,&solutionfunction,&ctx);CHKERRQ(ierr);
702ef20d060SBarry Smith 
703ef20d060SBarry Smith   if (solutionfunction) {
7049b7cd975SBarry Smith     PetscStackPush("TS user solution function");
7050910c330SBarry Smith     ierr = (*solutionfunction)(ts,t,U,ctx);CHKERRQ(ierr);
706ef20d060SBarry Smith     PetscStackPop;
707ef20d060SBarry Smith   }
708ef20d060SBarry Smith   PetscFunctionReturn(0);
709ef20d060SBarry Smith }
7109b7cd975SBarry Smith /*@
7119b7cd975SBarry Smith    TSComputeForcingFunction - Evaluates the forcing function.
7129b7cd975SBarry Smith 
7139b7cd975SBarry Smith    Collective on TS and Vec
7149b7cd975SBarry Smith 
7159b7cd975SBarry Smith    Input Parameters:
7169b7cd975SBarry Smith +  ts - the TS context
7179b7cd975SBarry Smith -  t - current time
7189b7cd975SBarry Smith 
7199b7cd975SBarry Smith    Output Parameter:
7209b7cd975SBarry Smith .  U - the function value
7219b7cd975SBarry Smith 
7229b7cd975SBarry Smith    Note:
7239b7cd975SBarry Smith    Most users should not need to explicitly call this routine, as it
7249b7cd975SBarry Smith    is used internally within the nonlinear solvers.
7259b7cd975SBarry Smith 
7269b7cd975SBarry Smith    Level: developer
7279b7cd975SBarry Smith 
7289b7cd975SBarry Smith .keywords: TS, compute
7299b7cd975SBarry Smith 
7309b7cd975SBarry Smith .seealso: TSSetSolutionFunction(), TSSetRHSFunction(), TSComputeIFunction()
7319b7cd975SBarry Smith @*/
7329b7cd975SBarry Smith PetscErrorCode TSComputeForcingFunction(TS ts,PetscReal t,Vec U)
7339b7cd975SBarry Smith {
7349b7cd975SBarry Smith   PetscErrorCode     ierr, (*forcing)(TS,PetscReal,Vec,void*);
7359b7cd975SBarry Smith   void               *ctx;
7369b7cd975SBarry Smith   DM                 dm;
7379b7cd975SBarry Smith 
7389b7cd975SBarry Smith   PetscFunctionBegin;
7399b7cd975SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
7409b7cd975SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
7419b7cd975SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
7429b7cd975SBarry Smith   ierr = DMTSGetForcingFunction(dm,&forcing,&ctx);CHKERRQ(ierr);
7439b7cd975SBarry Smith 
7449b7cd975SBarry Smith   if (forcing) {
7459b7cd975SBarry Smith     PetscStackPush("TS user forcing function");
7469b7cd975SBarry Smith     ierr = (*forcing)(ts,t,U,ctx);CHKERRQ(ierr);
7479b7cd975SBarry Smith     PetscStackPop;
7489b7cd975SBarry Smith   }
7499b7cd975SBarry Smith   PetscFunctionReturn(0);
7509b7cd975SBarry Smith }
751ef20d060SBarry Smith 
752214bc6a2SJed Brown static PetscErrorCode TSGetRHSVec_Private(TS ts,Vec *Frhs)
753214bc6a2SJed Brown {
7542dd45cf8SJed Brown   Vec            F;
755214bc6a2SJed Brown   PetscErrorCode ierr;
756214bc6a2SJed Brown 
757214bc6a2SJed Brown   PetscFunctionBegin;
7580298fd71SBarry Smith   *Frhs = NULL;
7590298fd71SBarry Smith   ierr  = TSGetIFunction(ts,&F,NULL,NULL);CHKERRQ(ierr);
760214bc6a2SJed Brown   if (!ts->Frhs) {
7612dd45cf8SJed Brown     ierr = VecDuplicate(F,&ts->Frhs);CHKERRQ(ierr);
762214bc6a2SJed Brown   }
763214bc6a2SJed Brown   *Frhs = ts->Frhs;
764214bc6a2SJed Brown   PetscFunctionReturn(0);
765214bc6a2SJed Brown }
766214bc6a2SJed Brown 
767214bc6a2SJed Brown static PetscErrorCode TSGetRHSMats_Private(TS ts,Mat *Arhs,Mat *Brhs)
768214bc6a2SJed Brown {
769214bc6a2SJed Brown   Mat            A,B;
7702dd45cf8SJed Brown   PetscErrorCode ierr;
771214bc6a2SJed Brown 
772214bc6a2SJed Brown   PetscFunctionBegin;
773c0cd0301SJed Brown   if (Arhs) *Arhs = NULL;
774c0cd0301SJed Brown   if (Brhs) *Brhs = NULL;
7750298fd71SBarry Smith   ierr = TSGetIJacobian(ts,&A,&B,NULL,NULL);CHKERRQ(ierr);
776214bc6a2SJed Brown   if (Arhs) {
777214bc6a2SJed Brown     if (!ts->Arhs) {
778214bc6a2SJed Brown       ierr = MatDuplicate(A,MAT_DO_NOT_COPY_VALUES,&ts->Arhs);CHKERRQ(ierr);
779214bc6a2SJed Brown     }
780214bc6a2SJed Brown     *Arhs = ts->Arhs;
781214bc6a2SJed Brown   }
782214bc6a2SJed Brown   if (Brhs) {
783214bc6a2SJed Brown     if (!ts->Brhs) {
784bdb70873SJed Brown       if (A != B) {
785214bc6a2SJed Brown         ierr = MatDuplicate(B,MAT_DO_NOT_COPY_VALUES,&ts->Brhs);CHKERRQ(ierr);
786bdb70873SJed Brown       } else {
787bdb70873SJed Brown         ierr = PetscObjectReference((PetscObject)ts->Arhs);CHKERRQ(ierr);
78851699248SLisandro Dalcin         ts->Brhs = ts->Arhs;
789bdb70873SJed Brown       }
790214bc6a2SJed Brown     }
791214bc6a2SJed Brown     *Brhs = ts->Brhs;
792214bc6a2SJed Brown   }
793214bc6a2SJed Brown   PetscFunctionReturn(0);
794214bc6a2SJed Brown }
795214bc6a2SJed Brown 
796316643e7SJed Brown /*@
7970910c330SBarry Smith    TSComputeIFunction - Evaluates the DAE residual written in implicit form F(t,U,Udot)=0
798316643e7SJed Brown 
799316643e7SJed Brown    Collective on TS and Vec
800316643e7SJed Brown 
801316643e7SJed Brown    Input Parameters:
802316643e7SJed Brown +  ts - the TS context
803316643e7SJed Brown .  t - current time
8040910c330SBarry Smith .  U - state vector
8050910c330SBarry Smith .  Udot - time derivative of state vector
806214bc6a2SJed Brown -  imex - flag indicates if the method is IMEX so that the RHSFunction should be kept separate
807316643e7SJed Brown 
808316643e7SJed Brown    Output Parameter:
809316643e7SJed Brown .  Y - right hand side
810316643e7SJed Brown 
811316643e7SJed Brown    Note:
812316643e7SJed Brown    Most users should not need to explicitly call this routine, as it
813316643e7SJed Brown    is used internally within the nonlinear solvers.
814316643e7SJed Brown 
815316643e7SJed Brown    If the user did did not write their equations in implicit form, this
816316643e7SJed Brown    function recasts them in implicit form.
817316643e7SJed Brown 
818316643e7SJed Brown    Level: developer
819316643e7SJed Brown 
820316643e7SJed Brown .keywords: TS, compute
821316643e7SJed Brown 
822316643e7SJed Brown .seealso: TSSetIFunction(), TSComputeRHSFunction()
823316643e7SJed Brown @*/
8240910c330SBarry Smith PetscErrorCode TSComputeIFunction(TS ts,PetscReal t,Vec U,Vec Udot,Vec Y,PetscBool imex)
825316643e7SJed Brown {
826316643e7SJed Brown   PetscErrorCode ierr;
82724989b8cSPeter Brune   TSIFunction    ifunction;
82824989b8cSPeter Brune   TSRHSFunction  rhsfunction;
82924989b8cSPeter Brune   void           *ctx;
83024989b8cSPeter Brune   DM             dm;
831316643e7SJed Brown 
832316643e7SJed Brown   PetscFunctionBegin;
8330700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
8340910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
8350910c330SBarry Smith   PetscValidHeaderSpecific(Udot,VEC_CLASSID,4);
8360700a824SBarry Smith   PetscValidHeaderSpecific(Y,VEC_CLASSID,5);
837316643e7SJed Brown 
83824989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
83924989b8cSPeter Brune   ierr = DMTSGetIFunction(dm,&ifunction,&ctx);CHKERRQ(ierr);
8400298fd71SBarry Smith   ierr = DMTSGetRHSFunction(dm,&rhsfunction,NULL);CHKERRQ(ierr);
84124989b8cSPeter Brune 
842ce94432eSBarry Smith   if (!rhsfunction && !ifunction) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSFunction() and / or TSSetIFunction()");
843d90be118SSean Farley 
8440910c330SBarry Smith   ierr = PetscLogEventBegin(TS_FunctionEval,ts,U,Udot,Y);CHKERRQ(ierr);
84524989b8cSPeter Brune   if (ifunction) {
846316643e7SJed Brown     PetscStackPush("TS user implicit function");
8470910c330SBarry Smith     ierr = (*ifunction)(ts,t,U,Udot,Y,ctx);CHKERRQ(ierr);
848316643e7SJed Brown     PetscStackPop;
849214bc6a2SJed Brown   }
850214bc6a2SJed Brown   if (imex) {
85124989b8cSPeter Brune     if (!ifunction) {
8520910c330SBarry Smith       ierr = VecCopy(Udot,Y);CHKERRQ(ierr);
8532dd45cf8SJed Brown     }
85424989b8cSPeter Brune   } else if (rhsfunction) {
85524989b8cSPeter Brune     if (ifunction) {
856214bc6a2SJed Brown       Vec Frhs;
857214bc6a2SJed Brown       ierr = TSGetRHSVec_Private(ts,&Frhs);CHKERRQ(ierr);
8580910c330SBarry Smith       ierr = TSComputeRHSFunction(ts,t,U,Frhs);CHKERRQ(ierr);
859214bc6a2SJed Brown       ierr = VecAXPY(Y,-1,Frhs);CHKERRQ(ierr);
8602dd45cf8SJed Brown     } else {
8610910c330SBarry Smith       ierr = TSComputeRHSFunction(ts,t,U,Y);CHKERRQ(ierr);
8620910c330SBarry Smith       ierr = VecAYPX(Y,-1,Udot);CHKERRQ(ierr);
863316643e7SJed Brown     }
8644a6899ffSJed Brown   }
8650910c330SBarry Smith   ierr = PetscLogEventEnd(TS_FunctionEval,ts,U,Udot,Y);CHKERRQ(ierr);
866316643e7SJed Brown   PetscFunctionReturn(0);
867316643e7SJed Brown }
868316643e7SJed Brown 
869316643e7SJed Brown /*@
870316643e7SJed Brown    TSComputeIJacobian - Evaluates the Jacobian of the DAE
871316643e7SJed Brown 
872316643e7SJed Brown    Collective on TS and Vec
873316643e7SJed Brown 
874316643e7SJed Brown    Input
875316643e7SJed Brown       Input Parameters:
876316643e7SJed Brown +  ts - the TS context
877316643e7SJed Brown .  t - current timestep
8780910c330SBarry Smith .  U - state vector
8790910c330SBarry Smith .  Udot - time derivative of state vector
880214bc6a2SJed Brown .  shift - shift to apply, see note below
881214bc6a2SJed Brown -  imex - flag indicates if the method is IMEX so that the RHSJacobian should be kept separate
882316643e7SJed Brown 
883316643e7SJed Brown    Output Parameters:
884316643e7SJed Brown +  A - Jacobian matrix
885316643e7SJed Brown .  B - optional preconditioning matrix
886316643e7SJed Brown -  flag - flag indicating matrix structure
887316643e7SJed Brown 
888316643e7SJed Brown    Notes:
8890910c330SBarry Smith    If F(t,U,Udot)=0 is the DAE, the required Jacobian is
890316643e7SJed Brown 
8910910c330SBarry Smith    dF/dU + shift*dF/dUdot
892316643e7SJed Brown 
893316643e7SJed Brown    Most users should not need to explicitly call this routine, as it
894316643e7SJed Brown    is used internally within the nonlinear solvers.
895316643e7SJed Brown 
896316643e7SJed Brown    Level: developer
897316643e7SJed Brown 
898316643e7SJed Brown .keywords: TS, compute, Jacobian, matrix
899316643e7SJed Brown 
900316643e7SJed Brown .seealso:  TSSetIJacobian()
90163495f91SJed Brown @*/
902d1e9a80fSBarry Smith PetscErrorCode TSComputeIJacobian(TS ts,PetscReal t,Vec U,Vec Udot,PetscReal shift,Mat A,Mat B,PetscBool imex)
903316643e7SJed Brown {
904316643e7SJed Brown   PetscErrorCode ierr;
90524989b8cSPeter Brune   TSIJacobian    ijacobian;
90624989b8cSPeter Brune   TSRHSJacobian  rhsjacobian;
90724989b8cSPeter Brune   DM             dm;
90824989b8cSPeter Brune   void           *ctx;
909316643e7SJed Brown 
910316643e7SJed Brown   PetscFunctionBegin;
9110700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
9120910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
9130910c330SBarry Smith   PetscValidHeaderSpecific(Udot,VEC_CLASSID,4);
914316643e7SJed Brown   PetscValidPointer(A,6);
91594ab13aaSBarry Smith   PetscValidHeaderSpecific(A,MAT_CLASSID,6);
916316643e7SJed Brown   PetscValidPointer(B,7);
91794ab13aaSBarry Smith   PetscValidHeaderSpecific(B,MAT_CLASSID,7);
91824989b8cSPeter Brune 
91924989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
92024989b8cSPeter Brune   ierr = DMTSGetIJacobian(dm,&ijacobian,&ctx);CHKERRQ(ierr);
9210298fd71SBarry Smith   ierr = DMTSGetRHSJacobian(dm,&rhsjacobian,NULL);CHKERRQ(ierr);
92224989b8cSPeter Brune 
923ce94432eSBarry Smith   if (!rhsjacobian && !ijacobian) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSJacobian() and / or TSSetIJacobian()");
924316643e7SJed Brown 
92594ab13aaSBarry Smith   ierr = PetscLogEventBegin(TS_JacobianEval,ts,U,A,B);CHKERRQ(ierr);
92624989b8cSPeter Brune   if (ijacobian) {
9276cd88445SBarry Smith     PetscBool missing;
928316643e7SJed Brown     PetscStackPush("TS user implicit Jacobian");
929d1e9a80fSBarry Smith     ierr = (*ijacobian)(ts,t,U,Udot,shift,A,B,ctx);CHKERRQ(ierr);
930316643e7SJed Brown     PetscStackPop;
9316cd88445SBarry Smith     if (A) {
9326cd88445SBarry Smith       ierr = MatMissingDiagonal(A,&missing,NULL);CHKERRQ(ierr);
9336cd88445SBarry Smith       if (missing) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Amat passed to TSSetIJacobian() must have all diagonal entries set, if they are zero you must still set them with a zero value");
9346cd88445SBarry Smith     }
9356cd88445SBarry Smith     if (B && B != A) {
9366cd88445SBarry Smith       ierr = MatMissingDiagonal(B,&missing,NULL);CHKERRQ(ierr);
9376cd88445SBarry Smith       if (missing) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Bmat passed to TSSetIJacobian() must have all diagonal entries set, if they are zero you must still set them with a zero value");
9386cd88445SBarry Smith     }
9394a6899ffSJed Brown   }
940214bc6a2SJed Brown   if (imex) {
941b5abc632SBarry Smith     if (!ijacobian) {  /* system was written as Udot = G(t,U) */
9424c26be97Sstefano_zampini       PetscBool assembled;
94394ab13aaSBarry Smith       ierr = MatZeroEntries(A);CHKERRQ(ierr);
9444c26be97Sstefano_zampini       ierr = MatAssembled(A,&assembled);CHKERRQ(ierr);
9454c26be97Sstefano_zampini       if (!assembled) {
9464c26be97Sstefano_zampini         ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
9474c26be97Sstefano_zampini         ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
9484c26be97Sstefano_zampini       }
94994ab13aaSBarry Smith       ierr = MatShift(A,shift);CHKERRQ(ierr);
95094ab13aaSBarry Smith       if (A != B) {
95194ab13aaSBarry Smith         ierr = MatZeroEntries(B);CHKERRQ(ierr);
9524c26be97Sstefano_zampini         ierr = MatAssembled(B,&assembled);CHKERRQ(ierr);
9534c26be97Sstefano_zampini         if (!assembled) {
9544c26be97Sstefano_zampini           ierr = MatAssemblyBegin(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
9554c26be97Sstefano_zampini           ierr = MatAssemblyEnd(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
9564c26be97Sstefano_zampini         }
95794ab13aaSBarry Smith         ierr = MatShift(B,shift);CHKERRQ(ierr);
958214bc6a2SJed Brown       }
959214bc6a2SJed Brown     }
960214bc6a2SJed Brown   } else {
961e1244c69SJed Brown     Mat Arhs = NULL,Brhs = NULL;
962e1244c69SJed Brown     if (rhsjacobian) {
963214bc6a2SJed Brown       ierr = TSGetRHSMats_Private(ts,&Arhs,&Brhs);CHKERRQ(ierr);
964d1e9a80fSBarry Smith       ierr = TSComputeRHSJacobian(ts,t,U,Arhs,Brhs);CHKERRQ(ierr);
965e1244c69SJed Brown     }
96694ab13aaSBarry Smith     if (Arhs == A) {           /* No IJacobian, so we only have the RHS matrix */
967e1244c69SJed Brown       ts->rhsjacobian.scale = -1;
968e1244c69SJed Brown       ts->rhsjacobian.shift = shift;
96994ab13aaSBarry Smith       ierr = MatScale(A,-1);CHKERRQ(ierr);
97094ab13aaSBarry Smith       ierr = MatShift(A,shift);CHKERRQ(ierr);
97194ab13aaSBarry Smith       if (A != B) {
97294ab13aaSBarry Smith         ierr = MatScale(B,-1);CHKERRQ(ierr);
97394ab13aaSBarry Smith         ierr = MatShift(B,shift);CHKERRQ(ierr);
974316643e7SJed Brown       }
975e1244c69SJed Brown     } else if (Arhs) {          /* Both IJacobian and RHSJacobian */
976e1244c69SJed Brown       MatStructure axpy = DIFFERENT_NONZERO_PATTERN;
977e1244c69SJed Brown       if (!ijacobian) {         /* No IJacobian provided, but we have a separate RHS matrix */
97894ab13aaSBarry Smith         ierr = MatZeroEntries(A);CHKERRQ(ierr);
97994ab13aaSBarry Smith         ierr = MatShift(A,shift);CHKERRQ(ierr);
98094ab13aaSBarry Smith         if (A != B) {
98194ab13aaSBarry Smith           ierr = MatZeroEntries(B);CHKERRQ(ierr);
98294ab13aaSBarry Smith           ierr = MatShift(B,shift);CHKERRQ(ierr);
983214bc6a2SJed Brown         }
984316643e7SJed Brown       }
98594ab13aaSBarry Smith       ierr = MatAXPY(A,-1,Arhs,axpy);CHKERRQ(ierr);
98694ab13aaSBarry Smith       if (A != B) {
98794ab13aaSBarry Smith         ierr = MatAXPY(B,-1,Brhs,axpy);CHKERRQ(ierr);
988316643e7SJed Brown       }
989316643e7SJed Brown     }
990316643e7SJed Brown   }
99194ab13aaSBarry Smith   ierr = PetscLogEventEnd(TS_JacobianEval,ts,U,A,B);CHKERRQ(ierr);
992316643e7SJed Brown   PetscFunctionReturn(0);
993316643e7SJed Brown }
994316643e7SJed Brown 
995d763cef2SBarry Smith /*@C
996d763cef2SBarry Smith     TSSetRHSFunction - Sets the routine for evaluating the function,
997b5abc632SBarry Smith     where U_t = G(t,u).
998d763cef2SBarry Smith 
9993f9fe445SBarry Smith     Logically Collective on TS
1000d763cef2SBarry Smith 
1001d763cef2SBarry Smith     Input Parameters:
1002d763cef2SBarry Smith +   ts - the TS context obtained from TSCreate()
10030298fd71SBarry Smith .   r - vector to put the computed right hand side (or NULL to have it created)
1004d763cef2SBarry Smith .   f - routine for evaluating the right-hand-side function
1005d763cef2SBarry Smith -   ctx - [optional] user-defined context for private data for the
10060298fd71SBarry Smith           function evaluation routine (may be NULL)
1007d763cef2SBarry Smith 
1008d763cef2SBarry Smith     Calling sequence of func:
100987828ca2SBarry Smith $     func (TS ts,PetscReal t,Vec u,Vec F,void *ctx);
1010d763cef2SBarry Smith 
1011d763cef2SBarry Smith +   t - current timestep
1012d763cef2SBarry Smith .   u - input vector
1013d763cef2SBarry Smith .   F - function vector
1014d763cef2SBarry Smith -   ctx - [optional] user-defined function context
1015d763cef2SBarry Smith 
1016d763cef2SBarry Smith     Level: beginner
1017d763cef2SBarry Smith 
10182bbac0d3SBarry Smith     Notes: You must call this function or TSSetIFunction() to define your ODE. You cannot use this function when solving a DAE.
10192bbac0d3SBarry Smith 
1020d763cef2SBarry Smith .keywords: TS, timestep, set, right-hand-side, function
1021d763cef2SBarry Smith 
1022ae8867d6SBarry Smith .seealso: TSSetRHSJacobian(), TSSetIJacobian(), TSSetIFunction()
1023d763cef2SBarry Smith @*/
1024089b2837SJed Brown PetscErrorCode  TSSetRHSFunction(TS ts,Vec r,PetscErrorCode (*f)(TS,PetscReal,Vec,Vec,void*),void *ctx)
1025d763cef2SBarry Smith {
1026089b2837SJed Brown   PetscErrorCode ierr;
1027089b2837SJed Brown   SNES           snes;
10280298fd71SBarry Smith   Vec            ralloc = NULL;
102924989b8cSPeter Brune   DM             dm;
1030d763cef2SBarry Smith 
1031089b2837SJed Brown   PetscFunctionBegin;
10320700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1033ca94891dSJed Brown   if (r) PetscValidHeaderSpecific(r,VEC_CLASSID,2);
103424989b8cSPeter Brune 
103524989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
103624989b8cSPeter Brune   ierr = DMTSSetRHSFunction(dm,f,ctx);CHKERRQ(ierr);
1037089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
1038e856ceecSJed Brown   if (!r && !ts->dm && ts->vec_sol) {
1039e856ceecSJed Brown     ierr = VecDuplicate(ts->vec_sol,&ralloc);CHKERRQ(ierr);
1040e856ceecSJed Brown     r = ralloc;
1041e856ceecSJed Brown   }
1042089b2837SJed Brown   ierr = SNESSetFunction(snes,r,SNESTSFormFunction,ts);CHKERRQ(ierr);
1043e856ceecSJed Brown   ierr = VecDestroy(&ralloc);CHKERRQ(ierr);
1044d763cef2SBarry Smith   PetscFunctionReturn(0);
1045d763cef2SBarry Smith }
1046d763cef2SBarry Smith 
1047ef20d060SBarry Smith /*@C
1048abd5a294SJed Brown     TSSetSolutionFunction - Provide a function that computes the solution of the ODE or DAE
1049ef20d060SBarry Smith 
1050ef20d060SBarry Smith     Logically Collective on TS
1051ef20d060SBarry Smith 
1052ef20d060SBarry Smith     Input Parameters:
1053ef20d060SBarry Smith +   ts - the TS context obtained from TSCreate()
1054ef20d060SBarry Smith .   f - routine for evaluating the solution
1055ef20d060SBarry Smith -   ctx - [optional] user-defined context for private data for the
10560298fd71SBarry Smith           function evaluation routine (may be NULL)
1057ef20d060SBarry Smith 
1058ef20d060SBarry Smith     Calling sequence of func:
1059ef20d060SBarry Smith $     func (TS ts,PetscReal t,Vec u,void *ctx);
1060ef20d060SBarry Smith 
1061ef20d060SBarry Smith +   t - current timestep
1062ef20d060SBarry Smith .   u - output vector
1063ef20d060SBarry Smith -   ctx - [optional] user-defined function context
1064ef20d060SBarry Smith 
1065abd5a294SJed Brown     Notes:
1066abd5a294SJed Brown     This routine is used for testing accuracy of time integration schemes when you already know the solution.
1067abd5a294SJed Brown     If analytic solutions are not known for your system, consider using the Method of Manufactured Solutions to
1068abd5a294SJed Brown     create closed-form solutions with non-physical forcing terms.
1069abd5a294SJed Brown 
10704f09c107SBarry Smith     For low-dimensional problems solved in serial, such as small discrete systems, TSMonitorLGError() can be used to monitor the error history.
1071abd5a294SJed Brown 
1072ef20d060SBarry Smith     Level: beginner
1073ef20d060SBarry Smith 
1074ef20d060SBarry Smith .keywords: TS, timestep, set, right-hand-side, function
1075ef20d060SBarry Smith 
10769b7cd975SBarry Smith .seealso: TSSetRHSJacobian(), TSSetIJacobian(), TSComputeSolutionFunction(), TSSetForcingFunction()
1077ef20d060SBarry Smith @*/
1078ef20d060SBarry Smith PetscErrorCode  TSSetSolutionFunction(TS ts,PetscErrorCode (*f)(TS,PetscReal,Vec,void*),void *ctx)
1079ef20d060SBarry Smith {
1080ef20d060SBarry Smith   PetscErrorCode ierr;
1081ef20d060SBarry Smith   DM             dm;
1082ef20d060SBarry Smith 
1083ef20d060SBarry Smith   PetscFunctionBegin;
1084ef20d060SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1085ef20d060SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1086ef20d060SBarry Smith   ierr = DMTSSetSolutionFunction(dm,f,ctx);CHKERRQ(ierr);
1087ef20d060SBarry Smith   PetscFunctionReturn(0);
1088ef20d060SBarry Smith }
1089ef20d060SBarry Smith 
10909b7cd975SBarry Smith /*@C
10919b7cd975SBarry Smith     TSSetForcingFunction - Provide a function that computes a forcing term for a ODE or PDE
10929b7cd975SBarry Smith 
10939b7cd975SBarry Smith     Logically Collective on TS
10949b7cd975SBarry Smith 
10959b7cd975SBarry Smith     Input Parameters:
10969b7cd975SBarry Smith +   ts - the TS context obtained from TSCreate()
1097e162b725SBarry Smith .   func - routine for evaluating the forcing function
10989b7cd975SBarry Smith -   ctx - [optional] user-defined context for private data for the
10990298fd71SBarry Smith           function evaluation routine (may be NULL)
11009b7cd975SBarry Smith 
11019b7cd975SBarry Smith     Calling sequence of func:
1102e162b725SBarry Smith $     func (TS ts,PetscReal t,Vec f,void *ctx);
11039b7cd975SBarry Smith 
11049b7cd975SBarry Smith +   t - current timestep
1105e162b725SBarry Smith .   f - output vector
11069b7cd975SBarry Smith -   ctx - [optional] user-defined function context
11079b7cd975SBarry Smith 
11089b7cd975SBarry Smith     Notes:
11099b7cd975SBarry Smith     This routine is useful for testing accuracy of time integration schemes when using the Method of Manufactured Solutions to
1110e162b725SBarry Smith     create closed-form solutions with a non-physical forcing term. It allows you to use the Method of Manufactored Solution without directly editing the
1111e162b725SBarry Smith     definition of the problem you are solving and hence possibly introducing bugs.
1112e162b725SBarry Smith 
1113e162b725SBarry Smith     This replaces the ODE F(u,u_t,t) = 0 the TS is solving with F(u,u_t,t) - func(t) = 0
1114e162b725SBarry Smith 
1115e162b725SBarry Smith     This forcing function does not depend on the solution to the equations, it can only depend on spatial location, time, and possibly parameters, the
1116e162b725SBarry Smith     parameters can be passed in the ctx variable.
11179b7cd975SBarry Smith 
11189b7cd975SBarry Smith     For low-dimensional problems solved in serial, such as small discrete systems, TSMonitorLGError() can be used to monitor the error history.
11199b7cd975SBarry Smith 
11209b7cd975SBarry Smith     Level: beginner
11219b7cd975SBarry Smith 
11229b7cd975SBarry Smith .keywords: TS, timestep, set, right-hand-side, function
11239b7cd975SBarry Smith 
11249b7cd975SBarry Smith .seealso: TSSetRHSJacobian(), TSSetIJacobian(), TSComputeSolutionFunction(), TSSetSolutionFunction()
11259b7cd975SBarry Smith @*/
1126e162b725SBarry Smith PetscErrorCode  TSSetForcingFunction(TS ts,TSForcingFunction func,void *ctx)
11279b7cd975SBarry Smith {
11289b7cd975SBarry Smith   PetscErrorCode ierr;
11299b7cd975SBarry Smith   DM             dm;
11309b7cd975SBarry Smith 
11319b7cd975SBarry Smith   PetscFunctionBegin;
11329b7cd975SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
11339b7cd975SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1134e162b725SBarry Smith   ierr = DMTSSetForcingFunction(dm,func,ctx);CHKERRQ(ierr);
11359b7cd975SBarry Smith   PetscFunctionReturn(0);
11369b7cd975SBarry Smith }
11379b7cd975SBarry Smith 
1138d763cef2SBarry Smith /*@C
1139f7ab8db6SBarry Smith    TSSetRHSJacobian - Sets the function to compute the Jacobian of G,
1140b5abc632SBarry Smith    where U_t = G(U,t), as well as the location to store the matrix.
1141d763cef2SBarry Smith 
11423f9fe445SBarry Smith    Logically Collective on TS
1143d763cef2SBarry Smith 
1144d763cef2SBarry Smith    Input Parameters:
1145d763cef2SBarry Smith +  ts  - the TS context obtained from TSCreate()
1146e5d3d808SBarry Smith .  Amat - (approximate) Jacobian matrix
1147e5d3d808SBarry Smith .  Pmat - matrix from which preconditioner is to be constructed (usually the same as Amat)
1148d763cef2SBarry Smith .  f   - the Jacobian evaluation routine
1149d763cef2SBarry Smith -  ctx - [optional] user-defined context for private data for the
11500298fd71SBarry Smith          Jacobian evaluation routine (may be NULL)
1151d763cef2SBarry Smith 
1152f7ab8db6SBarry Smith    Calling sequence of f:
1153ae8867d6SBarry Smith $     func (TS ts,PetscReal t,Vec u,Mat A,Mat B,void *ctx);
1154d763cef2SBarry Smith 
1155d763cef2SBarry Smith +  t - current timestep
1156d763cef2SBarry Smith .  u - input vector
1157e5d3d808SBarry Smith .  Amat - (approximate) Jacobian matrix
1158e5d3d808SBarry Smith .  Pmat - matrix from which preconditioner is to be constructed (usually the same as Amat)
1159d763cef2SBarry Smith -  ctx - [optional] user-defined context for matrix evaluation routine
1160d763cef2SBarry Smith 
11616cd88445SBarry Smith    Notes:
11626cd88445SBarry Smith    You must set all the diagonal entries of the matrices, if they are zero you must still set them with a zero value
11636cd88445SBarry Smith 
11646cd88445SBarry Smith    The TS solver may modify the nonzero structure and the entries of the matrices Amat and Pmat between the calls to f()
1165ca5f011dSBarry Smith    You should not assume the values are the same in the next call to f() as you set them in the previous call.
1166d763cef2SBarry Smith 
1167d763cef2SBarry Smith    Level: beginner
1168d763cef2SBarry Smith 
1169d763cef2SBarry Smith .keywords: TS, timestep, set, right-hand-side, Jacobian
1170d763cef2SBarry Smith 
1171ae8867d6SBarry Smith .seealso: SNESComputeJacobianDefaultColor(), TSSetRHSFunction(), TSRHSJacobianSetReuse(), TSSetIJacobian()
1172d763cef2SBarry Smith 
1173d763cef2SBarry Smith @*/
1174e5d3d808SBarry Smith PetscErrorCode  TSSetRHSJacobian(TS ts,Mat Amat,Mat Pmat,TSRHSJacobian f,void *ctx)
1175d763cef2SBarry Smith {
1176277b19d0SLisandro Dalcin   PetscErrorCode ierr;
1177089b2837SJed Brown   SNES           snes;
117824989b8cSPeter Brune   DM             dm;
117924989b8cSPeter Brune   TSIJacobian    ijacobian;
1180277b19d0SLisandro Dalcin 
1181d763cef2SBarry Smith   PetscFunctionBegin;
11820700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1183e5d3d808SBarry Smith   if (Amat) PetscValidHeaderSpecific(Amat,MAT_CLASSID,2);
1184e5d3d808SBarry Smith   if (Pmat) PetscValidHeaderSpecific(Pmat,MAT_CLASSID,3);
1185e5d3d808SBarry Smith   if (Amat) PetscCheckSameComm(ts,1,Amat,2);
1186e5d3d808SBarry Smith   if (Pmat) PetscCheckSameComm(ts,1,Pmat,3);
1187d763cef2SBarry Smith 
118824989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
118924989b8cSPeter Brune   ierr = DMTSSetRHSJacobian(dm,f,ctx);CHKERRQ(ierr);
1190e1244c69SJed Brown   if (f == TSComputeRHSJacobianConstant) {
1191e1244c69SJed Brown     /* Handle this case automatically for the user; otherwise user should call themselves. */
1192e1244c69SJed Brown     ierr = TSRHSJacobianSetReuse(ts,PETSC_TRUE);CHKERRQ(ierr);
1193e1244c69SJed Brown   }
11940298fd71SBarry Smith   ierr = DMTSGetIJacobian(dm,&ijacobian,NULL);CHKERRQ(ierr);
1195089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
11965f659677SPeter Brune   if (!ijacobian) {
1197e5d3d808SBarry Smith     ierr = SNESSetJacobian(snes,Amat,Pmat,SNESTSFormJacobian,ts);CHKERRQ(ierr);
11980e4ef248SJed Brown   }
1199e5d3d808SBarry Smith   if (Amat) {
1200e5d3d808SBarry Smith     ierr = PetscObjectReference((PetscObject)Amat);CHKERRQ(ierr);
12010e4ef248SJed Brown     ierr = MatDestroy(&ts->Arhs);CHKERRQ(ierr);
1202e5d3d808SBarry Smith     ts->Arhs = Amat;
12030e4ef248SJed Brown   }
1204e5d3d808SBarry Smith   if (Pmat) {
1205e5d3d808SBarry Smith     ierr = PetscObjectReference((PetscObject)Pmat);CHKERRQ(ierr);
12060e4ef248SJed Brown     ierr = MatDestroy(&ts->Brhs);CHKERRQ(ierr);
1207e5d3d808SBarry Smith     ts->Brhs = Pmat;
12080e4ef248SJed Brown   }
1209d763cef2SBarry Smith   PetscFunctionReturn(0);
1210d763cef2SBarry Smith }
1211d763cef2SBarry Smith 
1212316643e7SJed Brown 
1213316643e7SJed Brown /*@C
1214b5abc632SBarry Smith    TSSetIFunction - Set the function to compute F(t,U,U_t) where F() = 0 is the DAE to be solved.
1215316643e7SJed Brown 
12163f9fe445SBarry Smith    Logically Collective on TS
1217316643e7SJed Brown 
1218316643e7SJed Brown    Input Parameters:
1219316643e7SJed Brown +  ts  - the TS context obtained from TSCreate()
12200298fd71SBarry Smith .  r   - vector to hold the residual (or NULL to have it created internally)
1221316643e7SJed Brown .  f   - the function evaluation routine
12220298fd71SBarry Smith -  ctx - user-defined context for private data for the function evaluation routine (may be NULL)
1223316643e7SJed Brown 
1224316643e7SJed Brown    Calling sequence of f:
1225316643e7SJed Brown $  f(TS ts,PetscReal t,Vec u,Vec u_t,Vec F,ctx);
1226316643e7SJed Brown 
1227316643e7SJed Brown +  t   - time at step/stage being solved
1228316643e7SJed Brown .  u   - state vector
1229316643e7SJed Brown .  u_t - time derivative of state vector
1230316643e7SJed Brown .  F   - function vector
1231316643e7SJed Brown -  ctx - [optional] user-defined context for matrix evaluation routine
1232316643e7SJed Brown 
1233316643e7SJed Brown    Important:
12342bbac0d3SBarry Smith    The user MUST call either this routine or TSSetRHSFunction() to define the ODE.  When solving DAEs you must use this function.
1235316643e7SJed Brown 
1236316643e7SJed Brown    Level: beginner
1237316643e7SJed Brown 
1238316643e7SJed Brown .keywords: TS, timestep, set, DAE, Jacobian
1239316643e7SJed Brown 
1240d6cbdb99SBarry Smith .seealso: TSSetRHSJacobian(), TSSetRHSFunction(), TSSetIJacobian()
1241316643e7SJed Brown @*/
124251699248SLisandro Dalcin PetscErrorCode  TSSetIFunction(TS ts,Vec r,TSIFunction f,void *ctx)
1243316643e7SJed Brown {
1244089b2837SJed Brown   PetscErrorCode ierr;
1245089b2837SJed Brown   SNES           snes;
124651699248SLisandro Dalcin   Vec            ralloc = NULL;
124724989b8cSPeter Brune   DM             dm;
1248316643e7SJed Brown 
1249316643e7SJed Brown   PetscFunctionBegin;
12500700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
125151699248SLisandro Dalcin   if (r) PetscValidHeaderSpecific(r,VEC_CLASSID,2);
125224989b8cSPeter Brune 
125324989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
125424989b8cSPeter Brune   ierr = DMTSSetIFunction(dm,f,ctx);CHKERRQ(ierr);
125524989b8cSPeter Brune 
1256089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
125751699248SLisandro Dalcin   if (!r && !ts->dm && ts->vec_sol) {
125851699248SLisandro Dalcin     ierr = VecDuplicate(ts->vec_sol,&ralloc);CHKERRQ(ierr);
125951699248SLisandro Dalcin     r  = ralloc;
1260e856ceecSJed Brown   }
126151699248SLisandro Dalcin   ierr = SNESSetFunction(snes,r,SNESTSFormFunction,ts);CHKERRQ(ierr);
126251699248SLisandro Dalcin   ierr = VecDestroy(&ralloc);CHKERRQ(ierr);
1263089b2837SJed Brown   PetscFunctionReturn(0);
1264089b2837SJed Brown }
1265089b2837SJed Brown 
1266089b2837SJed Brown /*@C
1267089b2837SJed Brown    TSGetIFunction - Returns the vector where the implicit residual is stored and the function/contex to compute it.
1268089b2837SJed Brown 
1269089b2837SJed Brown    Not Collective
1270089b2837SJed Brown 
1271089b2837SJed Brown    Input Parameter:
1272089b2837SJed Brown .  ts - the TS context
1273089b2837SJed Brown 
1274089b2837SJed Brown    Output Parameter:
12750298fd71SBarry Smith +  r - vector to hold residual (or NULL)
12760298fd71SBarry Smith .  func - the function to compute residual (or NULL)
12770298fd71SBarry Smith -  ctx - the function context (or NULL)
1278089b2837SJed Brown 
1279089b2837SJed Brown    Level: advanced
1280089b2837SJed Brown 
1281089b2837SJed Brown .keywords: TS, nonlinear, get, function
1282089b2837SJed Brown 
1283089b2837SJed Brown .seealso: TSSetIFunction(), SNESGetFunction()
1284089b2837SJed Brown @*/
1285089b2837SJed Brown PetscErrorCode TSGetIFunction(TS ts,Vec *r,TSIFunction *func,void **ctx)
1286089b2837SJed Brown {
1287089b2837SJed Brown   PetscErrorCode ierr;
1288089b2837SJed Brown   SNES           snes;
128924989b8cSPeter Brune   DM             dm;
1290089b2837SJed Brown 
1291089b2837SJed Brown   PetscFunctionBegin;
1292089b2837SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1293089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
12940298fd71SBarry Smith   ierr = SNESGetFunction(snes,r,NULL,NULL);CHKERRQ(ierr);
129524989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
129624989b8cSPeter Brune   ierr = DMTSGetIFunction(dm,func,ctx);CHKERRQ(ierr);
1297089b2837SJed Brown   PetscFunctionReturn(0);
1298089b2837SJed Brown }
1299089b2837SJed Brown 
1300089b2837SJed Brown /*@C
1301089b2837SJed Brown    TSGetRHSFunction - Returns the vector where the right hand side is stored and the function/context to compute it.
1302089b2837SJed Brown 
1303089b2837SJed Brown    Not Collective
1304089b2837SJed Brown 
1305089b2837SJed Brown    Input Parameter:
1306089b2837SJed Brown .  ts - the TS context
1307089b2837SJed Brown 
1308089b2837SJed Brown    Output Parameter:
13090298fd71SBarry Smith +  r - vector to hold computed right hand side (or NULL)
13100298fd71SBarry Smith .  func - the function to compute right hand side (or NULL)
13110298fd71SBarry Smith -  ctx - the function context (or NULL)
1312089b2837SJed Brown 
1313089b2837SJed Brown    Level: advanced
1314089b2837SJed Brown 
1315089b2837SJed Brown .keywords: TS, nonlinear, get, function
1316089b2837SJed Brown 
13172bbac0d3SBarry Smith .seealso: TSSetRHSFunction(), SNESGetFunction()
1318089b2837SJed Brown @*/
1319089b2837SJed Brown PetscErrorCode TSGetRHSFunction(TS ts,Vec *r,TSRHSFunction *func,void **ctx)
1320089b2837SJed Brown {
1321089b2837SJed Brown   PetscErrorCode ierr;
1322089b2837SJed Brown   SNES           snes;
132324989b8cSPeter Brune   DM             dm;
1324089b2837SJed Brown 
1325089b2837SJed Brown   PetscFunctionBegin;
1326089b2837SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1327089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
13280298fd71SBarry Smith   ierr = SNESGetFunction(snes,r,NULL,NULL);CHKERRQ(ierr);
132924989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
133024989b8cSPeter Brune   ierr = DMTSGetRHSFunction(dm,func,ctx);CHKERRQ(ierr);
1331316643e7SJed Brown   PetscFunctionReturn(0);
1332316643e7SJed Brown }
1333316643e7SJed Brown 
1334316643e7SJed Brown /*@C
1335a4f0a591SBarry Smith    TSSetIJacobian - Set the function to compute the matrix dF/dU + a*dF/dU_t where F(t,U,U_t) is the function
1336ae8867d6SBarry Smith         provided with TSSetIFunction().
1337316643e7SJed Brown 
13383f9fe445SBarry Smith    Logically Collective on TS
1339316643e7SJed Brown 
1340316643e7SJed Brown    Input Parameters:
1341316643e7SJed Brown +  ts  - the TS context obtained from TSCreate()
1342e5d3d808SBarry Smith .  Amat - (approximate) Jacobian matrix
1343e5d3d808SBarry Smith .  Pmat - matrix used to compute preconditioner (usually the same as Amat)
1344316643e7SJed Brown .  f   - the Jacobian evaluation routine
13450298fd71SBarry Smith -  ctx - user-defined context for private data for the Jacobian evaluation routine (may be NULL)
1346316643e7SJed Brown 
1347316643e7SJed Brown    Calling sequence of f:
1348ae8867d6SBarry Smith $  f(TS ts,PetscReal t,Vec U,Vec U_t,PetscReal a,Mat Amat,Mat Pmat,void *ctx);
1349316643e7SJed Brown 
1350316643e7SJed Brown +  t    - time at step/stage being solved
13511b4a444bSJed Brown .  U    - state vector
13521b4a444bSJed Brown .  U_t  - time derivative of state vector
1353316643e7SJed Brown .  a    - shift
1354e5d3d808SBarry Smith .  Amat - (approximate) Jacobian of F(t,U,W+a*U), equivalent to dF/dU + a*dF/dU_t
1355e5d3d808SBarry Smith .  Pmat - matrix used for constructing preconditioner, usually the same as Amat
1356316643e7SJed Brown -  ctx  - [optional] user-defined context for matrix evaluation routine
1357316643e7SJed Brown 
1358316643e7SJed Brown    Notes:
1359e5d3d808SBarry Smith    The matrices Amat and Pmat are exactly the matrices that are used by SNES for the nonlinear solve.
1360316643e7SJed Brown 
1361895c21f2SBarry Smith    If you know the operator Amat has a null space you can use MatSetNullSpace() and MatSetTransposeNullSpace() to supply the null
1362895c21f2SBarry Smith    space to Amat and the KSP solvers will automatically use that null space as needed during the solution process.
1363895c21f2SBarry Smith 
1364a4f0a591SBarry Smith    The matrix dF/dU + a*dF/dU_t you provide turns out to be
1365b5abc632SBarry Smith    the Jacobian of F(t,U,W+a*U) where F(t,U,U_t) = 0 is the DAE to be solved.
1366a4f0a591SBarry Smith    The time integrator internally approximates U_t by W+a*U where the positive "shift"
1367a4f0a591SBarry Smith    a and vector W depend on the integration method, step size, and past states. For example with
1368a4f0a591SBarry Smith    the backward Euler method a = 1/dt and W = -a*U(previous timestep) so
1369a4f0a591SBarry Smith    W + a*U = a*(U - U(previous timestep)) = (U - U(previous timestep))/dt
1370a4f0a591SBarry Smith 
13716cd88445SBarry Smith    You must set all the diagonal entries of the matrices, if they are zero you must still set them with a zero value
13726cd88445SBarry Smith 
13736cd88445SBarry Smith    The TS solver may modify the nonzero structure and the entries of the matrices Amat and Pmat between the calls to f()
1374ca5f011dSBarry Smith    You should not assume the values are the same in the next call to f() as you set them in the previous call.
1375ca5f011dSBarry Smith 
1376316643e7SJed Brown    Level: beginner
1377316643e7SJed Brown 
1378316643e7SJed Brown .keywords: TS, timestep, DAE, Jacobian
1379316643e7SJed Brown 
1380ae8867d6SBarry Smith .seealso: TSSetIFunction(), TSSetRHSJacobian(), SNESComputeJacobianDefaultColor(), SNESComputeJacobianDefault(), TSSetRHSFunction()
1381316643e7SJed Brown 
1382316643e7SJed Brown @*/
1383e5d3d808SBarry Smith PetscErrorCode  TSSetIJacobian(TS ts,Mat Amat,Mat Pmat,TSIJacobian f,void *ctx)
1384316643e7SJed Brown {
1385316643e7SJed Brown   PetscErrorCode ierr;
1386089b2837SJed Brown   SNES           snes;
138724989b8cSPeter Brune   DM             dm;
1388316643e7SJed Brown 
1389316643e7SJed Brown   PetscFunctionBegin;
13900700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1391e5d3d808SBarry Smith   if (Amat) PetscValidHeaderSpecific(Amat,MAT_CLASSID,2);
1392e5d3d808SBarry Smith   if (Pmat) PetscValidHeaderSpecific(Pmat,MAT_CLASSID,3);
1393e5d3d808SBarry Smith   if (Amat) PetscCheckSameComm(ts,1,Amat,2);
1394e5d3d808SBarry Smith   if (Pmat) PetscCheckSameComm(ts,1,Pmat,3);
139524989b8cSPeter Brune 
139624989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
139724989b8cSPeter Brune   ierr = DMTSSetIJacobian(dm,f,ctx);CHKERRQ(ierr);
139824989b8cSPeter Brune 
1399089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
1400e5d3d808SBarry Smith   ierr = SNESSetJacobian(snes,Amat,Pmat,SNESTSFormJacobian,ts);CHKERRQ(ierr);
1401316643e7SJed Brown   PetscFunctionReturn(0);
1402316643e7SJed Brown }
1403316643e7SJed Brown 
1404e1244c69SJed Brown /*@
1405e1244c69SJed Brown    TSRHSJacobianSetReuse - restore RHS Jacobian before re-evaluating.  Without this flag, TS will change the sign and
1406e1244c69SJed Brown    shift the RHS Jacobian for a finite-time-step implicit solve, in which case the user function will need to recompute
1407e1244c69SJed Brown    the entire Jacobian.  The reuse flag must be set if the evaluation function will assume that the matrix entries have
1408e1244c69SJed Brown    not been changed by the TS.
1409e1244c69SJed Brown 
1410e1244c69SJed Brown    Logically Collective
1411e1244c69SJed Brown 
1412e1244c69SJed Brown    Input Arguments:
1413e1244c69SJed Brown +  ts - TS context obtained from TSCreate()
1414e1244c69SJed Brown -  reuse - PETSC_TRUE if the RHS Jacobian
1415e1244c69SJed Brown 
1416e1244c69SJed Brown    Level: intermediate
1417e1244c69SJed Brown 
1418e1244c69SJed Brown .seealso: TSSetRHSJacobian(), TSComputeRHSJacobianConstant()
1419e1244c69SJed Brown @*/
1420e1244c69SJed Brown PetscErrorCode TSRHSJacobianSetReuse(TS ts,PetscBool reuse)
1421e1244c69SJed Brown {
1422e1244c69SJed Brown   PetscFunctionBegin;
1423e1244c69SJed Brown   ts->rhsjacobian.reuse = reuse;
1424e1244c69SJed Brown   PetscFunctionReturn(0);
1425e1244c69SJed Brown }
1426e1244c69SJed Brown 
1427efe9872eSLisandro Dalcin /*@C
1428efe9872eSLisandro Dalcin    TSSetI2Function - Set the function to compute F(t,U,U_t,U_tt) where F = 0 is the DAE to be solved.
1429efe9872eSLisandro Dalcin 
1430efe9872eSLisandro Dalcin    Logically Collective on TS
1431efe9872eSLisandro Dalcin 
1432efe9872eSLisandro Dalcin    Input Parameters:
1433efe9872eSLisandro Dalcin +  ts  - the TS context obtained from TSCreate()
1434efe9872eSLisandro Dalcin .  F   - vector to hold the residual (or NULL to have it created internally)
1435efe9872eSLisandro Dalcin .  fun - the function evaluation routine
1436efe9872eSLisandro Dalcin -  ctx - user-defined context for private data for the function evaluation routine (may be NULL)
1437efe9872eSLisandro Dalcin 
1438efe9872eSLisandro Dalcin    Calling sequence of fun:
1439efe9872eSLisandro Dalcin $  fun(TS ts,PetscReal t,Vec U,Vec U_t,Vec U_tt,Vec F,ctx);
1440efe9872eSLisandro Dalcin 
1441efe9872eSLisandro Dalcin +  t    - time at step/stage being solved
1442efe9872eSLisandro Dalcin .  U    - state vector
1443efe9872eSLisandro Dalcin .  U_t  - time derivative of state vector
1444efe9872eSLisandro Dalcin .  U_tt - second time derivative of state vector
1445efe9872eSLisandro Dalcin .  F    - function vector
1446efe9872eSLisandro Dalcin -  ctx  - [optional] user-defined context for matrix evaluation routine (may be NULL)
1447efe9872eSLisandro Dalcin 
1448efe9872eSLisandro Dalcin    Level: beginner
1449efe9872eSLisandro Dalcin 
1450efe9872eSLisandro Dalcin .keywords: TS, timestep, set, ODE, DAE, Function
1451efe9872eSLisandro Dalcin 
1452efe9872eSLisandro Dalcin .seealso: TSSetI2Jacobian()
1453efe9872eSLisandro Dalcin @*/
1454efe9872eSLisandro Dalcin PetscErrorCode TSSetI2Function(TS ts,Vec F,TSI2Function fun,void *ctx)
1455efe9872eSLisandro Dalcin {
1456efe9872eSLisandro Dalcin   DM             dm;
1457efe9872eSLisandro Dalcin   PetscErrorCode ierr;
1458efe9872eSLisandro Dalcin 
1459efe9872eSLisandro Dalcin   PetscFunctionBegin;
1460efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1461efe9872eSLisandro Dalcin   if (F) PetscValidHeaderSpecific(F,VEC_CLASSID,2);
1462efe9872eSLisandro Dalcin   ierr = TSSetIFunction(ts,F,NULL,NULL);CHKERRQ(ierr);
1463efe9872eSLisandro Dalcin   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1464efe9872eSLisandro Dalcin   ierr = DMTSSetI2Function(dm,fun,ctx);CHKERRQ(ierr);
1465efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1466efe9872eSLisandro Dalcin }
1467efe9872eSLisandro Dalcin 
1468efe9872eSLisandro Dalcin /*@C
1469efe9872eSLisandro Dalcin   TSGetI2Function - Returns the vector where the implicit residual is stored and the function/contex to compute it.
1470efe9872eSLisandro Dalcin 
1471efe9872eSLisandro Dalcin   Not Collective
1472efe9872eSLisandro Dalcin 
1473efe9872eSLisandro Dalcin   Input Parameter:
1474efe9872eSLisandro Dalcin . ts - the TS context
1475efe9872eSLisandro Dalcin 
1476efe9872eSLisandro Dalcin   Output Parameter:
1477efe9872eSLisandro Dalcin + r - vector to hold residual (or NULL)
1478efe9872eSLisandro Dalcin . fun - the function to compute residual (or NULL)
1479efe9872eSLisandro Dalcin - ctx - the function context (or NULL)
1480efe9872eSLisandro Dalcin 
1481efe9872eSLisandro Dalcin   Level: advanced
1482efe9872eSLisandro Dalcin 
1483efe9872eSLisandro Dalcin .keywords: TS, nonlinear, get, function
1484efe9872eSLisandro Dalcin 
1485efe9872eSLisandro Dalcin .seealso: TSSetI2Function(), SNESGetFunction()
1486efe9872eSLisandro Dalcin @*/
1487efe9872eSLisandro Dalcin PetscErrorCode TSGetI2Function(TS ts,Vec *r,TSI2Function *fun,void **ctx)
1488efe9872eSLisandro Dalcin {
1489efe9872eSLisandro Dalcin   PetscErrorCode ierr;
1490efe9872eSLisandro Dalcin   SNES           snes;
1491efe9872eSLisandro Dalcin   DM             dm;
1492efe9872eSLisandro Dalcin 
1493efe9872eSLisandro Dalcin   PetscFunctionBegin;
1494efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1495efe9872eSLisandro Dalcin   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
1496efe9872eSLisandro Dalcin   ierr = SNESGetFunction(snes,r,NULL,NULL);CHKERRQ(ierr);
1497efe9872eSLisandro Dalcin   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1498efe9872eSLisandro Dalcin   ierr = DMTSGetI2Function(dm,fun,ctx);CHKERRQ(ierr);
1499efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1500efe9872eSLisandro Dalcin }
1501efe9872eSLisandro Dalcin 
1502efe9872eSLisandro Dalcin /*@C
1503bc77d74cSLisandro Dalcin    TSSetI2Jacobian - Set the function to compute the matrix dF/dU + v*dF/dU_t  + a*dF/dU_tt
1504efe9872eSLisandro Dalcin         where F(t,U,U_t,U_tt) is the function you provided with TSSetI2Function().
1505efe9872eSLisandro Dalcin 
1506efe9872eSLisandro Dalcin    Logically Collective on TS
1507efe9872eSLisandro Dalcin 
1508efe9872eSLisandro Dalcin    Input Parameters:
1509efe9872eSLisandro Dalcin +  ts  - the TS context obtained from TSCreate()
1510efe9872eSLisandro Dalcin .  J   - Jacobian matrix
1511efe9872eSLisandro Dalcin .  P   - preconditioning matrix for J (may be same as J)
1512efe9872eSLisandro Dalcin .  jac - the Jacobian evaluation routine
1513efe9872eSLisandro Dalcin -  ctx - user-defined context for private data for the Jacobian evaluation routine (may be NULL)
1514efe9872eSLisandro Dalcin 
1515efe9872eSLisandro Dalcin    Calling sequence of jac:
1516bc77d74cSLisandro Dalcin $  jac(TS ts,PetscReal t,Vec U,Vec U_t,Vec U_tt,PetscReal v,PetscReal a,Mat J,Mat P,void *ctx);
1517efe9872eSLisandro Dalcin 
1518efe9872eSLisandro Dalcin +  t    - time at step/stage being solved
1519efe9872eSLisandro Dalcin .  U    - state vector
1520efe9872eSLisandro Dalcin .  U_t  - time derivative of state vector
1521efe9872eSLisandro Dalcin .  U_tt - second time derivative of state vector
1522efe9872eSLisandro Dalcin .  v    - shift for U_t
1523efe9872eSLisandro Dalcin .  a    - shift for U_tt
1524efe9872eSLisandro Dalcin .  J    - Jacobian of G(U) = F(t,U,W+v*U,W'+a*U), equivalent to dF/dU + v*dF/dU_t  + a*dF/dU_tt
1525efe9872eSLisandro Dalcin .  P    - preconditioning matrix for J, may be same as J
1526efe9872eSLisandro Dalcin -  ctx  - [optional] user-defined context for matrix evaluation routine
1527efe9872eSLisandro Dalcin 
1528efe9872eSLisandro Dalcin    Notes:
1529efe9872eSLisandro Dalcin    The matrices J and P are exactly the matrices that are used by SNES for the nonlinear solve.
1530efe9872eSLisandro Dalcin 
1531efe9872eSLisandro Dalcin    The matrix dF/dU + v*dF/dU_t + a*dF/dU_tt you provide turns out to be
1532efe9872eSLisandro Dalcin    the Jacobian of G(U) = F(t,U,W+v*U,W'+a*U) where F(t,U,U_t,U_tt) = 0 is the DAE to be solved.
1533efe9872eSLisandro Dalcin    The time integrator internally approximates U_t by W+v*U and U_tt by W'+a*U  where the positive "shift"
1534bc77d74cSLisandro Dalcin    parameters 'v' and 'a' and vectors W, W' depend on the integration method, step size, and past states.
1535efe9872eSLisandro Dalcin 
1536efe9872eSLisandro Dalcin    Level: beginner
1537efe9872eSLisandro Dalcin 
1538efe9872eSLisandro Dalcin .keywords: TS, timestep, set, ODE, DAE, Jacobian
1539efe9872eSLisandro Dalcin 
1540efe9872eSLisandro Dalcin .seealso: TSSetI2Function()
1541efe9872eSLisandro Dalcin @*/
1542efe9872eSLisandro Dalcin PetscErrorCode TSSetI2Jacobian(TS ts,Mat J,Mat P,TSI2Jacobian jac,void *ctx)
1543efe9872eSLisandro Dalcin {
1544efe9872eSLisandro Dalcin   DM             dm;
1545efe9872eSLisandro Dalcin   PetscErrorCode ierr;
1546efe9872eSLisandro Dalcin 
1547efe9872eSLisandro Dalcin   PetscFunctionBegin;
1548efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1549efe9872eSLisandro Dalcin   if (J) PetscValidHeaderSpecific(J,MAT_CLASSID,2);
1550efe9872eSLisandro Dalcin   if (P) PetscValidHeaderSpecific(P,MAT_CLASSID,3);
1551efe9872eSLisandro Dalcin   ierr = TSSetIJacobian(ts,J,P,NULL,NULL);CHKERRQ(ierr);
1552efe9872eSLisandro Dalcin   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1553efe9872eSLisandro Dalcin   ierr = DMTSSetI2Jacobian(dm,jac,ctx);CHKERRQ(ierr);
1554efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1555efe9872eSLisandro Dalcin }
1556efe9872eSLisandro Dalcin 
1557efe9872eSLisandro Dalcin /*@C
1558efe9872eSLisandro Dalcin   TSGetI2Jacobian - Returns the implicit Jacobian at the present timestep.
1559efe9872eSLisandro Dalcin 
1560efe9872eSLisandro Dalcin   Not Collective, but parallel objects are returned if TS is parallel
1561efe9872eSLisandro Dalcin 
1562efe9872eSLisandro Dalcin   Input Parameter:
1563efe9872eSLisandro Dalcin . ts  - The TS context obtained from TSCreate()
1564efe9872eSLisandro Dalcin 
1565efe9872eSLisandro Dalcin   Output Parameters:
1566efe9872eSLisandro Dalcin + J  - The (approximate) Jacobian of F(t,U,U_t,U_tt)
1567efe9872eSLisandro Dalcin . P - The matrix from which the preconditioner is constructed, often the same as J
1568efe9872eSLisandro Dalcin . jac - The function to compute the Jacobian matrices
1569efe9872eSLisandro Dalcin - ctx - User-defined context for Jacobian evaluation routine
1570efe9872eSLisandro Dalcin 
1571efe9872eSLisandro Dalcin   Notes: You can pass in NULL for any return argument you do not need.
1572efe9872eSLisandro Dalcin 
1573efe9872eSLisandro Dalcin   Level: advanced
1574efe9872eSLisandro Dalcin 
1575efe9872eSLisandro Dalcin .seealso: TSGetTimeStep(), TSGetMatrices(), TSGetTime(), TSGetTimeStepNumber()
1576efe9872eSLisandro Dalcin 
1577efe9872eSLisandro Dalcin .keywords: TS, timestep, get, matrix, Jacobian
1578efe9872eSLisandro Dalcin @*/
1579efe9872eSLisandro Dalcin PetscErrorCode  TSGetI2Jacobian(TS ts,Mat *J,Mat *P,TSI2Jacobian *jac,void **ctx)
1580efe9872eSLisandro Dalcin {
1581efe9872eSLisandro Dalcin   PetscErrorCode ierr;
1582efe9872eSLisandro Dalcin   SNES           snes;
1583efe9872eSLisandro Dalcin   DM             dm;
1584efe9872eSLisandro Dalcin 
1585efe9872eSLisandro Dalcin   PetscFunctionBegin;
1586efe9872eSLisandro Dalcin   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
1587efe9872eSLisandro Dalcin   ierr = SNESSetUpMatrices(snes);CHKERRQ(ierr);
1588efe9872eSLisandro Dalcin   ierr = SNESGetJacobian(snes,J,P,NULL,NULL);CHKERRQ(ierr);
1589efe9872eSLisandro Dalcin   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1590efe9872eSLisandro Dalcin   ierr = DMTSGetI2Jacobian(dm,jac,ctx);CHKERRQ(ierr);
1591efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1592efe9872eSLisandro Dalcin }
1593efe9872eSLisandro Dalcin 
1594efe9872eSLisandro Dalcin /*@
1595efe9872eSLisandro Dalcin   TSComputeI2Function - Evaluates the DAE residual written in implicit form F(t,U,U_t,U_tt) = 0
1596efe9872eSLisandro Dalcin 
1597efe9872eSLisandro Dalcin   Collective on TS and Vec
1598efe9872eSLisandro Dalcin 
1599efe9872eSLisandro Dalcin   Input Parameters:
1600efe9872eSLisandro Dalcin + ts - the TS context
1601efe9872eSLisandro Dalcin . t - current time
1602efe9872eSLisandro Dalcin . U - state vector
1603efe9872eSLisandro Dalcin . V - time derivative of state vector (U_t)
1604efe9872eSLisandro Dalcin - A - second time derivative of state vector (U_tt)
1605efe9872eSLisandro Dalcin 
1606efe9872eSLisandro Dalcin   Output Parameter:
1607efe9872eSLisandro Dalcin . F - the residual vector
1608efe9872eSLisandro Dalcin 
1609efe9872eSLisandro Dalcin   Note:
1610efe9872eSLisandro Dalcin   Most users should not need to explicitly call this routine, as it
1611efe9872eSLisandro Dalcin   is used internally within the nonlinear solvers.
1612efe9872eSLisandro Dalcin 
1613efe9872eSLisandro Dalcin   Level: developer
1614efe9872eSLisandro Dalcin 
1615efe9872eSLisandro Dalcin .keywords: TS, compute, function, vector
1616efe9872eSLisandro Dalcin 
1617efe9872eSLisandro Dalcin .seealso: TSSetI2Function()
1618efe9872eSLisandro Dalcin @*/
1619efe9872eSLisandro Dalcin PetscErrorCode TSComputeI2Function(TS ts,PetscReal t,Vec U,Vec V,Vec A,Vec F)
1620efe9872eSLisandro Dalcin {
1621efe9872eSLisandro Dalcin   DM             dm;
1622efe9872eSLisandro Dalcin   TSI2Function   I2Function;
1623efe9872eSLisandro Dalcin   void           *ctx;
1624efe9872eSLisandro Dalcin   TSRHSFunction  rhsfunction;
1625efe9872eSLisandro Dalcin   PetscErrorCode ierr;
1626efe9872eSLisandro Dalcin 
1627efe9872eSLisandro Dalcin   PetscFunctionBegin;
1628efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1629efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
1630efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(V,VEC_CLASSID,4);
1631efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(A,VEC_CLASSID,5);
1632efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(F,VEC_CLASSID,6);
1633efe9872eSLisandro Dalcin 
1634efe9872eSLisandro Dalcin   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1635efe9872eSLisandro Dalcin   ierr = DMTSGetI2Function(dm,&I2Function,&ctx);CHKERRQ(ierr);
1636efe9872eSLisandro Dalcin   ierr = DMTSGetRHSFunction(dm,&rhsfunction,NULL);CHKERRQ(ierr);
1637efe9872eSLisandro Dalcin 
1638efe9872eSLisandro Dalcin   if (!I2Function) {
1639efe9872eSLisandro Dalcin     ierr = TSComputeIFunction(ts,t,U,A,F,PETSC_FALSE);CHKERRQ(ierr);
1640efe9872eSLisandro Dalcin     PetscFunctionReturn(0);
1641efe9872eSLisandro Dalcin   }
1642efe9872eSLisandro Dalcin 
1643efe9872eSLisandro Dalcin   ierr = PetscLogEventBegin(TS_FunctionEval,ts,U,V,F);CHKERRQ(ierr);
1644efe9872eSLisandro Dalcin 
1645efe9872eSLisandro Dalcin   PetscStackPush("TS user implicit function");
1646efe9872eSLisandro Dalcin   ierr = I2Function(ts,t,U,V,A,F,ctx);CHKERRQ(ierr);
1647efe9872eSLisandro Dalcin   PetscStackPop;
1648efe9872eSLisandro Dalcin 
1649efe9872eSLisandro Dalcin   if (rhsfunction) {
1650efe9872eSLisandro Dalcin     Vec Frhs;
1651efe9872eSLisandro Dalcin     ierr = TSGetRHSVec_Private(ts,&Frhs);CHKERRQ(ierr);
1652efe9872eSLisandro Dalcin     ierr = TSComputeRHSFunction(ts,t,U,Frhs);CHKERRQ(ierr);
1653efe9872eSLisandro Dalcin     ierr = VecAXPY(F,-1,Frhs);CHKERRQ(ierr);
1654efe9872eSLisandro Dalcin   }
1655efe9872eSLisandro Dalcin 
1656efe9872eSLisandro Dalcin   ierr = PetscLogEventEnd(TS_FunctionEval,ts,U,V,F);CHKERRQ(ierr);
1657efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1658efe9872eSLisandro Dalcin }
1659efe9872eSLisandro Dalcin 
1660efe9872eSLisandro Dalcin /*@
1661efe9872eSLisandro Dalcin   TSComputeI2Jacobian - Evaluates the Jacobian of the DAE
1662efe9872eSLisandro Dalcin 
1663efe9872eSLisandro Dalcin   Collective on TS and Vec
1664efe9872eSLisandro Dalcin 
1665efe9872eSLisandro Dalcin   Input Parameters:
1666efe9872eSLisandro Dalcin + ts - the TS context
1667efe9872eSLisandro Dalcin . t - current timestep
1668efe9872eSLisandro Dalcin . U - state vector
1669efe9872eSLisandro Dalcin . V - time derivative of state vector
1670efe9872eSLisandro Dalcin . A - second time derivative of state vector
1671efe9872eSLisandro Dalcin . shiftV - shift to apply, see note below
1672efe9872eSLisandro Dalcin - shiftA - shift to apply, see note below
1673efe9872eSLisandro Dalcin 
1674efe9872eSLisandro Dalcin   Output Parameters:
1675efe9872eSLisandro Dalcin + J - Jacobian matrix
1676efe9872eSLisandro Dalcin - P - optional preconditioning matrix
1677efe9872eSLisandro Dalcin 
1678efe9872eSLisandro Dalcin   Notes:
1679efe9872eSLisandro Dalcin   If F(t,U,V,A)=0 is the DAE, the required Jacobian is
1680efe9872eSLisandro Dalcin 
1681efe9872eSLisandro Dalcin   dF/dU + shiftV*dF/dV + shiftA*dF/dA
1682efe9872eSLisandro Dalcin 
1683efe9872eSLisandro Dalcin   Most users should not need to explicitly call this routine, as it
1684efe9872eSLisandro Dalcin   is used internally within the nonlinear solvers.
1685efe9872eSLisandro Dalcin 
1686efe9872eSLisandro Dalcin   Level: developer
1687efe9872eSLisandro Dalcin 
1688efe9872eSLisandro Dalcin .keywords: TS, compute, Jacobian, matrix
1689efe9872eSLisandro Dalcin 
1690efe9872eSLisandro Dalcin .seealso:  TSSetI2Jacobian()
1691efe9872eSLisandro Dalcin @*/
1692efe9872eSLisandro Dalcin PetscErrorCode TSComputeI2Jacobian(TS ts,PetscReal t,Vec U,Vec V,Vec A,PetscReal shiftV,PetscReal shiftA,Mat J,Mat P)
1693efe9872eSLisandro Dalcin {
1694efe9872eSLisandro Dalcin   DM             dm;
1695efe9872eSLisandro Dalcin   TSI2Jacobian   I2Jacobian;
1696efe9872eSLisandro Dalcin   void           *ctx;
1697efe9872eSLisandro Dalcin   TSRHSJacobian  rhsjacobian;
1698efe9872eSLisandro Dalcin   PetscErrorCode ierr;
1699efe9872eSLisandro Dalcin 
1700efe9872eSLisandro Dalcin   PetscFunctionBegin;
1701efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1702efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
1703efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(V,VEC_CLASSID,4);
1704efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(A,VEC_CLASSID,5);
1705efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(J,MAT_CLASSID,8);
1706efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(P,MAT_CLASSID,9);
1707efe9872eSLisandro Dalcin 
1708efe9872eSLisandro Dalcin   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1709efe9872eSLisandro Dalcin   ierr = DMTSGetI2Jacobian(dm,&I2Jacobian,&ctx);CHKERRQ(ierr);
1710efe9872eSLisandro Dalcin   ierr = DMTSGetRHSJacobian(dm,&rhsjacobian,NULL);CHKERRQ(ierr);
1711efe9872eSLisandro Dalcin 
1712efe9872eSLisandro Dalcin   if (!I2Jacobian) {
1713efe9872eSLisandro Dalcin     ierr = TSComputeIJacobian(ts,t,U,A,shiftA,J,P,PETSC_FALSE);CHKERRQ(ierr);
1714efe9872eSLisandro Dalcin     PetscFunctionReturn(0);
1715efe9872eSLisandro Dalcin   }
1716efe9872eSLisandro Dalcin 
1717efe9872eSLisandro Dalcin   ierr = PetscLogEventBegin(TS_JacobianEval,ts,U,J,P);CHKERRQ(ierr);
1718efe9872eSLisandro Dalcin 
1719efe9872eSLisandro Dalcin   PetscStackPush("TS user implicit Jacobian");
1720efe9872eSLisandro Dalcin   ierr = I2Jacobian(ts,t,U,V,A,shiftV,shiftA,J,P,ctx);CHKERRQ(ierr);
1721efe9872eSLisandro Dalcin   PetscStackPop;
1722efe9872eSLisandro Dalcin 
1723efe9872eSLisandro Dalcin   if (rhsjacobian) {
1724efe9872eSLisandro Dalcin     Mat Jrhs,Prhs; MatStructure axpy = DIFFERENT_NONZERO_PATTERN;
1725efe9872eSLisandro Dalcin     ierr = TSGetRHSMats_Private(ts,&Jrhs,&Prhs);CHKERRQ(ierr);
1726efe9872eSLisandro Dalcin     ierr = TSComputeRHSJacobian(ts,t,U,Jrhs,Prhs);CHKERRQ(ierr);
1727efe9872eSLisandro Dalcin     ierr = MatAXPY(J,-1,Jrhs,axpy);CHKERRQ(ierr);
1728efe9872eSLisandro Dalcin     if (P != J) {ierr = MatAXPY(P,-1,Prhs,axpy);CHKERRQ(ierr);}
1729efe9872eSLisandro Dalcin   }
1730efe9872eSLisandro Dalcin 
1731efe9872eSLisandro Dalcin   ierr = PetscLogEventEnd(TS_JacobianEval,ts,U,J,P);CHKERRQ(ierr);
1732efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1733efe9872eSLisandro Dalcin }
1734efe9872eSLisandro Dalcin 
1735efe9872eSLisandro Dalcin /*@
1736efe9872eSLisandro Dalcin    TS2SetSolution - Sets the initial solution and time derivative vectors
1737efe9872eSLisandro Dalcin    for use by the TS routines handling second order equations.
1738efe9872eSLisandro Dalcin 
1739efe9872eSLisandro Dalcin    Logically Collective on TS and Vec
1740efe9872eSLisandro Dalcin 
1741efe9872eSLisandro Dalcin    Input Parameters:
1742efe9872eSLisandro Dalcin +  ts - the TS context obtained from TSCreate()
1743efe9872eSLisandro Dalcin .  u - the solution vector
1744efe9872eSLisandro Dalcin -  v - the time derivative vector
1745efe9872eSLisandro Dalcin 
1746efe9872eSLisandro Dalcin    Level: beginner
1747efe9872eSLisandro Dalcin 
1748efe9872eSLisandro Dalcin .keywords: TS, timestep, set, solution, initial conditions
1749efe9872eSLisandro Dalcin @*/
1750efe9872eSLisandro Dalcin PetscErrorCode  TS2SetSolution(TS ts,Vec u,Vec v)
1751efe9872eSLisandro Dalcin {
1752efe9872eSLisandro Dalcin   PetscErrorCode ierr;
1753efe9872eSLisandro Dalcin 
1754efe9872eSLisandro Dalcin   PetscFunctionBegin;
1755efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1756efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(u,VEC_CLASSID,2);
1757efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(v,VEC_CLASSID,3);
1758efe9872eSLisandro Dalcin   ierr = TSSetSolution(ts,u);CHKERRQ(ierr);
1759efe9872eSLisandro Dalcin   ierr = PetscObjectReference((PetscObject)v);CHKERRQ(ierr);
1760efe9872eSLisandro Dalcin   ierr = VecDestroy(&ts->vec_dot);CHKERRQ(ierr);
1761efe9872eSLisandro Dalcin   ts->vec_dot = v;
1762efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1763efe9872eSLisandro Dalcin }
1764efe9872eSLisandro Dalcin 
1765efe9872eSLisandro Dalcin /*@
1766efe9872eSLisandro Dalcin    TS2GetSolution - Returns the solution and time derivative at the present timestep
1767efe9872eSLisandro Dalcin    for second order equations. It is valid to call this routine inside the function
1768efe9872eSLisandro Dalcin    that you are evaluating in order to move to the new timestep. This vector not
1769efe9872eSLisandro Dalcin    changed until the solution at the next timestep has been calculated.
1770efe9872eSLisandro Dalcin 
1771efe9872eSLisandro Dalcin    Not Collective, but Vec returned is parallel if TS is parallel
1772efe9872eSLisandro Dalcin 
1773efe9872eSLisandro Dalcin    Input Parameter:
1774efe9872eSLisandro Dalcin .  ts - the TS context obtained from TSCreate()
1775efe9872eSLisandro Dalcin 
1776efe9872eSLisandro Dalcin    Output Parameter:
1777efe9872eSLisandro Dalcin +  u - the vector containing the solution
1778efe9872eSLisandro Dalcin -  v - the vector containing the time derivative
1779efe9872eSLisandro Dalcin 
1780efe9872eSLisandro Dalcin    Level: intermediate
1781efe9872eSLisandro Dalcin 
1782efe9872eSLisandro Dalcin .seealso: TS2SetSolution(), TSGetTimeStep(), TSGetTime()
1783efe9872eSLisandro Dalcin 
1784efe9872eSLisandro Dalcin .keywords: TS, timestep, get, solution
1785efe9872eSLisandro Dalcin @*/
1786efe9872eSLisandro Dalcin PetscErrorCode  TS2GetSolution(TS ts,Vec *u,Vec *v)
1787efe9872eSLisandro Dalcin {
1788efe9872eSLisandro Dalcin   PetscFunctionBegin;
1789efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1790efe9872eSLisandro Dalcin   if (u) PetscValidPointer(u,2);
1791efe9872eSLisandro Dalcin   if (v) PetscValidPointer(v,3);
1792efe9872eSLisandro Dalcin   if (u) *u = ts->vec_sol;
1793efe9872eSLisandro Dalcin   if (v) *v = ts->vec_dot;
1794efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1795efe9872eSLisandro Dalcin }
1796efe9872eSLisandro Dalcin 
179755849f57SBarry Smith /*@C
179855849f57SBarry Smith   TSLoad - Loads a KSP that has been stored in binary  with KSPView().
179955849f57SBarry Smith 
180055849f57SBarry Smith   Collective on PetscViewer
180155849f57SBarry Smith 
180255849f57SBarry Smith   Input Parameters:
180355849f57SBarry Smith + newdm - the newly loaded TS, this needs to have been created with TSCreate() or
180455849f57SBarry Smith            some related function before a call to TSLoad().
180555849f57SBarry Smith - viewer - binary file viewer, obtained from PetscViewerBinaryOpen()
180655849f57SBarry Smith 
180755849f57SBarry Smith    Level: intermediate
180855849f57SBarry Smith 
180955849f57SBarry Smith   Notes:
181055849f57SBarry Smith    The type is determined by the data in the file, any type set into the TS before this call is ignored.
181155849f57SBarry Smith 
181255849f57SBarry Smith   Notes for advanced users:
181355849f57SBarry Smith   Most users should not need to know the details of the binary storage
181455849f57SBarry Smith   format, since TSLoad() and TSView() completely hide these details.
181555849f57SBarry Smith   But for anyone who's interested, the standard binary matrix storage
181655849f57SBarry Smith   format is
181755849f57SBarry Smith .vb
181855849f57SBarry Smith      has not yet been determined
181955849f57SBarry Smith .ve
182055849f57SBarry Smith 
182155849f57SBarry Smith .seealso: PetscViewerBinaryOpen(), TSView(), MatLoad(), VecLoad()
182255849f57SBarry Smith @*/
1823f2c2a1b9SBarry Smith PetscErrorCode  TSLoad(TS ts, PetscViewer viewer)
182455849f57SBarry Smith {
182555849f57SBarry Smith   PetscErrorCode ierr;
182655849f57SBarry Smith   PetscBool      isbinary;
182755849f57SBarry Smith   PetscInt       classid;
182855849f57SBarry Smith   char           type[256];
18292d53ad75SBarry Smith   DMTS           sdm;
1830ad6bc421SBarry Smith   DM             dm;
183155849f57SBarry Smith 
183255849f57SBarry Smith   PetscFunctionBegin;
1833f2c2a1b9SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
183455849f57SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
183555849f57SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
183655849f57SBarry Smith   if (!isbinary) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Invalid viewer; open viewer with PetscViewerBinaryOpen()");
183755849f57SBarry Smith 
1838060da220SMatthew G. Knepley   ierr = PetscViewerBinaryRead(viewer,&classid,1,NULL,PETSC_INT);CHKERRQ(ierr);
1839ce94432eSBarry Smith   if (classid != TS_FILE_CLASSID) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Not TS next in file");
1840060da220SMatthew G. Knepley   ierr = PetscViewerBinaryRead(viewer,type,256,NULL,PETSC_CHAR);CHKERRQ(ierr);
1841f2c2a1b9SBarry Smith   ierr = TSSetType(ts, type);CHKERRQ(ierr);
1842f2c2a1b9SBarry Smith   if (ts->ops->load) {
1843f2c2a1b9SBarry Smith     ierr = (*ts->ops->load)(ts,viewer);CHKERRQ(ierr);
1844f2c2a1b9SBarry Smith   }
1845ce94432eSBarry Smith   ierr = DMCreate(PetscObjectComm((PetscObject)ts),&dm);CHKERRQ(ierr);
1846ad6bc421SBarry Smith   ierr = DMLoad(dm,viewer);CHKERRQ(ierr);
1847ad6bc421SBarry Smith   ierr = TSSetDM(ts,dm);CHKERRQ(ierr);
1848f2c2a1b9SBarry Smith   ierr = DMCreateGlobalVector(ts->dm,&ts->vec_sol);CHKERRQ(ierr);
1849f2c2a1b9SBarry Smith   ierr = VecLoad(ts->vec_sol,viewer);CHKERRQ(ierr);
18502d53ad75SBarry Smith   ierr = DMGetDMTS(ts->dm,&sdm);CHKERRQ(ierr);
18512d53ad75SBarry Smith   ierr = DMTSLoad(sdm,viewer);CHKERRQ(ierr);
185255849f57SBarry Smith   PetscFunctionReturn(0);
185355849f57SBarry Smith }
185455849f57SBarry Smith 
18559804daf3SBarry Smith #include <petscdraw.h>
1856e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1857e04113cfSBarry Smith #include <petscviewersaws.h>
1858f05ece33SBarry Smith #endif
18597e2c5f70SBarry Smith /*@C
1860d763cef2SBarry Smith     TSView - Prints the TS data structure.
1861d763cef2SBarry Smith 
18624c49b128SBarry Smith     Collective on TS
1863d763cef2SBarry Smith 
1864d763cef2SBarry Smith     Input Parameters:
1865d763cef2SBarry Smith +   ts - the TS context obtained from TSCreate()
1866d763cef2SBarry Smith -   viewer - visualization context
1867d763cef2SBarry Smith 
1868d763cef2SBarry Smith     Options Database Key:
1869d763cef2SBarry Smith .   -ts_view - calls TSView() at end of TSStep()
1870d763cef2SBarry Smith 
1871d763cef2SBarry Smith     Notes:
1872d763cef2SBarry Smith     The available visualization contexts include
1873b0a32e0cSBarry Smith +     PETSC_VIEWER_STDOUT_SELF - standard output (default)
1874b0a32e0cSBarry Smith -     PETSC_VIEWER_STDOUT_WORLD - synchronized standard
1875d763cef2SBarry Smith          output where only the first processor opens
1876d763cef2SBarry Smith          the file.  All other processors send their
1877d763cef2SBarry Smith          data to the first processor to print.
1878d763cef2SBarry Smith 
1879d763cef2SBarry Smith     The user can open an alternative visualization context with
1880b0a32e0cSBarry Smith     PetscViewerASCIIOpen() - output to a specified file.
1881d763cef2SBarry Smith 
1882d763cef2SBarry Smith     Level: beginner
1883d763cef2SBarry Smith 
1884d763cef2SBarry Smith .keywords: TS, timestep, view
1885d763cef2SBarry Smith 
1886b0a32e0cSBarry Smith .seealso: PetscViewerASCIIOpen()
1887d763cef2SBarry Smith @*/
18887087cfbeSBarry Smith PetscErrorCode  TSView(TS ts,PetscViewer viewer)
1889d763cef2SBarry Smith {
1890dfbe8321SBarry Smith   PetscErrorCode ierr;
189119fd82e9SBarry Smith   TSType         type;
18922b0a91c0SBarry Smith   PetscBool      iascii,isstring,isundials,isbinary,isdraw;
18932d53ad75SBarry Smith   DMTS           sdm;
1894e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1895536b137fSBarry Smith   PetscBool      issaws;
1896f05ece33SBarry Smith #endif
1897d763cef2SBarry Smith 
1898d763cef2SBarry Smith   PetscFunctionBegin;
18990700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
19003050cee2SBarry Smith   if (!viewer) {
1901ce94432eSBarry Smith     ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)ts),&viewer);CHKERRQ(ierr);
19023050cee2SBarry Smith   }
19030700a824SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
1904c9780b6fSBarry Smith   PetscCheckSameComm(ts,1,viewer,2);
1905fd16b177SBarry Smith 
1906251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr);
1907251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSTRING,&isstring);CHKERRQ(ierr);
190855849f57SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
19092b0a91c0SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
1910e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1911536b137fSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSAWS,&issaws);CHKERRQ(ierr);
1912f05ece33SBarry Smith #endif
191332077d6dSBarry Smith   if (iascii) {
1914dae58748SBarry Smith     ierr = PetscObjectPrintClassNamePrefixType((PetscObject)ts,viewer);CHKERRQ(ierr);
191577431f27SBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  maximum steps=%D\n",ts->max_steps);CHKERRQ(ierr);
19167c8652ddSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  maximum time=%g\n",(double)ts->max_time);CHKERRQ(ierr);
1917d763cef2SBarry Smith     if (ts->problem_type == TS_NONLINEAR) {
19185ef26d82SJed Brown       ierr = PetscViewerASCIIPrintf(viewer,"  total number of nonlinear solver iterations=%D\n",ts->snes_its);CHKERRQ(ierr);
1919c610991cSLisandro Dalcin       ierr = PetscViewerASCIIPrintf(viewer,"  total number of nonlinear solve failures=%D\n",ts->num_snes_failures);CHKERRQ(ierr);
1920d763cef2SBarry Smith     }
19215ef26d82SJed Brown     ierr = PetscViewerASCIIPrintf(viewer,"  total number of linear solver iterations=%D\n",ts->ksp_its);CHKERRQ(ierr);
1922193ac0bcSJed Brown     ierr = PetscViewerASCIIPrintf(viewer,"  total number of rejected steps=%D\n",ts->reject);CHKERRQ(ierr);
1923a0af407cSBarry Smith     if (ts->vrtol) {
1924a0af407cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  using vector of relative error tolerances, ");CHKERRQ(ierr);
1925a0af407cSBarry Smith     } else {
1926a0af407cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  using relative error tolerance of %g, ",(double)ts->rtol);CHKERRQ(ierr);
1927a0af407cSBarry Smith     }
1928a0af407cSBarry Smith     if (ts->vatol) {
1929a0af407cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  using vector of absolute error tolerances\n");CHKERRQ(ierr);
1930a0af407cSBarry Smith     } else {
1931a0af407cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  using absolute error tolerance of %g\n",(double)ts->atol);CHKERRQ(ierr);
1932a0af407cSBarry Smith     }
19332d53ad75SBarry Smith     ierr = DMGetDMTS(ts->dm,&sdm);CHKERRQ(ierr);
19342d53ad75SBarry Smith     ierr = DMTSView(sdm,viewer);CHKERRQ(ierr);
1935d52bd9f3SBarry Smith     if (ts->ops->view) {
1936d52bd9f3SBarry Smith       ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
1937d52bd9f3SBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
1938d52bd9f3SBarry Smith       ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
1939d52bd9f3SBarry Smith     }
19400f5bd95cSBarry Smith   } else if (isstring) {
1941a313700dSBarry Smith     ierr = TSGetType(ts,&type);CHKERRQ(ierr);
1942b0a32e0cSBarry Smith     ierr = PetscViewerStringSPrintf(viewer," %-7.7s",type);CHKERRQ(ierr);
194355849f57SBarry Smith   } else if (isbinary) {
194455849f57SBarry Smith     PetscInt    classid = TS_FILE_CLASSID;
194555849f57SBarry Smith     MPI_Comm    comm;
194655849f57SBarry Smith     PetscMPIInt rank;
194755849f57SBarry Smith     char        type[256];
194855849f57SBarry Smith 
194955849f57SBarry Smith     ierr = PetscObjectGetComm((PetscObject)ts,&comm);CHKERRQ(ierr);
195055849f57SBarry Smith     ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
195155849f57SBarry Smith     if (!rank) {
195255849f57SBarry Smith       ierr = PetscViewerBinaryWrite(viewer,&classid,1,PETSC_INT,PETSC_FALSE);CHKERRQ(ierr);
195355849f57SBarry Smith       ierr = PetscStrncpy(type,((PetscObject)ts)->type_name,256);CHKERRQ(ierr);
195455849f57SBarry Smith       ierr = PetscViewerBinaryWrite(viewer,type,256,PETSC_CHAR,PETSC_FALSE);CHKERRQ(ierr);
195555849f57SBarry Smith     }
195655849f57SBarry Smith     if (ts->ops->view) {
195755849f57SBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
195855849f57SBarry Smith     }
1959f2c2a1b9SBarry Smith     ierr = DMView(ts->dm,viewer);CHKERRQ(ierr);
1960f2c2a1b9SBarry Smith     ierr = VecView(ts->vec_sol,viewer);CHKERRQ(ierr);
19612d53ad75SBarry Smith     ierr = DMGetDMTS(ts->dm,&sdm);CHKERRQ(ierr);
19622d53ad75SBarry Smith     ierr = DMTSView(sdm,viewer);CHKERRQ(ierr);
19632b0a91c0SBarry Smith   } else if (isdraw) {
19642b0a91c0SBarry Smith     PetscDraw draw;
19652b0a91c0SBarry Smith     char      str[36];
196689fd9fafSBarry Smith     PetscReal x,y,bottom,h;
19672b0a91c0SBarry Smith 
19682b0a91c0SBarry Smith     ierr   = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
19692b0a91c0SBarry Smith     ierr   = PetscDrawGetCurrentPoint(draw,&x,&y);CHKERRQ(ierr);
19702b0a91c0SBarry Smith     ierr   = PetscStrcpy(str,"TS: ");CHKERRQ(ierr);
19712b0a91c0SBarry Smith     ierr   = PetscStrcat(str,((PetscObject)ts)->type_name);CHKERRQ(ierr);
197251fa3d41SBarry Smith     ierr   = PetscDrawStringBoxed(draw,x,y,PETSC_DRAW_BLACK,PETSC_DRAW_BLACK,str,NULL,&h);CHKERRQ(ierr);
197389fd9fafSBarry Smith     bottom = y - h;
19742b0a91c0SBarry Smith     ierr   = PetscDrawPushCurrentPoint(draw,x,bottom);CHKERRQ(ierr);
19752b0a91c0SBarry Smith     if (ts->ops->view) {
19762b0a91c0SBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
19772b0a91c0SBarry Smith     }
19782b0a91c0SBarry Smith     ierr = PetscDrawPopCurrentPoint(draw);CHKERRQ(ierr);
1979e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1980536b137fSBarry Smith   } else if (issaws) {
1981d45a07a7SBarry Smith     PetscMPIInt rank;
19822657e9d9SBarry Smith     const char  *name;
19832657e9d9SBarry Smith 
19842657e9d9SBarry Smith     ierr = PetscObjectGetName((PetscObject)ts,&name);CHKERRQ(ierr);
1985d45a07a7SBarry Smith     ierr = MPI_Comm_rank(PETSC_COMM_WORLD,&rank);CHKERRQ(ierr);
1986d45a07a7SBarry Smith     if (!((PetscObject)ts)->amsmem && !rank) {
1987d45a07a7SBarry Smith       char       dir[1024];
1988d45a07a7SBarry Smith 
1989e04113cfSBarry Smith       ierr = PetscObjectViewSAWs((PetscObject)ts,viewer);CHKERRQ(ierr);
1990a0931e03SBarry Smith       ierr = PetscSNPrintf(dir,1024,"/PETSc/Objects/%s/time_step",name);CHKERRQ(ierr);
19912657e9d9SBarry Smith       PetscStackCallSAWs(SAWs_Register,(dir,&ts->steps,1,SAWs_READ,SAWs_INT));
19922657e9d9SBarry Smith       ierr = PetscSNPrintf(dir,1024,"/PETSc/Objects/%s/time",name);CHKERRQ(ierr);
19932657e9d9SBarry Smith       PetscStackCallSAWs(SAWs_Register,(dir,&ts->ptime,1,SAWs_READ,SAWs_DOUBLE));
1994d763cef2SBarry Smith     }
19950acecf5bSBarry Smith     if (ts->ops->view) {
19960acecf5bSBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
19970acecf5bSBarry Smith     }
1998f05ece33SBarry Smith #endif
1999f05ece33SBarry Smith   }
2000f05ece33SBarry Smith 
2001b0a32e0cSBarry Smith   ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
2002251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)ts,TSSUNDIALS,&isundials);CHKERRQ(ierr);
2003b0a32e0cSBarry Smith   ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
2004d763cef2SBarry Smith   PetscFunctionReturn(0);
2005d763cef2SBarry Smith }
2006d763cef2SBarry Smith 
2007d763cef2SBarry Smith 
2008b07ff414SBarry Smith /*@
2009d763cef2SBarry Smith    TSSetApplicationContext - Sets an optional user-defined context for
2010d763cef2SBarry Smith    the timesteppers.
2011d763cef2SBarry Smith 
20123f9fe445SBarry Smith    Logically Collective on TS
2013d763cef2SBarry Smith 
2014d763cef2SBarry Smith    Input Parameters:
2015d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
2016d763cef2SBarry Smith -  usrP - optional user context
2017d763cef2SBarry Smith 
2018daf670e6SBarry Smith    Fortran Notes: To use this from Fortran you must write a Fortran interface definition for this
2019daf670e6SBarry Smith     function that tells Fortran the Fortran derived data type that you are passing in as the ctx argument.
2020daf670e6SBarry Smith 
2021d763cef2SBarry Smith    Level: intermediate
2022d763cef2SBarry Smith 
2023d763cef2SBarry Smith .keywords: TS, timestep, set, application, context
2024d763cef2SBarry Smith 
2025d763cef2SBarry Smith .seealso: TSGetApplicationContext()
2026d763cef2SBarry Smith @*/
20277087cfbeSBarry Smith PetscErrorCode  TSSetApplicationContext(TS ts,void *usrP)
2028d763cef2SBarry Smith {
2029d763cef2SBarry Smith   PetscFunctionBegin;
20300700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2031d763cef2SBarry Smith   ts->user = usrP;
2032d763cef2SBarry Smith   PetscFunctionReturn(0);
2033d763cef2SBarry Smith }
2034d763cef2SBarry Smith 
2035b07ff414SBarry Smith /*@
2036d763cef2SBarry Smith     TSGetApplicationContext - Gets the user-defined context for the
2037d763cef2SBarry Smith     timestepper.
2038d763cef2SBarry Smith 
2039d763cef2SBarry Smith     Not Collective
2040d763cef2SBarry Smith 
2041d763cef2SBarry Smith     Input Parameter:
2042d763cef2SBarry Smith .   ts - the TS context obtained from TSCreate()
2043d763cef2SBarry Smith 
2044d763cef2SBarry Smith     Output Parameter:
2045d763cef2SBarry Smith .   usrP - user context
2046d763cef2SBarry Smith 
2047daf670e6SBarry Smith    Fortran Notes: To use this from Fortran you must write a Fortran interface definition for this
2048daf670e6SBarry Smith     function that tells Fortran the Fortran derived data type that you are passing in as the ctx argument.
2049daf670e6SBarry Smith 
2050d763cef2SBarry Smith     Level: intermediate
2051d763cef2SBarry Smith 
2052d763cef2SBarry Smith .keywords: TS, timestep, get, application, context
2053d763cef2SBarry Smith 
2054d763cef2SBarry Smith .seealso: TSSetApplicationContext()
2055d763cef2SBarry Smith @*/
2056e71120c6SJed Brown PetscErrorCode  TSGetApplicationContext(TS ts,void *usrP)
2057d763cef2SBarry Smith {
2058d763cef2SBarry Smith   PetscFunctionBegin;
20590700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2060e71120c6SJed Brown   *(void**)usrP = ts->user;
2061d763cef2SBarry Smith   PetscFunctionReturn(0);
2062d763cef2SBarry Smith }
2063d763cef2SBarry Smith 
2064d763cef2SBarry Smith /*@
2065b8123daeSJed Brown    TSGetTimeStepNumber - Gets the number of time steps completed.
2066d763cef2SBarry Smith 
2067d763cef2SBarry Smith    Not Collective
2068d763cef2SBarry Smith 
2069d763cef2SBarry Smith    Input Parameter:
2070d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2071d763cef2SBarry Smith 
2072d763cef2SBarry Smith    Output Parameter:
2073b8123daeSJed Brown .  iter - number of steps completed so far
2074d763cef2SBarry Smith 
2075d763cef2SBarry Smith    Level: intermediate
2076d763cef2SBarry Smith 
2077d763cef2SBarry Smith .keywords: TS, timestep, get, iteration, number
20789be3e283SDebojyoti Ghosh .seealso: TSGetTime(), TSGetTimeStep(), TSSetPreStep(), TSSetPreStage(), TSSetPostStage(), TSSetPostStep()
2079d763cef2SBarry Smith @*/
20807087cfbeSBarry Smith PetscErrorCode  TSGetTimeStepNumber(TS ts,PetscInt *iter)
2081d763cef2SBarry Smith {
2082d763cef2SBarry Smith   PetscFunctionBegin;
20830700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
20844482741eSBarry Smith   PetscValidIntPointer(iter,2);
2085d763cef2SBarry Smith   *iter = ts->steps;
2086d763cef2SBarry Smith   PetscFunctionReturn(0);
2087d763cef2SBarry Smith }
2088d763cef2SBarry Smith 
2089d763cef2SBarry Smith /*@
2090d763cef2SBarry Smith    TSSetInitialTimeStep - Sets the initial timestep to be used,
2091d763cef2SBarry Smith    as well as the initial time.
2092d763cef2SBarry Smith 
20933f9fe445SBarry Smith    Logically Collective on TS
2094d763cef2SBarry Smith 
2095d763cef2SBarry Smith    Input Parameters:
2096d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
2097d763cef2SBarry Smith .  initial_time - the initial time
2098d763cef2SBarry Smith -  time_step - the size of the timestep
2099d763cef2SBarry Smith 
2100d763cef2SBarry Smith    Level: intermediate
2101d763cef2SBarry Smith 
2102d763cef2SBarry Smith .seealso: TSSetTimeStep(), TSGetTimeStep()
2103d763cef2SBarry Smith 
2104d763cef2SBarry Smith .keywords: TS, set, initial, timestep
2105d763cef2SBarry Smith @*/
21067087cfbeSBarry Smith PetscErrorCode  TSSetInitialTimeStep(TS ts,PetscReal initial_time,PetscReal time_step)
2107d763cef2SBarry Smith {
2108e144a568SJed Brown   PetscErrorCode ierr;
2109e144a568SJed Brown 
2110d763cef2SBarry Smith   PetscFunctionBegin;
21110700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2112e144a568SJed Brown   ierr = TSSetTimeStep(ts,time_step);CHKERRQ(ierr);
2113d8cd7023SBarry Smith   ierr = TSSetTime(ts,initial_time);CHKERRQ(ierr);
2114d763cef2SBarry Smith   PetscFunctionReturn(0);
2115d763cef2SBarry Smith }
2116d763cef2SBarry Smith 
2117d763cef2SBarry Smith /*@
2118d763cef2SBarry Smith    TSSetTimeStep - Allows one to reset the timestep at any time,
2119d763cef2SBarry Smith    useful for simple pseudo-timestepping codes.
2120d763cef2SBarry Smith 
21213f9fe445SBarry Smith    Logically Collective on TS
2122d763cef2SBarry Smith 
2123d763cef2SBarry Smith    Input Parameters:
2124d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
2125d763cef2SBarry Smith -  time_step - the size of the timestep
2126d763cef2SBarry Smith 
2127d763cef2SBarry Smith    Level: intermediate
2128d763cef2SBarry Smith 
2129d763cef2SBarry Smith .seealso: TSSetInitialTimeStep(), TSGetTimeStep()
2130d763cef2SBarry Smith 
2131d763cef2SBarry Smith .keywords: TS, set, timestep
2132d763cef2SBarry Smith @*/
21337087cfbeSBarry Smith PetscErrorCode  TSSetTimeStep(TS ts,PetscReal time_step)
2134d763cef2SBarry Smith {
2135d763cef2SBarry Smith   PetscFunctionBegin;
21360700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2137c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(ts,time_step,2);
2138d763cef2SBarry Smith   ts->time_step = time_step;
2139d763cef2SBarry Smith   PetscFunctionReturn(0);
2140d763cef2SBarry Smith }
2141d763cef2SBarry Smith 
2142a43b19c4SJed Brown /*@
214349354f04SShri Abhyankar    TSSetExactFinalTime - Determines whether to adapt the final time step to
214449354f04SShri Abhyankar      match the exact final time, interpolate solution to the exact final time,
214549354f04SShri Abhyankar      or just return at the final time TS computed.
2146a43b19c4SJed Brown 
2147a43b19c4SJed Brown   Logically Collective on TS
2148a43b19c4SJed Brown 
2149a43b19c4SJed Brown    Input Parameter:
2150a43b19c4SJed Brown +   ts - the time-step context
215149354f04SShri Abhyankar -   eftopt - exact final time option
2152a43b19c4SJed Brown 
2153feed9e9dSBarry Smith $  TS_EXACTFINALTIME_STEPOVER    - Don't do anything if final time is exceeded
2154feed9e9dSBarry Smith $  TS_EXACTFINALTIME_INTERPOLATE - Interpolate back to final time
2155feed9e9dSBarry Smith $  TS_EXACTFINALTIME_MATCHSTEP - Adapt final time step to match the final time
2156feed9e9dSBarry Smith 
2157feed9e9dSBarry Smith    Options Database:
2158feed9e9dSBarry Smith .   -ts_exact_final_time <stepover,interpolate,matchstep> - select the final step at runtime
2159feed9e9dSBarry Smith 
2160ee346746SBarry Smith    Warning: If you use the option TS_EXACTFINALTIME_STEPOVER the solution may be at a very different time
2161ee346746SBarry Smith     then the final time you selected.
2162ee346746SBarry Smith 
2163a43b19c4SJed Brown    Level: beginner
2164a43b19c4SJed Brown 
2165a2ea699eSBarry Smith .seealso: TSExactFinalTimeOption
2166a43b19c4SJed Brown @*/
216749354f04SShri Abhyankar PetscErrorCode  TSSetExactFinalTime(TS ts,TSExactFinalTimeOption eftopt)
2168a43b19c4SJed Brown {
2169a43b19c4SJed Brown   PetscFunctionBegin;
2170a43b19c4SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
217149354f04SShri Abhyankar   PetscValidLogicalCollectiveEnum(ts,eftopt,2);
217249354f04SShri Abhyankar   ts->exact_final_time = eftopt;
2173a43b19c4SJed Brown   PetscFunctionReturn(0);
2174a43b19c4SJed Brown }
2175a43b19c4SJed Brown 
2176d763cef2SBarry Smith /*@
2177d763cef2SBarry Smith    TSGetTimeStep - Gets the current timestep size.
2178d763cef2SBarry Smith 
2179d763cef2SBarry Smith    Not Collective
2180d763cef2SBarry Smith 
2181d763cef2SBarry Smith    Input Parameter:
2182d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2183d763cef2SBarry Smith 
2184d763cef2SBarry Smith    Output Parameter:
2185d763cef2SBarry Smith .  dt - the current timestep size
2186d763cef2SBarry Smith 
2187d763cef2SBarry Smith    Level: intermediate
2188d763cef2SBarry Smith 
2189d763cef2SBarry Smith .seealso: TSSetInitialTimeStep(), TSGetTimeStep()
2190d763cef2SBarry Smith 
2191d763cef2SBarry Smith .keywords: TS, get, timestep
2192d763cef2SBarry Smith @*/
21937087cfbeSBarry Smith PetscErrorCode  TSGetTimeStep(TS ts,PetscReal *dt)
2194d763cef2SBarry Smith {
2195d763cef2SBarry Smith   PetscFunctionBegin;
21960700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2197f7cf8827SBarry Smith   PetscValidRealPointer(dt,2);
2198d763cef2SBarry Smith   *dt = ts->time_step;
2199d763cef2SBarry Smith   PetscFunctionReturn(0);
2200d763cef2SBarry Smith }
2201d763cef2SBarry Smith 
2202d8e5e3e6SSatish Balay /*@
2203d763cef2SBarry Smith    TSGetSolution - Returns the solution at the present timestep. It
2204d763cef2SBarry Smith    is valid to call this routine inside the function that you are evaluating
2205d763cef2SBarry Smith    in order to move to the new timestep. This vector not changed until
2206d763cef2SBarry Smith    the solution at the next timestep has been calculated.
2207d763cef2SBarry Smith 
2208d763cef2SBarry Smith    Not Collective, but Vec returned is parallel if TS is parallel
2209d763cef2SBarry Smith 
2210d763cef2SBarry Smith    Input Parameter:
2211d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2212d763cef2SBarry Smith 
2213d763cef2SBarry Smith    Output Parameter:
2214d763cef2SBarry Smith .  v - the vector containing the solution
2215d763cef2SBarry Smith 
221663e21af5SBarry Smith    Note: If you used TSSetExactFinalTime(ts,TS_EXACTFINALTIME_MATCHSTEP); this does not return the solution at the requested
221763e21af5SBarry Smith    final time. It returns the solution at the next timestep.
221863e21af5SBarry Smith 
2219d763cef2SBarry Smith    Level: intermediate
2220d763cef2SBarry Smith 
2221b2bf4f3aSDebojyoti Ghosh .seealso: TSGetTimeStep(), TSGetTime(), TSGetSolveTime(), TSGetSolutionComponents()
2222d763cef2SBarry Smith 
2223d763cef2SBarry Smith .keywords: TS, timestep, get, solution
2224d763cef2SBarry Smith @*/
22257087cfbeSBarry Smith PetscErrorCode  TSGetSolution(TS ts,Vec *v)
2226d763cef2SBarry Smith {
2227d763cef2SBarry Smith   PetscFunctionBegin;
22280700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
22294482741eSBarry Smith   PetscValidPointer(v,2);
22308737fe31SLisandro Dalcin   *v = ts->vec_sol;
2231d763cef2SBarry Smith   PetscFunctionReturn(0);
2232d763cef2SBarry Smith }
2233d763cef2SBarry Smith 
223403fe5f5eSDebojyoti Ghosh /*@
2235b2bf4f3aSDebojyoti Ghosh    TSGetSolutionComponents - Returns any solution components at the present
223603fe5f5eSDebojyoti Ghosh    timestep, if available for the time integration method being used.
2237b2bf4f3aSDebojyoti Ghosh    Solution components are quantities that share the same size and
223803fe5f5eSDebojyoti Ghosh    structure as the solution vector.
223903fe5f5eSDebojyoti Ghosh 
224003fe5f5eSDebojyoti Ghosh    Not Collective, but Vec returned is parallel if TS is parallel
224103fe5f5eSDebojyoti Ghosh 
224203fe5f5eSDebojyoti Ghosh    Parameters :
224303fe5f5eSDebojyoti Ghosh .  ts - the TS context obtained from TSCreate() (input parameter).
2244b2bf4f3aSDebojyoti Ghosh .  n - If v is PETSC_NULL, then the number of solution components is
2245b2bf4f3aSDebojyoti Ghosh        returned through n, else the n-th solution component is
224603fe5f5eSDebojyoti Ghosh        returned in v.
2247b2bf4f3aSDebojyoti Ghosh .  v - the vector containing the n-th solution component
224803fe5f5eSDebojyoti Ghosh        (may be PETSC_NULL to use this function to find out
2249b2bf4f3aSDebojyoti Ghosh         the number of solutions components).
225003fe5f5eSDebojyoti Ghosh 
22514cdd57e5SDebojyoti Ghosh    Level: advanced
225203fe5f5eSDebojyoti Ghosh 
225303fe5f5eSDebojyoti Ghosh .seealso: TSGetSolution()
225403fe5f5eSDebojyoti Ghosh 
225503fe5f5eSDebojyoti Ghosh .keywords: TS, timestep, get, solution
225603fe5f5eSDebojyoti Ghosh @*/
2257b2bf4f3aSDebojyoti Ghosh PetscErrorCode  TSGetSolutionComponents(TS ts,PetscInt *n,Vec *v)
225803fe5f5eSDebojyoti Ghosh {
225903fe5f5eSDebojyoti Ghosh   PetscErrorCode ierr;
226003fe5f5eSDebojyoti Ghosh 
226103fe5f5eSDebojyoti Ghosh   PetscFunctionBegin;
226203fe5f5eSDebojyoti Ghosh   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2263b2bf4f3aSDebojyoti Ghosh   if (!ts->ops->getsolutioncomponents) *n = 0;
226403fe5f5eSDebojyoti Ghosh   else {
2265b2bf4f3aSDebojyoti Ghosh     ierr = (*ts->ops->getsolutioncomponents)(ts,n,v);CHKERRQ(ierr);
226603fe5f5eSDebojyoti Ghosh   }
226703fe5f5eSDebojyoti Ghosh   PetscFunctionReturn(0);
226803fe5f5eSDebojyoti Ghosh }
226903fe5f5eSDebojyoti Ghosh 
22704cdd57e5SDebojyoti Ghosh /*@
22714cdd57e5SDebojyoti Ghosh    TSGetAuxSolution - Returns an auxiliary solution at the present
22724cdd57e5SDebojyoti Ghosh    timestep, if available for the time integration method being used.
22734cdd57e5SDebojyoti Ghosh 
22744cdd57e5SDebojyoti Ghosh    Not Collective, but Vec returned is parallel if TS is parallel
22754cdd57e5SDebojyoti Ghosh 
22764cdd57e5SDebojyoti Ghosh    Parameters :
22774cdd57e5SDebojyoti Ghosh .  ts - the TS context obtained from TSCreate() (input parameter).
22784cdd57e5SDebojyoti Ghosh .  v - the vector containing the auxiliary solution
22794cdd57e5SDebojyoti Ghosh 
22804cdd57e5SDebojyoti Ghosh    Level: intermediate
22814cdd57e5SDebojyoti Ghosh 
22824cdd57e5SDebojyoti Ghosh .seealso: TSGetSolution()
22834cdd57e5SDebojyoti Ghosh 
22844cdd57e5SDebojyoti Ghosh .keywords: TS, timestep, get, solution
22854cdd57e5SDebojyoti Ghosh @*/
22864cdd57e5SDebojyoti Ghosh PetscErrorCode  TSGetAuxSolution(TS ts,Vec *v)
22874cdd57e5SDebojyoti Ghosh {
22884cdd57e5SDebojyoti Ghosh   PetscErrorCode ierr;
22894cdd57e5SDebojyoti Ghosh 
22904cdd57e5SDebojyoti Ghosh   PetscFunctionBegin;
22914cdd57e5SDebojyoti Ghosh   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2292f6356ec7SDebojyoti Ghosh   if (ts->ops->getauxsolution) {
22934cdd57e5SDebojyoti Ghosh     ierr = (*ts->ops->getauxsolution)(ts,v);CHKERRQ(ierr);
2294f6356ec7SDebojyoti Ghosh   } else {
2295f6356ec7SDebojyoti Ghosh     ierr = VecZeroEntries(*v); CHKERRQ(ierr);
2296f6356ec7SDebojyoti Ghosh   }
22974cdd57e5SDebojyoti Ghosh   PetscFunctionReturn(0);
22984cdd57e5SDebojyoti Ghosh }
22994cdd57e5SDebojyoti Ghosh 
23004cdd57e5SDebojyoti Ghosh /*@
23014cdd57e5SDebojyoti Ghosh    TSGetTimeError - Returns the estimated error vector, if the chosen
23024cdd57e5SDebojyoti Ghosh    TSType has an error estimation functionality.
23034cdd57e5SDebojyoti Ghosh 
23044cdd57e5SDebojyoti Ghosh    Not Collective, but Vec returned is parallel if TS is parallel
23054cdd57e5SDebojyoti Ghosh 
23069657682dSDebojyoti Ghosh    Note: MUST call after TSSetUp()
23079657682dSDebojyoti Ghosh 
23084cdd57e5SDebojyoti Ghosh    Parameters :
23094cdd57e5SDebojyoti Ghosh .  ts - the TS context obtained from TSCreate() (input parameter).
2310657c1e31SEmil Constantinescu .  n - current estimate (n=0) or previous one (n=-1)
23114cdd57e5SDebojyoti Ghosh .  v - the vector containing the error (same size as the solution).
23124cdd57e5SDebojyoti Ghosh 
23134cdd57e5SDebojyoti Ghosh    Level: intermediate
23144cdd57e5SDebojyoti Ghosh 
231557df6a1bSDebojyoti Ghosh .seealso: TSGetSolution(), TSSetTimeError()
23164cdd57e5SDebojyoti Ghosh 
23174cdd57e5SDebojyoti Ghosh .keywords: TS, timestep, get, error
23184cdd57e5SDebojyoti Ghosh @*/
23190a01e1b2SEmil Constantinescu PetscErrorCode  TSGetTimeError(TS ts,PetscInt n,Vec *v)
23204cdd57e5SDebojyoti Ghosh {
23214cdd57e5SDebojyoti Ghosh   PetscErrorCode ierr;
23224cdd57e5SDebojyoti Ghosh 
23234cdd57e5SDebojyoti Ghosh   PetscFunctionBegin;
23244cdd57e5SDebojyoti Ghosh   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2325f6356ec7SDebojyoti Ghosh   if (ts->ops->gettimeerror) {
23260a01e1b2SEmil Constantinescu     ierr = (*ts->ops->gettimeerror)(ts,n,v);CHKERRQ(ierr);
2327f6356ec7SDebojyoti Ghosh   } else {
2328f6356ec7SDebojyoti Ghosh     ierr = VecZeroEntries(*v);CHKERRQ(ierr);
2329f6356ec7SDebojyoti Ghosh   }
23304cdd57e5SDebojyoti Ghosh   PetscFunctionReturn(0);
23314cdd57e5SDebojyoti Ghosh }
23324cdd57e5SDebojyoti Ghosh 
233357df6a1bSDebojyoti Ghosh /*@
233457df6a1bSDebojyoti Ghosh    TSSetTimeError - Sets the estimated error vector, if the chosen
233557df6a1bSDebojyoti Ghosh    TSType has an error estimation functionality. This can be used
233657df6a1bSDebojyoti Ghosh    to restart such a time integrator with a given error vector.
233757df6a1bSDebojyoti Ghosh 
233857df6a1bSDebojyoti Ghosh    Not Collective, but Vec returned is parallel if TS is parallel
233957df6a1bSDebojyoti Ghosh 
234057df6a1bSDebojyoti Ghosh    Parameters :
234157df6a1bSDebojyoti Ghosh .  ts - the TS context obtained from TSCreate() (input parameter).
234257df6a1bSDebojyoti Ghosh .  v - the vector containing the error (same size as the solution).
234357df6a1bSDebojyoti Ghosh 
234457df6a1bSDebojyoti Ghosh    Level: intermediate
234557df6a1bSDebojyoti Ghosh 
234657df6a1bSDebojyoti Ghosh .seealso: TSSetSolution(), TSGetTimeError)
234757df6a1bSDebojyoti Ghosh 
234857df6a1bSDebojyoti Ghosh .keywords: TS, timestep, get, error
234957df6a1bSDebojyoti Ghosh @*/
235057df6a1bSDebojyoti Ghosh PetscErrorCode  TSSetTimeError(TS ts,Vec v)
235157df6a1bSDebojyoti Ghosh {
235257df6a1bSDebojyoti Ghosh   PetscErrorCode ierr;
235357df6a1bSDebojyoti Ghosh 
235457df6a1bSDebojyoti Ghosh   PetscFunctionBegin;
235557df6a1bSDebojyoti Ghosh   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
23569657682dSDebojyoti Ghosh   if (!ts->setupcalled) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Must call TSSetUp() first");
235757df6a1bSDebojyoti Ghosh   if (ts->ops->settimeerror) {
235857df6a1bSDebojyoti Ghosh     ierr = (*ts->ops->settimeerror)(ts,v);CHKERRQ(ierr);
235957df6a1bSDebojyoti Ghosh   }
236057df6a1bSDebojyoti Ghosh   PetscFunctionReturn(0);
236157df6a1bSDebojyoti Ghosh }
236257df6a1bSDebojyoti Ghosh 
2363c235aa8dSHong Zhang /*@
2364dfb21088SHong Zhang    TSGetCostGradients - Returns the gradients from the TSAdjointSolve()
2365c235aa8dSHong Zhang 
2366c235aa8dSHong Zhang    Not Collective, but Vec returned is parallel if TS is parallel
2367c235aa8dSHong Zhang 
2368c235aa8dSHong Zhang    Input Parameter:
2369c235aa8dSHong Zhang .  ts - the TS context obtained from TSCreate()
2370c235aa8dSHong Zhang 
2371c235aa8dSHong Zhang    Output Parameter:
2372abc2977eSBarry Smith +  lambda - vectors containing the gradients of the cost functions with respect to the ODE/DAE solution variables
2373abc2977eSBarry Smith -  mu - vectors containing the gradients of the cost functions with respect to the problem parameters
2374c235aa8dSHong Zhang 
2375c235aa8dSHong Zhang    Level: intermediate
2376c235aa8dSHong Zhang 
2377c235aa8dSHong Zhang .seealso: TSGetTimeStep()
2378c235aa8dSHong Zhang 
2379c235aa8dSHong Zhang .keywords: TS, timestep, get, sensitivity
2380c235aa8dSHong Zhang @*/
2381dfb21088SHong Zhang PetscErrorCode  TSGetCostGradients(TS ts,PetscInt *numcost,Vec **lambda,Vec **mu)
2382c235aa8dSHong Zhang {
2383c235aa8dSHong Zhang   PetscFunctionBegin;
2384c235aa8dSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2385abc2977eSBarry Smith   if (numcost) *numcost = ts->numcost;
2386abc2977eSBarry Smith   if (lambda)  *lambda  = ts->vecs_sensi;
2387abc2977eSBarry Smith   if (mu)      *mu      = ts->vecs_sensip;
2388c235aa8dSHong Zhang   PetscFunctionReturn(0);
2389c235aa8dSHong Zhang }
2390c235aa8dSHong Zhang 
2391bdad233fSMatthew Knepley /* ----- Routines to initialize and destroy a timestepper ---- */
2392d8e5e3e6SSatish Balay /*@
2393bdad233fSMatthew Knepley   TSSetProblemType - Sets the type of problem to be solved.
2394d763cef2SBarry Smith 
2395bdad233fSMatthew Knepley   Not collective
2396d763cef2SBarry Smith 
2397bdad233fSMatthew Knepley   Input Parameters:
2398bdad233fSMatthew Knepley + ts   - The TS
2399bdad233fSMatthew Knepley - type - One of TS_LINEAR, TS_NONLINEAR where these types refer to problems of the forms
2400d763cef2SBarry Smith .vb
24010910c330SBarry Smith          U_t - A U = 0      (linear)
24020910c330SBarry Smith          U_t - A(t) U = 0   (linear)
24030910c330SBarry Smith          F(t,U,U_t) = 0     (nonlinear)
2404d763cef2SBarry Smith .ve
2405d763cef2SBarry Smith 
2406d763cef2SBarry Smith    Level: beginner
2407d763cef2SBarry Smith 
2408bdad233fSMatthew Knepley .keywords: TS, problem type
2409bdad233fSMatthew Knepley .seealso: TSSetUp(), TSProblemType, TS
2410d763cef2SBarry Smith @*/
24117087cfbeSBarry Smith PetscErrorCode  TSSetProblemType(TS ts, TSProblemType type)
2412a7cc72afSBarry Smith {
24139e2a6581SJed Brown   PetscErrorCode ierr;
24149e2a6581SJed Brown 
2415d763cef2SBarry Smith   PetscFunctionBegin;
24160700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2417bdad233fSMatthew Knepley   ts->problem_type = type;
24189e2a6581SJed Brown   if (type == TS_LINEAR) {
24199e2a6581SJed Brown     SNES snes;
24209e2a6581SJed Brown     ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
24219e2a6581SJed Brown     ierr = SNESSetType(snes,SNESKSPONLY);CHKERRQ(ierr);
24229e2a6581SJed Brown   }
2423d763cef2SBarry Smith   PetscFunctionReturn(0);
2424d763cef2SBarry Smith }
2425d763cef2SBarry Smith 
2426bdad233fSMatthew Knepley /*@C
2427bdad233fSMatthew Knepley   TSGetProblemType - Gets the type of problem to be solved.
2428bdad233fSMatthew Knepley 
2429bdad233fSMatthew Knepley   Not collective
2430bdad233fSMatthew Knepley 
2431bdad233fSMatthew Knepley   Input Parameter:
2432bdad233fSMatthew Knepley . ts   - The TS
2433bdad233fSMatthew Knepley 
2434bdad233fSMatthew Knepley   Output Parameter:
2435bdad233fSMatthew Knepley . type - One of TS_LINEAR, TS_NONLINEAR where these types refer to problems of the forms
2436bdad233fSMatthew Knepley .vb
2437089b2837SJed Brown          M U_t = A U
2438089b2837SJed Brown          M(t) U_t = A(t) U
2439b5abc632SBarry Smith          F(t,U,U_t)
2440bdad233fSMatthew Knepley .ve
2441bdad233fSMatthew Knepley 
2442bdad233fSMatthew Knepley    Level: beginner
2443bdad233fSMatthew Knepley 
2444bdad233fSMatthew Knepley .keywords: TS, problem type
2445bdad233fSMatthew Knepley .seealso: TSSetUp(), TSProblemType, TS
2446bdad233fSMatthew Knepley @*/
24477087cfbeSBarry Smith PetscErrorCode  TSGetProblemType(TS ts, TSProblemType *type)
2448a7cc72afSBarry Smith {
2449bdad233fSMatthew Knepley   PetscFunctionBegin;
24500700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
24514482741eSBarry Smith   PetscValidIntPointer(type,2);
2452bdad233fSMatthew Knepley   *type = ts->problem_type;
2453bdad233fSMatthew Knepley   PetscFunctionReturn(0);
2454bdad233fSMatthew Knepley }
2455d763cef2SBarry Smith 
2456d763cef2SBarry Smith /*@
2457d763cef2SBarry Smith    TSSetUp - Sets up the internal data structures for the later use
2458d763cef2SBarry Smith    of a timestepper.
2459d763cef2SBarry Smith 
2460d763cef2SBarry Smith    Collective on TS
2461d763cef2SBarry Smith 
2462d763cef2SBarry Smith    Input Parameter:
2463d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2464d763cef2SBarry Smith 
2465d763cef2SBarry Smith    Notes:
2466d763cef2SBarry Smith    For basic use of the TS solvers the user need not explicitly call
2467d763cef2SBarry Smith    TSSetUp(), since these actions will automatically occur during
2468d763cef2SBarry Smith    the call to TSStep().  However, if one wishes to control this
2469d763cef2SBarry Smith    phase separately, TSSetUp() should be called after TSCreate()
2470d763cef2SBarry Smith    and optional routines of the form TSSetXXX(), but before TSStep().
2471d763cef2SBarry Smith 
2472d763cef2SBarry Smith    Level: advanced
2473d763cef2SBarry Smith 
2474d763cef2SBarry Smith .keywords: TS, timestep, setup
2475d763cef2SBarry Smith 
2476d763cef2SBarry Smith .seealso: TSCreate(), TSStep(), TSDestroy()
2477d763cef2SBarry Smith @*/
24787087cfbeSBarry Smith PetscErrorCode  TSSetUp(TS ts)
2479d763cef2SBarry Smith {
2480dfbe8321SBarry Smith   PetscErrorCode ierr;
24816c6b9e74SPeter Brune   DM             dm;
24826c6b9e74SPeter Brune   PetscErrorCode (*func)(SNES,Vec,Vec,void*);
2483d1e9a80fSBarry Smith   PetscErrorCode (*jac)(SNES,Vec,Mat,Mat,void*);
2484cd11d68dSLisandro Dalcin   TSIFunction    ifun;
24856c6b9e74SPeter Brune   TSIJacobian    ijac;
2486efe9872eSLisandro Dalcin   TSI2Jacobian   i2jac;
24876c6b9e74SPeter Brune   TSRHSJacobian  rhsjac;
2488*2ffb9264SLisandro Dalcin   PetscBool      isnone;
2489d763cef2SBarry Smith 
2490d763cef2SBarry Smith   PetscFunctionBegin;
24910700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2492277b19d0SLisandro Dalcin   if (ts->setupcalled) PetscFunctionReturn(0);
2493277b19d0SLisandro Dalcin 
24947adad957SLisandro Dalcin   if (!((PetscObject)ts)->type_name) {
2495cd11d68dSLisandro Dalcin     ierr = TSGetIFunction(ts,NULL,&ifun,NULL);CHKERRQ(ierr);
2496cd11d68dSLisandro Dalcin     ierr = TSSetType(ts,ifun ? TSBEULER : TSEULER);CHKERRQ(ierr);
2497d763cef2SBarry Smith   }
2498277b19d0SLisandro Dalcin 
2499277b19d0SLisandro Dalcin   if (!ts->vec_sol) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Must call TSSetSolution() first");
2500277b19d0SLisandro Dalcin 
2501e1244c69SJed Brown   if (ts->rhsjacobian.reuse) {
2502e1244c69SJed Brown     Mat Amat,Pmat;
2503e1244c69SJed Brown     SNES snes;
2504e1244c69SJed Brown     ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
2505e1244c69SJed Brown     ierr = SNESGetJacobian(snes,&Amat,&Pmat,NULL,NULL);CHKERRQ(ierr);
2506e1244c69SJed Brown     /* Matching matrices implies that an IJacobian is NOT set, because if it had been set, the IJacobian's matrix would
2507e1244c69SJed Brown      * have displaced the RHS matrix */
2508e1244c69SJed Brown     if (Amat == ts->Arhs) {
2509e1244c69SJed Brown       ierr = MatDuplicate(ts->Arhs,MAT_DO_NOT_COPY_VALUES,&Amat);CHKERRQ(ierr);
2510e1244c69SJed Brown       ierr = SNESSetJacobian(snes,Amat,NULL,NULL,NULL);CHKERRQ(ierr);
2511e1244c69SJed Brown       ierr = MatDestroy(&Amat);CHKERRQ(ierr);
2512e1244c69SJed Brown     }
2513e1244c69SJed Brown     if (Pmat == ts->Brhs) {
2514e1244c69SJed Brown       ierr = MatDuplicate(ts->Brhs,MAT_DO_NOT_COPY_VALUES,&Pmat);CHKERRQ(ierr);
2515e1244c69SJed Brown       ierr = SNESSetJacobian(snes,NULL,Pmat,NULL,NULL);CHKERRQ(ierr);
2516e1244c69SJed Brown       ierr = MatDestroy(&Pmat);CHKERRQ(ierr);
2517e1244c69SJed Brown     }
2518e1244c69SJed Brown   }
2519*2ffb9264SLisandro Dalcin 
2520*2ffb9264SLisandro Dalcin   ierr = TSGetAdapt(ts,&ts->adapt);CHKERRQ(ierr);
2521*2ffb9264SLisandro Dalcin   ierr = TSAdaptSetDefaultType(ts->adapt,ts->default_adapt_type);CHKERRQ(ierr);
2522*2ffb9264SLisandro Dalcin 
2523277b19d0SLisandro Dalcin   if (ts->ops->setup) {
2524000e7ae3SMatthew Knepley     ierr = (*ts->ops->setup)(ts);CHKERRQ(ierr);
2525277b19d0SLisandro Dalcin   }
2526277b19d0SLisandro Dalcin 
2527*2ffb9264SLisandro Dalcin   /* Attempt to check/preset a default value for the exact final time option */
2528*2ffb9264SLisandro Dalcin   ierr = PetscObjectTypeCompare((PetscObject)ts->adapt,TSADAPTNONE,&isnone);CHKERRQ(ierr);
2529*2ffb9264SLisandro Dalcin   if (!isnone && ts->exact_final_time == TS_EXACTFINALTIME_UNSPECIFIED)
2530*2ffb9264SLisandro Dalcin     ts->exact_final_time = TS_EXACTFINALTIME_MATCHSTEP;
2531*2ffb9264SLisandro Dalcin 
2532a6772fa2SLisandro Dalcin   /* In the case where we've set a DMTSFunction or what have you, we need the default SNESFunction
25336c6b9e74SPeter Brune      to be set right but can't do it elsewhere due to the overreliance on ctx=ts.
25346c6b9e74SPeter Brune    */
25356c6b9e74SPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
25360298fd71SBarry Smith   ierr = DMSNESGetFunction(dm,&func,NULL);CHKERRQ(ierr);
25376c6b9e74SPeter Brune   if (!func) {
25386c6b9e74SPeter Brune     ierr = DMSNESSetFunction(dm,SNESTSFormFunction,ts);CHKERRQ(ierr);
25396c6b9e74SPeter Brune   }
2540a6772fa2SLisandro Dalcin   /* If the SNES doesn't have a jacobian set and the TS has an ijacobian or rhsjacobian set, set the SNES to use it.
25416c6b9e74SPeter Brune      Otherwise, the SNES will use coloring internally to form the Jacobian.
25426c6b9e74SPeter Brune    */
25430298fd71SBarry Smith   ierr = DMSNESGetJacobian(dm,&jac,NULL);CHKERRQ(ierr);
25440298fd71SBarry Smith   ierr = DMTSGetIJacobian(dm,&ijac,NULL);CHKERRQ(ierr);
2545efe9872eSLisandro Dalcin   ierr = DMTSGetI2Jacobian(dm,&i2jac,NULL);CHKERRQ(ierr);
25460298fd71SBarry Smith   ierr = DMTSGetRHSJacobian(dm,&rhsjac,NULL);CHKERRQ(ierr);
2547efe9872eSLisandro Dalcin   if (!jac && (ijac || i2jac || rhsjac)) {
25486c6b9e74SPeter Brune     ierr = DMSNESSetJacobian(dm,SNESTSFormJacobian,ts);CHKERRQ(ierr);
25496c6b9e74SPeter Brune   }
2550c0517034SDebojyoti Ghosh 
2551c0517034SDebojyoti Ghosh   /* if time integration scheme has a starting method, call it */
2552c0517034SDebojyoti Ghosh   if (ts->ops->startingmethod) {
2553c0517034SDebojyoti Ghosh     ierr = (*ts->ops->startingmethod)(ts);CHKERRQ(ierr);
2554c0517034SDebojyoti Ghosh   }
2555c0517034SDebojyoti Ghosh 
2556277b19d0SLisandro Dalcin   ts->setupcalled = PETSC_TRUE;
2557277b19d0SLisandro Dalcin   PetscFunctionReturn(0);
2558277b19d0SLisandro Dalcin }
2559277b19d0SLisandro Dalcin 
2560f6a906c0SBarry Smith /*@
2561f6a906c0SBarry Smith    TSAdjointSetUp - Sets up the internal data structures for the later use
2562f6a906c0SBarry Smith    of an adjoint solver
2563f6a906c0SBarry Smith 
2564f6a906c0SBarry Smith    Collective on TS
2565f6a906c0SBarry Smith 
2566f6a906c0SBarry Smith    Input Parameter:
2567f6a906c0SBarry Smith .  ts - the TS context obtained from TSCreate()
2568f6a906c0SBarry Smith 
2569f6a906c0SBarry Smith    Level: advanced
2570f6a906c0SBarry Smith 
2571f6a906c0SBarry Smith .keywords: TS, timestep, setup
2572f6a906c0SBarry Smith 
2573947abb85SHong Zhang .seealso: TSCreate(), TSAdjointStep(), TSSetCostGradients()
2574f6a906c0SBarry Smith @*/
2575f6a906c0SBarry Smith PetscErrorCode  TSAdjointSetUp(TS ts)
2576f6a906c0SBarry Smith {
2577f6a906c0SBarry Smith   PetscErrorCode ierr;
2578f6a906c0SBarry Smith 
2579f6a906c0SBarry Smith   PetscFunctionBegin;
2580f6a906c0SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2581f6a906c0SBarry Smith   if (ts->adjointsetupcalled) PetscFunctionReturn(0);
2582dfb21088SHong Zhang   if (!ts->vecs_sensi) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Must call TSSetCostGradients() first");
2583d8151eeaSBarry Smith 
2584947abb85SHong Zhang   if (ts->vec_costintegral) { /* if there is integral in the cost function*/
2585d8151eeaSBarry Smith     ierr = VecDuplicateVecs(ts->vecs_sensi[0],ts->numcost,&ts->vecs_drdy);CHKERRQ(ierr);
2586d8151eeaSBarry Smith     if (ts->vecs_sensip){
2587d8151eeaSBarry Smith       ierr = VecDuplicateVecs(ts->vecs_sensip[0],ts->numcost,&ts->vecs_drdp);CHKERRQ(ierr);
2588d8151eeaSBarry Smith     }
2589947abb85SHong Zhang   }
2590d8151eeaSBarry Smith 
259142f2b339SBarry Smith   if (ts->ops->adjointsetup) {
259242f2b339SBarry Smith     ierr = (*ts->ops->adjointsetup)(ts);CHKERRQ(ierr);
2593f6a906c0SBarry Smith   }
2594f6a906c0SBarry Smith   ts->adjointsetupcalled = PETSC_TRUE;
2595f6a906c0SBarry Smith   PetscFunctionReturn(0);
2596f6a906c0SBarry Smith }
2597f6a906c0SBarry Smith 
2598277b19d0SLisandro Dalcin /*@
2599277b19d0SLisandro Dalcin    TSReset - Resets a TS context and removes any allocated Vecs and Mats.
2600277b19d0SLisandro Dalcin 
2601277b19d0SLisandro Dalcin    Collective on TS
2602277b19d0SLisandro Dalcin 
2603277b19d0SLisandro Dalcin    Input Parameter:
2604277b19d0SLisandro Dalcin .  ts - the TS context obtained from TSCreate()
2605277b19d0SLisandro Dalcin 
2606277b19d0SLisandro Dalcin    Level: beginner
2607277b19d0SLisandro Dalcin 
2608277b19d0SLisandro Dalcin .keywords: TS, timestep, reset
2609277b19d0SLisandro Dalcin 
2610277b19d0SLisandro Dalcin .seealso: TSCreate(), TSSetup(), TSDestroy()
2611277b19d0SLisandro Dalcin @*/
2612277b19d0SLisandro Dalcin PetscErrorCode  TSReset(TS ts)
2613277b19d0SLisandro Dalcin {
2614277b19d0SLisandro Dalcin   PetscErrorCode ierr;
2615277b19d0SLisandro Dalcin 
2616277b19d0SLisandro Dalcin   PetscFunctionBegin;
2617277b19d0SLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2618b18ea86cSHong Zhang 
2619277b19d0SLisandro Dalcin   if (ts->ops->reset) {
2620277b19d0SLisandro Dalcin     ierr = (*ts->ops->reset)(ts);CHKERRQ(ierr);
2621277b19d0SLisandro Dalcin   }
2622277b19d0SLisandro Dalcin   if (ts->snes) {ierr = SNESReset(ts->snes);CHKERRQ(ierr);}
2623e27a82bcSLisandro Dalcin   if (ts->adapt) {ierr = TSAdaptReset(ts->adapt);CHKERRQ(ierr);}
2624bbd56ea5SKarl Rupp 
26254e684422SJed Brown   ierr = MatDestroy(&ts->Arhs);CHKERRQ(ierr);
26264e684422SJed Brown   ierr = MatDestroy(&ts->Brhs);CHKERRQ(ierr);
2627214bc6a2SJed Brown   ierr = VecDestroy(&ts->Frhs);CHKERRQ(ierr);
26286bf464f9SBarry Smith   ierr = VecDestroy(&ts->vec_sol);CHKERRQ(ierr);
2629efe9872eSLisandro Dalcin   ierr = VecDestroy(&ts->vec_dot);CHKERRQ(ierr);
2630e3d84a46SJed Brown   ierr = VecDestroy(&ts->vatol);CHKERRQ(ierr);
2631e3d84a46SJed Brown   ierr = VecDestroy(&ts->vrtol);CHKERRQ(ierr);
263238637c2eSJed Brown   ierr = VecDestroyVecs(ts->nwork,&ts->work);CHKERRQ(ierr);
2633bbd56ea5SKarl Rupp 
2634947abb85SHong Zhang  if (ts->vec_costintegral) {
2635d8151eeaSBarry Smith     ierr = VecDestroyVecs(ts->numcost,&ts->vecs_drdy);CHKERRQ(ierr);
2636d8151eeaSBarry Smith     if (ts->vecs_drdp){
2637d8151eeaSBarry Smith       ierr = VecDestroyVecs(ts->numcost,&ts->vecs_drdp);CHKERRQ(ierr);
2638d8151eeaSBarry Smith     }
2639947abb85SHong Zhang   }
2640d8151eeaSBarry Smith   ts->vecs_sensi  = NULL;
2641d8151eeaSBarry Smith   ts->vecs_sensip = NULL;
2642ad8e2604SHong Zhang   ierr = MatDestroy(&ts->Jacp);CHKERRQ(ierr);
26432c39e106SBarry Smith   ierr = VecDestroy(&ts->vec_costintegral);CHKERRQ(ierr);
264436eaed60SHong Zhang   ierr = VecDestroy(&ts->vec_costintegrand);CHKERRQ(ierr);
2645277b19d0SLisandro Dalcin   ts->setupcalled = PETSC_FALSE;
2646d763cef2SBarry Smith   PetscFunctionReturn(0);
2647d763cef2SBarry Smith }
2648d763cef2SBarry Smith 
2649d8e5e3e6SSatish Balay /*@
2650d763cef2SBarry Smith    TSDestroy - Destroys the timestepper context that was created
2651d763cef2SBarry Smith    with TSCreate().
2652d763cef2SBarry Smith 
2653d763cef2SBarry Smith    Collective on TS
2654d763cef2SBarry Smith 
2655d763cef2SBarry Smith    Input Parameter:
2656d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2657d763cef2SBarry Smith 
2658d763cef2SBarry Smith    Level: beginner
2659d763cef2SBarry Smith 
2660d763cef2SBarry Smith .keywords: TS, timestepper, destroy
2661d763cef2SBarry Smith 
2662d763cef2SBarry Smith .seealso: TSCreate(), TSSetUp(), TSSolve()
2663d763cef2SBarry Smith @*/
26646bf464f9SBarry Smith PetscErrorCode  TSDestroy(TS *ts)
2665d763cef2SBarry Smith {
26666849ba73SBarry Smith   PetscErrorCode ierr;
2667d763cef2SBarry Smith 
2668d763cef2SBarry Smith   PetscFunctionBegin;
26696bf464f9SBarry Smith   if (!*ts) PetscFunctionReturn(0);
26706bf464f9SBarry Smith   PetscValidHeaderSpecific((*ts),TS_CLASSID,1);
26716bf464f9SBarry Smith   if (--((PetscObject)(*ts))->refct > 0) {*ts = 0; PetscFunctionReturn(0);}
2672d763cef2SBarry Smith 
26736bf464f9SBarry Smith   ierr = TSReset((*ts));CHKERRQ(ierr);
2674277b19d0SLisandro Dalcin 
2675e04113cfSBarry Smith   /* if memory was published with SAWs then destroy it */
2676e04113cfSBarry Smith   ierr = PetscObjectSAWsViewOff((PetscObject)*ts);CHKERRQ(ierr);
26776bf464f9SBarry Smith   if ((*ts)->ops->destroy) {ierr = (*(*ts)->ops->destroy)((*ts));CHKERRQ(ierr);}
26786d4c513bSLisandro Dalcin 
2679bc952696SBarry Smith   ierr = TSTrajectoryDestroy(&(*ts)->trajectory);CHKERRQ(ierr);
2680bc952696SBarry Smith 
268184df9cb4SJed Brown   ierr = TSAdaptDestroy(&(*ts)->adapt);CHKERRQ(ierr);
26826427ac75SLisandro Dalcin   ierr = TSEventDestroy(&(*ts)->event);CHKERRQ(ierr);
26836427ac75SLisandro Dalcin 
26846bf464f9SBarry Smith   ierr = SNESDestroy(&(*ts)->snes);CHKERRQ(ierr);
26856bf464f9SBarry Smith   ierr = DMDestroy(&(*ts)->dm);CHKERRQ(ierr);
26866bf464f9SBarry Smith   ierr = TSMonitorCancel((*ts));CHKERRQ(ierr);
26870dd9f2efSHong Zhang   ierr = TSAdjointMonitorCancel((*ts));CHKERRQ(ierr);
26886d4c513bSLisandro Dalcin 
2689a79aaaedSSatish Balay   ierr = PetscHeaderDestroy(ts);CHKERRQ(ierr);
2690d763cef2SBarry Smith   PetscFunctionReturn(0);
2691d763cef2SBarry Smith }
2692d763cef2SBarry Smith 
2693d8e5e3e6SSatish Balay /*@
2694d763cef2SBarry Smith    TSGetSNES - Returns the SNES (nonlinear solver) associated with
2695d763cef2SBarry Smith    a TS (timestepper) context. Valid only for nonlinear problems.
2696d763cef2SBarry Smith 
2697d763cef2SBarry Smith    Not Collective, but SNES is parallel if TS is parallel
2698d763cef2SBarry Smith 
2699d763cef2SBarry Smith    Input Parameter:
2700d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2701d763cef2SBarry Smith 
2702d763cef2SBarry Smith    Output Parameter:
2703d763cef2SBarry Smith .  snes - the nonlinear solver context
2704d763cef2SBarry Smith 
2705d763cef2SBarry Smith    Notes:
2706d763cef2SBarry Smith    The user can then directly manipulate the SNES context to set various
2707d763cef2SBarry Smith    options, etc.  Likewise, the user can then extract and manipulate the
270894b7f48cSBarry Smith    KSP, KSP, and PC contexts as well.
2709d763cef2SBarry Smith 
2710d763cef2SBarry Smith    TSGetSNES() does not work for integrators that do not use SNES; in
27110298fd71SBarry Smith    this case TSGetSNES() returns NULL in snes.
2712d763cef2SBarry Smith 
2713d763cef2SBarry Smith    Level: beginner
2714d763cef2SBarry Smith 
2715d763cef2SBarry Smith .keywords: timestep, get, SNES
2716d763cef2SBarry Smith @*/
27177087cfbeSBarry Smith PetscErrorCode  TSGetSNES(TS ts,SNES *snes)
2718d763cef2SBarry Smith {
2719d372ba47SLisandro Dalcin   PetscErrorCode ierr;
2720d372ba47SLisandro Dalcin 
2721d763cef2SBarry Smith   PetscFunctionBegin;
27220700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
27234482741eSBarry Smith   PetscValidPointer(snes,2);
2724d372ba47SLisandro Dalcin   if (!ts->snes) {
2725ce94432eSBarry Smith     ierr = SNESCreate(PetscObjectComm((PetscObject)ts),&ts->snes);CHKERRQ(ierr);
27260298fd71SBarry Smith     ierr = SNESSetFunction(ts->snes,NULL,SNESTSFormFunction,ts);CHKERRQ(ierr);
27273bb1ff40SBarry Smith     ierr = PetscLogObjectParent((PetscObject)ts,(PetscObject)ts->snes);CHKERRQ(ierr);
2728d372ba47SLisandro Dalcin     ierr = PetscObjectIncrementTabLevel((PetscObject)ts->snes,(PetscObject)ts,1);CHKERRQ(ierr);
2729496e6a7aSJed Brown     if (ts->dm) {ierr = SNESSetDM(ts->snes,ts->dm);CHKERRQ(ierr);}
27309e2a6581SJed Brown     if (ts->problem_type == TS_LINEAR) {
27319e2a6581SJed Brown       ierr = SNESSetType(ts->snes,SNESKSPONLY);CHKERRQ(ierr);
27329e2a6581SJed Brown     }
2733d372ba47SLisandro Dalcin   }
2734d763cef2SBarry Smith   *snes = ts->snes;
2735d763cef2SBarry Smith   PetscFunctionReturn(0);
2736d763cef2SBarry Smith }
2737d763cef2SBarry Smith 
2738deb2cd25SJed Brown /*@
2739deb2cd25SJed Brown    TSSetSNES - Set the SNES (nonlinear solver) to be used by the timestepping context
2740deb2cd25SJed Brown 
2741deb2cd25SJed Brown    Collective
2742deb2cd25SJed Brown 
2743deb2cd25SJed Brown    Input Parameter:
2744deb2cd25SJed Brown +  ts - the TS context obtained from TSCreate()
2745deb2cd25SJed Brown -  snes - the nonlinear solver context
2746deb2cd25SJed Brown 
2747deb2cd25SJed Brown    Notes:
2748deb2cd25SJed Brown    Most users should have the TS created by calling TSGetSNES()
2749deb2cd25SJed Brown 
2750deb2cd25SJed Brown    Level: developer
2751deb2cd25SJed Brown 
2752deb2cd25SJed Brown .keywords: timestep, set, SNES
2753deb2cd25SJed Brown @*/
2754deb2cd25SJed Brown PetscErrorCode TSSetSNES(TS ts,SNES snes)
2755deb2cd25SJed Brown {
2756deb2cd25SJed Brown   PetscErrorCode ierr;
2757d1e9a80fSBarry Smith   PetscErrorCode (*func)(SNES,Vec,Mat,Mat,void*);
2758deb2cd25SJed Brown 
2759deb2cd25SJed Brown   PetscFunctionBegin;
2760deb2cd25SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2761deb2cd25SJed Brown   PetscValidHeaderSpecific(snes,SNES_CLASSID,2);
2762deb2cd25SJed Brown   ierr = PetscObjectReference((PetscObject)snes);CHKERRQ(ierr);
2763deb2cd25SJed Brown   ierr = SNESDestroy(&ts->snes);CHKERRQ(ierr);
2764bbd56ea5SKarl Rupp 
2765deb2cd25SJed Brown   ts->snes = snes;
2766bbd56ea5SKarl Rupp 
27670298fd71SBarry Smith   ierr = SNESSetFunction(ts->snes,NULL,SNESTSFormFunction,ts);CHKERRQ(ierr);
27680298fd71SBarry Smith   ierr = SNESGetJacobian(ts->snes,NULL,NULL,&func,NULL);CHKERRQ(ierr);
2769740132f1SEmil Constantinescu   if (func == SNESTSFormJacobian) {
27700298fd71SBarry Smith     ierr = SNESSetJacobian(ts->snes,NULL,NULL,SNESTSFormJacobian,ts);CHKERRQ(ierr);
2771740132f1SEmil Constantinescu   }
2772deb2cd25SJed Brown   PetscFunctionReturn(0);
2773deb2cd25SJed Brown }
2774deb2cd25SJed Brown 
2775d8e5e3e6SSatish Balay /*@
277694b7f48cSBarry Smith    TSGetKSP - Returns the KSP (linear solver) associated with
2777d763cef2SBarry Smith    a TS (timestepper) context.
2778d763cef2SBarry Smith 
277994b7f48cSBarry Smith    Not Collective, but KSP is parallel if TS is parallel
2780d763cef2SBarry Smith 
2781d763cef2SBarry Smith    Input Parameter:
2782d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2783d763cef2SBarry Smith 
2784d763cef2SBarry Smith    Output Parameter:
278594b7f48cSBarry Smith .  ksp - the nonlinear solver context
2786d763cef2SBarry Smith 
2787d763cef2SBarry Smith    Notes:
278894b7f48cSBarry Smith    The user can then directly manipulate the KSP context to set various
2789d763cef2SBarry Smith    options, etc.  Likewise, the user can then extract and manipulate the
2790d763cef2SBarry Smith    KSP and PC contexts as well.
2791d763cef2SBarry Smith 
279294b7f48cSBarry Smith    TSGetKSP() does not work for integrators that do not use KSP;
27930298fd71SBarry Smith    in this case TSGetKSP() returns NULL in ksp.
2794d763cef2SBarry Smith 
2795d763cef2SBarry Smith    Level: beginner
2796d763cef2SBarry Smith 
279794b7f48cSBarry Smith .keywords: timestep, get, KSP
2798d763cef2SBarry Smith @*/
27997087cfbeSBarry Smith PetscErrorCode  TSGetKSP(TS ts,KSP *ksp)
2800d763cef2SBarry Smith {
2801d372ba47SLisandro Dalcin   PetscErrorCode ierr;
2802089b2837SJed Brown   SNES           snes;
2803d372ba47SLisandro Dalcin 
2804d763cef2SBarry Smith   PetscFunctionBegin;
28050700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
28064482741eSBarry Smith   PetscValidPointer(ksp,2);
280717186662SBarry Smith   if (!((PetscObject)ts)->type_name) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NULL,"KSP is not created yet. Call TSSetType() first");
2808e32f2f54SBarry Smith   if (ts->problem_type != TS_LINEAR) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Linear only; use TSGetSNES()");
2809089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
2810089b2837SJed Brown   ierr = SNESGetKSP(snes,ksp);CHKERRQ(ierr);
2811d763cef2SBarry Smith   PetscFunctionReturn(0);
2812d763cef2SBarry Smith }
2813d763cef2SBarry Smith 
2814d763cef2SBarry Smith /* ----------- Routines to set solver parameters ---------- */
2815d763cef2SBarry Smith 
2816adb62b0dSMatthew Knepley /*@
2817adb62b0dSMatthew Knepley    TSGetDuration - Gets the maximum number of timesteps to use and
2818adb62b0dSMatthew Knepley    maximum time for iteration.
2819adb62b0dSMatthew Knepley 
28203f9fe445SBarry Smith    Not Collective
2821adb62b0dSMatthew Knepley 
2822adb62b0dSMatthew Knepley    Input Parameters:
2823adb62b0dSMatthew Knepley +  ts       - the TS context obtained from TSCreate()
28240298fd71SBarry Smith .  maxsteps - maximum number of iterations to use, or NULL
28250298fd71SBarry Smith -  maxtime  - final time to iterate to, or NULL
2826adb62b0dSMatthew Knepley 
2827adb62b0dSMatthew Knepley    Level: intermediate
2828adb62b0dSMatthew Knepley 
2829adb62b0dSMatthew Knepley .keywords: TS, timestep, get, maximum, iterations, time
2830adb62b0dSMatthew Knepley @*/
28317087cfbeSBarry Smith PetscErrorCode  TSGetDuration(TS ts, PetscInt *maxsteps, PetscReal *maxtime)
2832adb62b0dSMatthew Knepley {
2833adb62b0dSMatthew Knepley   PetscFunctionBegin;
28340700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2835abc0a331SBarry Smith   if (maxsteps) {
28364482741eSBarry Smith     PetscValidIntPointer(maxsteps,2);
2837adb62b0dSMatthew Knepley     *maxsteps = ts->max_steps;
2838adb62b0dSMatthew Knepley   }
2839abc0a331SBarry Smith   if (maxtime) {
28404482741eSBarry Smith     PetscValidScalarPointer(maxtime,3);
2841adb62b0dSMatthew Knepley     *maxtime = ts->max_time;
2842adb62b0dSMatthew Knepley   }
2843adb62b0dSMatthew Knepley   PetscFunctionReturn(0);
2844adb62b0dSMatthew Knepley }
2845adb62b0dSMatthew Knepley 
2846d763cef2SBarry Smith /*@
2847d763cef2SBarry Smith    TSSetDuration - Sets the maximum number of timesteps to use and
2848d763cef2SBarry Smith    maximum time for iteration.
2849d763cef2SBarry Smith 
28503f9fe445SBarry Smith    Logically Collective on TS
2851d763cef2SBarry Smith 
2852d763cef2SBarry Smith    Input Parameters:
2853d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
2854d763cef2SBarry Smith .  maxsteps - maximum number of iterations to use
2855d763cef2SBarry Smith -  maxtime - final time to iterate to
2856d763cef2SBarry Smith 
2857d763cef2SBarry Smith    Options Database Keys:
2858d763cef2SBarry Smith .  -ts_max_steps <maxsteps> - Sets maxsteps
28593bca7d26SBarry Smith .  -ts_final_time <maxtime> - Sets maxtime
2860d763cef2SBarry Smith 
2861d763cef2SBarry Smith    Notes:
2862d763cef2SBarry Smith    The default maximum number of iterations is 5000. Default time is 5.0
2863d763cef2SBarry Smith 
2864d763cef2SBarry Smith    Level: intermediate
2865d763cef2SBarry Smith 
2866d763cef2SBarry Smith .keywords: TS, timestep, set, maximum, iterations
2867a43b19c4SJed Brown 
2868a43b19c4SJed Brown .seealso: TSSetExactFinalTime()
2869d763cef2SBarry Smith @*/
28707087cfbeSBarry Smith PetscErrorCode  TSSetDuration(TS ts,PetscInt maxsteps,PetscReal maxtime)
2871d763cef2SBarry Smith {
2872d763cef2SBarry Smith   PetscFunctionBegin;
28730700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2874c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(ts,maxsteps,2);
2875c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(ts,maxtime,2);
287639b7ec4bSSean Farley   if (maxsteps >= 0) ts->max_steps = maxsteps;
287739b7ec4bSSean Farley   if (maxtime != PETSC_DEFAULT) ts->max_time = maxtime;
2878d763cef2SBarry Smith   PetscFunctionReturn(0);
2879d763cef2SBarry Smith }
2880d763cef2SBarry Smith 
2881d763cef2SBarry Smith /*@
2882d763cef2SBarry Smith    TSSetSolution - Sets the initial solution vector
2883d763cef2SBarry Smith    for use by the TS routines.
2884d763cef2SBarry Smith 
28853f9fe445SBarry Smith    Logically Collective on TS and Vec
2886d763cef2SBarry Smith 
2887d763cef2SBarry Smith    Input Parameters:
2888d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
28890910c330SBarry Smith -  u - the solution vector
2890d763cef2SBarry Smith 
2891d763cef2SBarry Smith    Level: beginner
2892d763cef2SBarry Smith 
2893d763cef2SBarry Smith .keywords: TS, timestep, set, solution, initial conditions
2894d763cef2SBarry Smith @*/
28950910c330SBarry Smith PetscErrorCode  TSSetSolution(TS ts,Vec u)
2896d763cef2SBarry Smith {
28978737fe31SLisandro Dalcin   PetscErrorCode ierr;
2898496e6a7aSJed Brown   DM             dm;
28998737fe31SLisandro Dalcin 
2900d763cef2SBarry Smith   PetscFunctionBegin;
29010700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
29020910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,2);
29030910c330SBarry Smith   ierr = PetscObjectReference((PetscObject)u);CHKERRQ(ierr);
29046bf464f9SBarry Smith   ierr = VecDestroy(&ts->vec_sol);CHKERRQ(ierr);
29050910c330SBarry Smith   ts->vec_sol = u;
2906bbd56ea5SKarl Rupp 
2907496e6a7aSJed Brown   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
29080910c330SBarry Smith   ierr = DMShellSetGlobalVector(dm,u);CHKERRQ(ierr);
2909d763cef2SBarry Smith   PetscFunctionReturn(0);
2910d763cef2SBarry Smith }
2911d763cef2SBarry Smith 
291273b18844SBarry Smith /*@
291373b18844SBarry Smith    TSAdjointSetSteps - Sets the number of steps the adjoint solver should take backward in time
291473b18844SBarry Smith 
291573b18844SBarry Smith    Logically Collective on TS
291673b18844SBarry Smith 
291773b18844SBarry Smith    Input Parameters:
291873b18844SBarry Smith +  ts - the TS context obtained from TSCreate()
291973b18844SBarry Smith .  steps - number of steps to use
292073b18844SBarry Smith 
292173b18844SBarry Smith    Level: intermediate
292273b18844SBarry Smith 
292373b18844SBarry Smith    Notes: Normally one does not call this and TSAdjointSolve() integrates back to the original timestep. One can call this
292473b18844SBarry Smith           so as to integrate back to less than the original timestep
292573b18844SBarry Smith 
292673b18844SBarry Smith .keywords: TS, timestep, set, maximum, iterations
292773b18844SBarry Smith 
292873b18844SBarry Smith .seealso: TSSetExactFinalTime()
292973b18844SBarry Smith @*/
293073b18844SBarry Smith PetscErrorCode  TSAdjointSetSteps(TS ts,PetscInt steps)
293173b18844SBarry Smith {
293273b18844SBarry Smith   PetscFunctionBegin;
293373b18844SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
293473b18844SBarry Smith   PetscValidLogicalCollectiveInt(ts,steps,2);
293573b18844SBarry Smith   if (steps < 0) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_OUTOFRANGE,"Cannot step back a negative number of steps");
293673b18844SBarry Smith   if (steps > ts->total_steps) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_OUTOFRANGE,"Cannot step back more than the total number of forward steps");
293773b18844SBarry Smith   ts->adjoint_max_steps = steps;
293873b18844SBarry Smith   PetscFunctionReturn(0);
293973b18844SBarry Smith }
294073b18844SBarry Smith 
2941c235aa8dSHong Zhang /*@
2942dfb21088SHong Zhang    TSSetCostGradients - Sets the initial value of the gradients of the cost function w.r.t. initial conditions and w.r.t. the problem parameters
29430cf82b59SBarry Smith       for use by the TSAdjoint routines.
2944c235aa8dSHong Zhang 
2945c235aa8dSHong Zhang    Logically Collective on TS and Vec
2946c235aa8dSHong Zhang 
2947c235aa8dSHong Zhang    Input Parameters:
2948c235aa8dSHong Zhang +  ts - the TS context obtained from TSCreate()
2949abc2977eSBarry Smith .  lambda - gradients with respect to the initial condition variables, the dimension and parallel layout of these vectors is the same as the ODE solution vector
2950abc2977eSBarry Smith -  mu - gradients with respect to the parameters, the number of entries in these vectors is the same as the number of parameters
2951c235aa8dSHong Zhang 
2952c235aa8dSHong Zhang    Level: beginner
2953c235aa8dSHong Zhang 
2954abc2977eSBarry Smith    Notes: the entries in these vectors must be correctly initialized with the values lamda_i = df/dy|finaltime  mu_i = df/dp|finaltime
29550cf82b59SBarry Smith 
2956c235aa8dSHong Zhang .keywords: TS, timestep, set, sensitivity, initial conditions
2957c235aa8dSHong Zhang @*/
2958dfb21088SHong Zhang PetscErrorCode  TSSetCostGradients(TS ts,PetscInt numcost,Vec *lambda,Vec *mu)
2959c235aa8dSHong Zhang {
2960c235aa8dSHong Zhang   PetscFunctionBegin;
2961c235aa8dSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2962abc2977eSBarry Smith   PetscValidPointer(lambda,2);
2963abc2977eSBarry Smith   ts->vecs_sensi  = lambda;
2964abc2977eSBarry Smith   ts->vecs_sensip = mu;
2965dfb21088SHong Zhang   if (ts->numcost && ts->numcost!=numcost) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"The number of cost functions (2rd parameter of TSSetCostIntegrand()) is inconsistent with the one set by TSSetCostIntegrand");
2966abc2977eSBarry Smith   ts->numcost  = numcost;
2967ad8e2604SHong Zhang   PetscFunctionReturn(0);
2968ad8e2604SHong Zhang }
2969ad8e2604SHong Zhang 
2970ad8e2604SHong Zhang /*@C
29710cf82b59SBarry Smith   TSAdjointSetRHSJacobian - Sets the function that computes the Jacobian of G w.r.t. the parameters p where y_t = G(y,p,t), as well as the location to store the matrix.
2972ad8e2604SHong Zhang 
2973ad8e2604SHong Zhang   Logically Collective on TS
2974ad8e2604SHong Zhang 
2975ad8e2604SHong Zhang   Input Parameters:
2976ad8e2604SHong Zhang + ts   - The TS context obtained from TSCreate()
2977ad8e2604SHong Zhang - func - The function
2978ad8e2604SHong Zhang 
2979ad8e2604SHong Zhang   Calling sequence of func:
29800cf82b59SBarry Smith $ func (TS ts,PetscReal t,Vec y,Mat A,void *ctx);
298105755b9cSHong Zhang +   t - current timestep
29820cf82b59SBarry Smith .   y - input vector (current ODE solution)
298305755b9cSHong Zhang .   A - output matrix
298405755b9cSHong Zhang -   ctx - [optional] user-defined function context
2985ad8e2604SHong Zhang 
2986ad8e2604SHong Zhang   Level: intermediate
2987ad8e2604SHong Zhang 
29880cf82b59SBarry Smith   Notes: Amat has the same number of rows and the same row parallel layout as u, Amat has the same number of columns and parallel layout as p
29890cf82b59SBarry Smith 
2990ad8e2604SHong Zhang .keywords: TS, sensitivity
2991ad8e2604SHong Zhang .seealso:
2992ad8e2604SHong Zhang @*/
29935bf8c567SBarry Smith PetscErrorCode  TSAdjointSetRHSJacobian(TS ts,Mat Amat,PetscErrorCode (*func)(TS,PetscReal,Vec,Mat,void*),void *ctx)
2994ad8e2604SHong Zhang {
2995ad8e2604SHong Zhang   PetscErrorCode ierr;
2996ad8e2604SHong Zhang 
2997ad8e2604SHong Zhang   PetscFunctionBegin;
2998ad8e2604SHong Zhang   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2999ad8e2604SHong Zhang   if (Amat) PetscValidHeaderSpecific(Amat,MAT_CLASSID,2);
3000ad8e2604SHong Zhang 
3001ad8e2604SHong Zhang   ts->rhsjacobianp    = func;
3002ad8e2604SHong Zhang   ts->rhsjacobianpctx = ctx;
3003ad8e2604SHong Zhang   if(Amat) {
3004ad8e2604SHong Zhang     ierr = PetscObjectReference((PetscObject)Amat);CHKERRQ(ierr);
3005ad8e2604SHong Zhang     ierr = MatDestroy(&ts->Jacp);CHKERRQ(ierr);
3006ad8e2604SHong Zhang     ts->Jacp = Amat;
3007ad8e2604SHong Zhang   }
3008ad8e2604SHong Zhang   PetscFunctionReturn(0);
3009ad8e2604SHong Zhang }
3010ad8e2604SHong Zhang 
30110cf82b59SBarry Smith /*@C
30125bf8c567SBarry Smith   TSAdjointComputeRHSJacobian - Runs the user-defined Jacobian function.
3013ad8e2604SHong Zhang 
3014ad8e2604SHong Zhang   Collective on TS
3015ad8e2604SHong Zhang 
3016ad8e2604SHong Zhang   Input Parameters:
3017ad8e2604SHong Zhang . ts   - The TS context obtained from TSCreate()
3018ad8e2604SHong Zhang 
3019ad8e2604SHong Zhang   Level: developer
3020ad8e2604SHong Zhang 
3021ad8e2604SHong Zhang .keywords: TS, sensitivity
30225bf8c567SBarry Smith .seealso: TSAdjointSetRHSJacobian()
3023ad8e2604SHong Zhang @*/
30245bf8c567SBarry Smith PetscErrorCode  TSAdjointComputeRHSJacobian(TS ts,PetscReal t,Vec X,Mat Amat)
3025ad8e2604SHong Zhang {
3026ad8e2604SHong Zhang   PetscErrorCode ierr;
3027ad8e2604SHong Zhang 
3028ad8e2604SHong Zhang   PetscFunctionBegin;
3029ad8e2604SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3030ad8e2604SHong Zhang   PetscValidHeaderSpecific(X,VEC_CLASSID,3);
3031ad8e2604SHong Zhang   PetscValidPointer(Amat,4);
3032ad8e2604SHong Zhang 
3033ad8e2604SHong Zhang   PetscStackPush("TS user JacobianP function for sensitivity analysis");
3034ad8e2604SHong Zhang   ierr = (*ts->rhsjacobianp)(ts,t,X,Amat,ts->rhsjacobianpctx); CHKERRQ(ierr);
3035ad8e2604SHong Zhang   PetscStackPop;
3036c235aa8dSHong Zhang   PetscFunctionReturn(0);
3037c235aa8dSHong Zhang }
3038c235aa8dSHong Zhang 
30396fd0887fSHong Zhang /*@C
3040dfb21088SHong Zhang     TSSetCostIntegrand - Sets the routine for evaluating the integral term in one or more cost functions
30416fd0887fSHong Zhang 
30426fd0887fSHong Zhang     Logically Collective on TS
30436fd0887fSHong Zhang 
30446fd0887fSHong Zhang     Input Parameters:
30456fd0887fSHong Zhang +   ts - the TS context obtained from TSCreate()
3046abc2977eSBarry Smith .   numcost - number of gradients to be computed, this is the number of cost functions
30470cf82b59SBarry Smith .   rf - routine for evaluating the integrand function
3048b612ec54SBarry Smith .   drdyf - function that computes the gradients of the r's with respect to y,NULL if not a function y
3049b612ec54SBarry Smith .   drdpf - function that computes the gradients of the r's with respect to p, NULL if not a function of p
3050feaa1ddbSSatish Balay .   fwd - flag indicating whether to evaluate cost integral in the forward run or the adjoint run
3051b612ec54SBarry Smith -   ctx - [optional] user-defined context for private data for the function evaluation routine (may be NULL)
30526fd0887fSHong Zhang 
30530cf82b59SBarry Smith     Calling sequence of rf:
30540cf82b59SBarry Smith $     rf(TS ts,PetscReal t,Vec y,Vec f[],void *ctx);
30556fd0887fSHong Zhang 
30566fd0887fSHong Zhang +   t - current timestep
30570cf82b59SBarry Smith .   y - input vector
30580cf82b59SBarry Smith .   f - function result; one vector entry for each cost function
30596fd0887fSHong Zhang -   ctx - [optional] user-defined function context
30606fd0887fSHong Zhang 
3061b612ec54SBarry Smith    Calling sequence of drdyf:
30620cf82b59SBarry Smith $    PetscErroCode drdyf(TS ts,PetscReal t,Vec y,Vec *drdy,void *ctx);
3063b612ec54SBarry Smith 
3064b612ec54SBarry Smith    Calling sequence of drdpf:
30650cf82b59SBarry Smith $    PetscErroCode drdpf(TS ts,PetscReal t,Vec y,Vec *drdp,void *ctx);
3066b612ec54SBarry Smith 
3067b612ec54SBarry Smith     Level: intermediate
30686fd0887fSHong Zhang 
3069abc2977eSBarry Smith     Notes: For optimization there is generally a single cost function, numcost = 1. For sensitivities there may be multiple cost functions
30700cf82b59SBarry Smith 
30716fd0887fSHong Zhang .keywords: TS, sensitivity analysis, timestep, set, quadrature, function
30726fd0887fSHong Zhang 
3073dfb21088SHong Zhang .seealso: TSAdjointSetRHSJacobian(),TSGetCostGradients(), TSSetCostGradients()
30746fd0887fSHong Zhang @*/
3075dfb21088SHong Zhang PetscErrorCode  TSSetCostIntegrand(TS ts,PetscInt numcost,PetscErrorCode (*rf)(TS,PetscReal,Vec,Vec,void*),
3076d8151eeaSBarry Smith                                                           PetscErrorCode (*drdyf)(TS,PetscReal,Vec,Vec*,void*),
3077b1cb36f3SHong Zhang                                                           PetscErrorCode (*drdpf)(TS,PetscReal,Vec,Vec*,void*),
3078b1cb36f3SHong Zhang                                                           PetscBool fwd,void *ctx)
30796fd0887fSHong Zhang {
30806fd0887fSHong Zhang   PetscErrorCode ierr;
30816fd0887fSHong Zhang 
30826fd0887fSHong Zhang   PetscFunctionBegin;
30836fd0887fSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3084dfb21088SHong Zhang   if (ts->numcost && ts->numcost!=numcost) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"The number of cost functions (2rd parameter of TSSetCostIntegrand()) is inconsistent with the one set by TSSetCostGradients()");
3085c72ed514SHong Zhang   if (!ts->numcost) ts->numcost=numcost;
30866fd0887fSHong Zhang 
3087b1cb36f3SHong Zhang   ts->costintegralfwd  = fwd; /* Evaluate the cost integral in forward run if fwd is true */
3088abc2977eSBarry Smith   ierr                 = VecCreateSeq(PETSC_COMM_SELF,numcost,&ts->vec_costintegral);CHKERRQ(ierr);
30892c39e106SBarry Smith   ierr                 = VecDuplicate(ts->vec_costintegral,&ts->vec_costintegrand);CHKERRQ(ierr);
30900cf82b59SBarry Smith   ts->costintegrand    = rf;
309105755b9cSHong Zhang   ts->costintegrandctx = ctx;
3092b612ec54SBarry Smith   ts->drdyfunction     = drdyf;
3093b612ec54SBarry Smith   ts->drdpfunction     = drdpf;
30946fd0887fSHong Zhang   PetscFunctionReturn(0);
30956fd0887fSHong Zhang }
30966fd0887fSHong Zhang 
309736eaed60SHong Zhang /*@
3098dfb21088SHong Zhang    TSGetCostIntegral - Returns the values of the integral term in the cost functions.
309936eaed60SHong Zhang    It is valid to call the routine after a backward run.
310036eaed60SHong Zhang 
310136eaed60SHong Zhang    Not Collective
310236eaed60SHong Zhang 
310336eaed60SHong Zhang    Input Parameter:
310436eaed60SHong Zhang .  ts - the TS context obtained from TSCreate()
310536eaed60SHong Zhang 
310636eaed60SHong Zhang    Output Parameter:
31072c39e106SBarry Smith .  v - the vector containing the integrals for each cost function
310836eaed60SHong Zhang 
310936eaed60SHong Zhang    Level: intermediate
311036eaed60SHong Zhang 
3111dfb21088SHong Zhang .seealso: TSSetCostIntegrand()
311236eaed60SHong Zhang 
311336eaed60SHong Zhang .keywords: TS, sensitivity analysis
311436eaed60SHong Zhang @*/
3115dfb21088SHong Zhang PetscErrorCode  TSGetCostIntegral(TS ts,Vec *v)
311636eaed60SHong Zhang {
311736eaed60SHong Zhang   PetscFunctionBegin;
311836eaed60SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
311936eaed60SHong Zhang   PetscValidPointer(v,2);
31202c39e106SBarry Smith   *v = ts->vec_costintegral;
312136eaed60SHong Zhang   PetscFunctionReturn(0);
312236eaed60SHong Zhang }
312336eaed60SHong Zhang 
31246fd0887fSHong Zhang /*@
31252c39e106SBarry Smith    TSAdjointComputeCostIntegrand - Evaluates the integral function in the cost functions.
31266fd0887fSHong Zhang 
31276fd0887fSHong Zhang    Input Parameters:
31286fd0887fSHong Zhang +  ts - the TS context
31296fd0887fSHong Zhang .  t - current time
31300cf82b59SBarry Smith -  y - state vector, i.e. current solution
31316fd0887fSHong Zhang 
31326fd0887fSHong Zhang    Output Parameter:
3133abc2977eSBarry Smith .  q - vector of size numcost to hold the outputs
31346fd0887fSHong Zhang 
31356fd0887fSHong Zhang    Note:
31366fd0887fSHong Zhang    Most users should not need to explicitly call this routine, as it
31376fd0887fSHong Zhang    is used internally within the sensitivity analysis context.
31386fd0887fSHong Zhang 
31396fd0887fSHong Zhang    Level: developer
31406fd0887fSHong Zhang 
31416fd0887fSHong Zhang .keywords: TS, compute
31426fd0887fSHong Zhang 
3143dfb21088SHong Zhang .seealso: TSSetCostIntegrand()
31446fd0887fSHong Zhang @*/
31450cf82b59SBarry Smith PetscErrorCode TSAdjointComputeCostIntegrand(TS ts,PetscReal t,Vec y,Vec q)
31466fd0887fSHong Zhang {
31476fd0887fSHong Zhang   PetscErrorCode ierr;
31486fd0887fSHong Zhang 
31496fd0887fSHong Zhang   PetscFunctionBegin;
31506fd0887fSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
31510cf82b59SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,3);
31526fd0887fSHong Zhang   PetscValidHeaderSpecific(q,VEC_CLASSID,4);
31536fd0887fSHong Zhang 
31540cf82b59SBarry Smith   ierr = PetscLogEventBegin(TS_FunctionEval,ts,y,q,0);CHKERRQ(ierr);
3155e4680132SHong Zhang   if (ts->costintegrand) {
3156e4680132SHong Zhang     PetscStackPush("TS user integrand in the cost function");
31570cf82b59SBarry Smith     ierr = (*ts->costintegrand)(ts,t,y,q,ts->costintegrandctx);CHKERRQ(ierr);
31586fd0887fSHong Zhang     PetscStackPop;
31596fd0887fSHong Zhang   } else {
31606fd0887fSHong Zhang     ierr = VecZeroEntries(q);CHKERRQ(ierr);
31616fd0887fSHong Zhang   }
31626fd0887fSHong Zhang 
31630cf82b59SBarry Smith   ierr = PetscLogEventEnd(TS_FunctionEval,ts,y,q,0);CHKERRQ(ierr);
31646fd0887fSHong Zhang   PetscFunctionReturn(0);
31656fd0887fSHong Zhang }
31666fd0887fSHong Zhang 
316705755b9cSHong Zhang /*@
3168d4aa0a58SBarry Smith   TSAdjointComputeDRDYFunction - Runs the user-defined DRDY function.
316905755b9cSHong Zhang 
317005755b9cSHong Zhang   Collective on TS
317105755b9cSHong Zhang 
317205755b9cSHong Zhang   Input Parameters:
317305755b9cSHong Zhang . ts   - The TS context obtained from TSCreate()
317405755b9cSHong Zhang 
317505755b9cSHong Zhang   Notes:
3176d4aa0a58SBarry Smith   TSAdjointComputeDRDYFunction() is typically used for sensitivity implementation,
317705755b9cSHong Zhang   so most users would not generally call this routine themselves.
317805755b9cSHong Zhang 
317905755b9cSHong Zhang   Level: developer
318005755b9cSHong Zhang 
318105755b9cSHong Zhang .keywords: TS, sensitivity
3182d4aa0a58SBarry Smith .seealso: TSAdjointComputeDRDYFunction()
318305755b9cSHong Zhang @*/
31840cf82b59SBarry Smith PetscErrorCode  TSAdjointComputeDRDYFunction(TS ts,PetscReal t,Vec y,Vec *drdy)
318505755b9cSHong Zhang {
318605755b9cSHong Zhang   PetscErrorCode ierr;
318705755b9cSHong Zhang 
318805755b9cSHong Zhang   PetscFunctionBegin;
318905755b9cSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
31900cf82b59SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,3);
319105755b9cSHong Zhang 
319205755b9cSHong Zhang   PetscStackPush("TS user DRDY function for sensitivity analysis");
31930cf82b59SBarry Smith   ierr = (*ts->drdyfunction)(ts,t,y,drdy,ts->costintegrandctx); CHKERRQ(ierr);
319405755b9cSHong Zhang   PetscStackPop;
319505755b9cSHong Zhang   PetscFunctionReturn(0);
319605755b9cSHong Zhang }
319705755b9cSHong Zhang 
319805755b9cSHong Zhang /*@
3199d4aa0a58SBarry Smith   TSAdjointComputeDRDPFunction - Runs the user-defined DRDP function.
320005755b9cSHong Zhang 
320105755b9cSHong Zhang   Collective on TS
320205755b9cSHong Zhang 
320305755b9cSHong Zhang   Input Parameters:
320405755b9cSHong Zhang . ts   - The TS context obtained from TSCreate()
320505755b9cSHong Zhang 
320605755b9cSHong Zhang   Notes:
320705755b9cSHong Zhang   TSDRDPFunction() is typically used for sensitivity implementation,
320805755b9cSHong Zhang   so most users would not generally call this routine themselves.
320905755b9cSHong Zhang 
321005755b9cSHong Zhang   Level: developer
321105755b9cSHong Zhang 
321205755b9cSHong Zhang .keywords: TS, sensitivity
3213d4aa0a58SBarry Smith .seealso: TSAdjointSetDRDPFunction()
321405755b9cSHong Zhang @*/
32150cf82b59SBarry Smith PetscErrorCode  TSAdjointComputeDRDPFunction(TS ts,PetscReal t,Vec y,Vec *drdp)
321605755b9cSHong Zhang {
321705755b9cSHong Zhang   PetscErrorCode ierr;
321805755b9cSHong Zhang 
321905755b9cSHong Zhang   PetscFunctionBegin;
322005755b9cSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
32210cf82b59SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,3);
322205755b9cSHong Zhang 
322305755b9cSHong Zhang   PetscStackPush("TS user DRDP function for sensitivity analysis");
32240cf82b59SBarry Smith   ierr = (*ts->drdpfunction)(ts,t,y,drdp,ts->costintegrandctx); CHKERRQ(ierr);
322505755b9cSHong Zhang   PetscStackPop;
322605755b9cSHong Zhang   PetscFunctionReturn(0);
322705755b9cSHong Zhang }
322805755b9cSHong Zhang 
3229ac226902SBarry Smith /*@C
3230000e7ae3SMatthew Knepley   TSSetPreStep - Sets the general-purpose function
32313f2090d5SJed Brown   called once at the beginning of each time step.
3232000e7ae3SMatthew Knepley 
32333f9fe445SBarry Smith   Logically Collective on TS
3234000e7ae3SMatthew Knepley 
3235000e7ae3SMatthew Knepley   Input Parameters:
3236000e7ae3SMatthew Knepley + ts   - The TS context obtained from TSCreate()
3237000e7ae3SMatthew Knepley - func - The function
3238000e7ae3SMatthew Knepley 
3239000e7ae3SMatthew Knepley   Calling sequence of func:
3240000e7ae3SMatthew Knepley . func (TS ts);
3241000e7ae3SMatthew Knepley 
3242000e7ae3SMatthew Knepley   Level: intermediate
3243000e7ae3SMatthew Knepley 
3244000e7ae3SMatthew Knepley .keywords: TS, timestep
32459be3e283SDebojyoti Ghosh .seealso: TSSetPreStage(), TSSetPostStage(), TSSetPostStep(), TSStep()
3246000e7ae3SMatthew Knepley @*/
32477087cfbeSBarry Smith PetscErrorCode  TSSetPreStep(TS ts, PetscErrorCode (*func)(TS))
3248000e7ae3SMatthew Knepley {
3249000e7ae3SMatthew Knepley   PetscFunctionBegin;
32500700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
3251ae60f76fSBarry Smith   ts->prestep = func;
3252000e7ae3SMatthew Knepley   PetscFunctionReturn(0);
3253000e7ae3SMatthew Knepley }
3254000e7ae3SMatthew Knepley 
325509ee8438SJed Brown /*@
32563f2090d5SJed Brown   TSPreStep - Runs the user-defined pre-step function.
32573f2090d5SJed Brown 
32583f2090d5SJed Brown   Collective on TS
32593f2090d5SJed Brown 
32603f2090d5SJed Brown   Input Parameters:
32613f2090d5SJed Brown . ts   - The TS context obtained from TSCreate()
32623f2090d5SJed Brown 
32633f2090d5SJed Brown   Notes:
32643f2090d5SJed Brown   TSPreStep() is typically used within time stepping implementations,
32653f2090d5SJed Brown   so most users would not generally call this routine themselves.
32663f2090d5SJed Brown 
32673f2090d5SJed Brown   Level: developer
32683f2090d5SJed Brown 
32693f2090d5SJed Brown .keywords: TS, timestep
32709be3e283SDebojyoti Ghosh .seealso: TSSetPreStep(), TSPreStage(), TSPostStage(), TSPostStep()
32713f2090d5SJed Brown @*/
32727087cfbeSBarry Smith PetscErrorCode  TSPreStep(TS ts)
32733f2090d5SJed Brown {
32743f2090d5SJed Brown   PetscErrorCode ierr;
32753f2090d5SJed Brown 
32763f2090d5SJed Brown   PetscFunctionBegin;
32770700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3278ae60f76fSBarry Smith   if (ts->prestep) {
3279ae60f76fSBarry Smith     PetscStackCallStandard((*ts->prestep),(ts));
3280312ce896SJed Brown   }
32813f2090d5SJed Brown   PetscFunctionReturn(0);
32823f2090d5SJed Brown }
32833f2090d5SJed Brown 
3284b8123daeSJed Brown /*@C
3285b8123daeSJed Brown   TSSetPreStage - Sets the general-purpose function
3286b8123daeSJed Brown   called once at the beginning of each stage.
3287b8123daeSJed Brown 
3288b8123daeSJed Brown   Logically Collective on TS
3289b8123daeSJed Brown 
3290b8123daeSJed Brown   Input Parameters:
3291b8123daeSJed Brown + ts   - The TS context obtained from TSCreate()
3292b8123daeSJed Brown - func - The function
3293b8123daeSJed Brown 
3294b8123daeSJed Brown   Calling sequence of func:
3295b8123daeSJed Brown . PetscErrorCode func(TS ts, PetscReal stagetime);
3296b8123daeSJed Brown 
3297b8123daeSJed Brown   Level: intermediate
3298b8123daeSJed Brown 
3299b8123daeSJed Brown   Note:
3300b8123daeSJed Brown   There may be several stages per time step. If the solve for a given stage fails, the step may be rejected and retried.
3301b8123daeSJed Brown   The time step number being computed can be queried using TSGetTimeStepNumber() and the total size of the step being
3302b8123daeSJed Brown   attempted can be obtained using TSGetTimeStep(). The time at the start of the step is available via TSGetTime().
3303b8123daeSJed Brown 
3304b8123daeSJed Brown .keywords: TS, timestep
33059be3e283SDebojyoti Ghosh .seealso: TSSetPostStage(), TSSetPreStep(), TSSetPostStep(), TSGetApplicationContext()
3306b8123daeSJed Brown @*/
3307b8123daeSJed Brown PetscErrorCode  TSSetPreStage(TS ts, PetscErrorCode (*func)(TS,PetscReal))
3308b8123daeSJed Brown {
3309b8123daeSJed Brown   PetscFunctionBegin;
3310b8123daeSJed Brown   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
3311ae60f76fSBarry Smith   ts->prestage = func;
3312b8123daeSJed Brown   PetscFunctionReturn(0);
3313b8123daeSJed Brown }
3314b8123daeSJed Brown 
33159be3e283SDebojyoti Ghosh /*@C
33169be3e283SDebojyoti Ghosh   TSSetPostStage - Sets the general-purpose function
33179be3e283SDebojyoti Ghosh   called once at the end of each stage.
33189be3e283SDebojyoti Ghosh 
33199be3e283SDebojyoti Ghosh   Logically Collective on TS
33209be3e283SDebojyoti Ghosh 
33219be3e283SDebojyoti Ghosh   Input Parameters:
33229be3e283SDebojyoti Ghosh + ts   - The TS context obtained from TSCreate()
33239be3e283SDebojyoti Ghosh - func - The function
33249be3e283SDebojyoti Ghosh 
33259be3e283SDebojyoti Ghosh   Calling sequence of func:
33269be3e283SDebojyoti Ghosh . PetscErrorCode func(TS ts, PetscReal stagetime, PetscInt stageindex, Vec* Y);
33279be3e283SDebojyoti Ghosh 
33289be3e283SDebojyoti Ghosh   Level: intermediate
33299be3e283SDebojyoti Ghosh 
33309be3e283SDebojyoti Ghosh   Note:
33319be3e283SDebojyoti Ghosh   There may be several stages per time step. If the solve for a given stage fails, the step may be rejected and retried.
33329be3e283SDebojyoti Ghosh   The time step number being computed can be queried using TSGetTimeStepNumber() and the total size of the step being
33339be3e283SDebojyoti Ghosh   attempted can be obtained using TSGetTimeStep(). The time at the start of the step is available via TSGetTime().
33349be3e283SDebojyoti Ghosh 
33359be3e283SDebojyoti Ghosh .keywords: TS, timestep
33369be3e283SDebojyoti Ghosh .seealso: TSSetPreStage(), TSSetPreStep(), TSSetPostStep(), TSGetApplicationContext()
33379be3e283SDebojyoti Ghosh @*/
33389be3e283SDebojyoti Ghosh PetscErrorCode  TSSetPostStage(TS ts, PetscErrorCode (*func)(TS,PetscReal,PetscInt,Vec*))
33399be3e283SDebojyoti Ghosh {
33409be3e283SDebojyoti Ghosh   PetscFunctionBegin;
33419be3e283SDebojyoti Ghosh   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
33429be3e283SDebojyoti Ghosh   ts->poststage = func;
33439be3e283SDebojyoti Ghosh   PetscFunctionReturn(0);
33449be3e283SDebojyoti Ghosh }
33459be3e283SDebojyoti Ghosh 
3346c688d042SShri Abhyankar /*@C
3347c688d042SShri Abhyankar   TSSetPostEvaluate - Sets the general-purpose function
3348c688d042SShri Abhyankar   called once at the end of each step evaluation.
3349c688d042SShri Abhyankar 
3350c688d042SShri Abhyankar   Logically Collective on TS
3351c688d042SShri Abhyankar 
3352c688d042SShri Abhyankar   Input Parameters:
3353c688d042SShri Abhyankar + ts   - The TS context obtained from TSCreate()
3354c688d042SShri Abhyankar - func - The function
3355c688d042SShri Abhyankar 
3356c688d042SShri Abhyankar   Calling sequence of func:
3357c688d042SShri Abhyankar . PetscErrorCode func(TS ts);
3358c688d042SShri Abhyankar 
3359c688d042SShri Abhyankar   Level: intermediate
3360c688d042SShri Abhyankar 
3361c688d042SShri Abhyankar   Note:
33621785ff2aSShri Abhyankar   Semantically, TSSetPostEvaluate() differs from TSSetPostStep() since the function it sets is called before event-handling
33631785ff2aSShri Abhyankar   thus guaranteeing the same solution (computed by the time-stepper) will be passed to it. On the other hand, TSPostStep()
3364e7e94ed4SShri Abhyankar   may be passed a different solution, possibly changed by the event handler. TSPostEvaluate() is called after the next step
3365e7e94ed4SShri Abhyankar   solution is evaluated allowing to modify it, if need be. The solution can be obtained with TSGetSolution(), the time step
3366e7e94ed4SShri Abhyankar   with TSGetTimeStep(), and the time at the start of the step is available via TSGetTime()
3367c688d042SShri Abhyankar 
3368c688d042SShri Abhyankar .keywords: TS, timestep
3369c688d042SShri Abhyankar .seealso: TSSetPreStage(), TSSetPreStep(), TSSetPostStep(), TSGetApplicationContext()
3370c688d042SShri Abhyankar @*/
3371c688d042SShri Abhyankar PetscErrorCode  TSSetPostEvaluate(TS ts, PetscErrorCode (*func)(TS))
3372c688d042SShri Abhyankar {
3373c688d042SShri Abhyankar   PetscFunctionBegin;
3374c688d042SShri Abhyankar   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
3375c688d042SShri Abhyankar   ts->postevaluate = func;
3376c688d042SShri Abhyankar   PetscFunctionReturn(0);
3377c688d042SShri Abhyankar }
3378c688d042SShri Abhyankar 
3379b8123daeSJed Brown /*@
3380b8123daeSJed Brown   TSPreStage - Runs the user-defined pre-stage function set using TSSetPreStage()
3381b8123daeSJed Brown 
3382b8123daeSJed Brown   Collective on TS
3383b8123daeSJed Brown 
3384b8123daeSJed Brown   Input Parameters:
3385b8123daeSJed Brown . ts          - The TS context obtained from TSCreate()
33869be3e283SDebojyoti Ghosh   stagetime   - The absolute time of the current stage
3387b8123daeSJed Brown 
3388b8123daeSJed Brown   Notes:
3389b8123daeSJed Brown   TSPreStage() is typically used within time stepping implementations,
3390b8123daeSJed Brown   most users would not generally call this routine themselves.
3391b8123daeSJed Brown 
3392b8123daeSJed Brown   Level: developer
3393b8123daeSJed Brown 
3394b8123daeSJed Brown .keywords: TS, timestep
33959be3e283SDebojyoti Ghosh .seealso: TSPostStage(), TSSetPreStep(), TSPreStep(), TSPostStep()
3396b8123daeSJed Brown @*/
3397b8123daeSJed Brown PetscErrorCode  TSPreStage(TS ts, PetscReal stagetime)
3398b8123daeSJed Brown {
3399b8123daeSJed Brown   PetscErrorCode ierr;
3400b8123daeSJed Brown 
3401b8123daeSJed Brown   PetscFunctionBegin;
3402b8123daeSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3403ae60f76fSBarry Smith   if (ts->prestage) {
3404ae60f76fSBarry Smith     PetscStackCallStandard((*ts->prestage),(ts,stagetime));
3405b8123daeSJed Brown   }
3406b8123daeSJed Brown   PetscFunctionReturn(0);
3407b8123daeSJed Brown }
3408b8123daeSJed Brown 
34099be3e283SDebojyoti Ghosh /*@
34109be3e283SDebojyoti Ghosh   TSPostStage - Runs the user-defined post-stage function set using TSSetPostStage()
34119be3e283SDebojyoti Ghosh 
34129be3e283SDebojyoti Ghosh   Collective on TS
34139be3e283SDebojyoti Ghosh 
34149be3e283SDebojyoti Ghosh   Input Parameters:
34159be3e283SDebojyoti Ghosh . ts          - The TS context obtained from TSCreate()
34169be3e283SDebojyoti Ghosh   stagetime   - The absolute time of the current stage
34179be3e283SDebojyoti Ghosh   stageindex  - Stage number
34189be3e283SDebojyoti Ghosh   Y           - Array of vectors (of size = total number
34199be3e283SDebojyoti Ghosh                 of stages) with the stage solutions
34209be3e283SDebojyoti Ghosh 
34219be3e283SDebojyoti Ghosh   Notes:
34229be3e283SDebojyoti Ghosh   TSPostStage() is typically used within time stepping implementations,
34239be3e283SDebojyoti Ghosh   most users would not generally call this routine themselves.
34249be3e283SDebojyoti Ghosh 
34259be3e283SDebojyoti Ghosh   Level: developer
34269be3e283SDebojyoti Ghosh 
34279be3e283SDebojyoti Ghosh .keywords: TS, timestep
34289be3e283SDebojyoti Ghosh .seealso: TSPreStage(), TSSetPreStep(), TSPreStep(), TSPostStep()
34299be3e283SDebojyoti Ghosh @*/
34309be3e283SDebojyoti Ghosh PetscErrorCode  TSPostStage(TS ts, PetscReal stagetime, PetscInt stageindex, Vec *Y)
34319be3e283SDebojyoti Ghosh {
34329be3e283SDebojyoti Ghosh   PetscErrorCode ierr;
34339be3e283SDebojyoti Ghosh 
34349be3e283SDebojyoti Ghosh   PetscFunctionBegin;
34359be3e283SDebojyoti Ghosh   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
34364beae5d8SLisandro Dalcin   if (ts->poststage) {
34379be3e283SDebojyoti Ghosh     PetscStackCallStandard((*ts->poststage),(ts,stagetime,stageindex,Y));
34389be3e283SDebojyoti Ghosh   }
34399be3e283SDebojyoti Ghosh   PetscFunctionReturn(0);
34409be3e283SDebojyoti Ghosh }
34419be3e283SDebojyoti Ghosh 
3442c688d042SShri Abhyankar /*@
3443c688d042SShri Abhyankar   TSPostEvaluate - Runs the user-defined post-evaluate function set using TSSetPostEvaluate()
3444c688d042SShri Abhyankar 
3445c688d042SShri Abhyankar   Collective on TS
3446c688d042SShri Abhyankar 
3447c688d042SShri Abhyankar   Input Parameters:
3448c688d042SShri Abhyankar . ts          - The TS context obtained from TSCreate()
3449c688d042SShri Abhyankar 
3450c688d042SShri Abhyankar   Notes:
3451c688d042SShri Abhyankar   TSPostEvaluate() is typically used within time stepping implementations,
3452c688d042SShri Abhyankar   most users would not generally call this routine themselves.
3453c688d042SShri Abhyankar 
3454c688d042SShri Abhyankar   Level: developer
3455c688d042SShri Abhyankar 
3456c688d042SShri Abhyankar .keywords: TS, timestep
3457c688d042SShri Abhyankar .seealso: TSSetPostEvaluate(), TSSetPreStep(), TSPreStep(), TSPostStep()
3458c688d042SShri Abhyankar @*/
3459c688d042SShri Abhyankar PetscErrorCode  TSPostEvaluate(TS ts)
3460c688d042SShri Abhyankar {
3461c688d042SShri Abhyankar   PetscErrorCode ierr;
3462c688d042SShri Abhyankar 
3463c688d042SShri Abhyankar   PetscFunctionBegin;
3464c688d042SShri Abhyankar   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3465c688d042SShri Abhyankar   if (ts->postevaluate) {
3466c688d042SShri Abhyankar     PetscStackCallStandard((*ts->postevaluate),(ts));
3467c688d042SShri Abhyankar   }
3468c688d042SShri Abhyankar   PetscFunctionReturn(0);
3469c688d042SShri Abhyankar }
3470c688d042SShri Abhyankar 
3471ac226902SBarry Smith /*@C
3472000e7ae3SMatthew Knepley   TSSetPostStep - Sets the general-purpose function
34733f2090d5SJed Brown   called once at the end of each time step.
3474000e7ae3SMatthew Knepley 
34753f9fe445SBarry Smith   Logically Collective on TS
3476000e7ae3SMatthew Knepley 
3477000e7ae3SMatthew Knepley   Input Parameters:
3478000e7ae3SMatthew Knepley + ts   - The TS context obtained from TSCreate()
3479000e7ae3SMatthew Knepley - func - The function
3480000e7ae3SMatthew Knepley 
3481000e7ae3SMatthew Knepley   Calling sequence of func:
3482b8123daeSJed Brown $ func (TS ts);
3483000e7ae3SMatthew Knepley 
34841785ff2aSShri Abhyankar   Notes:
34851785ff2aSShri Abhyankar   The function set by TSSetPostStep() is called after each successful step. The solution vector X
34861785ff2aSShri Abhyankar   obtained by TSGetSolution() may be different than that computed at the step end if the event handler
34871785ff2aSShri Abhyankar   locates an event and TSPostEvent() modifies it. Use TSSetPostEvaluate() if an unmodified solution is needed instead.
34881785ff2aSShri Abhyankar 
3489000e7ae3SMatthew Knepley   Level: intermediate
3490000e7ae3SMatthew Knepley 
3491000e7ae3SMatthew Knepley .keywords: TS, timestep
34921785ff2aSShri Abhyankar .seealso: TSSetPreStep(), TSSetPreStage(), TSSetPostEvaluate(), TSGetTimeStep(), TSGetTimeStepNumber(), TSGetTime()
3493000e7ae3SMatthew Knepley @*/
34947087cfbeSBarry Smith PetscErrorCode  TSSetPostStep(TS ts, PetscErrorCode (*func)(TS))
3495000e7ae3SMatthew Knepley {
3496000e7ae3SMatthew Knepley   PetscFunctionBegin;
34970700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
3498ae60f76fSBarry Smith   ts->poststep = func;
3499000e7ae3SMatthew Knepley   PetscFunctionReturn(0);
3500000e7ae3SMatthew Knepley }
3501000e7ae3SMatthew Knepley 
350209ee8438SJed Brown /*@
35033f2090d5SJed Brown   TSPostStep - Runs the user-defined post-step function.
35043f2090d5SJed Brown 
35053f2090d5SJed Brown   Collective on TS
35063f2090d5SJed Brown 
35073f2090d5SJed Brown   Input Parameters:
35083f2090d5SJed Brown . ts   - The TS context obtained from TSCreate()
35093f2090d5SJed Brown 
35103f2090d5SJed Brown   Notes:
35113f2090d5SJed Brown   TSPostStep() is typically used within time stepping implementations,
35123f2090d5SJed Brown   so most users would not generally call this routine themselves.
35133f2090d5SJed Brown 
35143f2090d5SJed Brown   Level: developer
35153f2090d5SJed Brown 
35163f2090d5SJed Brown .keywords: TS, timestep
35173f2090d5SJed Brown @*/
35187087cfbeSBarry Smith PetscErrorCode  TSPostStep(TS ts)
35193f2090d5SJed Brown {
35203f2090d5SJed Brown   PetscErrorCode ierr;
35213f2090d5SJed Brown 
35223f2090d5SJed Brown   PetscFunctionBegin;
35230700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3524ae60f76fSBarry Smith   if (ts->poststep) {
3525ae60f76fSBarry Smith     PetscStackCallStandard((*ts->poststep),(ts));
352672ac3e02SJed Brown   }
35273f2090d5SJed Brown   PetscFunctionReturn(0);
35283f2090d5SJed Brown }
35293f2090d5SJed Brown 
3530d763cef2SBarry Smith /* ------------ Routines to set performance monitoring options ----------- */
3531d763cef2SBarry Smith 
3532d763cef2SBarry Smith /*@C
3533a6570f20SBarry Smith    TSMonitorSet - Sets an ADDITIONAL function that is to be used at every
3534d763cef2SBarry Smith    timestep to display the iteration's  progress.
3535d763cef2SBarry Smith 
35363f9fe445SBarry Smith    Logically Collective on TS
3537d763cef2SBarry Smith 
3538d763cef2SBarry Smith    Input Parameters:
3539d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
3540e213d8f1SJed Brown .  monitor - monitoring routine
3541329f5518SBarry Smith .  mctx - [optional] user-defined context for private data for the
35420298fd71SBarry Smith              monitor routine (use NULL if no context is desired)
3543b3006f0bSLois Curfman McInnes -  monitordestroy - [optional] routine that frees monitor context
35440298fd71SBarry Smith           (may be NULL)
3545d763cef2SBarry Smith 
3546e213d8f1SJed Brown    Calling sequence of monitor:
35470910c330SBarry Smith $    int monitor(TS ts,PetscInt steps,PetscReal time,Vec u,void *mctx)
3548d763cef2SBarry Smith 
3549d763cef2SBarry Smith +    ts - the TS context
355063e21af5SBarry Smith .    steps - iteration number (after the final time step the monitor routine may be called with a step of -1, this indicates the solution has been interpolated to this time)
35511f06c33eSBarry Smith .    time - current time
35520910c330SBarry Smith .    u - current iterate
3553d763cef2SBarry Smith -    mctx - [optional] monitoring context
3554d763cef2SBarry Smith 
3555d763cef2SBarry Smith    Notes:
3556d763cef2SBarry Smith    This routine adds an additional monitor to the list of monitors that
3557d763cef2SBarry Smith    already has been loaded.
3558d763cef2SBarry Smith 
3559025f1a04SBarry Smith    Fortran notes: Only a single monitor function can be set for each TS object
3560025f1a04SBarry Smith 
3561d763cef2SBarry Smith    Level: intermediate
3562d763cef2SBarry Smith 
3563d763cef2SBarry Smith .keywords: TS, timestep, set, monitor
3564d763cef2SBarry Smith 
3565a6570f20SBarry Smith .seealso: TSMonitorDefault(), TSMonitorCancel()
3566d763cef2SBarry Smith @*/
3567c2efdce3SBarry Smith PetscErrorCode  TSMonitorSet(TS ts,PetscErrorCode (*monitor)(TS,PetscInt,PetscReal,Vec,void*),void *mctx,PetscErrorCode (*mdestroy)(void**))
3568d763cef2SBarry Smith {
356978064530SBarry Smith   PetscErrorCode ierr;
357078064530SBarry Smith   PetscInt       i;
357178064530SBarry Smith   PetscBool      identical;
357278064530SBarry Smith 
3573d763cef2SBarry Smith   PetscFunctionBegin;
35740700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
357578064530SBarry Smith   for (i=0; i<ts->numbermonitors;i++) {
357678064530SBarry Smith     ierr = PetscMonitorCompare((PetscErrorCode (*)(void))monitor,mctx,mdestroy,(PetscErrorCode (*)(void))ts->monitor[i],ts->monitorcontext[i],ts->monitordestroy[i],&identical);CHKERRQ(ierr);
357778064530SBarry Smith     if (identical) PetscFunctionReturn(0);
357878064530SBarry Smith   }
357917186662SBarry Smith   if (ts->numbermonitors >= MAXTSMONITORS) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Too many monitors set");
3580d763cef2SBarry Smith   ts->monitor[ts->numbermonitors]          = monitor;
35818704b422SBarry Smith   ts->monitordestroy[ts->numbermonitors]   = mdestroy;
3582d763cef2SBarry Smith   ts->monitorcontext[ts->numbermonitors++] = (void*)mctx;
3583d763cef2SBarry Smith   PetscFunctionReturn(0);
3584d763cef2SBarry Smith }
3585d763cef2SBarry Smith 
3586d763cef2SBarry Smith /*@C
3587a6570f20SBarry Smith    TSMonitorCancel - Clears all the monitors that have been set on a time-step object.
3588d763cef2SBarry Smith 
35893f9fe445SBarry Smith    Logically Collective on TS
3590d763cef2SBarry Smith 
3591d763cef2SBarry Smith    Input Parameters:
3592d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
3593d763cef2SBarry Smith 
3594d763cef2SBarry Smith    Notes:
3595d763cef2SBarry Smith    There is no way to remove a single, specific monitor.
3596d763cef2SBarry Smith 
3597d763cef2SBarry Smith    Level: intermediate
3598d763cef2SBarry Smith 
3599d763cef2SBarry Smith .keywords: TS, timestep, set, monitor
3600d763cef2SBarry Smith 
3601a6570f20SBarry Smith .seealso: TSMonitorDefault(), TSMonitorSet()
3602d763cef2SBarry Smith @*/
36037087cfbeSBarry Smith PetscErrorCode  TSMonitorCancel(TS ts)
3604d763cef2SBarry Smith {
3605d952e501SBarry Smith   PetscErrorCode ierr;
3606d952e501SBarry Smith   PetscInt       i;
3607d952e501SBarry Smith 
3608d763cef2SBarry Smith   PetscFunctionBegin;
36090700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3610d952e501SBarry Smith   for (i=0; i<ts->numbermonitors; i++) {
36118704b422SBarry Smith     if (ts->monitordestroy[i]) {
36128704b422SBarry Smith       ierr = (*ts->monitordestroy[i])(&ts->monitorcontext[i]);CHKERRQ(ierr);
3613d952e501SBarry Smith     }
3614d952e501SBarry Smith   }
3615d763cef2SBarry Smith   ts->numbermonitors = 0;
3616d763cef2SBarry Smith   PetscFunctionReturn(0);
3617d763cef2SBarry Smith }
3618d763cef2SBarry Smith 
3619721cd6eeSBarry Smith /*@C
3620721cd6eeSBarry Smith    TSMonitorDefault - The Default monitor, prints the timestep and time for each step
36215516499fSSatish Balay 
36225516499fSSatish Balay    Level: intermediate
362341251cbbSSatish Balay 
36245516499fSSatish Balay .keywords: TS, set, monitor
36255516499fSSatish Balay 
362663e21af5SBarry Smith .seealso:  TSMonitorSet()
362741251cbbSSatish Balay @*/
3628721cd6eeSBarry Smith PetscErrorCode TSMonitorDefault(TS ts,PetscInt step,PetscReal ptime,Vec v,PetscViewerAndFormat *vf)
3629d763cef2SBarry Smith {
3630dfbe8321SBarry Smith   PetscErrorCode ierr;
3631721cd6eeSBarry Smith   PetscViewer    viewer =  vf->viewer;
363241aca3d6SBarry Smith   PetscBool      iascii,ibinary;
3633d132466eSBarry Smith 
3634d763cef2SBarry Smith   PetscFunctionBegin;
36354d4332d5SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,4);
363641aca3d6SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr);
363741aca3d6SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&ibinary);CHKERRQ(ierr);
3638721cd6eeSBarry Smith   ierr = PetscViewerPushFormat(viewer,vf->format);CHKERRQ(ierr);
363941aca3d6SBarry Smith   if (iascii) {
3640649052a6SBarry Smith     ierr = PetscViewerASCIIAddTab(viewer,((PetscObject)ts)->tablevel);CHKERRQ(ierr);
364163e21af5SBarry Smith     if (step == -1){ /* this indicates it is an interpolated solution */
364263e21af5SBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"Interpolated solution at time %g between steps %D and %D\n",(double)ptime,ts->steps-1,ts->steps);CHKERRQ(ierr);
364363e21af5SBarry Smith     } else {
36448392e04aSShri Abhyankar       ierr = PetscViewerASCIIPrintf(viewer,"%D TS dt %g time %g%s",step,(double)ts->time_step,(double)ptime,ts->steprollback ? " (r)\n" : "\n");CHKERRQ(ierr);
364563e21af5SBarry Smith     }
3646649052a6SBarry Smith     ierr = PetscViewerASCIISubtractTab(viewer,((PetscObject)ts)->tablevel);CHKERRQ(ierr);
364741aca3d6SBarry Smith   } else if (ibinary) {
364841aca3d6SBarry Smith     PetscMPIInt rank;
364941aca3d6SBarry Smith     ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)viewer),&rank);CHKERRQ(ierr);
365041aca3d6SBarry Smith     if (!rank) {
3651450a797fSBarry Smith       PetscBool skipHeader;
3652450a797fSBarry Smith       PetscInt  classid = REAL_FILE_CLASSID;
3653450a797fSBarry Smith 
3654450a797fSBarry Smith       ierr = PetscViewerBinaryGetSkipHeader(viewer,&skipHeader);CHKERRQ(ierr);
3655450a797fSBarry Smith       if (!skipHeader) {
3656450a797fSBarry Smith          ierr = PetscViewerBinaryWrite(viewer,&classid,1,PETSC_INT,PETSC_FALSE);CHKERRQ(ierr);
3657450a797fSBarry Smith        }
365841aca3d6SBarry Smith       ierr = PetscRealView(1,&ptime,viewer);CHKERRQ(ierr);
365941aca3d6SBarry Smith     } else {
366041aca3d6SBarry Smith       ierr = PetscRealView(0,&ptime,viewer);CHKERRQ(ierr);
366141aca3d6SBarry Smith     }
366241aca3d6SBarry Smith   }
3663721cd6eeSBarry Smith   ierr = PetscViewerPopFormat(viewer);CHKERRQ(ierr);
3664d763cef2SBarry Smith   PetscFunctionReturn(0);
3665d763cef2SBarry Smith }
3666d763cef2SBarry Smith 
36679110b2e7SHong Zhang /*@C
36689110b2e7SHong Zhang    TSAdjointMonitorSet - Sets an ADDITIONAL function that is to be used at every
36699110b2e7SHong Zhang    timestep to display the iteration's  progress.
36709110b2e7SHong Zhang 
36719110b2e7SHong Zhang    Logically Collective on TS
36729110b2e7SHong Zhang 
36739110b2e7SHong Zhang    Input Parameters:
36749110b2e7SHong Zhang +  ts - the TS context obtained from TSCreate()
36759110b2e7SHong Zhang .  adjointmonitor - monitoring routine
36769110b2e7SHong Zhang .  adjointmctx - [optional] user-defined context for private data for the
36779110b2e7SHong Zhang              monitor routine (use NULL if no context is desired)
36789110b2e7SHong Zhang -  adjointmonitordestroy - [optional] routine that frees monitor context
36799110b2e7SHong Zhang           (may be NULL)
36809110b2e7SHong Zhang 
36819110b2e7SHong Zhang    Calling sequence of monitor:
36829110b2e7SHong Zhang $    int adjointmonitor(TS ts,PetscInt steps,PetscReal time,Vec u,PetscInt numcost,Vec *lambda, Vec *mu,void *adjointmctx)
36839110b2e7SHong Zhang 
36849110b2e7SHong Zhang +    ts - the TS context
36859110b2e7SHong Zhang .    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
36869110b2e7SHong Zhang                                been interpolated to)
36879110b2e7SHong Zhang .    time - current time
36889110b2e7SHong Zhang .    u - current iterate
36899110b2e7SHong Zhang .    numcost - number of cost functionos
36909110b2e7SHong Zhang .    lambda - sensitivities to initial conditions
36919110b2e7SHong Zhang .    mu - sensitivities to parameters
36929110b2e7SHong Zhang -    adjointmctx - [optional] adjoint monitoring context
36939110b2e7SHong Zhang 
36949110b2e7SHong Zhang    Notes:
36959110b2e7SHong Zhang    This routine adds an additional monitor to the list of monitors that
36969110b2e7SHong Zhang    already has been loaded.
36979110b2e7SHong Zhang 
36989110b2e7SHong Zhang    Fortran notes: Only a single monitor function can be set for each TS object
36999110b2e7SHong Zhang 
37009110b2e7SHong Zhang    Level: intermediate
37019110b2e7SHong Zhang 
37029110b2e7SHong Zhang .keywords: TS, timestep, set, adjoint, monitor
37039110b2e7SHong Zhang 
37049110b2e7SHong Zhang .seealso: TSAdjointMonitorCancel()
37059110b2e7SHong Zhang @*/
37069110b2e7SHong Zhang PetscErrorCode  TSAdjointMonitorSet(TS ts,PetscErrorCode (*adjointmonitor)(TS,PetscInt,PetscReal,Vec,PetscInt,Vec*,Vec*,void*),void *adjointmctx,PetscErrorCode (*adjointmdestroy)(void**))
37079110b2e7SHong Zhang {
370878064530SBarry Smith   PetscErrorCode ierr;
370978064530SBarry Smith   PetscInt       i;
371078064530SBarry Smith   PetscBool      identical;
371178064530SBarry Smith 
37129110b2e7SHong Zhang   PetscFunctionBegin;
37139110b2e7SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
371478064530SBarry Smith   for (i=0; i<ts->numbermonitors;i++) {
371578064530SBarry Smith     ierr = PetscMonitorCompare((PetscErrorCode (*)(void))adjointmonitor,adjointmctx,adjointmdestroy,(PetscErrorCode (*)(void))ts->adjointmonitor[i],ts->adjointmonitorcontext[i],ts->adjointmonitordestroy[i],&identical);CHKERRQ(ierr);
371678064530SBarry Smith     if (identical) PetscFunctionReturn(0);
371778064530SBarry Smith   }
37189110b2e7SHong Zhang   if (ts->numberadjointmonitors >= MAXTSMONITORS) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Too many adjoint monitors set");
37199110b2e7SHong Zhang   ts->adjointmonitor[ts->numberadjointmonitors]          = adjointmonitor;
37209110b2e7SHong Zhang   ts->adjointmonitordestroy[ts->numberadjointmonitors]   = adjointmdestroy;
37219110b2e7SHong Zhang   ts->adjointmonitorcontext[ts->numberadjointmonitors++] = (void*)adjointmctx;
37229110b2e7SHong Zhang   PetscFunctionReturn(0);
37239110b2e7SHong Zhang }
37249110b2e7SHong Zhang 
37259110b2e7SHong Zhang /*@C
37269110b2e7SHong Zhang    TSAdjointMonitorCancel - Clears all the adjoint monitors that have been set on a time-step object.
37279110b2e7SHong Zhang 
37289110b2e7SHong Zhang    Logically Collective on TS
37299110b2e7SHong Zhang 
37309110b2e7SHong Zhang    Input Parameters:
37319110b2e7SHong Zhang .  ts - the TS context obtained from TSCreate()
37329110b2e7SHong Zhang 
37339110b2e7SHong Zhang    Notes:
37349110b2e7SHong Zhang    There is no way to remove a single, specific monitor.
37359110b2e7SHong Zhang 
37369110b2e7SHong Zhang    Level: intermediate
37379110b2e7SHong Zhang 
37389110b2e7SHong Zhang .keywords: TS, timestep, set, adjoint, monitor
37399110b2e7SHong Zhang 
37409110b2e7SHong Zhang .seealso: TSAdjointMonitorSet()
37419110b2e7SHong Zhang @*/
37429110b2e7SHong Zhang PetscErrorCode  TSAdjointMonitorCancel(TS ts)
37439110b2e7SHong Zhang {
37449110b2e7SHong Zhang   PetscErrorCode ierr;
37459110b2e7SHong Zhang   PetscInt       i;
37469110b2e7SHong Zhang 
37479110b2e7SHong Zhang   PetscFunctionBegin;
37489110b2e7SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
37499110b2e7SHong Zhang   for (i=0; i<ts->numberadjointmonitors; i++) {
37509110b2e7SHong Zhang     if (ts->adjointmonitordestroy[i]) {
37519110b2e7SHong Zhang       ierr = (*ts->adjointmonitordestroy[i])(&ts->adjointmonitorcontext[i]);CHKERRQ(ierr);
37529110b2e7SHong Zhang     }
37539110b2e7SHong Zhang   }
37549110b2e7SHong Zhang   ts->numberadjointmonitors = 0;
37559110b2e7SHong Zhang   PetscFunctionReturn(0);
37569110b2e7SHong Zhang }
37579110b2e7SHong Zhang 
3758721cd6eeSBarry Smith /*@C
3759721cd6eeSBarry Smith    TSAdjointMonitorDefault - the default monitor of adjoint computations
3760110eb670SHong Zhang 
3761110eb670SHong Zhang    Level: intermediate
3762110eb670SHong Zhang 
3763110eb670SHong Zhang .keywords: TS, set, monitor
3764110eb670SHong Zhang 
3765110eb670SHong Zhang .seealso: TSAdjointMonitorSet()
3766110eb670SHong Zhang @*/
3767721cd6eeSBarry Smith PetscErrorCode TSAdjointMonitorDefault(TS ts,PetscInt step,PetscReal ptime,Vec v,PetscInt numcost,Vec *lambda,Vec *mu,PetscViewerAndFormat *vf)
3768110eb670SHong Zhang {
3769110eb670SHong Zhang   PetscErrorCode ierr;
3770721cd6eeSBarry Smith   PetscViewer    viewer = vf->viewer;
3771110eb670SHong Zhang 
3772110eb670SHong Zhang   PetscFunctionBegin;
3773110eb670SHong Zhang   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,4);
3774721cd6eeSBarry Smith   ierr = PetscViewerPushFormat(viewer,vf->format);CHKERRQ(ierr);
3775110eb670SHong Zhang   ierr = PetscViewerASCIIAddTab(viewer,((PetscObject)ts)->tablevel);CHKERRQ(ierr);
3776110eb670SHong Zhang   ierr = PetscViewerASCIIPrintf(viewer,"%D TS dt %g time %g%s",step,(double)ts->time_step,(double)ptime,ts->steprollback ? " (r)\n" : "\n");CHKERRQ(ierr);
3777110eb670SHong Zhang   ierr = PetscViewerASCIISubtractTab(viewer,((PetscObject)ts)->tablevel);CHKERRQ(ierr);
3778721cd6eeSBarry Smith   ierr = PetscViewerPopFormat(viewer);CHKERRQ(ierr);
3779110eb670SHong Zhang   PetscFunctionReturn(0);
3780110eb670SHong Zhang }
3781110eb670SHong Zhang 
3782cd652676SJed Brown /*@
3783cd652676SJed Brown    TSInterpolate - Interpolate the solution computed during the previous step to an arbitrary location in the interval
3784cd652676SJed Brown 
3785cd652676SJed Brown    Collective on TS
3786cd652676SJed Brown 
3787cd652676SJed Brown    Input Argument:
3788cd652676SJed Brown +  ts - time stepping context
3789cd652676SJed Brown -  t - time to interpolate to
3790cd652676SJed Brown 
3791cd652676SJed Brown    Output Argument:
37920910c330SBarry Smith .  U - state at given time
3793cd652676SJed Brown 
3794cd652676SJed Brown    Level: intermediate
3795cd652676SJed Brown 
3796cd652676SJed Brown    Developer Notes:
3797cd652676SJed Brown    TSInterpolate() and the storing of previous steps/stages should be generalized to support delay differential equations and continuous adjoints.
3798cd652676SJed Brown 
3799cd652676SJed Brown .keywords: TS, set
3800cd652676SJed Brown 
3801874c02e6SLisandro Dalcin .seealso: TSSetExactFinalTime(), TSSolve()
3802cd652676SJed Brown @*/
38030910c330SBarry Smith PetscErrorCode TSInterpolate(TS ts,PetscReal t,Vec U)
3804cd652676SJed Brown {
3805cd652676SJed Brown   PetscErrorCode ierr;
3806cd652676SJed Brown 
3807cd652676SJed Brown   PetscFunctionBegin;
3808cd652676SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3809b06615a5SLisandro Dalcin   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
3810be5899b3SLisandro Dalcin   if (t < ts->ptime_prev || t > ts->ptime) SETERRQ3(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_OUTOFRANGE,"Requested time %g not in last time steps [%g,%g]",t,(double)ts->ptime_prev,(double)ts->ptime);
3811ce94432eSBarry Smith   if (!ts->ops->interpolate) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"%s does not provide interpolation",((PetscObject)ts)->type_name);
38120910c330SBarry Smith   ierr = (*ts->ops->interpolate)(ts,t,U);CHKERRQ(ierr);
3813cd652676SJed Brown   PetscFunctionReturn(0);
3814cd652676SJed Brown }
3815cd652676SJed Brown 
3816d763cef2SBarry Smith /*@
38176d9e5789SSean Farley    TSStep - Steps one time step
3818d763cef2SBarry Smith 
3819d763cef2SBarry Smith    Collective on TS
3820d763cef2SBarry Smith 
3821d763cef2SBarry Smith    Input Parameter:
3822d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
3823d763cef2SBarry Smith 
382427829d71SBarry Smith    Level: developer
3825d763cef2SBarry Smith 
3826b8123daeSJed Brown    Notes:
382727829d71SBarry Smith    The public interface for the ODE/DAE solvers is TSSolve(), you should almost for sure be using that routine and not this routine.
382827829d71SBarry Smith 
3829b8123daeSJed Brown    The hook set using TSSetPreStep() is called before each attempt to take the step. In general, the time step size may
3830b8123daeSJed Brown    be changed due to adaptive error controller or solve failures. Note that steps may contain multiple stages.
3831b8123daeSJed Brown 
383225cb2221SBarry Smith    This may over-step the final time provided in TSSetDuration() depending on the time-step used. TSSolve() interpolates to exactly the
383325cb2221SBarry Smith    time provided in TSSetDuration(). One can use TSInterpolate() to determine an interpolated solution within the final timestep.
383425cb2221SBarry Smith 
3835d763cef2SBarry Smith .keywords: TS, timestep, solve
3836d763cef2SBarry Smith 
38379be3e283SDebojyoti Ghosh .seealso: TSCreate(), TSSetUp(), TSDestroy(), TSSolve(), TSSetPreStep(), TSSetPreStage(), TSSetPostStage(), TSInterpolate()
3838d763cef2SBarry Smith @*/
3839193ac0bcSJed Brown PetscErrorCode  TSStep(TS ts)
3840d763cef2SBarry Smith {
3841dfbe8321SBarry Smith   PetscErrorCode   ierr;
3842fffbeea8SBarry Smith   static PetscBool cite = PETSC_FALSE;
3843be5899b3SLisandro Dalcin   PetscReal        ptime;
3844d763cef2SBarry Smith 
3845d763cef2SBarry Smith   PetscFunctionBegin;
38460700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3847fffbeea8SBarry Smith   ierr = PetscCitationsRegister("@techreport{tspaper,\n"
3848fffbeea8SBarry Smith                                 "  title       = {{PETSc/TS}: A Modern Scalable {DAE/ODE} Solver Library},\n"
3849fffbeea8SBarry Smith                                 "  author      = {Shrirang Abhyankar and Jed Brown and Emil Constantinescu and Debojyoti Ghosh and Barry F. Smith},\n"
3850fffbeea8SBarry Smith                                 "  type        = {Preprint},\n"
3851fffbeea8SBarry Smith                                 "  number      = {ANL/MCS-P5061-0114},\n"
3852fffbeea8SBarry Smith                                 "  institution = {Argonne National Laboratory},\n"
3853302440fdSBarry Smith                                 "  year        = {2014}\n}\n",&cite);CHKERRQ(ierr);
3854fffbeea8SBarry Smith 
3855d405a339SMatthew Knepley   ierr = TSSetUp(ts);CHKERRQ(ierr);
385668bece0bSHong Zhang   ierr = TSTrajectorySetUp(ts->trajectory,ts);CHKERRQ(ierr);
3857d405a339SMatthew Knepley 
3858a6772fa2SLisandro Dalcin   if (ts->exact_final_time == TS_EXACTFINALTIME_UNSPECIFIED) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONGSTATE,"You must call TSSetExactFinalTime() or use -ts_exact_final_time <stepover,interpolate,matchstep> before calling TSStep()");
3859be5899b3SLisandro Dalcin   if (ts->exact_final_time == TS_EXACTFINALTIME_MATCHSTEP && !ts->adapt) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"Since TS is not adaptive you cannot use TS_EXACTFINALTIME_MATCHSTEP, suggest TS_EXACTFINALTIME_INTERPOLATE");
3860a6772fa2SLisandro Dalcin 
3861be5899b3SLisandro Dalcin   if (!ts->steps) ts->ptime_prev = ts->ptime;
3862362cd11cSLisandro Dalcin   ts->reason = TS_CONVERGED_ITERATING;
3863be5899b3SLisandro Dalcin   ptime = ts->ptime; ts->ptime_prev_rollback = ts->ptime_prev;
3864e04979a6SLisandro Dalcin   if (!ts->ops->step) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"TSStep not implemented for type '%s'",((PetscObject)ts)->type_name);
3865d5ba7fb7SMatthew Knepley   ierr = PetscLogEventBegin(TS_Step,ts,0,0,0);CHKERRQ(ierr);
3866193ac0bcSJed Brown   ierr = (*ts->ops->step)(ts);CHKERRQ(ierr);
3867d5ba7fb7SMatthew Knepley   ierr = PetscLogEventEnd(TS_Step,ts,0,0,0);CHKERRQ(ierr);
3868be5899b3SLisandro Dalcin   ts->ptime_prev = ptime;
3869be5899b3SLisandro Dalcin   ts->steps++; ts->total_steps++;
3870be5899b3SLisandro Dalcin   ts->steprollback = PETSC_FALSE;
387128d5b5d6SLisandro Dalcin   ts->steprestart  = PETSC_FALSE;
3872362cd11cSLisandro Dalcin 
3873362cd11cSLisandro Dalcin   if (ts->reason < 0) {
3874cef5090cSJed Brown     if (ts->errorifstepfailed) {
387508c7845fSBarry Smith       if (ts->reason == TS_DIVERGED_NONLINEAR_SOLVE) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed due to %s, increase -ts_max_snes_failures or make negative to attempt recovery",TSConvergedReasons[ts->reason]);
387608c7845fSBarry Smith       else SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed due to %s",TSConvergedReasons[ts->reason]);
3877d2daff3dSHong Zhang     }
387808c7845fSBarry Smith   } else if (!ts->reason) {
387908c7845fSBarry Smith     if (ts->steps >= ts->max_steps)     ts->reason = TS_CONVERGED_ITS;
388008c7845fSBarry Smith     else if (ts->ptime >= ts->max_time) ts->reason = TS_CONVERGED_TIME;
388108c7845fSBarry Smith   }
388208c7845fSBarry Smith   PetscFunctionReturn(0);
388308c7845fSBarry Smith }
388408c7845fSBarry Smith 
388508c7845fSBarry Smith /*@
3886b957a604SHong Zhang    TSAdjointStep - Steps one time step backward in the adjoint run
388708c7845fSBarry Smith 
388808c7845fSBarry Smith    Collective on TS
388908c7845fSBarry Smith 
389008c7845fSBarry Smith    Input Parameter:
389108c7845fSBarry Smith .  ts - the TS context obtained from TSCreate()
389208c7845fSBarry Smith 
38936a4d4014SLisandro Dalcin    Level: intermediate
38946a4d4014SLisandro Dalcin 
3895b957a604SHong Zhang .keywords: TS, adjoint, step
38966a4d4014SLisandro Dalcin 
3897b957a604SHong Zhang .seealso: TSAdjointSetUp(), TSAdjointSolve()
38986a4d4014SLisandro Dalcin @*/
389908c7845fSBarry Smith PetscErrorCode  TSAdjointStep(TS ts)
39006a4d4014SLisandro Dalcin {
390108c7845fSBarry Smith   DM               dm;
39026a4d4014SLisandro Dalcin   PetscErrorCode   ierr;
39036a4d4014SLisandro Dalcin 
39046a4d4014SLisandro Dalcin   PetscFunctionBegin;
39054a2ae208SSatish Balay   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
390608c7845fSBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
390708c7845fSBarry Smith   ierr = TSAdjointSetUp(ts);CHKERRQ(ierr);
3908d763cef2SBarry Smith 
3909685405a1SBarry Smith   ierr = VecViewFromOptions(ts->vec_sol,(PetscObject)ts,"-ts_view_solution");CHKERRQ(ierr);
3910d763cef2SBarry Smith 
3911be5899b3SLisandro Dalcin   ts->reason = TS_CONVERGED_ITERATING;
3912be5899b3SLisandro Dalcin   ts->ptime_prev = ts->ptime;
391342f2b339SBarry Smith   if (!ts->ops->adjointstep) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed because the adjoint of  %s has not been implemented, try other time stepping methods for adjoint sensitivity analysis",((PetscObject)ts)->type_name);
3914be5899b3SLisandro Dalcin   ierr = PetscLogEventBegin(TS_AdjointStep,ts,0,0,0);CHKERRQ(ierr);
391542f2b339SBarry Smith   ierr = (*ts->ops->adjointstep)(ts);CHKERRQ(ierr);
39168d0ad7a8SHong Zhang   ierr = PetscLogEventEnd(TS_AdjointStep,ts,0,0,0);CHKERRQ(ierr);
3917be5899b3SLisandro Dalcin   ts->steps++; ts->total_steps--;
3918362cd11cSLisandro Dalcin 
3919362cd11cSLisandro Dalcin   if (ts->reason < 0) {
3920cef5090cSJed Brown     if (ts->errorifstepfailed) {
39216c4ed002SBarry Smith       if (ts->reason == TS_DIVERGED_NONLINEAR_SOLVE) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed due to %s, increase -ts_max_snes_failures or make negative to attempt recovery",TSConvergedReasons[ts->reason]);
39226c4ed002SBarry Smith       else if (ts->reason == TS_DIVERGED_STEP_REJECTED) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed due to %s, increase -ts_max_reject or make negative to attempt recovery",TSConvergedReasons[ts->reason]);
39236c4ed002SBarry Smith       else SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed due to %s",TSConvergedReasons[ts->reason]);
3924cef5090cSJed Brown     }
3925362cd11cSLisandro Dalcin   } else if (!ts->reason) {
392673b18844SBarry Smith     if (ts->steps >= ts->adjoint_max_steps) ts->reason = TS_CONVERGED_ITS;
3927362cd11cSLisandro Dalcin   }
3928d763cef2SBarry Smith   PetscFunctionReturn(0);
3929d763cef2SBarry Smith }
3930d763cef2SBarry Smith 
39317cbde773SLisandro Dalcin /*@
39327cbde773SLisandro Dalcin    TSEvaluateWLTE - Evaluate the weighted local truncation error norm
39337cbde773SLisandro Dalcin    at the end of a time step with a given order of accuracy.
39347cbde773SLisandro Dalcin 
39357cbde773SLisandro Dalcin    Collective on TS
39367cbde773SLisandro Dalcin 
39377cbde773SLisandro Dalcin    Input Arguments:
39387cbde773SLisandro Dalcin +  ts - time stepping context
39397cbde773SLisandro Dalcin .  wnormtype - norm type, either NORM_2 or NORM_INFINITY
39407cbde773SLisandro Dalcin -  order - optional, desired order for the error evaluation or PETSC_DECIDE
39417cbde773SLisandro Dalcin 
39427cbde773SLisandro Dalcin    Output Arguments:
39437cbde773SLisandro Dalcin +  order - optional, the actual order of the error evaluation
39447cbde773SLisandro Dalcin -  wlte - the weighted local truncation error norm
39457cbde773SLisandro Dalcin 
39467cbde773SLisandro Dalcin    Level: advanced
39477cbde773SLisandro Dalcin 
39487cbde773SLisandro Dalcin    Notes:
39497cbde773SLisandro Dalcin    If the timestepper cannot evaluate the error in a particular step
39507cbde773SLisandro Dalcin    (eg. in the first step or restart steps after event handling),
39517cbde773SLisandro Dalcin    this routine returns wlte=-1.0 .
39527cbde773SLisandro Dalcin 
39537cbde773SLisandro Dalcin .seealso: TSStep(), TSAdapt, TSErrorWeightedNorm()
39547cbde773SLisandro Dalcin @*/
39557cbde773SLisandro Dalcin PetscErrorCode TSEvaluateWLTE(TS ts,NormType wnormtype,PetscInt *order,PetscReal *wlte)
39567cbde773SLisandro Dalcin {
39577cbde773SLisandro Dalcin   PetscErrorCode ierr;
39587cbde773SLisandro Dalcin 
39597cbde773SLisandro Dalcin   PetscFunctionBegin;
39607cbde773SLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
39617cbde773SLisandro Dalcin   PetscValidType(ts,1);
39627cbde773SLisandro Dalcin   PetscValidLogicalCollectiveEnum(ts,wnormtype,4);
39637cbde773SLisandro Dalcin   if (order) PetscValidIntPointer(order,3);
39647cbde773SLisandro Dalcin   if (order) PetscValidLogicalCollectiveInt(ts,*order,3);
39657cbde773SLisandro Dalcin   PetscValidRealPointer(wlte,4);
39667cbde773SLisandro Dalcin   if (wnormtype != NORM_2 && wnormtype != NORM_INFINITY) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"No support for norm type %s",NormTypes[wnormtype]);
39677cbde773SLisandro Dalcin   if (!ts->ops->evaluatewlte) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"TSEvaluateWLTE not implemented for type '%s'",((PetscObject)ts)->type_name);
39687cbde773SLisandro Dalcin   ierr = (*ts->ops->evaluatewlte)(ts,wnormtype,order,wlte);CHKERRQ(ierr);
39697cbde773SLisandro Dalcin   PetscFunctionReturn(0);
39707cbde773SLisandro Dalcin }
39717cbde773SLisandro Dalcin 
397205175c85SJed Brown /*@
397305175c85SJed Brown    TSEvaluateStep - Evaluate the solution at the end of a time step with a given order of accuracy.
397405175c85SJed Brown 
39751c3436cfSJed Brown    Collective on TS
397605175c85SJed Brown 
397705175c85SJed Brown    Input Arguments:
39781c3436cfSJed Brown +  ts - time stepping context
39791c3436cfSJed Brown .  order - desired order of accuracy
39800298fd71SBarry Smith -  done - whether the step was evaluated at this order (pass NULL to generate an error if not available)
398105175c85SJed Brown 
398205175c85SJed Brown    Output Arguments:
39830910c330SBarry Smith .  U - state at the end of the current step
398405175c85SJed Brown 
398505175c85SJed Brown    Level: advanced
398605175c85SJed Brown 
3987108c343cSJed Brown    Notes:
3988108c343cSJed Brown    This function cannot be called until all stages have been evaluated.
3989108c343cSJed 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.
3990108c343cSJed Brown 
39911c3436cfSJed Brown .seealso: TSStep(), TSAdapt
399205175c85SJed Brown @*/
39930910c330SBarry Smith PetscErrorCode TSEvaluateStep(TS ts,PetscInt order,Vec U,PetscBool *done)
399405175c85SJed Brown {
399505175c85SJed Brown   PetscErrorCode ierr;
399605175c85SJed Brown 
399705175c85SJed Brown   PetscFunctionBegin;
399805175c85SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
399905175c85SJed Brown   PetscValidType(ts,1);
40000910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
4001ce94432eSBarry Smith   if (!ts->ops->evaluatestep) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"TSEvaluateStep not implemented for type '%s'",((PetscObject)ts)->type_name);
40020910c330SBarry Smith   ierr = (*ts->ops->evaluatestep)(ts,order,U,done);CHKERRQ(ierr);
400305175c85SJed Brown   PetscFunctionReturn(0);
400405175c85SJed Brown }
400505175c85SJed Brown 
4006b1cb36f3SHong Zhang /*@
4007b1cb36f3SHong Zhang  TSForwardCostIntegral - Evaluate the cost integral in the forward run.
4008b1cb36f3SHong Zhang 
4009b1cb36f3SHong Zhang  Collective on TS
4010b1cb36f3SHong Zhang 
4011b1cb36f3SHong Zhang  Input Arguments:
4012b1cb36f3SHong Zhang  .  ts - time stepping context
4013b1cb36f3SHong Zhang 
4014b1cb36f3SHong Zhang  Level: advanced
4015b1cb36f3SHong Zhang 
4016b1cb36f3SHong Zhang  Notes:
4017b1cb36f3SHong Zhang  This function cannot be called until TSStep() has been completed.
4018b1cb36f3SHong Zhang 
4019b1cb36f3SHong Zhang  .seealso: TSSolve(), TSAdjointCostIntegral()
4020b1cb36f3SHong Zhang  @*/
4021b1cb36f3SHong Zhang PetscErrorCode TSForwardCostIntegral(TS ts)
4022b1cb36f3SHong Zhang {
4023b1cb36f3SHong Zhang     PetscErrorCode ierr;
4024b1cb36f3SHong Zhang     PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4025b1cb36f3SHong Zhang     if (!ts->ops->forwardintegral) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"%s does not provide integral evaluation in the forward run",((PetscObject)ts)->type_name);
4026b1cb36f3SHong Zhang     ierr = (*ts->ops->forwardintegral)(ts);CHKERRQ(ierr);
4027b1cb36f3SHong Zhang     PetscFunctionReturn(0);
4028b1cb36f3SHong Zhang }
4029d67e68b7SBarry Smith 
4030d763cef2SBarry Smith /*@
4031d763cef2SBarry Smith    TSSolve - Steps the requested number of timesteps.
4032d763cef2SBarry Smith 
4033d763cef2SBarry Smith    Collective on TS
4034d763cef2SBarry Smith 
4035d763cef2SBarry Smith    Input Parameter:
4036d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
403763e21af5SBarry Smith -  u - the solution vector  (can be null if TSSetSolution() was used and TSSetExactFinalTime(ts,TS_EXACTFINALTIME_MATCHSTEP) was not used,
403863e21af5SBarry Smith                              otherwise must contain the initial conditions and will contain the solution at the final requested time
40395a3a76d0SJed Brown 
4040d763cef2SBarry Smith    Level: beginner
4041d763cef2SBarry Smith 
40425a3a76d0SJed Brown    Notes:
40435a3a76d0SJed Brown    The final time returned by this function may be different from the time of the internally
40445a3a76d0SJed Brown    held state accessible by TSGetSolution() and TSGetTime() because the method may have
40455a3a76d0SJed Brown    stepped over the final time.
40465a3a76d0SJed Brown 
4047d763cef2SBarry Smith .keywords: TS, timestep, solve
4048d763cef2SBarry Smith 
404963e21af5SBarry Smith .seealso: TSCreate(), TSSetSolution(), TSStep(), TSGetTime(), TSGetSolveTime()
4050d763cef2SBarry Smith @*/
4051cc708dedSBarry Smith PetscErrorCode TSSolve(TS ts,Vec u)
4052d763cef2SBarry Smith {
4053b06615a5SLisandro Dalcin   Vec               solution;
4054d763cef2SBarry Smith   PetscErrorCode    ierr;
4055d763cef2SBarry Smith 
4056d763cef2SBarry Smith   PetscFunctionBegin;
4057d763cef2SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4058f2c2a1b9SBarry Smith   if (u) PetscValidHeaderSpecific(u,VEC_CLASSID,2);
4059feed9e9dSBarry Smith 
406049354f04SShri 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 */
4061b06615a5SLisandro Dalcin     PetscValidHeaderSpecific(u,VEC_CLASSID,2);
40620910c330SBarry Smith     if (!ts->vec_sol || u == ts->vec_sol) {
4063b06615a5SLisandro Dalcin       ierr = VecDuplicate(u,&solution);CHKERRQ(ierr);
4064b06615a5SLisandro Dalcin       ierr = TSSetSolution(ts,solution);CHKERRQ(ierr);
4065b06615a5SLisandro Dalcin       ierr = VecDestroy(&solution);CHKERRQ(ierr); /* grant ownership */
40665a3a76d0SJed Brown     }
40670910c330SBarry Smith     ierr = VecCopy(u,ts->vec_sol);CHKERRQ(ierr);
4068bbd56ea5SKarl Rupp   } else if (u) {
40690910c330SBarry Smith     ierr = TSSetSolution(ts,u);CHKERRQ(ierr);
40705a3a76d0SJed Brown   }
4071b5d403baSSean Farley   ierr = TSSetUp(ts);CHKERRQ(ierr);
407268bece0bSHong Zhang   ierr = TSTrajectorySetUp(ts->trajectory,ts);CHKERRQ(ierr);
4073a6772fa2SLisandro Dalcin 
4074a6772fa2SLisandro Dalcin   if (ts->exact_final_time == TS_EXACTFINALTIME_UNSPECIFIED) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONGSTATE,"You must call TSSetExactFinalTime() or use -ts_exact_final_time <stepover,interpolate,matchstep> before calling TSSolve()");
4075a6772fa2SLisandro Dalcin   if (ts->exact_final_time == TS_EXACTFINALTIME_MATCHSTEP && !ts->adapt) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"Since TS is not adaptive you cannot use TS_EXACTFINALTIME_MATCHSTEP, suggest TS_EXACTFINALTIME_INTERPOLATE");
4076a6772fa2SLisandro Dalcin 
4077e7069c78SShri   /* reset number of steps only when the step is not restarted. ARKIMEX
4078e7069c78SShri      restarts the step after an event. Resetting these counters in such a case causes
4079e7069c78SShri      TSTrajectory to incorrectly save the output files
4080e7069c78SShri   */
4081938c94caSShri Abhyankar 
4082193ac0bcSJed Brown   ts->steps             = 0;
40835ef26d82SJed Brown   ts->ksp_its           = 0;
40845ef26d82SJed Brown   ts->snes_its          = 0;
4085c610991cSLisandro Dalcin   ts->num_snes_failures = 0;
4086c610991cSLisandro Dalcin   ts->reject            = 0;
4087193ac0bcSJed Brown   ts->reason            = TS_CONVERGED_ITERATING;
4088193ac0bcSJed Brown 
4089ce1779c8SBarry Smith   ierr = TSViewFromOptions(ts,NULL,"-ts_view_pre");CHKERRQ(ierr);
4090f05ece33SBarry Smith 
4091193ac0bcSJed Brown   if (ts->ops->solve) { /* This private interface is transitional and should be removed when all implementations are updated. */
4092193ac0bcSJed Brown     ierr = (*ts->ops->solve)(ts);CHKERRQ(ierr);
4093a6772fa2SLisandro Dalcin     if (u) {ierr = VecCopy(ts->vec_sol,u);CHKERRQ(ierr);}
4094cc708dedSBarry Smith     ts->solvetime = ts->ptime;
4095a6772fa2SLisandro Dalcin     solution = ts->vec_sol;
4096be5899b3SLisandro Dalcin   } else { /* Step the requested number of timesteps. */
4097db4deed7SKarl Rupp     if (ts->steps >= ts->max_steps)     ts->reason = TS_CONVERGED_ITS;
4098db4deed7SKarl Rupp     else if (ts->ptime >= ts->max_time) ts->reason = TS_CONVERGED_TIME;
4099e7069c78SShri 
4100938c94caSShri Abhyankar     ierr = TSTrajectorySet(ts->trajectory,ts,ts->total_steps,ts->ptime,ts->vec_sol);CHKERRQ(ierr);
41016427ac75SLisandro Dalcin     ierr = TSEventInitialize(ts->event,ts,ts->ptime,ts->vec_sol);CHKERRQ(ierr);
4102e7069c78SShri 
410328d5b5d6SLisandro Dalcin     ts->steprollback = PETSC_FALSE;
410428d5b5d6SLisandro Dalcin     ts->steprestart  = PETSC_TRUE;
41056427ac75SLisandro Dalcin 
4106e1a7a14fSJed Brown     while (!ts->reason) {
4107938c94caSShri Abhyankar       ierr = TSMonitor(ts,ts->total_steps,ts->ptime,ts->vec_sol);CHKERRQ(ierr);
41089687d888SLisandro Dalcin       if (!ts->steprollback) {
41099687d888SLisandro Dalcin         ierr = TSPreStep(ts);CHKERRQ(ierr);
41109687d888SLisandro Dalcin       }
4111193ac0bcSJed Brown       ierr = TSStep(ts);CHKERRQ(ierr);
4112e783b05fSHong Zhang       if (ts->vec_costintegral && ts->costintegralfwd) { /* Must evaluate the cost integral before event is handled. The cost integral value can also be rolled back. */
4113b1cb36f3SHong Zhang         ierr = TSForwardCostIntegral(ts);CHKERRQ(ierr);
4114b1cb36f3SHong Zhang       }
411510b82f12SShri Abhyankar       ierr = TSPostEvaluate(ts);CHKERRQ(ierr);
4116e783b05fSHong Zhang       ierr = TSEventHandler(ts);CHKERRQ(ierr); /* The right-hand side may be changed due to event. Be careful with Any computation using the RHS information after this point. */
4117e783b05fSHong Zhang       if (!ts->steprollback) {
4118938c94caSShri Abhyankar         ierr = TSTrajectorySet(ts->trajectory,ts,ts->total_steps,ts->ptime,ts->vec_sol);CHKERRQ(ierr);
41191eda64f1SShri Abhyankar         ierr = TSPostStep(ts);CHKERRQ(ierr);
4120aeb4809dSShri Abhyankar       }
4121193ac0bcSJed Brown     }
4122938c94caSShri Abhyankar     ierr = TSMonitor(ts,ts->total_steps,ts->ptime,ts->vec_sol);CHKERRQ(ierr);
41236427ac75SLisandro Dalcin 
412449354f04SShri Abhyankar     if (ts->exact_final_time == TS_EXACTFINALTIME_INTERPOLATE && ts->ptime > ts->max_time) {
41250910c330SBarry Smith       ierr = TSInterpolate(ts,ts->max_time,u);CHKERRQ(ierr);
4126cc708dedSBarry Smith       ts->solvetime = ts->max_time;
4127b06615a5SLisandro Dalcin       solution = u;
412863e21af5SBarry Smith       ierr = TSMonitor(ts,-1,ts->solvetime,solution);CHKERRQ(ierr);
41290574a7fbSJed Brown     } else {
4130ad6bc421SBarry Smith       if (u) {ierr = VecCopy(ts->vec_sol,u);CHKERRQ(ierr);}
4131cc708dedSBarry Smith       ts->solvetime = ts->ptime;
4132b06615a5SLisandro Dalcin       solution = ts->vec_sol;
41330574a7fbSJed Brown     }
4134193ac0bcSJed Brown   }
4135d2daff3dSHong Zhang 
4136ce1779c8SBarry Smith   ierr = TSViewFromOptions(ts,NULL,"-ts_view");CHKERRQ(ierr);
413763e21af5SBarry Smith   ierr = VecViewFromOptions(solution,NULL,"-ts_view_solution");CHKERRQ(ierr);
413856f85f32SBarry Smith   ierr = PetscObjectSAWsBlock((PetscObject)ts);CHKERRQ(ierr);
4139ef222394SBarry Smith   if (ts->adjoint_solve) {
4140ef222394SBarry Smith     ierr = TSAdjointSolve(ts);CHKERRQ(ierr);
41412b0a91c0SBarry Smith   }
4142d763cef2SBarry Smith   PetscFunctionReturn(0);
4143d763cef2SBarry Smith }
4144d763cef2SBarry Smith 
4145b1cb36f3SHong Zhang /*@
4146b1cb36f3SHong Zhang  TSAdjointCostIntegral - Evaluate the cost integral in the adjoint run.
4147b1cb36f3SHong Zhang 
4148b1cb36f3SHong Zhang  Collective on TS
4149b1cb36f3SHong Zhang 
4150b1cb36f3SHong Zhang  Input Arguments:
4151b1cb36f3SHong Zhang  .  ts - time stepping context
4152b1cb36f3SHong Zhang 
4153b1cb36f3SHong Zhang  Level: advanced
4154b1cb36f3SHong Zhang 
4155b1cb36f3SHong Zhang  Notes:
4156b1cb36f3SHong Zhang  This function cannot be called until TSAdjointStep() has been completed.
4157b1cb36f3SHong Zhang 
4158b1cb36f3SHong Zhang  .seealso: TSAdjointSolve(), TSAdjointStep
4159b1cb36f3SHong Zhang  @*/
4160b1cb36f3SHong Zhang PetscErrorCode TSAdjointCostIntegral(TS ts)
4161b1cb36f3SHong Zhang {
4162b1cb36f3SHong Zhang     PetscErrorCode ierr;
4163b1cb36f3SHong Zhang     PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4164b1cb36f3SHong Zhang     if (!ts->ops->adjointintegral) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"%s does not provide integral evaluation in the adjoint run",((PetscObject)ts)->type_name);
4165b1cb36f3SHong Zhang     ierr = (*ts->ops->adjointintegral)(ts);CHKERRQ(ierr);
4166b1cb36f3SHong Zhang     PetscFunctionReturn(0);
4167b1cb36f3SHong Zhang }
4168b1cb36f3SHong Zhang 
4169c88f2d44SBarry Smith /*@
4170c88f2d44SBarry Smith    TSAdjointSolve - Solves the discrete ajoint problem for an ODE/DAE
4171c88f2d44SBarry Smith 
4172c88f2d44SBarry Smith    Collective on TS
4173c88f2d44SBarry Smith 
4174c88f2d44SBarry Smith    Input Parameter:
41752c39e106SBarry Smith .  ts - the TS context obtained from TSCreate()
4176c88f2d44SBarry Smith 
4177e87fd094SBarry Smith    Options Database:
4178e87fd094SBarry Smith . -ts_adjoint_view_solution <viewerinfo> - views the first gradient with respect to the initial conditions
4179e87fd094SBarry Smith 
4180c88f2d44SBarry Smith    Level: intermediate
4181c88f2d44SBarry Smith 
4182c88f2d44SBarry Smith    Notes:
4183c88f2d44SBarry Smith    This must be called after a call to TSSolve() that solves the forward problem
4184c88f2d44SBarry Smith 
418573b18844SBarry Smith    By default this will integrate back to the initial time, one can use TSAdjointSetSteps() to step back to a later time
418673b18844SBarry Smith 
4187c88f2d44SBarry Smith .keywords: TS, timestep, solve
4188c88f2d44SBarry Smith 
4189b957a604SHong Zhang .seealso: TSCreate(), TSSetCostGradients(), TSSetSolution(), TSAdjointStep()
4190c88f2d44SBarry Smith @*/
41912c39e106SBarry Smith PetscErrorCode TSAdjointSolve(TS ts)
4192c88f2d44SBarry Smith {
4193c88f2d44SBarry Smith   PetscErrorCode    ierr;
4194c88f2d44SBarry Smith 
4195c88f2d44SBarry Smith   PetscFunctionBegin;
4196c88f2d44SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4197c88f2d44SBarry Smith   ierr = TSAdjointSetUp(ts);CHKERRQ(ierr);
419868bece0bSHong Zhang 
4199c88f2d44SBarry Smith   /* reset time step and iteration counters */
4200c88f2d44SBarry Smith   ts->steps             = 0;
4201c88f2d44SBarry Smith   ts->ksp_its           = 0;
4202c88f2d44SBarry Smith   ts->snes_its          = 0;
4203c88f2d44SBarry Smith   ts->num_snes_failures = 0;
4204c88f2d44SBarry Smith   ts->reject            = 0;
4205c88f2d44SBarry Smith   ts->reason            = TS_CONVERGED_ITERATING;
4206c88f2d44SBarry Smith 
420773b18844SBarry Smith   if (!ts->adjoint_max_steps) ts->adjoint_max_steps = ts->total_steps;
4208c88f2d44SBarry Smith 
420973b18844SBarry Smith   if (ts->steps >= ts->adjoint_max_steps)     ts->reason = TS_CONVERGED_ITS;
4210c88f2d44SBarry Smith   while (!ts->reason) {
421155c52731SHong Zhang     ierr = TSTrajectoryGet(ts->trajectory,ts,ts->total_steps,&ts->ptime);CHKERRQ(ierr);
42129110b2e7SHong Zhang     ierr = TSAdjointMonitor(ts,ts->total_steps,ts->ptime,ts->vec_sol,ts->numcost,ts->vecs_sensi,ts->vecs_sensip);CHKERRQ(ierr);
42136427ac75SLisandro Dalcin     ierr = TSAdjointEventHandler(ts);CHKERRQ(ierr);
4214616946c1SHong Zhang     ierr = TSAdjointStep(ts);CHKERRQ(ierr);
4215b1cb36f3SHong Zhang     if (ts->vec_costintegral && !ts->costintegralfwd) {
4216b1cb36f3SHong Zhang       ierr = TSAdjointCostIntegral(ts);CHKERRQ(ierr);
4217b1cb36f3SHong Zhang     }
4218c88f2d44SBarry Smith   }
421926656371SHong Zhang   ierr = TSTrajectoryGet(ts->trajectory,ts,ts->total_steps,&ts->ptime);CHKERRQ(ierr);
422026656371SHong Zhang   ierr = TSAdjointMonitor(ts,ts->total_steps,ts->ptime,ts->vec_sol,ts->numcost,ts->vecs_sensi,ts->vecs_sensip);CHKERRQ(ierr);
4221c88f2d44SBarry Smith   ts->solvetime = ts->ptime;
4222e210cd0eSHong Zhang   ierr = TSTrajectoryViewFromOptions(ts->trajectory,NULL,"-ts_trajectory_view");CHKERRQ(ierr);
4223685405a1SBarry Smith   ierr = VecViewFromOptions(ts->vecs_sensi[0],(PetscObject) ts, "-ts_adjoint_view_solution");CHKERRQ(ierr);
4224c88f2d44SBarry Smith   PetscFunctionReturn(0);
4225c88f2d44SBarry Smith }
4226c88f2d44SBarry Smith 
42277db568b7SBarry Smith /*@C
4228228d79bcSJed Brown    TSMonitor - Runs all user-provided monitor routines set using TSMonitorSet()
4229228d79bcSJed Brown 
4230228d79bcSJed Brown    Collective on TS
4231228d79bcSJed Brown 
4232228d79bcSJed Brown    Input Parameters:
4233228d79bcSJed Brown +  ts - time stepping context obtained from TSCreate()
4234228d79bcSJed Brown .  step - step number that has just completed
4235228d79bcSJed Brown .  ptime - model time of the state
42360910c330SBarry Smith -  u - state at the current model time
4237228d79bcSJed Brown 
4238228d79bcSJed Brown    Notes:
42397db568b7SBarry Smith    TSMonitor() is typically used automatically within the time stepping implementations.
42407db568b7SBarry Smith    Users would almost never call this routine directly.
4241228d79bcSJed Brown 
424263e21af5SBarry Smith    A step of -1 indicates that the monitor is being called on a solution obtained by interpolating from computed solutions
424363e21af5SBarry Smith 
42447db568b7SBarry Smith    Level: developer
4245228d79bcSJed Brown 
4246228d79bcSJed Brown .keywords: TS, timestep
4247228d79bcSJed Brown @*/
42480910c330SBarry Smith PetscErrorCode TSMonitor(TS ts,PetscInt step,PetscReal ptime,Vec u)
4249d763cef2SBarry Smith {
4250d6152f81SLisandro Dalcin   DM             dm;
4251a7cc72afSBarry Smith   PetscInt       i,n = ts->numbermonitors;
4252d6152f81SLisandro Dalcin   PetscErrorCode ierr;
4253d763cef2SBarry Smith 
4254d763cef2SBarry Smith   PetscFunctionBegin;
4255b06615a5SLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4256b06615a5SLisandro Dalcin   PetscValidHeaderSpecific(u,VEC_CLASSID,4);
4257d6152f81SLisandro Dalcin 
4258d6152f81SLisandro Dalcin   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
4259d6152f81SLisandro Dalcin   ierr = DMSetOutputSequenceNumber(dm,step,ptime);CHKERRQ(ierr);
4260d6152f81SLisandro Dalcin 
42615edff71fSBarry Smith   ierr = VecLockPush(u);CHKERRQ(ierr);
4262d763cef2SBarry Smith   for (i=0; i<n; i++) {
42630910c330SBarry Smith     ierr = (*ts->monitor[i])(ts,step,ptime,u,ts->monitorcontext[i]);CHKERRQ(ierr);
4264d763cef2SBarry Smith   }
42655edff71fSBarry Smith   ierr = VecLockPop(u);CHKERRQ(ierr);
4266d763cef2SBarry Smith   PetscFunctionReturn(0);
4267d763cef2SBarry Smith }
4268d763cef2SBarry Smith 
42697db568b7SBarry Smith /*@C
42709110b2e7SHong Zhang    TSAdjointMonitor - Runs all user-provided adjoint monitor routines set using TSAdjointMonitorSet()
42719110b2e7SHong Zhang 
42729110b2e7SHong Zhang    Collective on TS
42739110b2e7SHong Zhang 
42749110b2e7SHong Zhang    Input Parameters:
42759110b2e7SHong Zhang +  ts - time stepping context obtained from TSCreate()
42769110b2e7SHong Zhang .  step - step number that has just completed
42779110b2e7SHong Zhang .  ptime - model time of the state
42789110b2e7SHong Zhang .  u - state at the current model time
42799110b2e7SHong Zhang .  numcost - number of cost functions (dimension of lambda  or mu)
42809110b2e7SHong Zhang .  lambda - vectors containing the gradients of the cost functions with respect to the ODE/DAE solution variables
42819110b2e7SHong Zhang -  mu - vectors containing the gradients of the cost functions with respect to the problem parameters
42829110b2e7SHong Zhang 
42839110b2e7SHong Zhang    Notes:
42847db568b7SBarry Smith    TSAdjointMonitor() is typically used automatically within the time stepping implementations.
42857db568b7SBarry Smith    Users would almost never call this routine directly.
42869110b2e7SHong Zhang 
42877db568b7SBarry Smith    Level: developer
42889110b2e7SHong Zhang 
42899110b2e7SHong Zhang .keywords: TS, timestep
42909110b2e7SHong Zhang @*/
42919110b2e7SHong Zhang PetscErrorCode TSAdjointMonitor(TS ts,PetscInt step,PetscReal ptime,Vec u,PetscInt numcost,Vec *lambda, Vec *mu)
42929110b2e7SHong Zhang {
42939110b2e7SHong Zhang   PetscErrorCode ierr;
42949110b2e7SHong Zhang   PetscInt       i,n = ts->numberadjointmonitors;
42959110b2e7SHong Zhang 
42969110b2e7SHong Zhang   PetscFunctionBegin;
42979110b2e7SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
42989110b2e7SHong Zhang   PetscValidHeaderSpecific(u,VEC_CLASSID,4);
42999110b2e7SHong Zhang   ierr = VecLockPush(u);CHKERRQ(ierr);
43009110b2e7SHong Zhang   for (i=0; i<n; i++) {
43019110b2e7SHong Zhang     ierr = (*ts->adjointmonitor[i])(ts,step,ptime,u,numcost,lambda,mu,ts->adjointmonitorcontext[i]);CHKERRQ(ierr);
43029110b2e7SHong Zhang   }
43039110b2e7SHong Zhang   ierr = VecLockPop(u);CHKERRQ(ierr);
43049110b2e7SHong Zhang   PetscFunctionReturn(0);
43059110b2e7SHong Zhang }
43069110b2e7SHong Zhang 
4307d763cef2SBarry Smith /* ------------------------------------------------------------------------*/
4308d763cef2SBarry Smith /*@C
43097db568b7SBarry Smith    TSMonitorLGCtxCreate - Creates a TSMonitorLGCtx context for use with
4310a9f9c1f6SBarry Smith    TS to monitor the solution process graphically in various ways
4311d763cef2SBarry Smith 
4312d763cef2SBarry Smith    Collective on TS
4313d763cef2SBarry Smith 
4314d763cef2SBarry Smith    Input Parameters:
4315d763cef2SBarry Smith +  host - the X display to open, or null for the local machine
4316d763cef2SBarry Smith .  label - the title to put in the title bar
43177c922b88SBarry Smith .  x, y - the screen coordinates of the upper left coordinate of the window
4318a9f9c1f6SBarry Smith .  m, n - the screen width and height in pixels
4319a9f9c1f6SBarry Smith -  howoften - if positive then determines the frequency of the plotting, if -1 then only at the final time
4320d763cef2SBarry Smith 
4321d763cef2SBarry Smith    Output Parameter:
43220b039ecaSBarry Smith .  ctx - the context
4323d763cef2SBarry Smith 
4324d763cef2SBarry Smith    Options Database Key:
43254f09c107SBarry Smith +  -ts_monitor_lg_timestep - automatically sets line graph monitor
43267db568b7SBarry Smith .  -ts_monitor_lg_solution - monitor the solution (or certain values of the solution by calling TSMonitorLGSetDisplayVariables() or TSMonitorLGCtxSetDisplayVariables())
43277db568b7SBarry Smith .  -ts_monitor_lg_error -  monitor the error
43287db568b7SBarry Smith .  -ts_monitor_lg_ksp_iterations - monitor the number of KSP iterations needed for each timestep
43297db568b7SBarry Smith .  -ts_monitor_lg_snes_iterations - monitor the number of SNES iterations needed for each timestep
4330b6fe0379SLisandro Dalcin -  -lg_use_markers <true,false> - mark the data points (at each time step) on the plot; default is true
4331d763cef2SBarry Smith 
4332d763cef2SBarry Smith    Notes:
4333a9f9c1f6SBarry Smith    Use TSMonitorLGCtxDestroy() to destroy.
4334d763cef2SBarry Smith 
43357db568b7SBarry Smith    One can provide a function that transforms the solution before plotting it with TSMonitorLGCtxSetTransform() or TSMonitorLGSetTransform()
43367db568b7SBarry Smith 
43377db568b7SBarry Smith    Many of the functions that control the monitoring have two forms: TSMonitorLGSet/GetXXXX() and TSMonitorLGCtxSet/GetXXXX() the first take a TS object as the
43387db568b7SBarry Smith    first argument (if that TS object does not have a TSMonitorLGCtx associated with it the function call is ignored) and the second takes a TSMonitorLGCtx object
43397db568b7SBarry Smith    as the first argument.
43407db568b7SBarry Smith 
43417db568b7SBarry Smith    One can control the names displayed for each solution or error variable with TSMonitorLGCtxSetVariableNames() or TSMonitorLGSetVariableNames()
43427db568b7SBarry Smith 
43437db568b7SBarry Smith 
4344d763cef2SBarry Smith    Level: intermediate
4345d763cef2SBarry Smith 
43467db568b7SBarry Smith .keywords: TS, monitor, line graph, residual
4347d763cef2SBarry Smith 
43487db568b7SBarry Smith .seealso: TSMonitorLGTimeStep(), TSMonitorSet(), TSMonitorLGSolution(), TSMonitorLGError(), TSMonitorDefault(), VecView(),
43497db568b7SBarry Smith            TSMonitorLGCtxCreate(), TSMonitorLGCtxSetVariableNames(), TSMonitorLGCtxGetVariableNames(),
43507db568b7SBarry Smith            TSMonitorLGSetVariableNames(), TSMonitorLGGetVariableNames(), TSMonitorLGSetDisplayVariables(), TSMonitorLGCtxSetDisplayVariables(),
43517db568b7SBarry Smith            TSMonitorLGCtxSetTransform(), TSMonitorLGSetTransform(), TSMonitorLGError(), TSMonitorLGSNESIterations(), TSMonitorLGKSPIterations(),
43527db568b7SBarry Smith            TSMonitorEnvelopeCtxCreate(), TSMonitorEnvelopeGetBounds(), TSMonitorEnvelopeCtxDestroy(), TSMonitorEnvelop()
43537c922b88SBarry Smith 
4354d763cef2SBarry Smith @*/
4355a9f9c1f6SBarry Smith PetscErrorCode  TSMonitorLGCtxCreate(MPI_Comm comm,const char host[],const char label[],int x,int y,int m,int n,PetscInt howoften,TSMonitorLGCtx *ctx)
4356d763cef2SBarry Smith {
43577f52daa2SLisandro Dalcin   PetscDraw      draw;
4358dfbe8321SBarry Smith   PetscErrorCode ierr;
4359d763cef2SBarry Smith 
4360d763cef2SBarry Smith   PetscFunctionBegin;
4361b00a9115SJed Brown   ierr = PetscNew(ctx);CHKERRQ(ierr);
43627f52daa2SLisandro Dalcin   ierr = PetscDrawCreate(comm,host,label,x,y,m,n,&draw);CHKERRQ(ierr);
43637f52daa2SLisandro Dalcin   ierr = PetscDrawSetFromOptions(draw);CHKERRQ(ierr);
43647f52daa2SLisandro Dalcin   ierr = PetscDrawLGCreate(draw,1,&(*ctx)->lg);CHKERRQ(ierr);
4365287de1a7SBarry Smith   ierr = PetscDrawLGSetFromOptions((*ctx)->lg);CHKERRQ(ierr);
43667f52daa2SLisandro Dalcin   ierr = PetscDrawDestroy(&draw);CHKERRQ(ierr);
4367a9f9c1f6SBarry Smith   (*ctx)->howoften = howoften;
4368d763cef2SBarry Smith   PetscFunctionReturn(0);
4369d763cef2SBarry Smith }
4370d763cef2SBarry Smith 
4371b06615a5SLisandro Dalcin PetscErrorCode TSMonitorLGTimeStep(TS ts,PetscInt step,PetscReal ptime,Vec v,void *monctx)
4372d763cef2SBarry Smith {
43730b039ecaSBarry Smith   TSMonitorLGCtx ctx = (TSMonitorLGCtx) monctx;
4374c32365f1SBarry Smith   PetscReal      x   = ptime,y;
4375dfbe8321SBarry Smith   PetscErrorCode ierr;
4376d763cef2SBarry Smith 
4377d763cef2SBarry Smith   PetscFunctionBegin;
437863e21af5SBarry Smith   if (step < 0) PetscFunctionReturn(0); /* -1 indicates an interpolated solution */
4379b06615a5SLisandro Dalcin   if (!step) {
4380a9f9c1f6SBarry Smith     PetscDrawAxis axis;
4381a9f9c1f6SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
43826934998bSLisandro Dalcin     ierr = PetscDrawAxisSetLabels(axis,"Timestep as function of time","Time","Time Step");CHKERRQ(ierr);
4383a9f9c1f6SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
4384a9f9c1f6SBarry Smith   }
4385c32365f1SBarry Smith   ierr = TSGetTimeStep(ts,&y);CHKERRQ(ierr);
43860b039ecaSBarry Smith   ierr = PetscDrawLGAddPoint(ctx->lg,&x,&y);CHKERRQ(ierr);
4387b06615a5SLisandro Dalcin   if (((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason)) {
43880b039ecaSBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
43896934998bSLisandro Dalcin     ierr = PetscDrawLGSave(ctx->lg);CHKERRQ(ierr);
43903923b477SBarry Smith   }
4391d763cef2SBarry Smith   PetscFunctionReturn(0);
4392d763cef2SBarry Smith }
4393d763cef2SBarry Smith 
4394d763cef2SBarry Smith /*@C
4395a9f9c1f6SBarry Smith    TSMonitorLGCtxDestroy - Destroys a line graph context that was created
4396a9f9c1f6SBarry Smith    with TSMonitorLGCtxCreate().
4397d763cef2SBarry Smith 
43980b039ecaSBarry Smith    Collective on TSMonitorLGCtx
4399d763cef2SBarry Smith 
4400d763cef2SBarry Smith    Input Parameter:
44010b039ecaSBarry Smith .  ctx - the monitor context
4402d763cef2SBarry Smith 
4403d763cef2SBarry Smith    Level: intermediate
4404d763cef2SBarry Smith 
4405d763cef2SBarry Smith .keywords: TS, monitor, line graph, destroy
4406d763cef2SBarry Smith 
44074f09c107SBarry Smith .seealso: TSMonitorLGCtxCreate(),  TSMonitorSet(), TSMonitorLGTimeStep();
4408d763cef2SBarry Smith @*/
4409a9f9c1f6SBarry Smith PetscErrorCode  TSMonitorLGCtxDestroy(TSMonitorLGCtx *ctx)
4410d763cef2SBarry Smith {
4411dfbe8321SBarry Smith   PetscErrorCode ierr;
4412d763cef2SBarry Smith 
4413d763cef2SBarry Smith   PetscFunctionBegin;
44147684fa3eSBarry Smith   if ((*ctx)->transformdestroy) {
44157684fa3eSBarry Smith     ierr = ((*ctx)->transformdestroy)((*ctx)->transformctx);CHKERRQ(ierr);
44167684fa3eSBarry Smith   }
44170b039ecaSBarry Smith   ierr = PetscDrawLGDestroy(&(*ctx)->lg);CHKERRQ(ierr);
441831152f8aSBarry Smith   ierr = PetscStrArrayDestroy(&(*ctx)->names);CHKERRQ(ierr);
4419387f4636SBarry Smith   ierr = PetscStrArrayDestroy(&(*ctx)->displaynames);CHKERRQ(ierr);
4420387f4636SBarry Smith   ierr = PetscFree((*ctx)->displayvariables);CHKERRQ(ierr);
4421387f4636SBarry Smith   ierr = PetscFree((*ctx)->displayvalues);CHKERRQ(ierr);
44220b039ecaSBarry Smith   ierr = PetscFree(*ctx);CHKERRQ(ierr);
4423d763cef2SBarry Smith   PetscFunctionReturn(0);
4424d763cef2SBarry Smith }
4425d763cef2SBarry Smith 
4426d763cef2SBarry Smith /*@
4427b8123daeSJed Brown    TSGetTime - Gets the time of the most recently completed step.
4428d763cef2SBarry Smith 
4429d763cef2SBarry Smith    Not Collective
4430d763cef2SBarry Smith 
4431d763cef2SBarry Smith    Input Parameter:
4432d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
4433d763cef2SBarry Smith 
4434d763cef2SBarry Smith    Output Parameter:
443563e21af5SBarry Smith .  t  - the current time. This time may not corresponds to the final time set with TSSetDuration(), use TSGetSolveTime().
4436d763cef2SBarry Smith 
4437d763cef2SBarry Smith    Level: beginner
4438d763cef2SBarry Smith 
4439b8123daeSJed Brown    Note:
4440b8123daeSJed Brown    When called during time step evaluation (e.g. during residual evaluation or via hooks set using TSSetPreStep(),
44419be3e283SDebojyoti Ghosh    TSSetPreStage(), TSSetPostStage(), or TSSetPostStep()), the time is the time at the start of the step being evaluated.
4442b8123daeSJed Brown 
444363e21af5SBarry Smith .seealso: TSSetInitialTimeStep(), TSGetTimeStep(), TSGetSolveTime()
4444d763cef2SBarry Smith 
4445d763cef2SBarry Smith .keywords: TS, get, time
4446d763cef2SBarry Smith @*/
44477087cfbeSBarry Smith PetscErrorCode  TSGetTime(TS ts,PetscReal *t)
4448d763cef2SBarry Smith {
4449d763cef2SBarry Smith   PetscFunctionBegin;
44500700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4451f7cf8827SBarry Smith   PetscValidRealPointer(t,2);
4452d763cef2SBarry Smith   *t = ts->ptime;
4453d763cef2SBarry Smith   PetscFunctionReturn(0);
4454d763cef2SBarry Smith }
4455d763cef2SBarry Smith 
4456e5e524a1SHong Zhang /*@
4457e5e524a1SHong Zhang    TSGetPrevTime - Gets the starting time of the previously completed step.
4458e5e524a1SHong Zhang 
4459e5e524a1SHong Zhang    Not Collective
4460e5e524a1SHong Zhang 
4461e5e524a1SHong Zhang    Input Parameter:
4462e5e524a1SHong Zhang .  ts - the TS context obtained from TSCreate()
4463e5e524a1SHong Zhang 
4464e5e524a1SHong Zhang    Output Parameter:
4465e5e524a1SHong Zhang .  t  - the previous time
4466e5e524a1SHong Zhang 
4467e5e524a1SHong Zhang    Level: beginner
4468e5e524a1SHong Zhang 
4469e5e524a1SHong Zhang .seealso: TSSetInitialTimeStep(), TSGetTimeStep()
4470e5e524a1SHong Zhang 
4471e5e524a1SHong Zhang .keywords: TS, get, time
4472e5e524a1SHong Zhang @*/
4473e5e524a1SHong Zhang PetscErrorCode  TSGetPrevTime(TS ts,PetscReal *t)
4474e5e524a1SHong Zhang {
4475e5e524a1SHong Zhang   PetscFunctionBegin;
4476e5e524a1SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4477e5e524a1SHong Zhang   PetscValidRealPointer(t,2);
4478e5e524a1SHong Zhang   *t = ts->ptime_prev;
4479e5e524a1SHong Zhang   PetscFunctionReturn(0);
4480e5e524a1SHong Zhang }
4481e5e524a1SHong Zhang 
44826a4d4014SLisandro Dalcin /*@
44836a4d4014SLisandro Dalcin    TSSetTime - Allows one to reset the time.
44846a4d4014SLisandro Dalcin 
44853f9fe445SBarry Smith    Logically Collective on TS
44866a4d4014SLisandro Dalcin 
44876a4d4014SLisandro Dalcin    Input Parameters:
44886a4d4014SLisandro Dalcin +  ts - the TS context obtained from TSCreate()
44896a4d4014SLisandro Dalcin -  time - the time
44906a4d4014SLisandro Dalcin 
44916a4d4014SLisandro Dalcin    Level: intermediate
44926a4d4014SLisandro Dalcin 
44936a4d4014SLisandro Dalcin .seealso: TSGetTime(), TSSetDuration()
44946a4d4014SLisandro Dalcin 
44956a4d4014SLisandro Dalcin .keywords: TS, set, time
44966a4d4014SLisandro Dalcin @*/
44977087cfbeSBarry Smith PetscErrorCode  TSSetTime(TS ts, PetscReal t)
44986a4d4014SLisandro Dalcin {
44996a4d4014SLisandro Dalcin   PetscFunctionBegin;
45000700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4501c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(ts,t,2);
45026a4d4014SLisandro Dalcin   ts->ptime = t;
45036a4d4014SLisandro Dalcin   PetscFunctionReturn(0);
45046a4d4014SLisandro Dalcin }
45056a4d4014SLisandro Dalcin 
4506d763cef2SBarry Smith /*@C
4507d763cef2SBarry Smith    TSSetOptionsPrefix - Sets the prefix used for searching for all
4508d763cef2SBarry Smith    TS options in the database.
4509d763cef2SBarry Smith 
45103f9fe445SBarry Smith    Logically Collective on TS
4511d763cef2SBarry Smith 
4512d763cef2SBarry Smith    Input Parameter:
4513d763cef2SBarry Smith +  ts     - The TS context
4514d763cef2SBarry Smith -  prefix - The prefix to prepend to all option names
4515d763cef2SBarry Smith 
4516d763cef2SBarry Smith    Notes:
4517d763cef2SBarry Smith    A hyphen (-) must NOT be given at the beginning of the prefix name.
4518d763cef2SBarry Smith    The first character of all runtime options is AUTOMATICALLY the
4519d763cef2SBarry Smith    hyphen.
4520d763cef2SBarry Smith 
4521d763cef2SBarry Smith    Level: advanced
4522d763cef2SBarry Smith 
4523d763cef2SBarry Smith .keywords: TS, set, options, prefix, database
4524d763cef2SBarry Smith 
4525d763cef2SBarry Smith .seealso: TSSetFromOptions()
4526d763cef2SBarry Smith 
4527d763cef2SBarry Smith @*/
45287087cfbeSBarry Smith PetscErrorCode  TSSetOptionsPrefix(TS ts,const char prefix[])
4529d763cef2SBarry Smith {
4530dfbe8321SBarry Smith   PetscErrorCode ierr;
4531089b2837SJed Brown   SNES           snes;
4532d763cef2SBarry Smith 
4533d763cef2SBarry Smith   PetscFunctionBegin;
45340700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4535d763cef2SBarry Smith   ierr = PetscObjectSetOptionsPrefix((PetscObject)ts,prefix);CHKERRQ(ierr);
4536089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
4537089b2837SJed Brown   ierr = SNESSetOptionsPrefix(snes,prefix);CHKERRQ(ierr);
4538d763cef2SBarry Smith   PetscFunctionReturn(0);
4539d763cef2SBarry Smith }
4540d763cef2SBarry Smith 
4541d763cef2SBarry Smith 
4542d763cef2SBarry Smith /*@C
4543d763cef2SBarry Smith    TSAppendOptionsPrefix - Appends to the prefix used for searching for all
4544d763cef2SBarry Smith    TS options in the database.
4545d763cef2SBarry Smith 
45463f9fe445SBarry Smith    Logically Collective on TS
4547d763cef2SBarry Smith 
4548d763cef2SBarry Smith    Input Parameter:
4549d763cef2SBarry Smith +  ts     - The TS context
4550d763cef2SBarry Smith -  prefix - The prefix to prepend to all option names
4551d763cef2SBarry Smith 
4552d763cef2SBarry Smith    Notes:
4553d763cef2SBarry Smith    A hyphen (-) must NOT be given at the beginning of the prefix name.
4554d763cef2SBarry Smith    The first character of all runtime options is AUTOMATICALLY the
4555d763cef2SBarry Smith    hyphen.
4556d763cef2SBarry Smith 
4557d763cef2SBarry Smith    Level: advanced
4558d763cef2SBarry Smith 
4559d763cef2SBarry Smith .keywords: TS, append, options, prefix, database
4560d763cef2SBarry Smith 
4561d763cef2SBarry Smith .seealso: TSGetOptionsPrefix()
4562d763cef2SBarry Smith 
4563d763cef2SBarry Smith @*/
45647087cfbeSBarry Smith PetscErrorCode  TSAppendOptionsPrefix(TS ts,const char prefix[])
4565d763cef2SBarry Smith {
4566dfbe8321SBarry Smith   PetscErrorCode ierr;
4567089b2837SJed Brown   SNES           snes;
4568d763cef2SBarry Smith 
4569d763cef2SBarry Smith   PetscFunctionBegin;
45700700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4571d763cef2SBarry Smith   ierr = PetscObjectAppendOptionsPrefix((PetscObject)ts,prefix);CHKERRQ(ierr);
4572089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
4573089b2837SJed Brown   ierr = SNESAppendOptionsPrefix(snes,prefix);CHKERRQ(ierr);
4574d763cef2SBarry Smith   PetscFunctionReturn(0);
4575d763cef2SBarry Smith }
4576d763cef2SBarry Smith 
4577d763cef2SBarry Smith /*@C
4578d763cef2SBarry Smith    TSGetOptionsPrefix - Sets the prefix used for searching for all
4579d763cef2SBarry Smith    TS options in the database.
4580d763cef2SBarry Smith 
4581d763cef2SBarry Smith    Not Collective
4582d763cef2SBarry Smith 
4583d763cef2SBarry Smith    Input Parameter:
4584d763cef2SBarry Smith .  ts - The TS context
4585d763cef2SBarry Smith 
4586d763cef2SBarry Smith    Output Parameter:
4587d763cef2SBarry Smith .  prefix - A pointer to the prefix string used
4588d763cef2SBarry Smith 
4589d763cef2SBarry Smith    Notes: On the fortran side, the user should pass in a string 'prifix' of
4590d763cef2SBarry Smith    sufficient length to hold the prefix.
4591d763cef2SBarry Smith 
4592d763cef2SBarry Smith    Level: intermediate
4593d763cef2SBarry Smith 
4594d763cef2SBarry Smith .keywords: TS, get, options, prefix, database
4595d763cef2SBarry Smith 
4596d763cef2SBarry Smith .seealso: TSAppendOptionsPrefix()
4597d763cef2SBarry Smith @*/
45987087cfbeSBarry Smith PetscErrorCode  TSGetOptionsPrefix(TS ts,const char *prefix[])
4599d763cef2SBarry Smith {
4600dfbe8321SBarry Smith   PetscErrorCode ierr;
4601d763cef2SBarry Smith 
4602d763cef2SBarry Smith   PetscFunctionBegin;
46030700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
46044482741eSBarry Smith   PetscValidPointer(prefix,2);
4605d763cef2SBarry Smith   ierr = PetscObjectGetOptionsPrefix((PetscObject)ts,prefix);CHKERRQ(ierr);
4606d763cef2SBarry Smith   PetscFunctionReturn(0);
4607d763cef2SBarry Smith }
4608d763cef2SBarry Smith 
4609d763cef2SBarry Smith /*@C
4610d763cef2SBarry Smith    TSGetRHSJacobian - Returns the Jacobian J at the present timestep.
4611d763cef2SBarry Smith 
4612d763cef2SBarry Smith    Not Collective, but parallel objects are returned if TS is parallel
4613d763cef2SBarry Smith 
4614d763cef2SBarry Smith    Input Parameter:
4615d763cef2SBarry Smith .  ts  - The TS context obtained from TSCreate()
4616d763cef2SBarry Smith 
4617d763cef2SBarry Smith    Output Parameters:
4618e4357dc4SBarry Smith +  Amat - The (approximate) Jacobian J of G, where U_t = G(U,t)  (or NULL)
4619e4357dc4SBarry Smith .  Pmat - The matrix from which the preconditioner is constructed, usually the same as Amat  (or NULL)
4620e4357dc4SBarry Smith .  func - Function to compute the Jacobian of the RHS  (or NULL)
4621e4357dc4SBarry Smith -  ctx - User-defined context for Jacobian evaluation routine  (or NULL)
4622d763cef2SBarry Smith 
46230298fd71SBarry Smith    Notes: You can pass in NULL for any return argument you do not need.
4624d763cef2SBarry Smith 
4625d763cef2SBarry Smith    Level: intermediate
4626d763cef2SBarry Smith 
462726d46c62SHong Zhang .seealso: TSGetTimeStep(), TSGetMatrices(), TSGetTime(), TSGetTimeStepNumber()
4628d763cef2SBarry Smith 
4629d763cef2SBarry Smith .keywords: TS, timestep, get, matrix, Jacobian
4630d763cef2SBarry Smith @*/
4631e4357dc4SBarry Smith PetscErrorCode  TSGetRHSJacobian(TS ts,Mat *Amat,Mat *Pmat,TSRHSJacobian *func,void **ctx)
4632d763cef2SBarry Smith {
4633089b2837SJed Brown   PetscErrorCode ierr;
463424989b8cSPeter Brune   DM             dm;
4635089b2837SJed Brown 
4636d763cef2SBarry Smith   PetscFunctionBegin;
463723a57915SBarry Smith   if (Amat || Pmat) {
463823a57915SBarry Smith     SNES snes;
4639089b2837SJed Brown     ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
464023a57915SBarry Smith     ierr = SNESSetUpMatrices(snes);CHKERRQ(ierr);
4641e4357dc4SBarry Smith     ierr = SNESGetJacobian(snes,Amat,Pmat,NULL,NULL);CHKERRQ(ierr);
464223a57915SBarry Smith   }
464324989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
464424989b8cSPeter Brune   ierr = DMTSGetRHSJacobian(dm,func,ctx);CHKERRQ(ierr);
4645d763cef2SBarry Smith   PetscFunctionReturn(0);
4646d763cef2SBarry Smith }
4647d763cef2SBarry Smith 
46482eca1d9cSJed Brown /*@C
46492eca1d9cSJed Brown    TSGetIJacobian - Returns the implicit Jacobian at the present timestep.
46502eca1d9cSJed Brown 
46512eca1d9cSJed Brown    Not Collective, but parallel objects are returned if TS is parallel
46522eca1d9cSJed Brown 
46532eca1d9cSJed Brown    Input Parameter:
46542eca1d9cSJed Brown .  ts  - The TS context obtained from TSCreate()
46552eca1d9cSJed Brown 
46562eca1d9cSJed Brown    Output Parameters:
4657e4357dc4SBarry Smith +  Amat  - The (approximate) Jacobian of F(t,U,U_t)
4658e4357dc4SBarry Smith .  Pmat - The matrix from which the preconditioner is constructed, often the same as Amat
46592eca1d9cSJed Brown .  f   - The function to compute the matrices
46602eca1d9cSJed Brown - ctx - User-defined context for Jacobian evaluation routine
46612eca1d9cSJed Brown 
46620298fd71SBarry Smith    Notes: You can pass in NULL for any return argument you do not need.
46632eca1d9cSJed Brown 
46642eca1d9cSJed Brown    Level: advanced
46652eca1d9cSJed Brown 
46662eca1d9cSJed Brown .seealso: TSGetTimeStep(), TSGetRHSJacobian(), TSGetMatrices(), TSGetTime(), TSGetTimeStepNumber()
46672eca1d9cSJed Brown 
46682eca1d9cSJed Brown .keywords: TS, timestep, get, matrix, Jacobian
46692eca1d9cSJed Brown @*/
4670e4357dc4SBarry Smith PetscErrorCode  TSGetIJacobian(TS ts,Mat *Amat,Mat *Pmat,TSIJacobian *f,void **ctx)
46712eca1d9cSJed Brown {
4672089b2837SJed Brown   PetscErrorCode ierr;
467324989b8cSPeter Brune   DM             dm;
46740910c330SBarry Smith 
46752eca1d9cSJed Brown   PetscFunctionBegin;
4676c0aab802Sstefano_zampini   if (Amat || Pmat) {
4677c0aab802Sstefano_zampini     SNES snes;
4678089b2837SJed Brown     ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
4679f7d39f7aSBarry Smith     ierr = SNESSetUpMatrices(snes);CHKERRQ(ierr);
4680e4357dc4SBarry Smith     ierr = SNESGetJacobian(snes,Amat,Pmat,NULL,NULL);CHKERRQ(ierr);
4681c0aab802Sstefano_zampini   }
468224989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
468324989b8cSPeter Brune   ierr = DMTSGetIJacobian(dm,f,ctx);CHKERRQ(ierr);
46842eca1d9cSJed Brown   PetscFunctionReturn(0);
46852eca1d9cSJed Brown }
46862eca1d9cSJed Brown 
46876083293cSBarry Smith 
46881713a123SBarry Smith /*@C
468983a4ac43SBarry Smith    TSMonitorDrawSolution - Monitors progress of the TS solvers by calling
46901713a123SBarry Smith    VecView() for the solution at each timestep
46911713a123SBarry Smith 
46921713a123SBarry Smith    Collective on TS
46931713a123SBarry Smith 
46941713a123SBarry Smith    Input Parameters:
46951713a123SBarry Smith +  ts - the TS context
46961713a123SBarry Smith .  step - current time-step
4697142b95e3SSatish Balay .  ptime - current time
46980298fd71SBarry Smith -  dummy - either a viewer or NULL
46991713a123SBarry Smith 
470099fdda47SBarry Smith    Options Database:
470199fdda47SBarry Smith .   -ts_monitor_draw_solution_initial - show initial solution as well as current solution
470299fdda47SBarry Smith 
4703387f4636SBarry Smith    Notes: the initial solution and current solution are not display with a common axis scaling so generally the option -ts_monitor_draw_solution_initial
470499fdda47SBarry Smith        will look bad
470599fdda47SBarry Smith 
47061713a123SBarry Smith    Level: intermediate
47071713a123SBarry Smith 
47081713a123SBarry Smith .keywords: TS,  vector, monitor, view
47091713a123SBarry Smith 
4710a6570f20SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
47111713a123SBarry Smith @*/
47120910c330SBarry Smith PetscErrorCode  TSMonitorDrawSolution(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
47131713a123SBarry Smith {
4714dfbe8321SBarry Smith   PetscErrorCode   ierr;
471583a4ac43SBarry Smith   TSMonitorDrawCtx ictx = (TSMonitorDrawCtx)dummy;
4716473a3ab2SBarry Smith   PetscDraw        draw;
47171713a123SBarry Smith 
47181713a123SBarry Smith   PetscFunctionBegin;
47196083293cSBarry Smith   if (!step && ictx->showinitial) {
47206083293cSBarry Smith     if (!ictx->initialsolution) {
47210910c330SBarry Smith       ierr = VecDuplicate(u,&ictx->initialsolution);CHKERRQ(ierr);
47221713a123SBarry Smith     }
47230910c330SBarry Smith     ierr = VecCopy(u,ictx->initialsolution);CHKERRQ(ierr);
47246083293cSBarry Smith   }
4725b06615a5SLisandro Dalcin   if (!(((ictx->howoften > 0) && (!(step % ictx->howoften))) || ((ictx->howoften == -1) && ts->reason))) PetscFunctionReturn(0);
47260dcf80beSBarry Smith 
47276083293cSBarry Smith   if (ictx->showinitial) {
47286083293cSBarry Smith     PetscReal pause;
47296083293cSBarry Smith     ierr = PetscViewerDrawGetPause(ictx->viewer,&pause);CHKERRQ(ierr);
47306083293cSBarry Smith     ierr = PetscViewerDrawSetPause(ictx->viewer,0.0);CHKERRQ(ierr);
47316083293cSBarry Smith     ierr = VecView(ictx->initialsolution,ictx->viewer);CHKERRQ(ierr);
47326083293cSBarry Smith     ierr = PetscViewerDrawSetPause(ictx->viewer,pause);CHKERRQ(ierr);
47336083293cSBarry Smith     ierr = PetscViewerDrawSetHold(ictx->viewer,PETSC_TRUE);CHKERRQ(ierr);
47346083293cSBarry Smith   }
47350910c330SBarry Smith   ierr = VecView(u,ictx->viewer);CHKERRQ(ierr);
4736473a3ab2SBarry Smith   if (ictx->showtimestepandtime) {
473751fa3d41SBarry Smith     PetscReal xl,yl,xr,yr,h;
4738473a3ab2SBarry Smith     char      time[32];
4739473a3ab2SBarry Smith 
4740473a3ab2SBarry Smith     ierr = PetscViewerDrawGetDraw(ictx->viewer,0,&draw);CHKERRQ(ierr);
474185b1acf9SLisandro Dalcin     ierr = PetscSNPrintf(time,32,"Timestep %d Time %g",(int)step,(double)ptime);CHKERRQ(ierr);
4742473a3ab2SBarry Smith     ierr = PetscDrawGetCoordinates(draw,&xl,&yl,&xr,&yr);CHKERRQ(ierr);
4743473a3ab2SBarry Smith     h    = yl + .95*(yr - yl);
474451fa3d41SBarry Smith     ierr = PetscDrawStringCentered(draw,.5*(xl+xr),h,PETSC_DRAW_BLACK,time);CHKERRQ(ierr);
4745473a3ab2SBarry Smith     ierr = PetscDrawFlush(draw);CHKERRQ(ierr);
4746473a3ab2SBarry Smith   }
4747473a3ab2SBarry Smith 
47486083293cSBarry Smith   if (ictx->showinitial) {
47496083293cSBarry Smith     ierr = PetscViewerDrawSetHold(ictx->viewer,PETSC_FALSE);CHKERRQ(ierr);
47506083293cSBarry Smith   }
47511713a123SBarry Smith   PetscFunctionReturn(0);
47521713a123SBarry Smith }
47531713a123SBarry Smith 
47549110b2e7SHong Zhang /*@C
47559110b2e7SHong Zhang    TSAdjointMonitorDrawSensi - Monitors progress of the adjoint TS solvers by calling
47569110b2e7SHong Zhang    VecView() for the sensitivities to initial states at each timestep
47579110b2e7SHong Zhang 
47589110b2e7SHong Zhang    Collective on TS
47599110b2e7SHong Zhang 
47609110b2e7SHong Zhang    Input Parameters:
47619110b2e7SHong Zhang +  ts - the TS context
47629110b2e7SHong Zhang .  step - current time-step
47639110b2e7SHong Zhang .  ptime - current time
47649110b2e7SHong Zhang .  u - current state
47659110b2e7SHong Zhang .  numcost - number of cost functions
47669110b2e7SHong Zhang .  lambda - sensitivities to initial conditions
47679110b2e7SHong Zhang .  mu - sensitivities to parameters
47689110b2e7SHong Zhang -  dummy - either a viewer or NULL
47699110b2e7SHong Zhang 
47709110b2e7SHong Zhang    Level: intermediate
47719110b2e7SHong Zhang 
47729110b2e7SHong Zhang .keywords: TS,  vector, adjoint, monitor, view
47739110b2e7SHong Zhang 
47749110b2e7SHong Zhang .seealso: TSAdjointMonitorSet(), TSAdjointMonitorDefault(), VecView()
47759110b2e7SHong Zhang @*/
47769110b2e7SHong Zhang PetscErrorCode  TSAdjointMonitorDrawSensi(TS ts,PetscInt step,PetscReal ptime,Vec u,PetscInt numcost,Vec *lambda,Vec *mu,void *dummy)
47779110b2e7SHong Zhang {
47789110b2e7SHong Zhang   PetscErrorCode   ierr;
47799110b2e7SHong Zhang   TSMonitorDrawCtx ictx = (TSMonitorDrawCtx)dummy;
47809110b2e7SHong Zhang   PetscDraw        draw;
4781a0046e2cSSatish Balay   PetscReal        xl,yl,xr,yr,h;
4782a0046e2cSSatish Balay   char             time[32];
47839110b2e7SHong Zhang 
47849110b2e7SHong Zhang   PetscFunctionBegin;
47859110b2e7SHong Zhang   if (!(((ictx->howoften > 0) && (!(step % ictx->howoften))) || ((ictx->howoften == -1) && ts->reason))) PetscFunctionReturn(0);
47869110b2e7SHong Zhang 
47879110b2e7SHong Zhang   ierr = VecView(lambda[0],ictx->viewer);CHKERRQ(ierr);
47889110b2e7SHong Zhang   ierr = PetscViewerDrawGetDraw(ictx->viewer,0,&draw);CHKERRQ(ierr);
47899110b2e7SHong Zhang   ierr = PetscSNPrintf(time,32,"Timestep %d Time %g",(int)step,(double)ptime);CHKERRQ(ierr);
47909110b2e7SHong Zhang   ierr = PetscDrawGetCoordinates(draw,&xl,&yl,&xr,&yr);CHKERRQ(ierr);
47919110b2e7SHong Zhang   h    = yl + .95*(yr - yl);
47929110b2e7SHong Zhang   ierr = PetscDrawStringCentered(draw,.5*(xl+xr),h,PETSC_DRAW_BLACK,time);CHKERRQ(ierr);
47939110b2e7SHong Zhang   ierr = PetscDrawFlush(draw);CHKERRQ(ierr);
47949110b2e7SHong Zhang   PetscFunctionReturn(0);
47959110b2e7SHong Zhang }
47969110b2e7SHong Zhang 
47972d5ee99bSBarry Smith /*@C
47982d5ee99bSBarry Smith    TSMonitorDrawSolutionPhase - Monitors progress of the TS solvers by plotting the solution as a phase diagram
47992d5ee99bSBarry Smith 
48002d5ee99bSBarry Smith    Collective on TS
48012d5ee99bSBarry Smith 
48022d5ee99bSBarry Smith    Input Parameters:
48032d5ee99bSBarry Smith +  ts - the TS context
48042d5ee99bSBarry Smith .  step - current time-step
48052d5ee99bSBarry Smith .  ptime - current time
48062d5ee99bSBarry Smith -  dummy - either a viewer or NULL
48072d5ee99bSBarry Smith 
48082d5ee99bSBarry Smith    Level: intermediate
48092d5ee99bSBarry Smith 
48102d5ee99bSBarry Smith .keywords: TS,  vector, monitor, view
48112d5ee99bSBarry Smith 
48122d5ee99bSBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
48132d5ee99bSBarry Smith @*/
48142d5ee99bSBarry Smith PetscErrorCode  TSMonitorDrawSolutionPhase(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
48152d5ee99bSBarry Smith {
48162d5ee99bSBarry Smith   PetscErrorCode    ierr;
48172d5ee99bSBarry Smith   TSMonitorDrawCtx  ictx = (TSMonitorDrawCtx)dummy;
48182d5ee99bSBarry Smith   PetscDraw         draw;
48196934998bSLisandro Dalcin   PetscDrawAxis     axis;
48202d5ee99bSBarry Smith   PetscInt          n;
48212d5ee99bSBarry Smith   PetscMPIInt       size;
48226934998bSLisandro Dalcin   PetscReal         U0,U1,xl,yl,xr,yr,h;
48232d5ee99bSBarry Smith   char              time[32];
48242d5ee99bSBarry Smith   const PetscScalar *U;
48252d5ee99bSBarry Smith 
48262d5ee99bSBarry Smith   PetscFunctionBegin;
48276934998bSLisandro Dalcin   ierr = MPI_Comm_size(PetscObjectComm((PetscObject)ts),&size);CHKERRQ(ierr);
48286934998bSLisandro Dalcin   if (size != 1) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"Only allowed for sequential runs");
48292d5ee99bSBarry Smith   ierr = VecGetSize(u,&n);CHKERRQ(ierr);
48306934998bSLisandro Dalcin   if (n != 2) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"Only for ODEs with two unknowns");
48312d5ee99bSBarry Smith 
48322d5ee99bSBarry Smith   ierr = PetscViewerDrawGetDraw(ictx->viewer,0,&draw);CHKERRQ(ierr);
48336934998bSLisandro Dalcin   ierr = PetscViewerDrawGetDrawAxis(ictx->viewer,0,&axis);CHKERRQ(ierr);
48346934998bSLisandro Dalcin   ierr = PetscDrawAxisGetLimits(axis,&xl,&xr,&yl,&yr);CHKERRQ(ierr);
48356934998bSLisandro Dalcin   if (!step) {
48366934998bSLisandro Dalcin     ierr = PetscDrawClear(draw);CHKERRQ(ierr);
48376934998bSLisandro Dalcin     ierr = PetscDrawAxisDraw(axis);CHKERRQ(ierr);
48386934998bSLisandro Dalcin   }
48392d5ee99bSBarry Smith 
48402d5ee99bSBarry Smith   ierr = VecGetArrayRead(u,&U);CHKERRQ(ierr);
48416934998bSLisandro Dalcin   U0 = PetscRealPart(U[0]);
48426934998bSLisandro Dalcin   U1 = PetscRealPart(U[1]);
4843a4494fc1SBarry Smith   ierr = VecRestoreArrayRead(u,&U);CHKERRQ(ierr);
48446934998bSLisandro Dalcin   if ((U0 < xl) || (U1 < yl) || (U0 > xr) || (U1 > yr)) PetscFunctionReturn(0);
48452d5ee99bSBarry Smith 
48466934998bSLisandro Dalcin   ierr = PetscDrawCollectiveBegin(draw);CHKERRQ(ierr);
48476934998bSLisandro Dalcin   ierr = PetscDrawPoint(draw,U0,U1,PETSC_DRAW_BLACK);CHKERRQ(ierr);
48482d5ee99bSBarry Smith   if (ictx->showtimestepandtime) {
48494b363babSBarry Smith     ierr = PetscDrawGetCoordinates(draw,&xl,&yl,&xr,&yr);CHKERRQ(ierr);
485085b1acf9SLisandro Dalcin     ierr = PetscSNPrintf(time,32,"Timestep %d Time %g",(int)step,(double)ptime);CHKERRQ(ierr);
48512d5ee99bSBarry Smith     h    = yl + .95*(yr - yl);
485251fa3d41SBarry Smith     ierr = PetscDrawStringCentered(draw,.5*(xl+xr),h,PETSC_DRAW_BLACK,time);CHKERRQ(ierr);
48532d5ee99bSBarry Smith   }
48546934998bSLisandro Dalcin   ierr = PetscDrawCollectiveEnd(draw);CHKERRQ(ierr);
48552d5ee99bSBarry Smith   ierr = PetscDrawFlush(draw);CHKERRQ(ierr);
48566934998bSLisandro Dalcin   ierr = PetscDrawSave(draw);CHKERRQ(ierr);
48572d5ee99bSBarry Smith   PetscFunctionReturn(0);
48582d5ee99bSBarry Smith }
48592d5ee99bSBarry Smith 
48601713a123SBarry Smith 
48616083293cSBarry Smith /*@C
486283a4ac43SBarry Smith    TSMonitorDrawCtxDestroy - Destroys the monitor context for TSMonitorDrawSolution()
48636083293cSBarry Smith 
48646083293cSBarry Smith    Collective on TS
48656083293cSBarry Smith 
48666083293cSBarry Smith    Input Parameters:
48676083293cSBarry Smith .    ctx - the monitor context
48686083293cSBarry Smith 
48696083293cSBarry Smith    Level: intermediate
48706083293cSBarry Smith 
48716083293cSBarry Smith .keywords: TS,  vector, monitor, view
48726083293cSBarry Smith 
487383a4ac43SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorDrawSolution(), TSMonitorDrawError()
48746083293cSBarry Smith @*/
487583a4ac43SBarry Smith PetscErrorCode  TSMonitorDrawCtxDestroy(TSMonitorDrawCtx *ictx)
48766083293cSBarry Smith {
48776083293cSBarry Smith   PetscErrorCode ierr;
48786083293cSBarry Smith 
48796083293cSBarry Smith   PetscFunctionBegin;
488083a4ac43SBarry Smith   ierr = PetscViewerDestroy(&(*ictx)->viewer);CHKERRQ(ierr);
488183a4ac43SBarry Smith   ierr = VecDestroy(&(*ictx)->initialsolution);CHKERRQ(ierr);
488283a4ac43SBarry Smith   ierr = PetscFree(*ictx);CHKERRQ(ierr);
48836083293cSBarry Smith   PetscFunctionReturn(0);
48846083293cSBarry Smith }
48856083293cSBarry Smith 
48866083293cSBarry Smith /*@C
488783a4ac43SBarry Smith    TSMonitorDrawCtxCreate - Creates the monitor context for TSMonitorDrawCtx
48886083293cSBarry Smith 
48896083293cSBarry Smith    Collective on TS
48906083293cSBarry Smith 
48916083293cSBarry Smith    Input Parameter:
48926083293cSBarry Smith .    ts - time-step context
48936083293cSBarry Smith 
48946083293cSBarry Smith    Output Patameter:
48956083293cSBarry Smith .    ctx - the monitor context
48966083293cSBarry Smith 
489799fdda47SBarry Smith    Options Database:
489899fdda47SBarry Smith .   -ts_monitor_draw_solution_initial - show initial solution as well as current solution
489999fdda47SBarry Smith 
49006083293cSBarry Smith    Level: intermediate
49016083293cSBarry Smith 
49026083293cSBarry Smith .keywords: TS,  vector, monitor, view
49036083293cSBarry Smith 
490483a4ac43SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorDrawCtx()
49056083293cSBarry Smith @*/
490683a4ac43SBarry Smith PetscErrorCode  TSMonitorDrawCtxCreate(MPI_Comm comm,const char host[],const char label[],int x,int y,int m,int n,PetscInt howoften,TSMonitorDrawCtx *ctx)
49076083293cSBarry Smith {
49086083293cSBarry Smith   PetscErrorCode   ierr;
49096083293cSBarry Smith 
49106083293cSBarry Smith   PetscFunctionBegin;
4911b00a9115SJed Brown   ierr = PetscNew(ctx);CHKERRQ(ierr);
491283a4ac43SBarry Smith   ierr = PetscViewerDrawOpen(comm,host,label,x,y,m,n,&(*ctx)->viewer);CHKERRQ(ierr);
4913e9457bf7SBarry Smith   ierr = PetscViewerSetFromOptions((*ctx)->viewer);CHKERRQ(ierr);
4914bbd56ea5SKarl Rupp 
491583a4ac43SBarry Smith   (*ctx)->howoften    = howoften;
4916473a3ab2SBarry Smith   (*ctx)->showinitial = PETSC_FALSE;
4917c5929fdfSBarry Smith   ierr = PetscOptionsGetBool(NULL,NULL,"-ts_monitor_draw_solution_initial",&(*ctx)->showinitial,NULL);CHKERRQ(ierr);
4918473a3ab2SBarry Smith 
4919473a3ab2SBarry Smith   (*ctx)->showtimestepandtime = PETSC_FALSE;
4920c5929fdfSBarry Smith   ierr = PetscOptionsGetBool(NULL,NULL,"-ts_monitor_draw_solution_show_time",&(*ctx)->showtimestepandtime,NULL);CHKERRQ(ierr);
49216083293cSBarry Smith   PetscFunctionReturn(0);
49226083293cSBarry Smith }
49236083293cSBarry Smith 
49243a471f94SBarry Smith /*@C
492583a4ac43SBarry Smith    TSMonitorDrawError - Monitors progress of the TS solvers by calling
49263a471f94SBarry Smith    VecView() for the error at each timestep
49273a471f94SBarry Smith 
49283a471f94SBarry Smith    Collective on TS
49293a471f94SBarry Smith 
49303a471f94SBarry Smith    Input Parameters:
49313a471f94SBarry Smith +  ts - the TS context
49323a471f94SBarry Smith .  step - current time-step
49333a471f94SBarry Smith .  ptime - current time
49340298fd71SBarry Smith -  dummy - either a viewer or NULL
49353a471f94SBarry Smith 
49363a471f94SBarry Smith    Level: intermediate
49373a471f94SBarry Smith 
49383a471f94SBarry Smith .keywords: TS,  vector, monitor, view
49393a471f94SBarry Smith 
49403a471f94SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
49413a471f94SBarry Smith @*/
49420910c330SBarry Smith PetscErrorCode  TSMonitorDrawError(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
49433a471f94SBarry Smith {
49443a471f94SBarry Smith   PetscErrorCode   ierr;
494583a4ac43SBarry Smith   TSMonitorDrawCtx ctx    = (TSMonitorDrawCtx)dummy;
494683a4ac43SBarry Smith   PetscViewer      viewer = ctx->viewer;
49473a471f94SBarry Smith   Vec              work;
49483a471f94SBarry Smith 
49493a471f94SBarry Smith   PetscFunctionBegin;
4950b06615a5SLisandro Dalcin   if (!(((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason))) PetscFunctionReturn(0);
49510910c330SBarry Smith   ierr = VecDuplicate(u,&work);CHKERRQ(ierr);
49523a471f94SBarry Smith   ierr = TSComputeSolutionFunction(ts,ptime,work);CHKERRQ(ierr);
49530910c330SBarry Smith   ierr = VecAXPY(work,-1.0,u);CHKERRQ(ierr);
49543a471f94SBarry Smith   ierr = VecView(work,viewer);CHKERRQ(ierr);
49553a471f94SBarry Smith   ierr = VecDestroy(&work);CHKERRQ(ierr);
49563a471f94SBarry Smith   PetscFunctionReturn(0);
49573a471f94SBarry Smith }
49583a471f94SBarry Smith 
4959af0996ceSBarry Smith #include <petsc/private/dmimpl.h>
49606c699258SBarry Smith /*@
49612a808120SBarry Smith    TSSetDM - Sets the DM that may be used by some nonlinear solvers or preconditioners under the TS
49626c699258SBarry Smith 
49633f9fe445SBarry Smith    Logically Collective on TS and DM
49646c699258SBarry Smith 
49656c699258SBarry Smith    Input Parameters:
49662a808120SBarry Smith +  ts - the ODE integrator object
49672a808120SBarry Smith -  dm - the dm, cannot be NULL
49686c699258SBarry Smith 
49696c699258SBarry Smith    Level: intermediate
49706c699258SBarry Smith 
49716c699258SBarry Smith 
49726c699258SBarry Smith .seealso: TSGetDM(), SNESSetDM(), SNESGetDM()
49736c699258SBarry Smith @*/
49747087cfbeSBarry Smith PetscErrorCode  TSSetDM(TS ts,DM dm)
49756c699258SBarry Smith {
49766c699258SBarry Smith   PetscErrorCode ierr;
4977089b2837SJed Brown   SNES           snes;
4978942e3340SBarry Smith   DMTS           tsdm;
49796c699258SBarry Smith 
49806c699258SBarry Smith   PetscFunctionBegin;
49810700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
49822a808120SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,2);
498370663e4aSLisandro Dalcin   ierr = PetscObjectReference((PetscObject)dm);CHKERRQ(ierr);
4984942e3340SBarry Smith   if (ts->dm) {               /* Move the DMTS context over to the new DM unless the new DM already has one */
49852a34c10cSBarry Smith     if (ts->dm->dmts && !dm->dmts) {
4986942e3340SBarry Smith       ierr = DMCopyDMTS(ts->dm,dm);CHKERRQ(ierr);
4987942e3340SBarry Smith       ierr = DMGetDMTS(ts->dm,&tsdm);CHKERRQ(ierr);
498824989b8cSPeter Brune       if (tsdm->originaldm == ts->dm) { /* Grant write privileges to the replacement DM */
498924989b8cSPeter Brune         tsdm->originaldm = dm;
499024989b8cSPeter Brune       }
499124989b8cSPeter Brune     }
49926bf464f9SBarry Smith     ierr = DMDestroy(&ts->dm);CHKERRQ(ierr);
499324989b8cSPeter Brune   }
49946c699258SBarry Smith   ts->dm = dm;
4995bbd56ea5SKarl Rupp 
4996089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
4997089b2837SJed Brown   ierr = SNESSetDM(snes,dm);CHKERRQ(ierr);
49986c699258SBarry Smith   PetscFunctionReturn(0);
49996c699258SBarry Smith }
50006c699258SBarry Smith 
50016c699258SBarry Smith /*@
50026c699258SBarry Smith    TSGetDM - Gets the DM that may be used by some preconditioners
50036c699258SBarry Smith 
50043f9fe445SBarry Smith    Not Collective
50056c699258SBarry Smith 
50066c699258SBarry Smith    Input Parameter:
50076c699258SBarry Smith . ts - the preconditioner context
50086c699258SBarry Smith 
50096c699258SBarry Smith    Output Parameter:
50106c699258SBarry Smith .  dm - the dm
50116c699258SBarry Smith 
50126c699258SBarry Smith    Level: intermediate
50136c699258SBarry Smith 
50146c699258SBarry Smith 
50156c699258SBarry Smith .seealso: TSSetDM(), SNESSetDM(), SNESGetDM()
50166c699258SBarry Smith @*/
50177087cfbeSBarry Smith PetscErrorCode  TSGetDM(TS ts,DM *dm)
50186c699258SBarry Smith {
5019496e6a7aSJed Brown   PetscErrorCode ierr;
5020496e6a7aSJed Brown 
50216c699258SBarry Smith   PetscFunctionBegin;
50220700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5023496e6a7aSJed Brown   if (!ts->dm) {
5024ce94432eSBarry Smith     ierr = DMShellCreate(PetscObjectComm((PetscObject)ts),&ts->dm);CHKERRQ(ierr);
5025496e6a7aSJed Brown     if (ts->snes) {ierr = SNESSetDM(ts->snes,ts->dm);CHKERRQ(ierr);}
5026496e6a7aSJed Brown   }
50276c699258SBarry Smith   *dm = ts->dm;
50286c699258SBarry Smith   PetscFunctionReturn(0);
50296c699258SBarry Smith }
50301713a123SBarry Smith 
50310f5c6efeSJed Brown /*@
50320f5c6efeSJed Brown    SNESTSFormFunction - Function to evaluate nonlinear residual
50330f5c6efeSJed Brown 
50343f9fe445SBarry Smith    Logically Collective on SNES
50350f5c6efeSJed Brown 
50360f5c6efeSJed Brown    Input Parameter:
5037d42a1c89SJed Brown + snes - nonlinear solver
50380910c330SBarry Smith . U - the current state at which to evaluate the residual
5039d42a1c89SJed Brown - ctx - user context, must be a TS
50400f5c6efeSJed Brown 
50410f5c6efeSJed Brown    Output Parameter:
50420f5c6efeSJed Brown . F - the nonlinear residual
50430f5c6efeSJed Brown 
50440f5c6efeSJed Brown    Notes:
50450f5c6efeSJed Brown    This function is not normally called by users and is automatically registered with the SNES used by TS.
50460f5c6efeSJed Brown    It is most frequently passed to MatFDColoringSetFunction().
50470f5c6efeSJed Brown 
50480f5c6efeSJed Brown    Level: advanced
50490f5c6efeSJed Brown 
50500f5c6efeSJed Brown .seealso: SNESSetFunction(), MatFDColoringSetFunction()
50510f5c6efeSJed Brown @*/
50520910c330SBarry Smith PetscErrorCode  SNESTSFormFunction(SNES snes,Vec U,Vec F,void *ctx)
50530f5c6efeSJed Brown {
50540f5c6efeSJed Brown   TS             ts = (TS)ctx;
50550f5c6efeSJed Brown   PetscErrorCode ierr;
50560f5c6efeSJed Brown 
50570f5c6efeSJed Brown   PetscFunctionBegin;
50580f5c6efeSJed Brown   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
50590910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,2);
50600f5c6efeSJed Brown   PetscValidHeaderSpecific(F,VEC_CLASSID,3);
50610f5c6efeSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,4);
50620910c330SBarry Smith   ierr = (ts->ops->snesfunction)(snes,U,F,ts);CHKERRQ(ierr);
50630f5c6efeSJed Brown   PetscFunctionReturn(0);
50640f5c6efeSJed Brown }
50650f5c6efeSJed Brown 
50660f5c6efeSJed Brown /*@
50670f5c6efeSJed Brown    SNESTSFormJacobian - Function to evaluate the Jacobian
50680f5c6efeSJed Brown 
50690f5c6efeSJed Brown    Collective on SNES
50700f5c6efeSJed Brown 
50710f5c6efeSJed Brown    Input Parameter:
50720f5c6efeSJed Brown + snes - nonlinear solver
50730910c330SBarry Smith . U - the current state at which to evaluate the residual
50740f5c6efeSJed Brown - ctx - user context, must be a TS
50750f5c6efeSJed Brown 
50760f5c6efeSJed Brown    Output Parameter:
50770f5c6efeSJed Brown + A - the Jacobian
50780f5c6efeSJed Brown . B - the preconditioning matrix (may be the same as A)
50790f5c6efeSJed Brown - flag - indicates any structure change in the matrix
50800f5c6efeSJed Brown 
50810f5c6efeSJed Brown    Notes:
50820f5c6efeSJed Brown    This function is not normally called by users and is automatically registered with the SNES used by TS.
50830f5c6efeSJed Brown 
50840f5c6efeSJed Brown    Level: developer
50850f5c6efeSJed Brown 
50860f5c6efeSJed Brown .seealso: SNESSetJacobian()
50870f5c6efeSJed Brown @*/
5088d1e9a80fSBarry Smith PetscErrorCode  SNESTSFormJacobian(SNES snes,Vec U,Mat A,Mat B,void *ctx)
50890f5c6efeSJed Brown {
50900f5c6efeSJed Brown   TS             ts = (TS)ctx;
50910f5c6efeSJed Brown   PetscErrorCode ierr;
50920f5c6efeSJed Brown 
50930f5c6efeSJed Brown   PetscFunctionBegin;
50940f5c6efeSJed Brown   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
50950910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,2);
50960f5c6efeSJed Brown   PetscValidPointer(A,3);
509794ab13aaSBarry Smith   PetscValidHeaderSpecific(A,MAT_CLASSID,3);
50980f5c6efeSJed Brown   PetscValidPointer(B,4);
509994ab13aaSBarry Smith   PetscValidHeaderSpecific(B,MAT_CLASSID,4);
51000f5c6efeSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,6);
5101d1e9a80fSBarry Smith   ierr = (ts->ops->snesjacobian)(snes,U,A,B,ts);CHKERRQ(ierr);
51020f5c6efeSJed Brown   PetscFunctionReturn(0);
51030f5c6efeSJed Brown }
5104325fc9f4SBarry Smith 
51050e4ef248SJed Brown /*@C
51069ae8fd06SBarry Smith    TSComputeRHSFunctionLinear - Evaluate the right hand side via the user-provided Jacobian, for linear problems Udot = A U only
51070e4ef248SJed Brown 
51080e4ef248SJed Brown    Collective on TS
51090e4ef248SJed Brown 
51100e4ef248SJed Brown    Input Arguments:
51110e4ef248SJed Brown +  ts - time stepping context
51120e4ef248SJed Brown .  t - time at which to evaluate
51130910c330SBarry Smith .  U - state at which to evaluate
51140e4ef248SJed Brown -  ctx - context
51150e4ef248SJed Brown 
51160e4ef248SJed Brown    Output Arguments:
51170e4ef248SJed Brown .  F - right hand side
51180e4ef248SJed Brown 
51190e4ef248SJed Brown    Level: intermediate
51200e4ef248SJed Brown 
51210e4ef248SJed Brown    Notes:
51220e4ef248SJed Brown    This function is intended to be passed to TSSetRHSFunction() to evaluate the right hand side for linear problems.
51230e4ef248SJed Brown    The matrix (and optionally the evaluation context) should be passed to TSSetRHSJacobian().
51240e4ef248SJed Brown 
51250e4ef248SJed Brown .seealso: TSSetRHSFunction(), TSSetRHSJacobian(), TSComputeRHSJacobianConstant()
51260e4ef248SJed Brown @*/
51270910c330SBarry Smith PetscErrorCode TSComputeRHSFunctionLinear(TS ts,PetscReal t,Vec U,Vec F,void *ctx)
51280e4ef248SJed Brown {
51290e4ef248SJed Brown   PetscErrorCode ierr;
51300e4ef248SJed Brown   Mat            Arhs,Brhs;
51310e4ef248SJed Brown 
51320e4ef248SJed Brown   PetscFunctionBegin;
51330e4ef248SJed Brown   ierr = TSGetRHSMats_Private(ts,&Arhs,&Brhs);CHKERRQ(ierr);
5134d1e9a80fSBarry Smith   ierr = TSComputeRHSJacobian(ts,t,U,Arhs,Brhs);CHKERRQ(ierr);
51350910c330SBarry Smith   ierr = MatMult(Arhs,U,F);CHKERRQ(ierr);
51360e4ef248SJed Brown   PetscFunctionReturn(0);
51370e4ef248SJed Brown }
51380e4ef248SJed Brown 
51390e4ef248SJed Brown /*@C
51400e4ef248SJed Brown    TSComputeRHSJacobianConstant - Reuses a Jacobian that is time-independent.
51410e4ef248SJed Brown 
51420e4ef248SJed Brown    Collective on TS
51430e4ef248SJed Brown 
51440e4ef248SJed Brown    Input Arguments:
51450e4ef248SJed Brown +  ts - time stepping context
51460e4ef248SJed Brown .  t - time at which to evaluate
51470910c330SBarry Smith .  U - state at which to evaluate
51480e4ef248SJed Brown -  ctx - context
51490e4ef248SJed Brown 
51500e4ef248SJed Brown    Output Arguments:
51510e4ef248SJed Brown +  A - pointer to operator
51520e4ef248SJed Brown .  B - pointer to preconditioning matrix
51530e4ef248SJed Brown -  flg - matrix structure flag
51540e4ef248SJed Brown 
51550e4ef248SJed Brown    Level: intermediate
51560e4ef248SJed Brown 
51570e4ef248SJed Brown    Notes:
51580e4ef248SJed Brown    This function is intended to be passed to TSSetRHSJacobian() to evaluate the Jacobian for linear time-independent problems.
51590e4ef248SJed Brown 
51600e4ef248SJed Brown .seealso: TSSetRHSFunction(), TSSetRHSJacobian(), TSComputeRHSFunctionLinear()
51610e4ef248SJed Brown @*/
5162d1e9a80fSBarry Smith PetscErrorCode TSComputeRHSJacobianConstant(TS ts,PetscReal t,Vec U,Mat A,Mat B,void *ctx)
51630e4ef248SJed Brown {
51640e4ef248SJed Brown   PetscFunctionBegin;
51650e4ef248SJed Brown   PetscFunctionReturn(0);
51660e4ef248SJed Brown }
51670e4ef248SJed Brown 
51680026cea9SSean Farley /*@C
51690026cea9SSean Farley    TSComputeIFunctionLinear - Evaluate the left hand side via the user-provided Jacobian, for linear problems only
51700026cea9SSean Farley 
51710026cea9SSean Farley    Collective on TS
51720026cea9SSean Farley 
51730026cea9SSean Farley    Input Arguments:
51740026cea9SSean Farley +  ts - time stepping context
51750026cea9SSean Farley .  t - time at which to evaluate
51760910c330SBarry Smith .  U - state at which to evaluate
51770910c330SBarry Smith .  Udot - time derivative of state vector
51780026cea9SSean Farley -  ctx - context
51790026cea9SSean Farley 
51800026cea9SSean Farley    Output Arguments:
51810026cea9SSean Farley .  F - left hand side
51820026cea9SSean Farley 
51830026cea9SSean Farley    Level: intermediate
51840026cea9SSean Farley 
51850026cea9SSean Farley    Notes:
51860910c330SBarry 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
51870026cea9SSean Farley    user is required to write their own TSComputeIFunction.
51880026cea9SSean Farley    This function is intended to be passed to TSSetIFunction() to evaluate the left hand side for linear problems.
51890026cea9SSean Farley    The matrix (and optionally the evaluation context) should be passed to TSSetIJacobian().
51900026cea9SSean Farley 
51919ae8fd06SBarry Smith    Note that using this function is NOT equivalent to using TSComputeRHSFunctionLinear() since that solves Udot = A U
51929ae8fd06SBarry Smith 
51939ae8fd06SBarry Smith .seealso: TSSetIFunction(), TSSetIJacobian(), TSComputeIJacobianConstant(), TSComputeRHSFunctionLinear()
51940026cea9SSean Farley @*/
51950910c330SBarry Smith PetscErrorCode TSComputeIFunctionLinear(TS ts,PetscReal t,Vec U,Vec Udot,Vec F,void *ctx)
51960026cea9SSean Farley {
51970026cea9SSean Farley   PetscErrorCode ierr;
51980026cea9SSean Farley   Mat            A,B;
51990026cea9SSean Farley 
52000026cea9SSean Farley   PetscFunctionBegin;
52010298fd71SBarry Smith   ierr = TSGetIJacobian(ts,&A,&B,NULL,NULL);CHKERRQ(ierr);
5202d1e9a80fSBarry Smith   ierr = TSComputeIJacobian(ts,t,U,Udot,1.0,A,B,PETSC_TRUE);CHKERRQ(ierr);
52030910c330SBarry Smith   ierr = MatMult(A,Udot,F);CHKERRQ(ierr);
52040026cea9SSean Farley   PetscFunctionReturn(0);
52050026cea9SSean Farley }
52060026cea9SSean Farley 
52070026cea9SSean Farley /*@C
5208b41af12eSJed Brown    TSComputeIJacobianConstant - Reuses a time-independent for a semi-implicit DAE or ODE
52090026cea9SSean Farley 
52100026cea9SSean Farley    Collective on TS
52110026cea9SSean Farley 
52120026cea9SSean Farley    Input Arguments:
52130026cea9SSean Farley +  ts - time stepping context
52140026cea9SSean Farley .  t - time at which to evaluate
52150910c330SBarry Smith .  U - state at which to evaluate
52160910c330SBarry Smith .  Udot - time derivative of state vector
52170026cea9SSean Farley .  shift - shift to apply
52180026cea9SSean Farley -  ctx - context
52190026cea9SSean Farley 
52200026cea9SSean Farley    Output Arguments:
52210026cea9SSean Farley +  A - pointer to operator
52220026cea9SSean Farley .  B - pointer to preconditioning matrix
52230026cea9SSean Farley -  flg - matrix structure flag
52240026cea9SSean Farley 
5225b41af12eSJed Brown    Level: advanced
52260026cea9SSean Farley 
52270026cea9SSean Farley    Notes:
52280026cea9SSean Farley    This function is intended to be passed to TSSetIJacobian() to evaluate the Jacobian for linear time-independent problems.
52290026cea9SSean Farley 
5230b41af12eSJed Brown    It is only appropriate for problems of the form
5231b41af12eSJed Brown 
5232b41af12eSJed Brown $     M Udot = F(U,t)
5233b41af12eSJed Brown 
5234b41af12eSJed Brown   where M is constant and F is non-stiff.  The user must pass M to TSSetIJacobian().  The current implementation only
5235b41af12eSJed Brown   works with IMEX time integration methods such as TSROSW and TSARKIMEX, since there is no support for de-constructing
5236b41af12eSJed Brown   an implicit operator of the form
5237b41af12eSJed Brown 
5238b41af12eSJed Brown $    shift*M + J
5239b41af12eSJed Brown 
5240b41af12eSJed 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
5241b41af12eSJed Brown   a copy of M or reassemble it when requested.
5242b41af12eSJed Brown 
52430026cea9SSean Farley .seealso: TSSetIFunction(), TSSetIJacobian(), TSComputeIFunctionLinear()
52440026cea9SSean Farley @*/
5245d1e9a80fSBarry Smith PetscErrorCode TSComputeIJacobianConstant(TS ts,PetscReal t,Vec U,Vec Udot,PetscReal shift,Mat A,Mat B,void *ctx)
52460026cea9SSean Farley {
5247b41af12eSJed Brown   PetscErrorCode ierr;
5248b41af12eSJed Brown 
52490026cea9SSean Farley   PetscFunctionBegin;
525094ab13aaSBarry Smith   ierr = MatScale(A, shift / ts->ijacobian.shift);CHKERRQ(ierr);
5251b41af12eSJed Brown   ts->ijacobian.shift = shift;
52520026cea9SSean Farley   PetscFunctionReturn(0);
52530026cea9SSean Farley }
5254b41af12eSJed Brown 
5255e817cc15SEmil Constantinescu /*@
5256e817cc15SEmil Constantinescu    TSGetEquationType - Gets the type of the equation that TS is solving.
5257e817cc15SEmil Constantinescu 
5258e817cc15SEmil Constantinescu    Not Collective
5259e817cc15SEmil Constantinescu 
5260e817cc15SEmil Constantinescu    Input Parameter:
5261e817cc15SEmil Constantinescu .  ts - the TS context
5262e817cc15SEmil Constantinescu 
5263e817cc15SEmil Constantinescu    Output Parameter:
52644e6b9ce4SEmil Constantinescu .  equation_type - see TSEquationType
5265e817cc15SEmil Constantinescu 
5266e817cc15SEmil Constantinescu    Level: beginner
5267e817cc15SEmil Constantinescu 
5268e817cc15SEmil Constantinescu .keywords: TS, equation type
5269e817cc15SEmil Constantinescu 
5270e817cc15SEmil Constantinescu .seealso: TSSetEquationType(), TSEquationType
5271e817cc15SEmil Constantinescu @*/
5272e817cc15SEmil Constantinescu PetscErrorCode  TSGetEquationType(TS ts,TSEquationType *equation_type)
5273e817cc15SEmil Constantinescu {
5274e817cc15SEmil Constantinescu   PetscFunctionBegin;
5275e817cc15SEmil Constantinescu   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5276e817cc15SEmil Constantinescu   PetscValidPointer(equation_type,2);
5277e817cc15SEmil Constantinescu   *equation_type = ts->equation_type;
5278e817cc15SEmil Constantinescu   PetscFunctionReturn(0);
5279e817cc15SEmil Constantinescu }
5280e817cc15SEmil Constantinescu 
5281e817cc15SEmil Constantinescu /*@
5282e817cc15SEmil Constantinescu    TSSetEquationType - Sets the type of the equation that TS is solving.
5283e817cc15SEmil Constantinescu 
5284e817cc15SEmil Constantinescu    Not Collective
5285e817cc15SEmil Constantinescu 
5286e817cc15SEmil Constantinescu    Input Parameter:
5287e817cc15SEmil Constantinescu +  ts - the TS context
52881297b224SEmil Constantinescu -  equation_type - see TSEquationType
5289e817cc15SEmil Constantinescu 
5290e817cc15SEmil Constantinescu    Level: advanced
5291e817cc15SEmil Constantinescu 
5292e817cc15SEmil Constantinescu .keywords: TS, equation type
5293e817cc15SEmil Constantinescu 
5294e817cc15SEmil Constantinescu .seealso: TSGetEquationType(), TSEquationType
5295e817cc15SEmil Constantinescu @*/
5296e817cc15SEmil Constantinescu PetscErrorCode  TSSetEquationType(TS ts,TSEquationType equation_type)
5297e817cc15SEmil Constantinescu {
5298e817cc15SEmil Constantinescu   PetscFunctionBegin;
5299e817cc15SEmil Constantinescu   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5300e817cc15SEmil Constantinescu   ts->equation_type = equation_type;
5301e817cc15SEmil Constantinescu   PetscFunctionReturn(0);
5302e817cc15SEmil Constantinescu }
53030026cea9SSean Farley 
53044af1b03aSJed Brown /*@
53054af1b03aSJed Brown    TSGetConvergedReason - Gets the reason the TS iteration was stopped.
53064af1b03aSJed Brown 
53074af1b03aSJed Brown    Not Collective
53084af1b03aSJed Brown 
53094af1b03aSJed Brown    Input Parameter:
53104af1b03aSJed Brown .  ts - the TS context
53114af1b03aSJed Brown 
53124af1b03aSJed Brown    Output Parameter:
53134af1b03aSJed Brown .  reason - negative value indicates diverged, positive value converged, see TSConvergedReason or the
53144af1b03aSJed Brown             manual pages for the individual convergence tests for complete lists
53154af1b03aSJed Brown 
5316487e0bb9SJed Brown    Level: beginner
53174af1b03aSJed Brown 
5318cd652676SJed Brown    Notes:
5319cd652676SJed Brown    Can only be called after the call to TSSolve() is complete.
53204af1b03aSJed Brown 
53214af1b03aSJed Brown .keywords: TS, nonlinear, set, convergence, test
53224af1b03aSJed Brown 
53234af1b03aSJed Brown .seealso: TSSetConvergenceTest(), TSConvergedReason
53244af1b03aSJed Brown @*/
53254af1b03aSJed Brown PetscErrorCode  TSGetConvergedReason(TS ts,TSConvergedReason *reason)
53264af1b03aSJed Brown {
53274af1b03aSJed Brown   PetscFunctionBegin;
53284af1b03aSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
53294af1b03aSJed Brown   PetscValidPointer(reason,2);
53304af1b03aSJed Brown   *reason = ts->reason;
53314af1b03aSJed Brown   PetscFunctionReturn(0);
53324af1b03aSJed Brown }
53334af1b03aSJed Brown 
5334d6ad946cSShri Abhyankar /*@
5335d6ad946cSShri Abhyankar    TSSetConvergedReason - Sets the reason for handling the convergence of TSSolve.
5336d6ad946cSShri Abhyankar 
5337d6ad946cSShri Abhyankar    Not Collective
5338d6ad946cSShri Abhyankar 
5339d6ad946cSShri Abhyankar    Input Parameter:
5340d6ad946cSShri Abhyankar +  ts - the TS context
5341d6ad946cSShri Abhyankar .  reason - negative value indicates diverged, positive value converged, see TSConvergedReason or the
5342d6ad946cSShri Abhyankar             manual pages for the individual convergence tests for complete lists
5343d6ad946cSShri Abhyankar 
5344f5abba47SShri Abhyankar    Level: advanced
5345d6ad946cSShri Abhyankar 
5346d6ad946cSShri Abhyankar    Notes:
5347d6ad946cSShri Abhyankar    Can only be called during TSSolve() is active.
5348d6ad946cSShri Abhyankar 
5349d6ad946cSShri Abhyankar .keywords: TS, nonlinear, set, convergence, test
5350d6ad946cSShri Abhyankar 
5351d6ad946cSShri Abhyankar .seealso: TSConvergedReason
5352d6ad946cSShri Abhyankar @*/
5353d6ad946cSShri Abhyankar PetscErrorCode  TSSetConvergedReason(TS ts,TSConvergedReason reason)
5354d6ad946cSShri Abhyankar {
5355d6ad946cSShri Abhyankar   PetscFunctionBegin;
5356d6ad946cSShri Abhyankar   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5357d6ad946cSShri Abhyankar   ts->reason = reason;
5358d6ad946cSShri Abhyankar   PetscFunctionReturn(0);
5359d6ad946cSShri Abhyankar }
5360d6ad946cSShri Abhyankar 
5361cc708dedSBarry Smith /*@
5362cc708dedSBarry Smith    TSGetSolveTime - Gets the time after a call to TSSolve()
5363cc708dedSBarry Smith 
5364cc708dedSBarry Smith    Not Collective
5365cc708dedSBarry Smith 
5366cc708dedSBarry Smith    Input Parameter:
5367cc708dedSBarry Smith .  ts - the TS context
5368cc708dedSBarry Smith 
5369cc708dedSBarry Smith    Output Parameter:
537063e21af5SBarry Smith .  ftime - the final time. This time corresponds to the final time set with TSSetDuration()
5371cc708dedSBarry Smith 
5372487e0bb9SJed Brown    Level: beginner
5373cc708dedSBarry Smith 
5374cc708dedSBarry Smith    Notes:
5375cc708dedSBarry Smith    Can only be called after the call to TSSolve() is complete.
5376cc708dedSBarry Smith 
5377cc708dedSBarry Smith .keywords: TS, nonlinear, set, convergence, test
5378cc708dedSBarry Smith 
5379cc708dedSBarry Smith .seealso: TSSetConvergenceTest(), TSConvergedReason
5380cc708dedSBarry Smith @*/
5381cc708dedSBarry Smith PetscErrorCode  TSGetSolveTime(TS ts,PetscReal *ftime)
5382cc708dedSBarry Smith {
5383cc708dedSBarry Smith   PetscFunctionBegin;
5384cc708dedSBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5385cc708dedSBarry Smith   PetscValidPointer(ftime,2);
5386cc708dedSBarry Smith   *ftime = ts->solvetime;
5387cc708dedSBarry Smith   PetscFunctionReturn(0);
5388cc708dedSBarry Smith }
5389cc708dedSBarry Smith 
53902c18e0fdSBarry Smith /*@
53912c18e0fdSBarry Smith    TSGetTotalSteps - Gets the total number of steps done since the last call to TSSetUp() or TSCreate()
53922c18e0fdSBarry Smith 
53932c18e0fdSBarry Smith    Not Collective
53942c18e0fdSBarry Smith 
53952c18e0fdSBarry Smith    Input Parameter:
53962c18e0fdSBarry Smith .  ts - the TS context
53972c18e0fdSBarry Smith 
53982c18e0fdSBarry Smith    Output Parameter:
53992c18e0fdSBarry Smith .  steps - the number of steps
54002c18e0fdSBarry Smith 
54012c18e0fdSBarry Smith    Level: beginner
54022c18e0fdSBarry Smith 
54032c18e0fdSBarry Smith    Notes:
54042c18e0fdSBarry Smith    Includes the number of steps for all calls to TSSolve() since TSSetUp() was called
54052c18e0fdSBarry Smith 
54062c18e0fdSBarry Smith .keywords: TS, nonlinear, set, convergence, test
54072c18e0fdSBarry Smith 
54082c18e0fdSBarry Smith .seealso: TSSetConvergenceTest(), TSConvergedReason
54092c18e0fdSBarry Smith @*/
54102c18e0fdSBarry Smith PetscErrorCode  TSGetTotalSteps(TS ts,PetscInt *steps)
54112c18e0fdSBarry Smith {
54122c18e0fdSBarry Smith   PetscFunctionBegin;
54132c18e0fdSBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
54142c18e0fdSBarry Smith   PetscValidPointer(steps,2);
54152c18e0fdSBarry Smith   *steps = ts->total_steps;
54162c18e0fdSBarry Smith   PetscFunctionReturn(0);
54172c18e0fdSBarry Smith }
54182c18e0fdSBarry Smith 
54199f67acb7SJed Brown /*@
54205ef26d82SJed Brown    TSGetSNESIterations - Gets the total number of nonlinear iterations
54219f67acb7SJed Brown    used by the time integrator.
54229f67acb7SJed Brown 
54239f67acb7SJed Brown    Not Collective
54249f67acb7SJed Brown 
54259f67acb7SJed Brown    Input Parameter:
54269f67acb7SJed Brown .  ts - TS context
54279f67acb7SJed Brown 
54289f67acb7SJed Brown    Output Parameter:
54299f67acb7SJed Brown .  nits - number of nonlinear iterations
54309f67acb7SJed Brown 
54319f67acb7SJed Brown    Notes:
54329f67acb7SJed Brown    This counter is reset to zero for each successive call to TSSolve().
54339f67acb7SJed Brown 
54349f67acb7SJed Brown    Level: intermediate
54359f67acb7SJed Brown 
54369f67acb7SJed Brown .keywords: TS, get, number, nonlinear, iterations
54379f67acb7SJed Brown 
54385ef26d82SJed Brown .seealso:  TSGetKSPIterations()
54399f67acb7SJed Brown @*/
54405ef26d82SJed Brown PetscErrorCode TSGetSNESIterations(TS ts,PetscInt *nits)
54419f67acb7SJed Brown {
54429f67acb7SJed Brown   PetscFunctionBegin;
54439f67acb7SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
54449f67acb7SJed Brown   PetscValidIntPointer(nits,2);
54455ef26d82SJed Brown   *nits = ts->snes_its;
54469f67acb7SJed Brown   PetscFunctionReturn(0);
54479f67acb7SJed Brown }
54489f67acb7SJed Brown 
54499f67acb7SJed Brown /*@
54505ef26d82SJed Brown    TSGetKSPIterations - Gets the total number of linear iterations
54519f67acb7SJed Brown    used by the time integrator.
54529f67acb7SJed Brown 
54539f67acb7SJed Brown    Not Collective
54549f67acb7SJed Brown 
54559f67acb7SJed Brown    Input Parameter:
54569f67acb7SJed Brown .  ts - TS context
54579f67acb7SJed Brown 
54589f67acb7SJed Brown    Output Parameter:
54599f67acb7SJed Brown .  lits - number of linear iterations
54609f67acb7SJed Brown 
54619f67acb7SJed Brown    Notes:
54629f67acb7SJed Brown    This counter is reset to zero for each successive call to TSSolve().
54639f67acb7SJed Brown 
54649f67acb7SJed Brown    Level: intermediate
54659f67acb7SJed Brown 
54669f67acb7SJed Brown .keywords: TS, get, number, linear, iterations
54679f67acb7SJed Brown 
54685ef26d82SJed Brown .seealso:  TSGetSNESIterations(), SNESGetKSPIterations()
54699f67acb7SJed Brown @*/
54705ef26d82SJed Brown PetscErrorCode TSGetKSPIterations(TS ts,PetscInt *lits)
54719f67acb7SJed Brown {
54729f67acb7SJed Brown   PetscFunctionBegin;
54739f67acb7SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
54749f67acb7SJed Brown   PetscValidIntPointer(lits,2);
54755ef26d82SJed Brown   *lits = ts->ksp_its;
54769f67acb7SJed Brown   PetscFunctionReturn(0);
54779f67acb7SJed Brown }
54789f67acb7SJed Brown 
5479cef5090cSJed Brown /*@
5480cef5090cSJed Brown    TSGetStepRejections - Gets the total number of rejected steps.
5481cef5090cSJed Brown 
5482cef5090cSJed Brown    Not Collective
5483cef5090cSJed Brown 
5484cef5090cSJed Brown    Input Parameter:
5485cef5090cSJed Brown .  ts - TS context
5486cef5090cSJed Brown 
5487cef5090cSJed Brown    Output Parameter:
5488cef5090cSJed Brown .  rejects - number of steps rejected
5489cef5090cSJed Brown 
5490cef5090cSJed Brown    Notes:
5491cef5090cSJed Brown    This counter is reset to zero for each successive call to TSSolve().
5492cef5090cSJed Brown 
5493cef5090cSJed Brown    Level: intermediate
5494cef5090cSJed Brown 
5495cef5090cSJed Brown .keywords: TS, get, number
5496cef5090cSJed Brown 
54975ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetSNESFailures(), TSSetMaxSNESFailures(), TSSetErrorIfStepFails()
5498cef5090cSJed Brown @*/
5499cef5090cSJed Brown PetscErrorCode TSGetStepRejections(TS ts,PetscInt *rejects)
5500cef5090cSJed Brown {
5501cef5090cSJed Brown   PetscFunctionBegin;
5502cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5503cef5090cSJed Brown   PetscValidIntPointer(rejects,2);
5504cef5090cSJed Brown   *rejects = ts->reject;
5505cef5090cSJed Brown   PetscFunctionReturn(0);
5506cef5090cSJed Brown }
5507cef5090cSJed Brown 
5508cef5090cSJed Brown /*@
5509cef5090cSJed Brown    TSGetSNESFailures - Gets the total number of failed SNES solves
5510cef5090cSJed Brown 
5511cef5090cSJed Brown    Not Collective
5512cef5090cSJed Brown 
5513cef5090cSJed Brown    Input Parameter:
5514cef5090cSJed Brown .  ts - TS context
5515cef5090cSJed Brown 
5516cef5090cSJed Brown    Output Parameter:
5517cef5090cSJed Brown .  fails - number of failed nonlinear solves
5518cef5090cSJed Brown 
5519cef5090cSJed Brown    Notes:
5520cef5090cSJed Brown    This counter is reset to zero for each successive call to TSSolve().
5521cef5090cSJed Brown 
5522cef5090cSJed Brown    Level: intermediate
5523cef5090cSJed Brown 
5524cef5090cSJed Brown .keywords: TS, get, number
5525cef5090cSJed Brown 
55265ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetStepRejections(), TSSetMaxSNESFailures()
5527cef5090cSJed Brown @*/
5528cef5090cSJed Brown PetscErrorCode TSGetSNESFailures(TS ts,PetscInt *fails)
5529cef5090cSJed Brown {
5530cef5090cSJed Brown   PetscFunctionBegin;
5531cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5532cef5090cSJed Brown   PetscValidIntPointer(fails,2);
5533cef5090cSJed Brown   *fails = ts->num_snes_failures;
5534cef5090cSJed Brown   PetscFunctionReturn(0);
5535cef5090cSJed Brown }
5536cef5090cSJed Brown 
5537cef5090cSJed Brown /*@
5538cef5090cSJed Brown    TSSetMaxStepRejections - Sets the maximum number of step rejections before a step fails
5539cef5090cSJed Brown 
5540cef5090cSJed Brown    Not Collective
5541cef5090cSJed Brown 
5542cef5090cSJed Brown    Input Parameter:
5543cef5090cSJed Brown +  ts - TS context
5544cef5090cSJed Brown -  rejects - maximum number of rejected steps, pass -1 for unlimited
5545cef5090cSJed Brown 
5546cef5090cSJed Brown    Notes:
5547cef5090cSJed Brown    The counter is reset to zero for each step
5548cef5090cSJed Brown 
5549cef5090cSJed Brown    Options Database Key:
5550cef5090cSJed Brown  .  -ts_max_reject - Maximum number of step rejections before a step fails
5551cef5090cSJed Brown 
5552cef5090cSJed Brown    Level: intermediate
5553cef5090cSJed Brown 
5554cef5090cSJed Brown .keywords: TS, set, maximum, number
5555cef5090cSJed Brown 
55565ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxSNESFailures(), TSGetStepRejections(), TSGetSNESFailures(), TSSetErrorIfStepFails(), TSGetConvergedReason()
5557cef5090cSJed Brown @*/
5558cef5090cSJed Brown PetscErrorCode TSSetMaxStepRejections(TS ts,PetscInt rejects)
5559cef5090cSJed Brown {
5560cef5090cSJed Brown   PetscFunctionBegin;
5561cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5562cef5090cSJed Brown   ts->max_reject = rejects;
5563cef5090cSJed Brown   PetscFunctionReturn(0);
5564cef5090cSJed Brown }
5565cef5090cSJed Brown 
5566cef5090cSJed Brown /*@
5567cef5090cSJed Brown    TSSetMaxSNESFailures - Sets the maximum number of failed SNES solves
5568cef5090cSJed Brown 
5569cef5090cSJed Brown    Not Collective
5570cef5090cSJed Brown 
5571cef5090cSJed Brown    Input Parameter:
5572cef5090cSJed Brown +  ts - TS context
5573cef5090cSJed Brown -  fails - maximum number of failed nonlinear solves, pass -1 for unlimited
5574cef5090cSJed Brown 
5575cef5090cSJed Brown    Notes:
5576cef5090cSJed Brown    The counter is reset to zero for each successive call to TSSolve().
5577cef5090cSJed Brown 
5578cef5090cSJed Brown    Options Database Key:
5579cef5090cSJed Brown  .  -ts_max_snes_failures - Maximum number of nonlinear solve failures
5580cef5090cSJed Brown 
5581cef5090cSJed Brown    Level: intermediate
5582cef5090cSJed Brown 
5583cef5090cSJed Brown .keywords: TS, set, maximum, number
5584cef5090cSJed Brown 
55855ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetStepRejections(), TSGetSNESFailures(), SNESGetConvergedReason(), TSGetConvergedReason()
5586cef5090cSJed Brown @*/
5587cef5090cSJed Brown PetscErrorCode TSSetMaxSNESFailures(TS ts,PetscInt fails)
5588cef5090cSJed Brown {
5589cef5090cSJed Brown   PetscFunctionBegin;
5590cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5591cef5090cSJed Brown   ts->max_snes_failures = fails;
5592cef5090cSJed Brown   PetscFunctionReturn(0);
5593cef5090cSJed Brown }
5594cef5090cSJed Brown 
5595cef5090cSJed Brown /*@
5596cef5090cSJed Brown    TSSetErrorIfStepFails - Error if no step succeeds
5597cef5090cSJed Brown 
5598cef5090cSJed Brown    Not Collective
5599cef5090cSJed Brown 
5600cef5090cSJed Brown    Input Parameter:
5601cef5090cSJed Brown +  ts - TS context
5602cef5090cSJed Brown -  err - PETSC_TRUE to error if no step succeeds, PETSC_FALSE to return without failure
5603cef5090cSJed Brown 
5604cef5090cSJed Brown    Options Database Key:
5605cef5090cSJed Brown  .  -ts_error_if_step_fails - Error if no step succeeds
5606cef5090cSJed Brown 
5607cef5090cSJed Brown    Level: intermediate
5608cef5090cSJed Brown 
5609cef5090cSJed Brown .keywords: TS, set, error
5610cef5090cSJed Brown 
56115ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetStepRejections(), TSGetSNESFailures(), TSSetErrorIfStepFails(), TSGetConvergedReason()
5612cef5090cSJed Brown @*/
5613cef5090cSJed Brown PetscErrorCode TSSetErrorIfStepFails(TS ts,PetscBool err)
5614cef5090cSJed Brown {
5615cef5090cSJed Brown   PetscFunctionBegin;
5616cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5617cef5090cSJed Brown   ts->errorifstepfailed = err;
5618cef5090cSJed Brown   PetscFunctionReturn(0);
5619cef5090cSJed Brown }
5620cef5090cSJed Brown 
5621fb1732b5SBarry Smith /*@C
5622fde5950dSBarry Smith    TSMonitorSolution - Monitors progress of the TS solvers by VecView() for the solution at each timestep. Normally the viewer is a binary file or a PetscDraw object
5623fb1732b5SBarry Smith 
5624fb1732b5SBarry Smith    Collective on TS
5625fb1732b5SBarry Smith 
5626fb1732b5SBarry Smith    Input Parameters:
5627fb1732b5SBarry Smith +  ts - the TS context
5628fb1732b5SBarry Smith .  step - current time-step
5629fb1732b5SBarry Smith .  ptime - current time
56300910c330SBarry Smith .  u - current state
5631721cd6eeSBarry Smith -  vf - viewer and its format
5632fb1732b5SBarry Smith 
5633fb1732b5SBarry Smith    Level: intermediate
5634fb1732b5SBarry Smith 
5635fb1732b5SBarry Smith .keywords: TS,  vector, monitor, view
5636fb1732b5SBarry Smith 
5637fb1732b5SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
5638fb1732b5SBarry Smith @*/
5639721cd6eeSBarry Smith PetscErrorCode  TSMonitorSolution(TS ts,PetscInt step,PetscReal ptime,Vec u,PetscViewerAndFormat *vf)
5640fb1732b5SBarry Smith {
5641fb1732b5SBarry Smith   PetscErrorCode ierr;
5642fb1732b5SBarry Smith 
5643fb1732b5SBarry Smith   PetscFunctionBegin;
5644721cd6eeSBarry Smith   ierr = PetscViewerPushFormat(vf->viewer,vf->format);CHKERRQ(ierr);
5645721cd6eeSBarry Smith   ierr = VecView(u,vf->viewer);CHKERRQ(ierr);
5646721cd6eeSBarry Smith   ierr = PetscViewerPopFormat(vf->viewer);CHKERRQ(ierr);
5647ed81e22dSJed Brown   PetscFunctionReturn(0);
5648ed81e22dSJed Brown }
5649ed81e22dSJed Brown 
5650ed81e22dSJed Brown /*@C
5651ed81e22dSJed Brown    TSMonitorSolutionVTK - Monitors progress of the TS solvers by VecView() for the solution at each timestep.
5652ed81e22dSJed Brown 
5653ed81e22dSJed Brown    Collective on TS
5654ed81e22dSJed Brown 
5655ed81e22dSJed Brown    Input Parameters:
5656ed81e22dSJed Brown +  ts - the TS context
5657ed81e22dSJed Brown .  step - current time-step
5658ed81e22dSJed Brown .  ptime - current time
56590910c330SBarry Smith .  u - current state
5660ed81e22dSJed Brown -  filenametemplate - string containing a format specifier for the integer time step (e.g. %03D)
5661ed81e22dSJed Brown 
5662ed81e22dSJed Brown    Level: intermediate
5663ed81e22dSJed Brown 
5664ed81e22dSJed Brown    Notes:
5665ed81e22dSJed 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.
5666ed81e22dSJed Brown    These are named according to the file name template.
5667ed81e22dSJed Brown 
5668ed81e22dSJed Brown    This function is normally passed as an argument to TSMonitorSet() along with TSMonitorSolutionVTKDestroy().
5669ed81e22dSJed Brown 
5670ed81e22dSJed Brown .keywords: TS,  vector, monitor, view
5671ed81e22dSJed Brown 
5672ed81e22dSJed Brown .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
5673ed81e22dSJed Brown @*/
56740910c330SBarry Smith PetscErrorCode TSMonitorSolutionVTK(TS ts,PetscInt step,PetscReal ptime,Vec u,void *filenametemplate)
5675ed81e22dSJed Brown {
5676ed81e22dSJed Brown   PetscErrorCode ierr;
5677ed81e22dSJed Brown   char           filename[PETSC_MAX_PATH_LEN];
5678ed81e22dSJed Brown   PetscViewer    viewer;
5679ed81e22dSJed Brown 
5680ed81e22dSJed Brown   PetscFunctionBegin;
568163e21af5SBarry Smith   if (step < 0) PetscFunctionReturn(0); /* -1 indicates interpolated solution */
56828caf3d72SBarry Smith   ierr = PetscSNPrintf(filename,sizeof(filename),(const char*)filenametemplate,step);CHKERRQ(ierr);
5683ce94432eSBarry Smith   ierr = PetscViewerVTKOpen(PetscObjectComm((PetscObject)ts),filename,FILE_MODE_WRITE,&viewer);CHKERRQ(ierr);
56840910c330SBarry Smith   ierr = VecView(u,viewer);CHKERRQ(ierr);
5685ed81e22dSJed Brown   ierr = PetscViewerDestroy(&viewer);CHKERRQ(ierr);
5686ed81e22dSJed Brown   PetscFunctionReturn(0);
5687ed81e22dSJed Brown }
5688ed81e22dSJed Brown 
5689ed81e22dSJed Brown /*@C
5690ed81e22dSJed Brown    TSMonitorSolutionVTKDestroy - Destroy context for monitoring
5691ed81e22dSJed Brown 
5692ed81e22dSJed Brown    Collective on TS
5693ed81e22dSJed Brown 
5694ed81e22dSJed Brown    Input Parameters:
5695ed81e22dSJed Brown .  filenametemplate - string containing a format specifier for the integer time step (e.g. %03D)
5696ed81e22dSJed Brown 
5697ed81e22dSJed Brown    Level: intermediate
5698ed81e22dSJed Brown 
5699ed81e22dSJed Brown    Note:
5700ed81e22dSJed Brown    This function is normally passed to TSMonitorSet() along with TSMonitorSolutionVTK().
5701ed81e22dSJed Brown 
5702ed81e22dSJed Brown .keywords: TS,  vector, monitor, view
5703ed81e22dSJed Brown 
5704ed81e22dSJed Brown .seealso: TSMonitorSet(), TSMonitorSolutionVTK()
5705ed81e22dSJed Brown @*/
5706ed81e22dSJed Brown PetscErrorCode TSMonitorSolutionVTKDestroy(void *filenametemplate)
5707ed81e22dSJed Brown {
5708ed81e22dSJed Brown   PetscErrorCode ierr;
5709ed81e22dSJed Brown 
5710ed81e22dSJed Brown   PetscFunctionBegin;
5711ed81e22dSJed Brown   ierr = PetscFree(*(char**)filenametemplate);CHKERRQ(ierr);
5712fb1732b5SBarry Smith   PetscFunctionReturn(0);
5713fb1732b5SBarry Smith }
5714fb1732b5SBarry Smith 
571584df9cb4SJed Brown /*@
5716552698daSJed Brown    TSGetAdapt - Get the adaptive controller context for the current method
571784df9cb4SJed Brown 
5718ed81e22dSJed Brown    Collective on TS if controller has not been created yet
571984df9cb4SJed Brown 
572084df9cb4SJed Brown    Input Arguments:
5721ed81e22dSJed Brown .  ts - time stepping context
572284df9cb4SJed Brown 
572384df9cb4SJed Brown    Output Arguments:
5724ed81e22dSJed Brown .  adapt - adaptive controller
572584df9cb4SJed Brown 
572684df9cb4SJed Brown    Level: intermediate
572784df9cb4SJed Brown 
5728ed81e22dSJed Brown .seealso: TSAdapt, TSAdaptSetType(), TSAdaptChoose()
572984df9cb4SJed Brown @*/
5730552698daSJed Brown PetscErrorCode TSGetAdapt(TS ts,TSAdapt *adapt)
573184df9cb4SJed Brown {
573284df9cb4SJed Brown   PetscErrorCode ierr;
573384df9cb4SJed Brown 
573484df9cb4SJed Brown   PetscFunctionBegin;
573584df9cb4SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5736bec58848SLisandro Dalcin   PetscValidPointer(adapt,2);
573784df9cb4SJed Brown   if (!ts->adapt) {
5738ce94432eSBarry Smith     ierr = TSAdaptCreate(PetscObjectComm((PetscObject)ts),&ts->adapt);CHKERRQ(ierr);
57393bb1ff40SBarry Smith     ierr = PetscLogObjectParent((PetscObject)ts,(PetscObject)ts->adapt);CHKERRQ(ierr);
57401c3436cfSJed Brown     ierr = PetscObjectIncrementTabLevel((PetscObject)ts->adapt,(PetscObject)ts,1);CHKERRQ(ierr);
574184df9cb4SJed Brown   }
5742bec58848SLisandro Dalcin   *adapt = ts->adapt;
574384df9cb4SJed Brown   PetscFunctionReturn(0);
574484df9cb4SJed Brown }
5745d6ebe24aSShri Abhyankar 
57461c3436cfSJed Brown /*@
57471c3436cfSJed Brown    TSSetTolerances - Set tolerances for local truncation error when using adaptive controller
57481c3436cfSJed Brown 
57491c3436cfSJed Brown    Logically Collective
57501c3436cfSJed Brown 
57511c3436cfSJed Brown    Input Arguments:
57521c3436cfSJed Brown +  ts - time integration context
57531c3436cfSJed Brown .  atol - scalar absolute tolerances, PETSC_DECIDE to leave current value
57540298fd71SBarry Smith .  vatol - vector of absolute tolerances or NULL, used in preference to atol if present
57551c3436cfSJed Brown .  rtol - scalar relative tolerances, PETSC_DECIDE to leave current value
57560298fd71SBarry Smith -  vrtol - vector of relative tolerances or NULL, used in preference to atol if present
57571c3436cfSJed Brown 
5758a3cdaa26SBarry Smith    Options Database keys:
5759a3cdaa26SBarry Smith +  -ts_rtol <rtol> - relative tolerance for local truncation error
5760a3cdaa26SBarry Smith -  -ts_atol <atol> Absolute tolerance for local truncation error
5761a3cdaa26SBarry Smith 
57623ff766beSShri Abhyankar    Notes:
57633ff766beSShri Abhyankar    With PETSc's implicit schemes for DAE problems, the calculation of the local truncation error
57643ff766beSShri Abhyankar    (LTE) includes both the differential and the algebraic variables. If one wants the LTE to be
57653ff766beSShri Abhyankar    computed only for the differential or the algebraic part then this can be done using the vector of
57663ff766beSShri Abhyankar    tolerances vatol. For example, by setting the tolerance vector with the desired tolerance for the
57673ff766beSShri Abhyankar    differential part and infinity for the algebraic part, the LTE calculation will include only the
57683ff766beSShri Abhyankar    differential variables.
57693ff766beSShri Abhyankar 
57701c3436cfSJed Brown    Level: beginner
57711c3436cfSJed Brown 
5772c5033834SJed Brown .seealso: TS, TSAdapt, TSVecNormWRMS(), TSGetTolerances()
57731c3436cfSJed Brown @*/
57741c3436cfSJed Brown PetscErrorCode TSSetTolerances(TS ts,PetscReal atol,Vec vatol,PetscReal rtol,Vec vrtol)
57751c3436cfSJed Brown {
57761c3436cfSJed Brown   PetscErrorCode ierr;
57771c3436cfSJed Brown 
57781c3436cfSJed Brown   PetscFunctionBegin;
5779c5033834SJed Brown   if (atol != PETSC_DECIDE && atol != PETSC_DEFAULT) ts->atol = atol;
57801c3436cfSJed Brown   if (vatol) {
57811c3436cfSJed Brown     ierr = PetscObjectReference((PetscObject)vatol);CHKERRQ(ierr);
57821c3436cfSJed Brown     ierr = VecDestroy(&ts->vatol);CHKERRQ(ierr);
57831c3436cfSJed Brown     ts->vatol = vatol;
57841c3436cfSJed Brown   }
5785c5033834SJed Brown   if (rtol != PETSC_DECIDE && rtol != PETSC_DEFAULT) ts->rtol = rtol;
57861c3436cfSJed Brown   if (vrtol) {
57871c3436cfSJed Brown     ierr = PetscObjectReference((PetscObject)vrtol);CHKERRQ(ierr);
57881c3436cfSJed Brown     ierr = VecDestroy(&ts->vrtol);CHKERRQ(ierr);
57891c3436cfSJed Brown     ts->vrtol = vrtol;
57901c3436cfSJed Brown   }
57911c3436cfSJed Brown   PetscFunctionReturn(0);
57921c3436cfSJed Brown }
57931c3436cfSJed Brown 
5794c5033834SJed Brown /*@
5795c5033834SJed Brown    TSGetTolerances - Get tolerances for local truncation error when using adaptive controller
5796c5033834SJed Brown 
5797c5033834SJed Brown    Logically Collective
5798c5033834SJed Brown 
5799c5033834SJed Brown    Input Arguments:
5800c5033834SJed Brown .  ts - time integration context
5801c5033834SJed Brown 
5802c5033834SJed Brown    Output Arguments:
58030298fd71SBarry Smith +  atol - scalar absolute tolerances, NULL to ignore
58040298fd71SBarry Smith .  vatol - vector of absolute tolerances, NULL to ignore
58050298fd71SBarry Smith .  rtol - scalar relative tolerances, NULL to ignore
58060298fd71SBarry Smith -  vrtol - vector of relative tolerances, NULL to ignore
5807c5033834SJed Brown 
5808c5033834SJed Brown    Level: beginner
5809c5033834SJed Brown 
5810c5033834SJed Brown .seealso: TS, TSAdapt, TSVecNormWRMS(), TSSetTolerances()
5811c5033834SJed Brown @*/
5812c5033834SJed Brown PetscErrorCode TSGetTolerances(TS ts,PetscReal *atol,Vec *vatol,PetscReal *rtol,Vec *vrtol)
5813c5033834SJed Brown {
5814c5033834SJed Brown   PetscFunctionBegin;
5815c5033834SJed Brown   if (atol)  *atol  = ts->atol;
5816c5033834SJed Brown   if (vatol) *vatol = ts->vatol;
5817c5033834SJed Brown   if (rtol)  *rtol  = ts->rtol;
5818c5033834SJed Brown   if (vrtol) *vrtol = ts->vrtol;
5819c5033834SJed Brown   PetscFunctionReturn(0);
5820c5033834SJed Brown }
5821c5033834SJed Brown 
58229c6b16b5SShri Abhyankar /*@
5823a4868fbcSLisandro Dalcin    TSErrorWeightedNorm2 - compute a weighted 2-norm of the difference between two state vectors
58249c6b16b5SShri Abhyankar 
58259c6b16b5SShri Abhyankar    Collective on TS
58269c6b16b5SShri Abhyankar 
58279c6b16b5SShri Abhyankar    Input Arguments:
58289c6b16b5SShri Abhyankar +  ts - time stepping context
5829a4868fbcSLisandro Dalcin .  U - state vector, usually ts->vec_sol
5830a4868fbcSLisandro Dalcin -  Y - state vector to be compared to U
58319c6b16b5SShri Abhyankar 
58329c6b16b5SShri Abhyankar    Output Arguments:
58337453f775SEmil Constantinescu .  norm - weighted norm, a value of 1.0 means that the error matches the tolerances
58347453f775SEmil Constantinescu .  norma - weighted norm based on the absolute tolerance, a value of 1.0 means that the error matches the tolerances
58357453f775SEmil Constantinescu .  normr - weighted norm based on the relative tolerance, a value of 1.0 means that the error matches the tolerances
58369c6b16b5SShri Abhyankar 
58379c6b16b5SShri Abhyankar    Level: developer
58389c6b16b5SShri Abhyankar 
5839deea92deSShri .seealso: TSErrorWeightedNorm(), TSErrorWeightedNormInfinity()
58409c6b16b5SShri Abhyankar @*/
58417453f775SEmil Constantinescu PetscErrorCode TSErrorWeightedNorm2(TS ts,Vec U,Vec Y,PetscReal *norm,PetscReal *norma,PetscReal *normr)
58429c6b16b5SShri Abhyankar {
58439c6b16b5SShri Abhyankar   PetscErrorCode    ierr;
58449c6b16b5SShri Abhyankar   PetscInt          i,n,N,rstart;
58457453f775SEmil Constantinescu   PetscInt          n_loc,na_loc,nr_loc;
58467453f775SEmil Constantinescu   PetscReal         n_glb,na_glb,nr_glb;
58479c6b16b5SShri Abhyankar   const PetscScalar *u,*y;
58487453f775SEmil Constantinescu   PetscReal         sum,suma,sumr,gsum,gsuma,gsumr,diff;
58497453f775SEmil Constantinescu   PetscReal         tol,tola,tolr;
58507453f775SEmil Constantinescu   PetscReal         err_loc[6],err_glb[6];
58519c6b16b5SShri Abhyankar 
58529c6b16b5SShri Abhyankar   PetscFunctionBegin;
58539c6b16b5SShri Abhyankar   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5854a4868fbcSLisandro Dalcin   PetscValidHeaderSpecific(U,VEC_CLASSID,2);
5855a4868fbcSLisandro Dalcin   PetscValidHeaderSpecific(Y,VEC_CLASSID,3);
5856a4868fbcSLisandro Dalcin   PetscValidType(U,2);
5857a4868fbcSLisandro Dalcin   PetscValidType(Y,3);
5858a4868fbcSLisandro Dalcin   PetscCheckSameComm(U,2,Y,3);
5859a4868fbcSLisandro Dalcin   PetscValidPointer(norm,4);
58608a175baeSEmil Constantinescu   PetscValidPointer(norma,5);
58618a175baeSEmil Constantinescu   PetscValidPointer(normr,6);
5862a4868fbcSLisandro Dalcin   if (U == Y) SETERRQ(PetscObjectComm((PetscObject)U),PETSC_ERR_ARG_IDN,"U and Y cannot be the same vector");
58639c6b16b5SShri Abhyankar 
58649c6b16b5SShri Abhyankar   ierr = VecGetSize(U,&N);CHKERRQ(ierr);
58659c6b16b5SShri Abhyankar   ierr = VecGetLocalSize(U,&n);CHKERRQ(ierr);
58669c6b16b5SShri Abhyankar   ierr = VecGetOwnershipRange(U,&rstart,NULL);CHKERRQ(ierr);
58679c6b16b5SShri Abhyankar   ierr = VecGetArrayRead(U,&u);CHKERRQ(ierr);
58689c6b16b5SShri Abhyankar   ierr = VecGetArrayRead(Y,&y);CHKERRQ(ierr);
58697453f775SEmil Constantinescu   sum  = 0.; n_loc  = 0;
58707453f775SEmil Constantinescu   suma = 0.; na_loc = 0;
58717453f775SEmil Constantinescu   sumr = 0.; nr_loc = 0;
58729c6b16b5SShri Abhyankar   if (ts->vatol && ts->vrtol) {
58739c6b16b5SShri Abhyankar     const PetscScalar *atol,*rtol;
58749c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
58759c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
58769c6b16b5SShri Abhyankar     for (i=0; i<n; i++) {
58777453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
58787453f775SEmil Constantinescu       tola = PetscRealPart(atol[i]);
58797453f775SEmil Constantinescu       if(tola>0.){
58807453f775SEmil Constantinescu         suma  += PetscSqr(diff/tola);
58817453f775SEmil Constantinescu         na_loc++;
58827453f775SEmil Constantinescu       }
58837453f775SEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
58847453f775SEmil Constantinescu       if(tolr>0.){
58857453f775SEmil Constantinescu         sumr  += PetscSqr(diff/tolr);
58867453f775SEmil Constantinescu         nr_loc++;
58877453f775SEmil Constantinescu       }
58887453f775SEmil Constantinescu       tol=tola+tolr;
58897453f775SEmil Constantinescu       if(tol>0.){
58907453f775SEmil Constantinescu         sum  += PetscSqr(diff/tol);
58917453f775SEmil Constantinescu         n_loc++;
58927453f775SEmil Constantinescu       }
58939c6b16b5SShri Abhyankar     }
58949c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
58959c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
58969c6b16b5SShri Abhyankar   } else if (ts->vatol) {       /* vector atol, scalar rtol */
58979c6b16b5SShri Abhyankar     const PetscScalar *atol;
58989c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
58999c6b16b5SShri Abhyankar     for (i=0; i<n; i++) {
59007453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
59017453f775SEmil Constantinescu       tola = PetscRealPart(atol[i]);
59027453f775SEmil Constantinescu       if(tola>0.){
59037453f775SEmil Constantinescu         suma  += PetscSqr(diff/tola);
59047453f775SEmil Constantinescu         na_loc++;
59057453f775SEmil Constantinescu       }
59067453f775SEmil Constantinescu       tolr = ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
59077453f775SEmil Constantinescu       if(tolr>0.){
59087453f775SEmil Constantinescu         sumr  += PetscSqr(diff/tolr);
59097453f775SEmil Constantinescu         nr_loc++;
59107453f775SEmil Constantinescu       }
59117453f775SEmil Constantinescu       tol=tola+tolr;
59127453f775SEmil Constantinescu       if(tol>0.){
59137453f775SEmil Constantinescu         sum  += PetscSqr(diff/tol);
59147453f775SEmil Constantinescu         n_loc++;
59157453f775SEmil Constantinescu       }
59169c6b16b5SShri Abhyankar     }
59179c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
59189c6b16b5SShri Abhyankar   } else if (ts->vrtol) {       /* scalar atol, vector rtol */
59199c6b16b5SShri Abhyankar     const PetscScalar *rtol;
59209c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
59219c6b16b5SShri Abhyankar     for (i=0; i<n; i++) {
59227453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
59237453f775SEmil Constantinescu       tola = ts->atol;
59247453f775SEmil Constantinescu       if(tola>0.){
59257453f775SEmil Constantinescu         suma  += PetscSqr(diff/tola);
59267453f775SEmil Constantinescu         na_loc++;
59277453f775SEmil Constantinescu       }
59287453f775SEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
59297453f775SEmil Constantinescu       if(tolr>0.){
59307453f775SEmil Constantinescu         sumr  += PetscSqr(diff/tolr);
59317453f775SEmil Constantinescu         nr_loc++;
59327453f775SEmil Constantinescu       }
59337453f775SEmil Constantinescu       tol=tola+tolr;
59347453f775SEmil Constantinescu       if(tol>0.){
59357453f775SEmil Constantinescu         sum  += PetscSqr(diff/tol);
59367453f775SEmil Constantinescu         n_loc++;
59377453f775SEmil Constantinescu       }
59389c6b16b5SShri Abhyankar     }
59399c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
59409c6b16b5SShri Abhyankar   } else {                      /* scalar atol, scalar rtol */
59419c6b16b5SShri Abhyankar     for (i=0; i<n; i++) {
59427453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
59437453f775SEmil Constantinescu      tola = ts->atol;
59447453f775SEmil Constantinescu       if(tola>0.){
59457453f775SEmil Constantinescu         suma  += PetscSqr(diff/tola);
59467453f775SEmil Constantinescu         na_loc++;
59477453f775SEmil Constantinescu       }
59487453f775SEmil Constantinescu       tolr = ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
59497453f775SEmil Constantinescu       if(tolr>0.){
59507453f775SEmil Constantinescu         sumr  += PetscSqr(diff/tolr);
59517453f775SEmil Constantinescu         nr_loc++;
59527453f775SEmil Constantinescu       }
59537453f775SEmil Constantinescu       tol=tola+tolr;
59547453f775SEmil Constantinescu       if(tol>0.){
59557453f775SEmil Constantinescu         sum  += PetscSqr(diff/tol);
59567453f775SEmil Constantinescu         n_loc++;
59577453f775SEmil Constantinescu       }
59589c6b16b5SShri Abhyankar     }
59599c6b16b5SShri Abhyankar   }
59609c6b16b5SShri Abhyankar   ierr = VecRestoreArrayRead(U,&u);CHKERRQ(ierr);
59619c6b16b5SShri Abhyankar   ierr = VecRestoreArrayRead(Y,&y);CHKERRQ(ierr);
59629c6b16b5SShri Abhyankar 
59637453f775SEmil Constantinescu   err_loc[0] = sum;
59647453f775SEmil Constantinescu   err_loc[1] = suma;
59657453f775SEmil Constantinescu   err_loc[2] = sumr;
59667453f775SEmil Constantinescu   err_loc[3] = (PetscReal)n_loc;
59677453f775SEmil Constantinescu   err_loc[4] = (PetscReal)na_loc;
59687453f775SEmil Constantinescu   err_loc[5] = (PetscReal)nr_loc;
59697453f775SEmil Constantinescu 
5970a88a9d1dSSatish Balay   ierr = MPIU_Allreduce(err_loc,err_glb,6,MPIU_REAL,MPIU_SUM,PetscObjectComm((PetscObject)ts));CHKERRQ(ierr);
59717453f775SEmil Constantinescu 
59727453f775SEmil Constantinescu   gsum   = err_glb[0];
59737453f775SEmil Constantinescu   gsuma  = err_glb[1];
59747453f775SEmil Constantinescu   gsumr  = err_glb[2];
59757453f775SEmil Constantinescu   n_glb  = err_glb[3];
59767453f775SEmil Constantinescu   na_glb = err_glb[4];
59777453f775SEmil Constantinescu   nr_glb = err_glb[5];
59787453f775SEmil Constantinescu 
5979b1316ef9SEmil Constantinescu   *norm  = 0.;
5980b1316ef9SEmil Constantinescu   if(n_glb>0. ){*norm  = PetscSqrtReal(gsum  / n_glb );}
5981b1316ef9SEmil Constantinescu   *norma = 0.;
5982b1316ef9SEmil Constantinescu   if(na_glb>0.){*norma = PetscSqrtReal(gsuma / na_glb);}
5983b1316ef9SEmil Constantinescu   *normr = 0.;
5984b1316ef9SEmil Constantinescu   if(nr_glb>0.){*normr = PetscSqrtReal(gsumr / nr_glb);}
59859c6b16b5SShri Abhyankar 
59869c6b16b5SShri Abhyankar   if (PetscIsInfOrNanScalar(*norm)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norm");
59877453f775SEmil Constantinescu   if (PetscIsInfOrNanScalar(*norma)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norma");
59887453f775SEmil Constantinescu   if (PetscIsInfOrNanScalar(*normr)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in normr");
59899c6b16b5SShri Abhyankar   PetscFunctionReturn(0);
59909c6b16b5SShri Abhyankar }
59919c6b16b5SShri Abhyankar 
59929c6b16b5SShri Abhyankar /*@
5993a4868fbcSLisandro Dalcin    TSErrorWeightedNormInfinity - compute a weighted infinity-norm of the difference between two state vectors
59949c6b16b5SShri Abhyankar 
59959c6b16b5SShri Abhyankar    Collective on TS
59969c6b16b5SShri Abhyankar 
59979c6b16b5SShri Abhyankar    Input Arguments:
59989c6b16b5SShri Abhyankar +  ts - time stepping context
5999a4868fbcSLisandro Dalcin .  U - state vector, usually ts->vec_sol
6000a4868fbcSLisandro Dalcin -  Y - state vector to be compared to U
60019c6b16b5SShri Abhyankar 
60029c6b16b5SShri Abhyankar    Output Arguments:
60037453f775SEmil Constantinescu .  norm - weighted norm, a value of 1.0 means that the error matches the tolerances
60047453f775SEmil Constantinescu .  norma - weighted norm based on the absolute tolerance, a value of 1.0 means that the error matches the tolerances
60057453f775SEmil Constantinescu .  normr - weighted norm based on the relative tolerance, a value of 1.0 means that the error matches the tolerances
60069c6b16b5SShri Abhyankar 
60079c6b16b5SShri Abhyankar    Level: developer
60089c6b16b5SShri Abhyankar 
6009deea92deSShri .seealso: TSErrorWeightedNorm(), TSErrorWeightedNorm2()
60109c6b16b5SShri Abhyankar @*/
60117453f775SEmil Constantinescu PetscErrorCode TSErrorWeightedNormInfinity(TS ts,Vec U,Vec Y,PetscReal *norm,PetscReal *norma,PetscReal *normr)
60129c6b16b5SShri Abhyankar {
60139c6b16b5SShri Abhyankar   PetscErrorCode    ierr;
60147453f775SEmil Constantinescu   PetscInt          i,n,N,rstart;
60159c6b16b5SShri Abhyankar   const PetscScalar *u,*y;
60167453f775SEmil Constantinescu   PetscReal         max,gmax,maxa,gmaxa,maxr,gmaxr;
60177453f775SEmil Constantinescu   PetscReal         tol,tola,tolr,diff;
60187453f775SEmil Constantinescu   PetscReal         err_loc[3],err_glb[3];
60199c6b16b5SShri Abhyankar 
60209c6b16b5SShri Abhyankar   PetscFunctionBegin;
60219c6b16b5SShri Abhyankar   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
6022a4868fbcSLisandro Dalcin   PetscValidHeaderSpecific(U,VEC_CLASSID,2);
6023a4868fbcSLisandro Dalcin   PetscValidHeaderSpecific(Y,VEC_CLASSID,3);
6024a4868fbcSLisandro Dalcin   PetscValidType(U,2);
6025a4868fbcSLisandro Dalcin   PetscValidType(Y,3);
6026a4868fbcSLisandro Dalcin   PetscCheckSameComm(U,2,Y,3);
6027a4868fbcSLisandro Dalcin   PetscValidPointer(norm,4);
60288a175baeSEmil Constantinescu   PetscValidPointer(norma,5);
60298a175baeSEmil Constantinescu   PetscValidPointer(normr,6);
6030a4868fbcSLisandro Dalcin   if (U == Y) SETERRQ(PetscObjectComm((PetscObject)U),PETSC_ERR_ARG_IDN,"U and Y cannot be the same vector");
60319c6b16b5SShri Abhyankar 
60329c6b16b5SShri Abhyankar   ierr = VecGetSize(U,&N);CHKERRQ(ierr);
60339c6b16b5SShri Abhyankar   ierr = VecGetLocalSize(U,&n);CHKERRQ(ierr);
60349c6b16b5SShri Abhyankar   ierr = VecGetOwnershipRange(U,&rstart,NULL);CHKERRQ(ierr);
60359c6b16b5SShri Abhyankar   ierr = VecGetArrayRead(U,&u);CHKERRQ(ierr);
60369c6b16b5SShri Abhyankar   ierr = VecGetArrayRead(Y,&y);CHKERRQ(ierr);
60377453f775SEmil Constantinescu 
60387453f775SEmil Constantinescu   max=0.;
60397453f775SEmil Constantinescu   maxa=0.;
60407453f775SEmil Constantinescu   maxr=0.;
60417453f775SEmil Constantinescu 
60427453f775SEmil Constantinescu   if (ts->vatol && ts->vrtol) {     /* vector atol, vector rtol */
60439c6b16b5SShri Abhyankar     const PetscScalar *atol,*rtol;
60449c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
60459c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
60467453f775SEmil Constantinescu 
60477453f775SEmil Constantinescu     for (i=0; i<n; i++) {
60487453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
60497453f775SEmil Constantinescu       tola = PetscRealPart(atol[i]);
60507453f775SEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
60517453f775SEmil Constantinescu       tol  = tola+tolr;
60527453f775SEmil Constantinescu       if(tola>0.){
60537453f775SEmil Constantinescu         maxa = PetscMax(maxa,diff / tola);
60547453f775SEmil Constantinescu       }
60557453f775SEmil Constantinescu       if(tolr>0.){
60567453f775SEmil Constantinescu         maxr = PetscMax(maxr,diff / tolr);
60577453f775SEmil Constantinescu       }
60587453f775SEmil Constantinescu       if(tol>0.){
60597453f775SEmil Constantinescu         max = PetscMax(max,diff / tol);
60607453f775SEmil Constantinescu       }
60619c6b16b5SShri Abhyankar     }
60629c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
60639c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
60649c6b16b5SShri Abhyankar   } else if (ts->vatol) {       /* vector atol, scalar rtol */
60659c6b16b5SShri Abhyankar     const PetscScalar *atol;
60669c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
60677453f775SEmil Constantinescu     for (i=0; i<n; i++) {
60687453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
60697453f775SEmil Constantinescu       tola = PetscRealPart(atol[i]);
60707453f775SEmil Constantinescu       tolr = ts->rtol  * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
60717453f775SEmil Constantinescu       tol  = tola+tolr;
60727453f775SEmil Constantinescu       if(tola>0.){
60737453f775SEmil Constantinescu         maxa = PetscMax(maxa,diff / tola);
60747453f775SEmil Constantinescu       }
60757453f775SEmil Constantinescu       if(tolr>0.){
60767453f775SEmil Constantinescu         maxr = PetscMax(maxr,diff / tolr);
60777453f775SEmil Constantinescu       }
60787453f775SEmil Constantinescu       if(tol>0.){
60797453f775SEmil Constantinescu         max = PetscMax(max,diff / tol);
60807453f775SEmil Constantinescu       }
60819c6b16b5SShri Abhyankar     }
60829c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
60839c6b16b5SShri Abhyankar   } else if (ts->vrtol) {       /* scalar atol, vector rtol */
60849c6b16b5SShri Abhyankar     const PetscScalar *rtol;
60859c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
60867453f775SEmil Constantinescu 
60877453f775SEmil Constantinescu     for (i=0; i<n; i++) {
60887453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
60897453f775SEmil Constantinescu       tola = ts->atol;
60907453f775SEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
60917453f775SEmil Constantinescu       tol  = tola+tolr;
60927453f775SEmil Constantinescu       if(tola>0.){
60937453f775SEmil Constantinescu         maxa = PetscMax(maxa,diff / tola);
60947453f775SEmil Constantinescu       }
60957453f775SEmil Constantinescu       if(tolr>0.){
60967453f775SEmil Constantinescu         maxr = PetscMax(maxr,diff / tolr);
60977453f775SEmil Constantinescu       }
60987453f775SEmil Constantinescu       if(tol>0.){
60997453f775SEmil Constantinescu         max = PetscMax(max,diff / tol);
61007453f775SEmil Constantinescu       }
61019c6b16b5SShri Abhyankar     }
61029c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
61039c6b16b5SShri Abhyankar   } else {                      /* scalar atol, scalar rtol */
61047453f775SEmil Constantinescu 
61057453f775SEmil Constantinescu     for (i=0; i<n; i++) {
61067453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
61077453f775SEmil Constantinescu       tola = ts->atol;
61087453f775SEmil Constantinescu       tolr = ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
61097453f775SEmil Constantinescu       tol  = tola+tolr;
61107453f775SEmil Constantinescu       if(tola>0.){
61117453f775SEmil Constantinescu         maxa = PetscMax(maxa,diff / tola);
61127453f775SEmil Constantinescu       }
61137453f775SEmil Constantinescu       if(tolr>0.){
61147453f775SEmil Constantinescu         maxr = PetscMax(maxr,diff / tolr);
61157453f775SEmil Constantinescu       }
61167453f775SEmil Constantinescu       if(tol>0.){
61177453f775SEmil Constantinescu         max = PetscMax(max,diff / tol);
61187453f775SEmil Constantinescu       }
61199c6b16b5SShri Abhyankar     }
61209c6b16b5SShri Abhyankar   }
61219c6b16b5SShri Abhyankar   ierr = VecRestoreArrayRead(U,&u);CHKERRQ(ierr);
61229c6b16b5SShri Abhyankar   ierr = VecRestoreArrayRead(Y,&y);CHKERRQ(ierr);
61237453f775SEmil Constantinescu   err_loc[0] = max;
61247453f775SEmil Constantinescu   err_loc[1] = maxa;
61257453f775SEmil Constantinescu   err_loc[2] = maxr;
6126a88a9d1dSSatish Balay   ierr  = MPIU_Allreduce(err_loc,err_glb,3,MPIU_REAL,MPIU_MAX,PetscObjectComm((PetscObject)ts));CHKERRQ(ierr);
61277453f775SEmil Constantinescu   gmax   = err_glb[0];
61287453f775SEmil Constantinescu   gmaxa  = err_glb[1];
61297453f775SEmil Constantinescu   gmaxr  = err_glb[2];
61309c6b16b5SShri Abhyankar 
61319c6b16b5SShri Abhyankar   *norm = gmax;
61327453f775SEmil Constantinescu   *norma = gmaxa;
61337453f775SEmil Constantinescu   *normr = gmaxr;
61349c6b16b5SShri Abhyankar   if (PetscIsInfOrNanScalar(*norm)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norm");
61357453f775SEmil Constantinescu     if (PetscIsInfOrNanScalar(*norma)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norma");
61367453f775SEmil Constantinescu     if (PetscIsInfOrNanScalar(*normr)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in normr");
61379c6b16b5SShri Abhyankar   PetscFunctionReturn(0);
61389c6b16b5SShri Abhyankar }
61399c6b16b5SShri Abhyankar 
61401c3436cfSJed Brown /*@
61418a175baeSEmil Constantinescu    TSErrorWeightedNorm - compute a weighted norm of the difference between two state vectors based on supplied absolute and relative tolerances
61421c3436cfSJed Brown 
61431c3436cfSJed Brown    Collective on TS
61441c3436cfSJed Brown 
61451c3436cfSJed Brown    Input Arguments:
61461c3436cfSJed Brown +  ts - time stepping context
6147a4868fbcSLisandro Dalcin .  U - state vector, usually ts->vec_sol
6148a4868fbcSLisandro Dalcin .  Y - state vector to be compared to U
6149a4868fbcSLisandro Dalcin -  wnormtype - norm type, either NORM_2 or NORM_INFINITY
61507619abb3SShri 
61511c3436cfSJed Brown    Output Arguments:
61528a175baeSEmil Constantinescu .  norm  - weighted norm, a value of 1.0 achieves a balance between absolute and relative tolerances
61538a175baeSEmil Constantinescu .  norma - weighted norm, a value of 1.0 means that the error meets the absolute tolerance set by the user
61548a175baeSEmil Constantinescu .  normr - weighted norm, a value of 1.0 means that the error meets the relative tolerance set by the user
6155a4868fbcSLisandro Dalcin 
6156a4868fbcSLisandro Dalcin    Options Database Keys:
6157a4868fbcSLisandro Dalcin .  -ts_adapt_wnormtype <wnormtype> - 2, INFINITY
6158a4868fbcSLisandro Dalcin 
61591c3436cfSJed Brown    Level: developer
61601c3436cfSJed Brown 
61618a175baeSEmil Constantinescu .seealso: TSErrorWeightedNormInfinity(), TSErrorWeightedNorm2(), TSErrorWeightedENorm
61621c3436cfSJed Brown @*/
61637453f775SEmil Constantinescu PetscErrorCode TSErrorWeightedNorm(TS ts,Vec U,Vec Y,NormType wnormtype,PetscReal *norm,PetscReal *norma,PetscReal *normr)
61641c3436cfSJed Brown {
61658beabaa1SBarry Smith   PetscErrorCode ierr;
61661c3436cfSJed Brown 
61671c3436cfSJed Brown   PetscFunctionBegin;
6168a4868fbcSLisandro Dalcin   if (wnormtype == NORM_2) {
61697453f775SEmil Constantinescu     ierr = TSErrorWeightedNorm2(ts,U,Y,norm,norma,normr);CHKERRQ(ierr);
6170a4868fbcSLisandro Dalcin   } else if(wnormtype == NORM_INFINITY) {
61717453f775SEmil Constantinescu     ierr = TSErrorWeightedNormInfinity(ts,U,Y,norm,norma,normr);CHKERRQ(ierr);
6172a4868fbcSLisandro Dalcin   } else SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"No support for norm type %s",NormTypes[wnormtype]);
61731c3436cfSJed Brown   PetscFunctionReturn(0);
61741c3436cfSJed Brown }
61751c3436cfSJed Brown 
61768a175baeSEmil Constantinescu 
61778a175baeSEmil Constantinescu /*@
61788a175baeSEmil Constantinescu    TSErrorWeightedENorm2 - compute a weighted 2 error norm based on supplied absolute and relative tolerances
61798a175baeSEmil Constantinescu 
61808a175baeSEmil Constantinescu    Collective on TS
61818a175baeSEmil Constantinescu 
61828a175baeSEmil Constantinescu    Input Arguments:
61838a175baeSEmil Constantinescu +  ts - time stepping context
61848a175baeSEmil Constantinescu .  E - error vector
61858a175baeSEmil Constantinescu .  U - state vector, usually ts->vec_sol
61868a175baeSEmil Constantinescu -  Y - state vector, previous time step
61878a175baeSEmil Constantinescu 
61888a175baeSEmil Constantinescu    Output Arguments:
61898a175baeSEmil Constantinescu .  norm - weighted norm, a value of 1.0 means that the error matches the tolerances
61908a175baeSEmil Constantinescu .  norma - weighted norm based on the absolute tolerance, a value of 1.0 means that the error matches the tolerances
61918a175baeSEmil Constantinescu .  normr - weighted norm based on the relative tolerance, a value of 1.0 means that the error matches the tolerances
61928a175baeSEmil Constantinescu 
61938a175baeSEmil Constantinescu    Level: developer
61948a175baeSEmil Constantinescu 
61958a175baeSEmil Constantinescu .seealso: TSErrorWeightedENorm(), TSErrorWeightedENormInfinity()
61968a175baeSEmil Constantinescu @*/
61978a175baeSEmil Constantinescu PetscErrorCode TSErrorWeightedENorm2(TS ts,Vec E,Vec U,Vec Y,PetscReal *norm,PetscReal *norma,PetscReal *normr)
61988a175baeSEmil Constantinescu {
61998a175baeSEmil Constantinescu   PetscErrorCode    ierr;
62008a175baeSEmil Constantinescu   PetscInt          i,n,N,rstart;
62018a175baeSEmil Constantinescu   PetscInt          n_loc,na_loc,nr_loc;
62028a175baeSEmil Constantinescu   PetscReal         n_glb,na_glb,nr_glb;
62038a175baeSEmil Constantinescu   const PetscScalar *e,*u,*y;
62048a175baeSEmil Constantinescu   PetscReal         err,sum,suma,sumr,gsum,gsuma,gsumr;
62058a175baeSEmil Constantinescu   PetscReal         tol,tola,tolr;
62068a175baeSEmil Constantinescu   PetscReal         err_loc[6],err_glb[6];
62078a175baeSEmil Constantinescu 
62088a175baeSEmil Constantinescu   PetscFunctionBegin;
62098a175baeSEmil Constantinescu   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
62108a175baeSEmil Constantinescu   PetscValidHeaderSpecific(E,VEC_CLASSID,2);
62118a175baeSEmil Constantinescu   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
62128a175baeSEmil Constantinescu   PetscValidHeaderSpecific(Y,VEC_CLASSID,4);
62138a175baeSEmil Constantinescu   PetscValidType(E,2);
62148a175baeSEmil Constantinescu   PetscValidType(U,3);
62158a175baeSEmil Constantinescu   PetscValidType(Y,4);
62168a175baeSEmil Constantinescu   PetscCheckSameComm(E,2,U,3);
62178a175baeSEmil Constantinescu   PetscCheckSameComm(U,2,Y,3);
62188a175baeSEmil Constantinescu   PetscValidPointer(norm,5);
62198a175baeSEmil Constantinescu   PetscValidPointer(norma,6);
62208a175baeSEmil Constantinescu   PetscValidPointer(normr,7);
62218a175baeSEmil Constantinescu 
62228a175baeSEmil Constantinescu   ierr = VecGetSize(E,&N);CHKERRQ(ierr);
62238a175baeSEmil Constantinescu   ierr = VecGetLocalSize(E,&n);CHKERRQ(ierr);
62248a175baeSEmil Constantinescu   ierr = VecGetOwnershipRange(E,&rstart,NULL);CHKERRQ(ierr);
62258a175baeSEmil Constantinescu   ierr = VecGetArrayRead(E,&e);CHKERRQ(ierr);
62268a175baeSEmil Constantinescu   ierr = VecGetArrayRead(U,&u);CHKERRQ(ierr);
62278a175baeSEmil Constantinescu   ierr = VecGetArrayRead(Y,&y);CHKERRQ(ierr);
62288a175baeSEmil Constantinescu   sum  = 0.; n_loc  = 0;
62298a175baeSEmil Constantinescu   suma = 0.; na_loc = 0;
62308a175baeSEmil Constantinescu   sumr = 0.; nr_loc = 0;
62318a175baeSEmil Constantinescu   if (ts->vatol && ts->vrtol) {
62328a175baeSEmil Constantinescu     const PetscScalar *atol,*rtol;
62338a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
62348a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
62358a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
62368a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
62378a175baeSEmil Constantinescu       tola = PetscRealPart(atol[i]);
62388a175baeSEmil Constantinescu       if(tola>0.){
62398a175baeSEmil Constantinescu         suma  += PetscSqr(err/tola);
62408a175baeSEmil Constantinescu         na_loc++;
62418a175baeSEmil Constantinescu       }
62428a175baeSEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
62438a175baeSEmil Constantinescu       if(tolr>0.){
62448a175baeSEmil Constantinescu         sumr  += PetscSqr(err/tolr);
62458a175baeSEmil Constantinescu         nr_loc++;
62468a175baeSEmil Constantinescu       }
62478a175baeSEmil Constantinescu       tol=tola+tolr;
62488a175baeSEmil Constantinescu       if(tol>0.){
62498a175baeSEmil Constantinescu         sum  += PetscSqr(err/tol);
62508a175baeSEmil Constantinescu         n_loc++;
62518a175baeSEmil Constantinescu       }
62528a175baeSEmil Constantinescu     }
62538a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
62548a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
62558a175baeSEmil Constantinescu   } else if (ts->vatol) {       /* vector atol, scalar rtol */
62568a175baeSEmil Constantinescu     const PetscScalar *atol;
62578a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
62588a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
62598a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
62608a175baeSEmil Constantinescu       tola = PetscRealPart(atol[i]);
62618a175baeSEmil Constantinescu       if(tola>0.){
62628a175baeSEmil Constantinescu         suma  += PetscSqr(err/tola);
62638a175baeSEmil Constantinescu         na_loc++;
62648a175baeSEmil Constantinescu       }
62658a175baeSEmil Constantinescu       tolr = ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
62668a175baeSEmil Constantinescu       if(tolr>0.){
62678a175baeSEmil Constantinescu         sumr  += PetscSqr(err/tolr);
62688a175baeSEmil Constantinescu         nr_loc++;
62698a175baeSEmil Constantinescu       }
62708a175baeSEmil Constantinescu       tol=tola+tolr;
62718a175baeSEmil Constantinescu       if(tol>0.){
62728a175baeSEmil Constantinescu         sum  += PetscSqr(err/tol);
62738a175baeSEmil Constantinescu         n_loc++;
62748a175baeSEmil Constantinescu       }
62758a175baeSEmil Constantinescu     }
62768a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
62778a175baeSEmil Constantinescu   } else if (ts->vrtol) {       /* scalar atol, vector rtol */
62788a175baeSEmil Constantinescu     const PetscScalar *rtol;
62798a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
62808a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
62818a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
62828a175baeSEmil Constantinescu       tola = ts->atol;
62838a175baeSEmil Constantinescu       if(tola>0.){
62848a175baeSEmil Constantinescu         suma  += PetscSqr(err/tola);
62858a175baeSEmil Constantinescu         na_loc++;
62868a175baeSEmil Constantinescu       }
62878a175baeSEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
62888a175baeSEmil Constantinescu       if(tolr>0.){
62898a175baeSEmil Constantinescu         sumr  += PetscSqr(err/tolr);
62908a175baeSEmil Constantinescu         nr_loc++;
62918a175baeSEmil Constantinescu       }
62928a175baeSEmil Constantinescu       tol=tola+tolr;
62938a175baeSEmil Constantinescu       if(tol>0.){
62948a175baeSEmil Constantinescu         sum  += PetscSqr(err/tol);
62958a175baeSEmil Constantinescu         n_loc++;
62968a175baeSEmil Constantinescu       }
62978a175baeSEmil Constantinescu     }
62988a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
62998a175baeSEmil Constantinescu   } else {                      /* scalar atol, scalar rtol */
63008a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
63018a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
63028a175baeSEmil Constantinescu      tola = ts->atol;
63038a175baeSEmil Constantinescu       if(tola>0.){
63048a175baeSEmil Constantinescu         suma  += PetscSqr(err/tola);
63058a175baeSEmil Constantinescu         na_loc++;
63068a175baeSEmil Constantinescu       }
63078a175baeSEmil Constantinescu       tolr = ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
63088a175baeSEmil Constantinescu       if(tolr>0.){
63098a175baeSEmil Constantinescu         sumr  += PetscSqr(err/tolr);
63108a175baeSEmil Constantinescu         nr_loc++;
63118a175baeSEmil Constantinescu       }
63128a175baeSEmil Constantinescu       tol=tola+tolr;
63138a175baeSEmil Constantinescu       if(tol>0.){
63148a175baeSEmil Constantinescu         sum  += PetscSqr(err/tol);
63158a175baeSEmil Constantinescu         n_loc++;
63168a175baeSEmil Constantinescu       }
63178a175baeSEmil Constantinescu     }
63188a175baeSEmil Constantinescu   }
63198a175baeSEmil Constantinescu   ierr = VecRestoreArrayRead(E,&e);CHKERRQ(ierr);
63208a175baeSEmil Constantinescu   ierr = VecRestoreArrayRead(U,&u);CHKERRQ(ierr);
63218a175baeSEmil Constantinescu   ierr = VecRestoreArrayRead(Y,&y);CHKERRQ(ierr);
63228a175baeSEmil Constantinescu 
63238a175baeSEmil Constantinescu   err_loc[0] = sum;
63248a175baeSEmil Constantinescu   err_loc[1] = suma;
63258a175baeSEmil Constantinescu   err_loc[2] = sumr;
63268a175baeSEmil Constantinescu   err_loc[3] = (PetscReal)n_loc;
63278a175baeSEmil Constantinescu   err_loc[4] = (PetscReal)na_loc;
63288a175baeSEmil Constantinescu   err_loc[5] = (PetscReal)nr_loc;
63298a175baeSEmil Constantinescu 
6330a88a9d1dSSatish Balay   ierr = MPIU_Allreduce(err_loc,err_glb,6,MPIU_REAL,MPIU_SUM,PetscObjectComm((PetscObject)ts));CHKERRQ(ierr);
63318a175baeSEmil Constantinescu 
63328a175baeSEmil Constantinescu   gsum   = err_glb[0];
63338a175baeSEmil Constantinescu   gsuma  = err_glb[1];
63348a175baeSEmil Constantinescu   gsumr  = err_glb[2];
63358a175baeSEmil Constantinescu   n_glb  = err_glb[3];
63368a175baeSEmil Constantinescu   na_glb = err_glb[4];
63378a175baeSEmil Constantinescu   nr_glb = err_glb[5];
63388a175baeSEmil Constantinescu 
63398a175baeSEmil Constantinescu   *norm  = 0.;
63408a175baeSEmil Constantinescu   if(n_glb>0. ){*norm  = PetscSqrtReal(gsum  / n_glb );}
63418a175baeSEmil Constantinescu   *norma = 0.;
63428a175baeSEmil Constantinescu   if(na_glb>0.){*norma = PetscSqrtReal(gsuma / na_glb);}
63438a175baeSEmil Constantinescu   *normr = 0.;
63448a175baeSEmil Constantinescu   if(nr_glb>0.){*normr = PetscSqrtReal(gsumr / nr_glb);}
63458a175baeSEmil Constantinescu 
63468a175baeSEmil Constantinescu   if (PetscIsInfOrNanScalar(*norm)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norm");
63478a175baeSEmil Constantinescu   if (PetscIsInfOrNanScalar(*norma)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norma");
63488a175baeSEmil Constantinescu   if (PetscIsInfOrNanScalar(*normr)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in normr");
63498a175baeSEmil Constantinescu   PetscFunctionReturn(0);
63508a175baeSEmil Constantinescu }
63518a175baeSEmil Constantinescu 
63528a175baeSEmil Constantinescu /*@
63538a175baeSEmil Constantinescu    TSErrorWeightedENormInfinity - compute a weighted infinity error norm based on supplied absolute and relative tolerances
63548a175baeSEmil Constantinescu    Collective on TS
63558a175baeSEmil Constantinescu 
63568a175baeSEmil Constantinescu    Input Arguments:
63578a175baeSEmil Constantinescu +  ts - time stepping context
63588a175baeSEmil Constantinescu .  E - error vector
63598a175baeSEmil Constantinescu .  U - state vector, usually ts->vec_sol
63608a175baeSEmil Constantinescu -  Y - state vector, previous time step
63618a175baeSEmil Constantinescu 
63628a175baeSEmil Constantinescu    Output Arguments:
63638a175baeSEmil Constantinescu .  norm - weighted norm, a value of 1.0 means that the error matches the tolerances
63648a175baeSEmil Constantinescu .  norma - weighted norm based on the absolute tolerance, a value of 1.0 means that the error matches the tolerances
63658a175baeSEmil Constantinescu .  normr - weighted norm based on the relative tolerance, a value of 1.0 means that the error matches the tolerances
63668a175baeSEmil Constantinescu 
63678a175baeSEmil Constantinescu    Level: developer
63688a175baeSEmil Constantinescu 
63698a175baeSEmil Constantinescu .seealso: TSErrorWeightedENorm(), TSErrorWeightedENorm2()
63708a175baeSEmil Constantinescu @*/
63718a175baeSEmil Constantinescu PetscErrorCode TSErrorWeightedENormInfinity(TS ts,Vec E,Vec U,Vec Y,PetscReal *norm,PetscReal *norma,PetscReal *normr)
63728a175baeSEmil Constantinescu {
63738a175baeSEmil Constantinescu   PetscErrorCode    ierr;
63748a175baeSEmil Constantinescu   PetscInt          i,n,N,rstart;
63758a175baeSEmil Constantinescu   const PetscScalar *e,*u,*y;
63768a175baeSEmil Constantinescu   PetscReal         err,max,gmax,maxa,gmaxa,maxr,gmaxr;
63778a175baeSEmil Constantinescu   PetscReal         tol,tola,tolr;
63788a175baeSEmil Constantinescu   PetscReal         err_loc[3],err_glb[3];
63798a175baeSEmil Constantinescu 
63808a175baeSEmil Constantinescu   PetscFunctionBegin;
63818a175baeSEmil Constantinescu   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
63828a175baeSEmil Constantinescu   PetscValidHeaderSpecific(E,VEC_CLASSID,2);
63838a175baeSEmil Constantinescu   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
63848a175baeSEmil Constantinescu   PetscValidHeaderSpecific(Y,VEC_CLASSID,4);
63858a175baeSEmil Constantinescu   PetscValidType(E,2);
63868a175baeSEmil Constantinescu   PetscValidType(U,3);
63878a175baeSEmil Constantinescu   PetscValidType(Y,4);
63888a175baeSEmil Constantinescu   PetscCheckSameComm(E,2,U,3);
63898a175baeSEmil Constantinescu   PetscCheckSameComm(U,2,Y,3);
63908a175baeSEmil Constantinescu   PetscValidPointer(norm,5);
63918a175baeSEmil Constantinescu   PetscValidPointer(norma,6);
63928a175baeSEmil Constantinescu   PetscValidPointer(normr,7);
63938a175baeSEmil Constantinescu 
63948a175baeSEmil Constantinescu   ierr = VecGetSize(E,&N);CHKERRQ(ierr);
63958a175baeSEmil Constantinescu   ierr = VecGetLocalSize(E,&n);CHKERRQ(ierr);
63968a175baeSEmil Constantinescu   ierr = VecGetOwnershipRange(E,&rstart,NULL);CHKERRQ(ierr);
63978a175baeSEmil Constantinescu   ierr = VecGetArrayRead(E,&e);CHKERRQ(ierr);
63988a175baeSEmil Constantinescu   ierr = VecGetArrayRead(U,&u);CHKERRQ(ierr);
63998a175baeSEmil Constantinescu   ierr = VecGetArrayRead(Y,&y);CHKERRQ(ierr);
64008a175baeSEmil Constantinescu 
64018a175baeSEmil Constantinescu   max=0.;
64028a175baeSEmil Constantinescu   maxa=0.;
64038a175baeSEmil Constantinescu   maxr=0.;
64048a175baeSEmil Constantinescu 
64058a175baeSEmil Constantinescu   if (ts->vatol && ts->vrtol) {     /* vector atol, vector rtol */
64068a175baeSEmil Constantinescu     const PetscScalar *atol,*rtol;
64078a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
64088a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
64098a175baeSEmil Constantinescu 
64108a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
64118a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
64128a175baeSEmil Constantinescu       tola = PetscRealPart(atol[i]);
64138a175baeSEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
64148a175baeSEmil Constantinescu       tol  = tola+tolr;
64158a175baeSEmil Constantinescu       if(tola>0.){
64168a175baeSEmil Constantinescu         maxa = PetscMax(maxa,err / tola);
64178a175baeSEmil Constantinescu       }
64188a175baeSEmil Constantinescu       if(tolr>0.){
64198a175baeSEmil Constantinescu         maxr = PetscMax(maxr,err / tolr);
64208a175baeSEmil Constantinescu       }
64218a175baeSEmil Constantinescu       if(tol>0.){
64228a175baeSEmil Constantinescu         max = PetscMax(max,err / tol);
64238a175baeSEmil Constantinescu       }
64248a175baeSEmil Constantinescu     }
64258a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
64268a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
64278a175baeSEmil Constantinescu   } else if (ts->vatol) {       /* vector atol, scalar rtol */
64288a175baeSEmil Constantinescu     const PetscScalar *atol;
64298a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
64308a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
64318a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
64328a175baeSEmil Constantinescu       tola = PetscRealPart(atol[i]);
64338a175baeSEmil Constantinescu       tolr = ts->rtol  * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
64348a175baeSEmil Constantinescu       tol  = tola+tolr;
64358a175baeSEmil Constantinescu       if(tola>0.){
64368a175baeSEmil Constantinescu         maxa = PetscMax(maxa,err / tola);
64378a175baeSEmil Constantinescu       }
64388a175baeSEmil Constantinescu       if(tolr>0.){
64398a175baeSEmil Constantinescu         maxr = PetscMax(maxr,err / tolr);
64408a175baeSEmil Constantinescu       }
64418a175baeSEmil Constantinescu       if(tol>0.){
64428a175baeSEmil Constantinescu         max = PetscMax(max,err / tol);
64438a175baeSEmil Constantinescu       }
64448a175baeSEmil Constantinescu     }
64458a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
64468a175baeSEmil Constantinescu   } else if (ts->vrtol) {       /* scalar atol, vector rtol */
64478a175baeSEmil Constantinescu     const PetscScalar *rtol;
64488a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
64498a175baeSEmil Constantinescu 
64508a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
64518a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
64528a175baeSEmil Constantinescu       tola = ts->atol;
64538a175baeSEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
64548a175baeSEmil Constantinescu       tol  = tola+tolr;
64558a175baeSEmil Constantinescu       if(tola>0.){
64568a175baeSEmil Constantinescu         maxa = PetscMax(maxa,err / tola);
64578a175baeSEmil Constantinescu       }
64588a175baeSEmil Constantinescu       if(tolr>0.){
64598a175baeSEmil Constantinescu         maxr = PetscMax(maxr,err / tolr);
64608a175baeSEmil Constantinescu       }
64618a175baeSEmil Constantinescu       if(tol>0.){
64628a175baeSEmil Constantinescu         max = PetscMax(max,err / tol);
64638a175baeSEmil Constantinescu       }
64648a175baeSEmil Constantinescu     }
64658a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
64668a175baeSEmil Constantinescu   } else {                      /* scalar atol, scalar rtol */
64678a175baeSEmil Constantinescu 
64688a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
64698a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
64708a175baeSEmil Constantinescu       tola = ts->atol;
64718a175baeSEmil Constantinescu       tolr = ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
64728a175baeSEmil Constantinescu       tol  = tola+tolr;
64738a175baeSEmil Constantinescu       if(tola>0.){
64748a175baeSEmil Constantinescu         maxa = PetscMax(maxa,err / tola);
64758a175baeSEmil Constantinescu       }
64768a175baeSEmil Constantinescu       if(tolr>0.){
64778a175baeSEmil Constantinescu         maxr = PetscMax(maxr,err / tolr);
64788a175baeSEmil Constantinescu       }
64798a175baeSEmil Constantinescu       if(tol>0.){
64808a175baeSEmil Constantinescu         max = PetscMax(max,err / tol);
64818a175baeSEmil Constantinescu       }
64828a175baeSEmil Constantinescu     }
64838a175baeSEmil Constantinescu   }
64848a175baeSEmil Constantinescu   ierr = VecRestoreArrayRead(E,&e);CHKERRQ(ierr);
64858a175baeSEmil Constantinescu   ierr = VecRestoreArrayRead(U,&u);CHKERRQ(ierr);
64868a175baeSEmil Constantinescu   ierr = VecRestoreArrayRead(Y,&y);CHKERRQ(ierr);
64878a175baeSEmil Constantinescu   err_loc[0] = max;
64888a175baeSEmil Constantinescu   err_loc[1] = maxa;
64898a175baeSEmil Constantinescu   err_loc[2] = maxr;
6490a88a9d1dSSatish Balay   ierr  = MPIU_Allreduce(err_loc,err_glb,3,MPIU_REAL,MPIU_MAX,PetscObjectComm((PetscObject)ts));CHKERRQ(ierr);
64918a175baeSEmil Constantinescu   gmax   = err_glb[0];
64928a175baeSEmil Constantinescu   gmaxa  = err_glb[1];
64938a175baeSEmil Constantinescu   gmaxr  = err_glb[2];
64948a175baeSEmil Constantinescu 
64958a175baeSEmil Constantinescu   *norm = gmax;
64968a175baeSEmil Constantinescu   *norma = gmaxa;
64978a175baeSEmil Constantinescu   *normr = gmaxr;
64988a175baeSEmil Constantinescu   if (PetscIsInfOrNanScalar(*norm)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norm");
64998a175baeSEmil Constantinescu     if (PetscIsInfOrNanScalar(*norma)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norma");
65008a175baeSEmil Constantinescu     if (PetscIsInfOrNanScalar(*normr)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in normr");
65018a175baeSEmil Constantinescu   PetscFunctionReturn(0);
65028a175baeSEmil Constantinescu }
65038a175baeSEmil Constantinescu 
65048a175baeSEmil Constantinescu /*@
65058a175baeSEmil Constantinescu    TSErrorWeightedENorm - compute a weighted error norm based on supplied absolute and relative tolerances
65068a175baeSEmil Constantinescu 
65078a175baeSEmil Constantinescu    Collective on TS
65088a175baeSEmil Constantinescu 
65098a175baeSEmil Constantinescu    Input Arguments:
65108a175baeSEmil Constantinescu +  ts - time stepping context
65118a175baeSEmil Constantinescu .  E - error vector
65128a175baeSEmil Constantinescu .  U - state vector, usually ts->vec_sol
65138a175baeSEmil Constantinescu .  Y - state vector, previous time step
65148a175baeSEmil Constantinescu -  wnormtype - norm type, either NORM_2 or NORM_INFINITY
65158a175baeSEmil Constantinescu 
65168a175baeSEmil Constantinescu    Output Arguments:
65178a175baeSEmil Constantinescu .  norm  - weighted norm, a value of 1.0 achieves a balance between absolute and relative tolerances
65188a175baeSEmil Constantinescu .  norma - weighted norm, a value of 1.0 means that the error meets the absolute tolerance set by the user
65198a175baeSEmil Constantinescu .  normr - weighted norm, a value of 1.0 means that the error meets the relative tolerance set by the user
65208a175baeSEmil Constantinescu 
65218a175baeSEmil Constantinescu    Options Database Keys:
65228a175baeSEmil Constantinescu .  -ts_adapt_wnormtype <wnormtype> - 2, INFINITY
65238a175baeSEmil Constantinescu 
65248a175baeSEmil Constantinescu    Level: developer
65258a175baeSEmil Constantinescu 
65268a175baeSEmil Constantinescu .seealso: TSErrorWeightedENormInfinity(), TSErrorWeightedENorm2(), TSErrorWeightedNormInfinity(), TSErrorWeightedNorm2()
65278a175baeSEmil Constantinescu @*/
65288a175baeSEmil Constantinescu PetscErrorCode TSErrorWeightedENorm(TS ts,Vec E,Vec U,Vec Y,NormType wnormtype,PetscReal *norm,PetscReal *norma,PetscReal *normr)
65298a175baeSEmil Constantinescu {
65308a175baeSEmil Constantinescu   PetscErrorCode ierr;
65318a175baeSEmil Constantinescu 
65328a175baeSEmil Constantinescu   PetscFunctionBegin;
65338a175baeSEmil Constantinescu   if (wnormtype == NORM_2) {
65348a175baeSEmil Constantinescu     ierr = TSErrorWeightedENorm2(ts,E,U,Y,norm,norma,normr);CHKERRQ(ierr);
65358a175baeSEmil Constantinescu   } else if(wnormtype == NORM_INFINITY) {
65368a175baeSEmil Constantinescu     ierr = TSErrorWeightedENormInfinity(ts,E,U,Y,norm,norma,normr);CHKERRQ(ierr);
65378a175baeSEmil Constantinescu   } else SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"No support for norm type %s",NormTypes[wnormtype]);
65388a175baeSEmil Constantinescu   PetscFunctionReturn(0);
65398a175baeSEmil Constantinescu }
65408a175baeSEmil Constantinescu 
65418a175baeSEmil Constantinescu 
65428d59e960SJed Brown /*@
65438d59e960SJed Brown    TSSetCFLTimeLocal - Set the local CFL constraint relative to forward Euler
65448d59e960SJed Brown 
65458d59e960SJed Brown    Logically Collective on TS
65468d59e960SJed Brown 
65478d59e960SJed Brown    Input Arguments:
65488d59e960SJed Brown +  ts - time stepping context
65498d59e960SJed Brown -  cfltime - maximum stable time step if using forward Euler (value can be different on each process)
65508d59e960SJed Brown 
65518d59e960SJed Brown    Note:
65528d59e960SJed Brown    After calling this function, the global CFL time can be obtained by calling TSGetCFLTime()
65538d59e960SJed Brown 
65548d59e960SJed Brown    Level: intermediate
65558d59e960SJed Brown 
65568d59e960SJed Brown .seealso: TSGetCFLTime(), TSADAPTCFL
65578d59e960SJed Brown @*/
65588d59e960SJed Brown PetscErrorCode TSSetCFLTimeLocal(TS ts,PetscReal cfltime)
65598d59e960SJed Brown {
65608d59e960SJed Brown   PetscFunctionBegin;
65618d59e960SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
65628d59e960SJed Brown   ts->cfltime_local = cfltime;
65638d59e960SJed Brown   ts->cfltime       = -1.;
65648d59e960SJed Brown   PetscFunctionReturn(0);
65658d59e960SJed Brown }
65668d59e960SJed Brown 
65678d59e960SJed Brown /*@
65688d59e960SJed Brown    TSGetCFLTime - Get the maximum stable time step according to CFL criteria applied to forward Euler
65698d59e960SJed Brown 
65708d59e960SJed Brown    Collective on TS
65718d59e960SJed Brown 
65728d59e960SJed Brown    Input Arguments:
65738d59e960SJed Brown .  ts - time stepping context
65748d59e960SJed Brown 
65758d59e960SJed Brown    Output Arguments:
65768d59e960SJed Brown .  cfltime - maximum stable time step for forward Euler
65778d59e960SJed Brown 
65788d59e960SJed Brown    Level: advanced
65798d59e960SJed Brown 
65808d59e960SJed Brown .seealso: TSSetCFLTimeLocal()
65818d59e960SJed Brown @*/
65828d59e960SJed Brown PetscErrorCode TSGetCFLTime(TS ts,PetscReal *cfltime)
65838d59e960SJed Brown {
65848d59e960SJed Brown   PetscErrorCode ierr;
65858d59e960SJed Brown 
65868d59e960SJed Brown   PetscFunctionBegin;
65878d59e960SJed Brown   if (ts->cfltime < 0) {
6588b2566f29SBarry Smith     ierr = MPIU_Allreduce(&ts->cfltime_local,&ts->cfltime,1,MPIU_REAL,MPIU_MIN,PetscObjectComm((PetscObject)ts));CHKERRQ(ierr);
65898d59e960SJed Brown   }
65908d59e960SJed Brown   *cfltime = ts->cfltime;
65918d59e960SJed Brown   PetscFunctionReturn(0);
65928d59e960SJed Brown }
65938d59e960SJed Brown 
6594d6ebe24aSShri Abhyankar /*@
6595d6ebe24aSShri Abhyankar    TSVISetVariableBounds - Sets the lower and upper bounds for the solution vector. xl <= x <= xu
6596d6ebe24aSShri Abhyankar 
6597d6ebe24aSShri Abhyankar    Input Parameters:
6598d6ebe24aSShri Abhyankar .  ts   - the TS context.
6599d6ebe24aSShri Abhyankar .  xl   - lower bound.
6600d6ebe24aSShri Abhyankar .  xu   - upper bound.
6601d6ebe24aSShri Abhyankar 
6602d6ebe24aSShri Abhyankar    Notes:
6603d6ebe24aSShri Abhyankar    If this routine is not called then the lower and upper bounds are set to
6604e270355aSBarry Smith    PETSC_NINFINITY and PETSC_INFINITY respectively during SNESSetUp().
6605d6ebe24aSShri Abhyankar 
66062bd2b0e6SSatish Balay    Level: advanced
66072bd2b0e6SSatish Balay 
6608d6ebe24aSShri Abhyankar @*/
6609d6ebe24aSShri Abhyankar PetscErrorCode TSVISetVariableBounds(TS ts, Vec xl, Vec xu)
6610d6ebe24aSShri Abhyankar {
6611d6ebe24aSShri Abhyankar   PetscErrorCode ierr;
6612d6ebe24aSShri Abhyankar   SNES           snes;
6613d6ebe24aSShri Abhyankar 
6614d6ebe24aSShri Abhyankar   PetscFunctionBegin;
6615d6ebe24aSShri Abhyankar   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
6616d6ebe24aSShri Abhyankar   ierr = SNESVISetVariableBounds(snes,xl,xu);CHKERRQ(ierr);
6617d6ebe24aSShri Abhyankar   PetscFunctionReturn(0);
6618d6ebe24aSShri Abhyankar }
6619d6ebe24aSShri Abhyankar 
6620325fc9f4SBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE)
6621c6db04a5SJed Brown #include <mex.h>
6622325fc9f4SBarry Smith 
6623325fc9f4SBarry Smith typedef struct {char *funcname; mxArray *ctx;} TSMatlabContext;
6624325fc9f4SBarry Smith 
6625325fc9f4SBarry Smith /*
6626325fc9f4SBarry Smith    TSComputeFunction_Matlab - Calls the function that has been set with
6627325fc9f4SBarry Smith                          TSSetFunctionMatlab().
6628325fc9f4SBarry Smith 
6629325fc9f4SBarry Smith    Collective on TS
6630325fc9f4SBarry Smith 
6631325fc9f4SBarry Smith    Input Parameters:
6632325fc9f4SBarry Smith +  snes - the TS context
66330910c330SBarry Smith -  u - input vector
6634325fc9f4SBarry Smith 
6635325fc9f4SBarry Smith    Output Parameter:
6636325fc9f4SBarry Smith .  y - function vector, as set by TSSetFunction()
6637325fc9f4SBarry Smith 
6638325fc9f4SBarry Smith    Notes:
6639325fc9f4SBarry Smith    TSComputeFunction() is typically used within nonlinear solvers
6640325fc9f4SBarry Smith    implementations, so most users would not generally call this routine
6641325fc9f4SBarry Smith    themselves.
6642325fc9f4SBarry Smith 
6643325fc9f4SBarry Smith    Level: developer
6644325fc9f4SBarry Smith 
6645325fc9f4SBarry Smith .keywords: TS, nonlinear, compute, function
6646325fc9f4SBarry Smith 
6647325fc9f4SBarry Smith .seealso: TSSetFunction(), TSGetFunction()
6648325fc9f4SBarry Smith */
66490910c330SBarry Smith PetscErrorCode  TSComputeFunction_Matlab(TS snes,PetscReal time,Vec u,Vec udot,Vec y, void *ctx)
6650325fc9f4SBarry Smith {
6651325fc9f4SBarry Smith   PetscErrorCode  ierr;
6652325fc9f4SBarry Smith   TSMatlabContext *sctx = (TSMatlabContext*)ctx;
6653325fc9f4SBarry Smith   int             nlhs  = 1,nrhs = 7;
6654325fc9f4SBarry Smith   mxArray         *plhs[1],*prhs[7];
6655325fc9f4SBarry Smith   long long int   lx = 0,lxdot = 0,ly = 0,ls = 0;
6656325fc9f4SBarry Smith 
6657325fc9f4SBarry Smith   PetscFunctionBegin;
6658325fc9f4SBarry Smith   PetscValidHeaderSpecific(snes,TS_CLASSID,1);
66590910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,3);
66600910c330SBarry Smith   PetscValidHeaderSpecific(udot,VEC_CLASSID,4);
6661325fc9f4SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,5);
66620910c330SBarry Smith   PetscCheckSameComm(snes,1,u,3);
6663325fc9f4SBarry Smith   PetscCheckSameComm(snes,1,y,5);
6664325fc9f4SBarry Smith 
6665325fc9f4SBarry Smith   ierr = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr);
66660910c330SBarry Smith   ierr = PetscMemcpy(&lx,&u,sizeof(u));CHKERRQ(ierr);
66670910c330SBarry Smith   ierr = PetscMemcpy(&lxdot,&udot,sizeof(udot));CHKERRQ(ierr);
66680910c330SBarry Smith   ierr = PetscMemcpy(&ly,&y,sizeof(u));CHKERRQ(ierr);
6669bbd56ea5SKarl Rupp 
6670325fc9f4SBarry Smith   prhs[0] =  mxCreateDoubleScalar((double)ls);
6671325fc9f4SBarry Smith   prhs[1] =  mxCreateDoubleScalar(time);
6672325fc9f4SBarry Smith   prhs[2] =  mxCreateDoubleScalar((double)lx);
6673325fc9f4SBarry Smith   prhs[3] =  mxCreateDoubleScalar((double)lxdot);
6674325fc9f4SBarry Smith   prhs[4] =  mxCreateDoubleScalar((double)ly);
6675325fc9f4SBarry Smith   prhs[5] =  mxCreateString(sctx->funcname);
6676325fc9f4SBarry Smith   prhs[6] =  sctx->ctx;
6677325fc9f4SBarry Smith   ierr    =  mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscTSComputeFunctionInternal");CHKERRQ(ierr);
6678325fc9f4SBarry Smith   ierr    =  mxGetScalar(plhs[0]);CHKERRQ(ierr);
6679325fc9f4SBarry Smith   mxDestroyArray(prhs[0]);
6680325fc9f4SBarry Smith   mxDestroyArray(prhs[1]);
6681325fc9f4SBarry Smith   mxDestroyArray(prhs[2]);
6682325fc9f4SBarry Smith   mxDestroyArray(prhs[3]);
6683325fc9f4SBarry Smith   mxDestroyArray(prhs[4]);
6684325fc9f4SBarry Smith   mxDestroyArray(prhs[5]);
6685325fc9f4SBarry Smith   mxDestroyArray(plhs[0]);
6686325fc9f4SBarry Smith   PetscFunctionReturn(0);
6687325fc9f4SBarry Smith }
6688325fc9f4SBarry Smith 
6689325fc9f4SBarry Smith 
6690325fc9f4SBarry Smith /*
6691325fc9f4SBarry Smith    TSSetFunctionMatlab - Sets the function evaluation routine and function
6692325fc9f4SBarry Smith    vector for use by the TS routines in solving ODEs
6693e3c5b3baSBarry Smith    equations from MATLAB. Here the function is a string containing the name of a MATLAB function
6694325fc9f4SBarry Smith 
6695325fc9f4SBarry Smith    Logically Collective on TS
6696325fc9f4SBarry Smith 
6697325fc9f4SBarry Smith    Input Parameters:
6698325fc9f4SBarry Smith +  ts - the TS context
6699325fc9f4SBarry Smith -  func - function evaluation routine
6700325fc9f4SBarry Smith 
6701325fc9f4SBarry Smith    Calling sequence of func:
67020910c330SBarry Smith $    func (TS ts,PetscReal time,Vec u,Vec udot,Vec f,void *ctx);
6703325fc9f4SBarry Smith 
6704325fc9f4SBarry Smith    Level: beginner
6705325fc9f4SBarry Smith 
6706325fc9f4SBarry Smith .keywords: TS, nonlinear, set, function
6707325fc9f4SBarry Smith 
6708325fc9f4SBarry Smith .seealso: TSGetFunction(), TSComputeFunction(), TSSetJacobian(), TSSetFunction()
6709325fc9f4SBarry Smith */
6710cdcf91faSSean Farley PetscErrorCode  TSSetFunctionMatlab(TS ts,const char *func,mxArray *ctx)
6711325fc9f4SBarry Smith {
6712325fc9f4SBarry Smith   PetscErrorCode  ierr;
6713325fc9f4SBarry Smith   TSMatlabContext *sctx;
6714325fc9f4SBarry Smith 
6715325fc9f4SBarry Smith   PetscFunctionBegin;
6716325fc9f4SBarry Smith   /* currently sctx is memory bleed */
671795dccacaSBarry Smith   ierr = PetscNew(&sctx);CHKERRQ(ierr);
6718325fc9f4SBarry Smith   ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr);
6719325fc9f4SBarry Smith   /*
6720325fc9f4SBarry Smith      This should work, but it doesn't
6721325fc9f4SBarry Smith   sctx->ctx = ctx;
6722325fc9f4SBarry Smith   mexMakeArrayPersistent(sctx->ctx);
6723325fc9f4SBarry Smith   */
6724325fc9f4SBarry Smith   sctx->ctx = mxDuplicateArray(ctx);
6725bbd56ea5SKarl Rupp 
67260298fd71SBarry Smith   ierr = TSSetIFunction(ts,NULL,TSComputeFunction_Matlab,sctx);CHKERRQ(ierr);
6727325fc9f4SBarry Smith   PetscFunctionReturn(0);
6728325fc9f4SBarry Smith }
6729325fc9f4SBarry Smith 
6730325fc9f4SBarry Smith /*
6731325fc9f4SBarry Smith    TSComputeJacobian_Matlab - Calls the function that has been set with
6732325fc9f4SBarry Smith                          TSSetJacobianMatlab().
6733325fc9f4SBarry Smith 
6734325fc9f4SBarry Smith    Collective on TS
6735325fc9f4SBarry Smith 
6736325fc9f4SBarry Smith    Input Parameters:
6737cdcf91faSSean Farley +  ts - the TS context
67380910c330SBarry Smith .  u - input vector
6739325fc9f4SBarry Smith .  A, B - the matrices
6740325fc9f4SBarry Smith -  ctx - user context
6741325fc9f4SBarry Smith 
6742325fc9f4SBarry Smith    Level: developer
6743325fc9f4SBarry Smith 
6744325fc9f4SBarry Smith .keywords: TS, nonlinear, compute, function
6745325fc9f4SBarry Smith 
6746325fc9f4SBarry Smith .seealso: TSSetFunction(), TSGetFunction()
6747325fc9f4SBarry Smith @*/
6748f3229a78SSatish Balay PetscErrorCode  TSComputeJacobian_Matlab(TS ts,PetscReal time,Vec u,Vec udot,PetscReal shift,Mat A,Mat B,void *ctx)
6749325fc9f4SBarry Smith {
6750325fc9f4SBarry Smith   PetscErrorCode  ierr;
6751325fc9f4SBarry Smith   TSMatlabContext *sctx = (TSMatlabContext*)ctx;
6752325fc9f4SBarry Smith   int             nlhs  = 2,nrhs = 9;
6753325fc9f4SBarry Smith   mxArray         *plhs[2],*prhs[9];
6754325fc9f4SBarry Smith   long long int   lx = 0,lxdot = 0,lA = 0,ls = 0, lB = 0;
6755325fc9f4SBarry Smith 
6756325fc9f4SBarry Smith   PetscFunctionBegin;
6757cdcf91faSSean Farley   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
67580910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,3);
6759325fc9f4SBarry Smith 
67600910c330SBarry Smith   /* call Matlab function in ctx with arguments u and y */
6761325fc9f4SBarry Smith 
6762cdcf91faSSean Farley   ierr = PetscMemcpy(&ls,&ts,sizeof(ts));CHKERRQ(ierr);
67630910c330SBarry Smith   ierr = PetscMemcpy(&lx,&u,sizeof(u));CHKERRQ(ierr);
67640910c330SBarry Smith   ierr = PetscMemcpy(&lxdot,&udot,sizeof(u));CHKERRQ(ierr);
67650910c330SBarry Smith   ierr = PetscMemcpy(&lA,A,sizeof(u));CHKERRQ(ierr);
67660910c330SBarry Smith   ierr = PetscMemcpy(&lB,B,sizeof(u));CHKERRQ(ierr);
6767bbd56ea5SKarl Rupp 
6768325fc9f4SBarry Smith   prhs[0] =  mxCreateDoubleScalar((double)ls);
6769325fc9f4SBarry Smith   prhs[1] =  mxCreateDoubleScalar((double)time);
6770325fc9f4SBarry Smith   prhs[2] =  mxCreateDoubleScalar((double)lx);
6771325fc9f4SBarry Smith   prhs[3] =  mxCreateDoubleScalar((double)lxdot);
6772325fc9f4SBarry Smith   prhs[4] =  mxCreateDoubleScalar((double)shift);
6773325fc9f4SBarry Smith   prhs[5] =  mxCreateDoubleScalar((double)lA);
6774325fc9f4SBarry Smith   prhs[6] =  mxCreateDoubleScalar((double)lB);
6775325fc9f4SBarry Smith   prhs[7] =  mxCreateString(sctx->funcname);
6776325fc9f4SBarry Smith   prhs[8] =  sctx->ctx;
6777325fc9f4SBarry Smith   ierr    =  mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscTSComputeJacobianInternal");CHKERRQ(ierr);
6778325fc9f4SBarry Smith   ierr    =  mxGetScalar(plhs[0]);CHKERRQ(ierr);
6779325fc9f4SBarry Smith   mxDestroyArray(prhs[0]);
6780325fc9f4SBarry Smith   mxDestroyArray(prhs[1]);
6781325fc9f4SBarry Smith   mxDestroyArray(prhs[2]);
6782325fc9f4SBarry Smith   mxDestroyArray(prhs[3]);
6783325fc9f4SBarry Smith   mxDestroyArray(prhs[4]);
6784325fc9f4SBarry Smith   mxDestroyArray(prhs[5]);
6785325fc9f4SBarry Smith   mxDestroyArray(prhs[6]);
6786325fc9f4SBarry Smith   mxDestroyArray(prhs[7]);
6787325fc9f4SBarry Smith   mxDestroyArray(plhs[0]);
6788325fc9f4SBarry Smith   mxDestroyArray(plhs[1]);
6789325fc9f4SBarry Smith   PetscFunctionReturn(0);
6790325fc9f4SBarry Smith }
6791325fc9f4SBarry Smith 
6792325fc9f4SBarry Smith 
6793325fc9f4SBarry Smith /*
6794325fc9f4SBarry Smith    TSSetJacobianMatlab - Sets the Jacobian function evaluation routine and two empty Jacobian matrices
6795e3c5b3baSBarry 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
6796325fc9f4SBarry Smith 
6797325fc9f4SBarry Smith    Logically Collective on TS
6798325fc9f4SBarry Smith 
6799325fc9f4SBarry Smith    Input Parameters:
6800cdcf91faSSean Farley +  ts - the TS context
6801325fc9f4SBarry Smith .  A,B - Jacobian matrices
6802325fc9f4SBarry Smith .  func - function evaluation routine
6803325fc9f4SBarry Smith -  ctx - user context
6804325fc9f4SBarry Smith 
6805325fc9f4SBarry Smith    Calling sequence of func:
68060910c330SBarry Smith $    flag = func (TS ts,PetscReal time,Vec u,Vec udot,Mat A,Mat B,void *ctx);
6807325fc9f4SBarry Smith 
6808325fc9f4SBarry Smith 
6809325fc9f4SBarry Smith    Level: developer
6810325fc9f4SBarry Smith 
6811325fc9f4SBarry Smith .keywords: TS, nonlinear, set, function
6812325fc9f4SBarry Smith 
6813325fc9f4SBarry Smith .seealso: TSGetFunction(), TSComputeFunction(), TSSetJacobian(), TSSetFunction()
6814325fc9f4SBarry Smith */
6815cdcf91faSSean Farley PetscErrorCode  TSSetJacobianMatlab(TS ts,Mat A,Mat B,const char *func,mxArray *ctx)
6816325fc9f4SBarry Smith {
6817325fc9f4SBarry Smith   PetscErrorCode  ierr;
6818325fc9f4SBarry Smith   TSMatlabContext *sctx;
6819325fc9f4SBarry Smith 
6820325fc9f4SBarry Smith   PetscFunctionBegin;
6821325fc9f4SBarry Smith   /* currently sctx is memory bleed */
682295dccacaSBarry Smith   ierr = PetscNew(&sctx);CHKERRQ(ierr);
6823325fc9f4SBarry Smith   ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr);
6824325fc9f4SBarry Smith   /*
6825325fc9f4SBarry Smith      This should work, but it doesn't
6826325fc9f4SBarry Smith   sctx->ctx = ctx;
6827325fc9f4SBarry Smith   mexMakeArrayPersistent(sctx->ctx);
6828325fc9f4SBarry Smith   */
6829325fc9f4SBarry Smith   sctx->ctx = mxDuplicateArray(ctx);
6830bbd56ea5SKarl Rupp 
6831cdcf91faSSean Farley   ierr = TSSetIJacobian(ts,A,B,TSComputeJacobian_Matlab,sctx);CHKERRQ(ierr);
6832325fc9f4SBarry Smith   PetscFunctionReturn(0);
6833325fc9f4SBarry Smith }
6834325fc9f4SBarry Smith 
6835b5b1a830SBarry Smith /*
6836b5b1a830SBarry Smith    TSMonitor_Matlab - Calls the function that has been set with TSMonitorSetMatlab().
6837b5b1a830SBarry Smith 
6838b5b1a830SBarry Smith    Collective on TS
6839b5b1a830SBarry Smith 
6840b5b1a830SBarry Smith .seealso: TSSetFunction(), TSGetFunction()
6841b5b1a830SBarry Smith @*/
68420910c330SBarry Smith PetscErrorCode  TSMonitor_Matlab(TS ts,PetscInt it, PetscReal time,Vec u, void *ctx)
6843b5b1a830SBarry Smith {
6844b5b1a830SBarry Smith   PetscErrorCode  ierr;
6845b5b1a830SBarry Smith   TSMatlabContext *sctx = (TSMatlabContext*)ctx;
6846a530c242SBarry Smith   int             nlhs  = 1,nrhs = 6;
6847b5b1a830SBarry Smith   mxArray         *plhs[1],*prhs[6];
6848b5b1a830SBarry Smith   long long int   lx = 0,ls = 0;
6849b5b1a830SBarry Smith 
6850b5b1a830SBarry Smith   PetscFunctionBegin;
6851cdcf91faSSean Farley   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
68520910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,4);
6853b5b1a830SBarry Smith 
6854cdcf91faSSean Farley   ierr = PetscMemcpy(&ls,&ts,sizeof(ts));CHKERRQ(ierr);
68550910c330SBarry Smith   ierr = PetscMemcpy(&lx,&u,sizeof(u));CHKERRQ(ierr);
6856bbd56ea5SKarl Rupp 
6857b5b1a830SBarry Smith   prhs[0] =  mxCreateDoubleScalar((double)ls);
6858b5b1a830SBarry Smith   prhs[1] =  mxCreateDoubleScalar((double)it);
6859b5b1a830SBarry Smith   prhs[2] =  mxCreateDoubleScalar((double)time);
6860b5b1a830SBarry Smith   prhs[3] =  mxCreateDoubleScalar((double)lx);
6861b5b1a830SBarry Smith   prhs[4] =  mxCreateString(sctx->funcname);
6862b5b1a830SBarry Smith   prhs[5] =  sctx->ctx;
6863b5b1a830SBarry Smith   ierr    =  mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscTSMonitorInternal");CHKERRQ(ierr);
6864b5b1a830SBarry Smith   ierr    =  mxGetScalar(plhs[0]);CHKERRQ(ierr);
6865b5b1a830SBarry Smith   mxDestroyArray(prhs[0]);
6866b5b1a830SBarry Smith   mxDestroyArray(prhs[1]);
6867b5b1a830SBarry Smith   mxDestroyArray(prhs[2]);
6868b5b1a830SBarry Smith   mxDestroyArray(prhs[3]);
6869b5b1a830SBarry Smith   mxDestroyArray(prhs[4]);
6870b5b1a830SBarry Smith   mxDestroyArray(plhs[0]);
6871b5b1a830SBarry Smith   PetscFunctionReturn(0);
6872b5b1a830SBarry Smith }
6873b5b1a830SBarry Smith 
6874b5b1a830SBarry Smith 
6875b5b1a830SBarry Smith /*
6876b5b1a830SBarry Smith    TSMonitorSetMatlab - Sets the monitor function from Matlab
6877b5b1a830SBarry Smith 
6878b5b1a830SBarry Smith    Level: developer
6879b5b1a830SBarry Smith 
6880b5b1a830SBarry Smith .keywords: TS, nonlinear, set, function
6881b5b1a830SBarry Smith 
6882b5b1a830SBarry Smith .seealso: TSGetFunction(), TSComputeFunction(), TSSetJacobian(), TSSetFunction()
6883b5b1a830SBarry Smith */
6884cdcf91faSSean Farley PetscErrorCode  TSMonitorSetMatlab(TS ts,const char *func,mxArray *ctx)
6885b5b1a830SBarry Smith {
6886b5b1a830SBarry Smith   PetscErrorCode  ierr;
6887b5b1a830SBarry Smith   TSMatlabContext *sctx;
6888b5b1a830SBarry Smith 
6889b5b1a830SBarry Smith   PetscFunctionBegin;
6890b5b1a830SBarry Smith   /* currently sctx is memory bleed */
689195dccacaSBarry Smith   ierr = PetscNew(&sctx);CHKERRQ(ierr);
6892b5b1a830SBarry Smith   ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr);
6893b5b1a830SBarry Smith   /*
6894b5b1a830SBarry Smith      This should work, but it doesn't
6895b5b1a830SBarry Smith   sctx->ctx = ctx;
6896b5b1a830SBarry Smith   mexMakeArrayPersistent(sctx->ctx);
6897b5b1a830SBarry Smith   */
6898b5b1a830SBarry Smith   sctx->ctx = mxDuplicateArray(ctx);
6899bbd56ea5SKarl Rupp 
69000298fd71SBarry Smith   ierr = TSMonitorSet(ts,TSMonitor_Matlab,sctx,NULL);CHKERRQ(ierr);
6901b5b1a830SBarry Smith   PetscFunctionReturn(0);
6902b5b1a830SBarry Smith }
6903325fc9f4SBarry Smith #endif
6904b3603a34SBarry Smith 
6905b3603a34SBarry Smith /*@C
69064f09c107SBarry Smith    TSMonitorLGSolution - Monitors progress of the TS solvers by plotting each component of the solution vector
6907b3603a34SBarry Smith        in a time based line graph
6908b3603a34SBarry Smith 
6909b3603a34SBarry Smith    Collective on TS
6910b3603a34SBarry Smith 
6911b3603a34SBarry Smith    Input Parameters:
6912b3603a34SBarry Smith +  ts - the TS context
6913b3603a34SBarry Smith .  step - current time-step
6914b3603a34SBarry Smith .  ptime - current time
69157db568b7SBarry Smith .  u - current solution
69167db568b7SBarry Smith -  dctx - the TSMonitorLGCtx object that contains all the options for the monitoring, this is created with TSMonitorLGCtxCreate()
6917b3603a34SBarry Smith 
6918b3d3934dSBarry Smith    Options Database:
69199ae14b6eSBarry Smith .   -ts_monitor_lg_solution_variables
6920b3d3934dSBarry Smith 
6921b3603a34SBarry Smith    Level: intermediate
6922b3603a34SBarry Smith 
69236934998bSLisandro Dalcin    Notes: Each process in a parallel run displays its component solutions in a separate window
6924b3603a34SBarry Smith 
6925b3603a34SBarry Smith .keywords: TS,  vector, monitor, view
6926b3603a34SBarry Smith 
69277db568b7SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGCtxCreate(), TSMonitorLGCtxSetVariableNames(), TSMonitorLGCtxGetVariableNames(),
69287db568b7SBarry Smith            TSMonitorLGSetVariableNames(), TSMonitorLGGetVariableNames(), TSMonitorLGSetDisplayVariables(), TSMonitorLGCtxSetDisplayVariables(),
69297db568b7SBarry Smith            TSMonitorLGCtxSetTransform(), TSMonitorLGSetTransform(), TSMonitorLGError(), TSMonitorLGSNESIterations(), TSMonitorLGKSPIterations(),
69307db568b7SBarry Smith            TSMonitorEnvelopeCtxCreate(), TSMonitorEnvelopeGetBounds(), TSMonitorEnvelopeCtxDestroy(), TSMonitorEnvelop()
6931b3603a34SBarry Smith @*/
69327db568b7SBarry Smith PetscErrorCode  TSMonitorLGSolution(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dctx)
6933b3603a34SBarry Smith {
6934b3603a34SBarry Smith   PetscErrorCode    ierr;
69357db568b7SBarry Smith   TSMonitorLGCtx    ctx = (TSMonitorLGCtx)dctx;
6936b3603a34SBarry Smith   const PetscScalar *yy;
693780666b62SBarry Smith   Vec               v;
6938b3603a34SBarry Smith 
6939b3603a34SBarry Smith   PetscFunctionBegin;
694063e21af5SBarry Smith   if (step < 0) PetscFunctionReturn(0); /* -1 indicates interpolated solution */
694158ff32f7SBarry Smith   if (!step) {
6942a9f9c1f6SBarry Smith     PetscDrawAxis axis;
69436934998bSLisandro Dalcin     PetscInt      dim;
6944a9f9c1f6SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
6945a9f9c1f6SBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Solution as function of time","Time","Solution");CHKERRQ(ierr);
6946bab0a581SBarry Smith     if (!ctx->names) {
6947bab0a581SBarry Smith       PetscBool flg;
6948bab0a581SBarry Smith       /* user provides names of variables to plot but no names has been set so assume names are integer values */
6949bab0a581SBarry Smith       ierr = PetscOptionsHasName(((PetscObject)ts)->options,((PetscObject)ts)->prefix,"-ts_monitor_lg_solution_variables",&flg);CHKERRQ(ierr);
6950bab0a581SBarry Smith       if (flg) {
6951bab0a581SBarry Smith         PetscInt i,n;
6952bab0a581SBarry Smith         char     **names;
6953bab0a581SBarry Smith         ierr = VecGetSize(u,&n);CHKERRQ(ierr);
6954bab0a581SBarry Smith         ierr = PetscMalloc1(n+1,&names);CHKERRQ(ierr);
6955bab0a581SBarry Smith         for (i=0; i<n; i++) {
6956bab0a581SBarry Smith           ierr = PetscMalloc1(5,&names[i]);CHKERRQ(ierr);
6957bab0a581SBarry Smith           ierr = PetscSNPrintf(names[i],5,"%D",i);CHKERRQ(ierr);
6958bab0a581SBarry Smith         }
6959bab0a581SBarry Smith         names[n] = NULL;
6960bab0a581SBarry Smith         ctx->names = names;
6961bab0a581SBarry Smith       }
6962bab0a581SBarry Smith     }
6963387f4636SBarry Smith     if (ctx->names && !ctx->displaynames) {
6964387f4636SBarry Smith       char      **displaynames;
6965387f4636SBarry Smith       PetscBool flg;
6966387f4636SBarry Smith       ierr = VecGetLocalSize(u,&dim);CHKERRQ(ierr);
696795dccacaSBarry Smith       ierr = PetscMalloc1(dim+1,&displaynames);CHKERRQ(ierr);
6968387f4636SBarry Smith       ierr = PetscMemzero(displaynames,(dim+1)*sizeof(char*));CHKERRQ(ierr);
6969c5929fdfSBarry Smith       ierr = PetscOptionsGetStringArray(((PetscObject)ts)->options,((PetscObject)ts)->prefix,"-ts_monitor_lg_solution_variables",displaynames,&dim,&flg);CHKERRQ(ierr);
6970387f4636SBarry Smith       if (flg) {
6971a66092f1SBarry Smith         ierr = TSMonitorLGCtxSetDisplayVariables(ctx,(const char *const *)displaynames);CHKERRQ(ierr);
6972387f4636SBarry Smith       }
6973387f4636SBarry Smith       ierr = PetscStrArrayDestroy(&displaynames);CHKERRQ(ierr);
6974387f4636SBarry Smith     }
6975387f4636SBarry Smith     if (ctx->displaynames) {
6976387f4636SBarry Smith       ierr = PetscDrawLGSetDimension(ctx->lg,ctx->ndisplayvariables);CHKERRQ(ierr);
6977387f4636SBarry Smith       ierr = PetscDrawLGSetLegend(ctx->lg,(const char *const *)ctx->displaynames);CHKERRQ(ierr);
6978387f4636SBarry Smith     } else if (ctx->names) {
69790910c330SBarry Smith       ierr = VecGetLocalSize(u,&dim);CHKERRQ(ierr);
69800b039ecaSBarry Smith       ierr = PetscDrawLGSetDimension(ctx->lg,dim);CHKERRQ(ierr);
6981387f4636SBarry Smith       ierr = PetscDrawLGSetLegend(ctx->lg,(const char *const *)ctx->names);CHKERRQ(ierr);
6982b0bc92c6SBarry Smith     } else {
6983b0bc92c6SBarry Smith       ierr = VecGetLocalSize(u,&dim);CHKERRQ(ierr);
6984b0bc92c6SBarry Smith       ierr = PetscDrawLGSetDimension(ctx->lg,dim);CHKERRQ(ierr);
6985387f4636SBarry Smith     }
69860b039ecaSBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
698758ff32f7SBarry Smith   }
69886934998bSLisandro Dalcin 
69896934998bSLisandro Dalcin   if (!ctx->transform) v = u;
69906934998bSLisandro Dalcin   else {ierr = (*ctx->transform)(ctx->transformctx,u,&v);CHKERRQ(ierr);}
699180666b62SBarry Smith   ierr = VecGetArrayRead(v,&yy);CHKERRQ(ierr);
69926934998bSLisandro Dalcin   if (ctx->displaynames) {
69936934998bSLisandro Dalcin     PetscInt i;
69946934998bSLisandro Dalcin     for (i=0; i<ctx->ndisplayvariables; i++)
69956934998bSLisandro Dalcin       ctx->displayvalues[i] = PetscRealPart(yy[ctx->displayvariables[i]]);
69966934998bSLisandro Dalcin     ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,ctx->displayvalues);CHKERRQ(ierr);
69976934998bSLisandro Dalcin   } else {
6998e3efe391SJed Brown #if defined(PETSC_USE_COMPLEX)
6999e3efe391SJed Brown     PetscInt  i,n;
70006934998bSLisandro Dalcin     PetscReal *yreal;
700180666b62SBarry Smith     ierr = VecGetLocalSize(v,&n);CHKERRQ(ierr);
7002785e854fSJed Brown     ierr = PetscMalloc1(n,&yreal);CHKERRQ(ierr);
7003e3efe391SJed Brown     for (i=0; i<n; i++) yreal[i] = PetscRealPart(yy[i]);
70040b039ecaSBarry Smith     ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yreal);CHKERRQ(ierr);
7005e3efe391SJed Brown     ierr = PetscFree(yreal);CHKERRQ(ierr);
7006e3efe391SJed Brown #else
70070b039ecaSBarry Smith     ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yy);CHKERRQ(ierr);
7008e3efe391SJed Brown #endif
700980666b62SBarry Smith   }
70106934998bSLisandro Dalcin   ierr = VecRestoreArrayRead(v,&yy);CHKERRQ(ierr);
70116934998bSLisandro Dalcin   if (ctx->transform) {ierr = VecDestroy(&v);CHKERRQ(ierr);}
70126934998bSLisandro Dalcin 
7013b06615a5SLisandro Dalcin   if (((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason)) {
70140b039ecaSBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
70156934998bSLisandro Dalcin     ierr = PetscDrawLGSave(ctx->lg);CHKERRQ(ierr);
70163923b477SBarry Smith   }
7017b3603a34SBarry Smith   PetscFunctionReturn(0);
7018b3603a34SBarry Smith }
7019b3603a34SBarry Smith 
7020387f4636SBarry Smith 
7021b037adc7SBarry Smith /*@C
702231152f8aSBarry Smith    TSMonitorLGSetVariableNames - Sets the name of each component in the solution vector so that it may be displayed in the plot
7023b037adc7SBarry Smith 
7024b037adc7SBarry Smith    Collective on TS
7025b037adc7SBarry Smith 
7026b037adc7SBarry Smith    Input Parameters:
7027b037adc7SBarry Smith +  ts - the TS context
7028b3d3934dSBarry Smith -  names - the names of the components, final string must be NULL
7029b037adc7SBarry Smith 
7030b037adc7SBarry Smith    Level: intermediate
7031b037adc7SBarry Smith 
70327db568b7SBarry Smith    Notes: If the TS object does not have a TSMonitorLGCtx associated with it then this function is ignored
70337db568b7SBarry Smith 
7034b037adc7SBarry Smith .keywords: TS,  vector, monitor, view
7035b037adc7SBarry Smith 
7036a66092f1SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetDisplayVariables(), TSMonitorLGCtxSetVariableNames()
7037b037adc7SBarry Smith @*/
703831152f8aSBarry Smith PetscErrorCode  TSMonitorLGSetVariableNames(TS ts,const char * const *names)
7039b037adc7SBarry Smith {
7040b037adc7SBarry Smith   PetscErrorCode    ierr;
7041b037adc7SBarry Smith   PetscInt          i;
7042b037adc7SBarry Smith 
7043b037adc7SBarry Smith   PetscFunctionBegin;
7044b037adc7SBarry Smith   for (i=0; i<ts->numbermonitors; i++) {
7045b037adc7SBarry Smith     if (ts->monitor[i] == TSMonitorLGSolution) {
70465537e223SBarry Smith       ierr = TSMonitorLGCtxSetVariableNames((TSMonitorLGCtx)ts->monitorcontext[i],names);CHKERRQ(ierr);
7047b3d3934dSBarry Smith       break;
7048b3d3934dSBarry Smith     }
7049b3d3934dSBarry Smith   }
7050b3d3934dSBarry Smith   PetscFunctionReturn(0);
7051b3d3934dSBarry Smith }
7052b3d3934dSBarry Smith 
7053e673d494SBarry Smith /*@C
7054e673d494SBarry Smith    TSMonitorLGCtxSetVariableNames - Sets the name of each component in the solution vector so that it may be displayed in the plot
7055e673d494SBarry Smith 
7056e673d494SBarry Smith    Collective on TS
7057e673d494SBarry Smith 
7058e673d494SBarry Smith    Input Parameters:
7059e673d494SBarry Smith +  ts - the TS context
7060e673d494SBarry Smith -  names - the names of the components, final string must be NULL
7061e673d494SBarry Smith 
7062e673d494SBarry Smith    Level: intermediate
7063e673d494SBarry Smith 
7064e673d494SBarry Smith .keywords: TS,  vector, monitor, view
7065e673d494SBarry Smith 
7066a66092f1SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetDisplayVariables(), TSMonitorLGSetVariableNames()
7067e673d494SBarry Smith @*/
7068e673d494SBarry Smith PetscErrorCode  TSMonitorLGCtxSetVariableNames(TSMonitorLGCtx ctx,const char * const *names)
7069e673d494SBarry Smith {
7070e673d494SBarry Smith   PetscErrorCode    ierr;
7071e673d494SBarry Smith 
7072e673d494SBarry Smith   PetscFunctionBegin;
7073e673d494SBarry Smith   ierr = PetscStrArrayDestroy(&ctx->names);CHKERRQ(ierr);
7074e673d494SBarry Smith   ierr = PetscStrArrayallocpy(names,&ctx->names);CHKERRQ(ierr);
7075e673d494SBarry Smith   PetscFunctionReturn(0);
7076e673d494SBarry Smith }
7077e673d494SBarry Smith 
7078b3d3934dSBarry Smith /*@C
7079b3d3934dSBarry Smith    TSMonitorLGGetVariableNames - Gets the name of each component in the solution vector so that it may be displayed in the plot
7080b3d3934dSBarry Smith 
7081b3d3934dSBarry Smith    Collective on TS
7082b3d3934dSBarry Smith 
7083b3d3934dSBarry Smith    Input Parameter:
7084b3d3934dSBarry Smith .  ts - the TS context
7085b3d3934dSBarry Smith 
7086b3d3934dSBarry Smith    Output Parameter:
7087b3d3934dSBarry Smith .  names - the names of the components, final string must be NULL
7088b3d3934dSBarry Smith 
7089b3d3934dSBarry Smith    Level: intermediate
7090b3d3934dSBarry Smith 
70917db568b7SBarry Smith    Notes: If the TS object does not have a TSMonitorLGCtx associated with it then this function is ignored
70927db568b7SBarry Smith 
7093b3d3934dSBarry Smith .keywords: TS,  vector, monitor, view
7094b3d3934dSBarry Smith 
7095b3d3934dSBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetDisplayVariables()
7096b3d3934dSBarry Smith @*/
7097b3d3934dSBarry Smith PetscErrorCode  TSMonitorLGGetVariableNames(TS ts,const char *const **names)
7098b3d3934dSBarry Smith {
7099b3d3934dSBarry Smith   PetscInt       i;
7100b3d3934dSBarry Smith 
7101b3d3934dSBarry Smith   PetscFunctionBegin;
7102b3d3934dSBarry Smith   *names = NULL;
7103b3d3934dSBarry Smith   for (i=0; i<ts->numbermonitors; i++) {
7104b3d3934dSBarry Smith     if (ts->monitor[i] == TSMonitorLGSolution) {
71055537e223SBarry Smith       TSMonitorLGCtx  ctx = (TSMonitorLGCtx) ts->monitorcontext[i];
7106b3d3934dSBarry Smith       *names = (const char *const *)ctx->names;
7107b3d3934dSBarry Smith       break;
7108387f4636SBarry Smith     }
7109387f4636SBarry Smith   }
7110387f4636SBarry Smith   PetscFunctionReturn(0);
7111387f4636SBarry Smith }
7112387f4636SBarry Smith 
7113a66092f1SBarry Smith /*@C
7114a66092f1SBarry Smith    TSMonitorLGCtxSetDisplayVariables - Sets the variables that are to be display in the monitor
7115a66092f1SBarry Smith 
7116a66092f1SBarry Smith    Collective on TS
7117a66092f1SBarry Smith 
7118a66092f1SBarry Smith    Input Parameters:
7119a66092f1SBarry Smith +  ctx - the TSMonitorLG context
7120a66092f1SBarry Smith .  displaynames - the names of the components, final string must be NULL
7121a66092f1SBarry Smith 
7122a66092f1SBarry Smith    Level: intermediate
7123a66092f1SBarry Smith 
7124a66092f1SBarry Smith .keywords: TS,  vector, monitor, view
7125a66092f1SBarry Smith 
7126a66092f1SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetVariableNames()
7127a66092f1SBarry Smith @*/
7128a66092f1SBarry Smith PetscErrorCode  TSMonitorLGCtxSetDisplayVariables(TSMonitorLGCtx ctx,const char * const *displaynames)
7129a66092f1SBarry Smith {
7130a66092f1SBarry Smith   PetscInt          j = 0,k;
7131a66092f1SBarry Smith   PetscErrorCode    ierr;
7132a66092f1SBarry Smith 
7133a66092f1SBarry Smith   PetscFunctionBegin;
7134a66092f1SBarry Smith   if (!ctx->names) PetscFunctionReturn(0);
7135a66092f1SBarry Smith   ierr = PetscStrArrayDestroy(&ctx->displaynames);CHKERRQ(ierr);
7136a66092f1SBarry Smith   ierr = PetscStrArrayallocpy(displaynames,&ctx->displaynames);CHKERRQ(ierr);
7137a66092f1SBarry Smith   while (displaynames[j]) j++;
7138a66092f1SBarry Smith   ctx->ndisplayvariables = j;
7139a66092f1SBarry Smith   ierr = PetscMalloc1(ctx->ndisplayvariables,&ctx->displayvariables);CHKERRQ(ierr);
7140a66092f1SBarry Smith   ierr = PetscMalloc1(ctx->ndisplayvariables,&ctx->displayvalues);CHKERRQ(ierr);
7141a66092f1SBarry Smith   j = 0;
7142a66092f1SBarry Smith   while (displaynames[j]) {
7143a66092f1SBarry Smith     k = 0;
7144a66092f1SBarry Smith     while (ctx->names[k]) {
7145a66092f1SBarry Smith       PetscBool flg;
7146a66092f1SBarry Smith       ierr = PetscStrcmp(displaynames[j],ctx->names[k],&flg);CHKERRQ(ierr);
7147a66092f1SBarry Smith       if (flg) {
7148a66092f1SBarry Smith         ctx->displayvariables[j] = k;
7149a66092f1SBarry Smith         break;
7150a66092f1SBarry Smith       }
7151a66092f1SBarry Smith       k++;
7152a66092f1SBarry Smith     }
7153a66092f1SBarry Smith     j++;
7154a66092f1SBarry Smith   }
7155a66092f1SBarry Smith   PetscFunctionReturn(0);
7156a66092f1SBarry Smith }
7157a66092f1SBarry Smith 
7158a66092f1SBarry Smith 
7159387f4636SBarry Smith /*@C
7160387f4636SBarry Smith    TSMonitorLGSetDisplayVariables - Sets the variables that are to be display in the monitor
7161387f4636SBarry Smith 
7162387f4636SBarry Smith    Collective on TS
7163387f4636SBarry Smith 
7164387f4636SBarry Smith    Input Parameters:
7165387f4636SBarry Smith +  ts - the TS context
7166387f4636SBarry Smith .  displaynames - the names of the components, final string must be NULL
7167387f4636SBarry Smith 
71687db568b7SBarry Smith    Notes: If the TS object does not have a TSMonitorLGCtx associated with it then this function is ignored
71697db568b7SBarry Smith 
7170387f4636SBarry Smith    Level: intermediate
7171387f4636SBarry Smith 
7172387f4636SBarry Smith .keywords: TS,  vector, monitor, view
7173387f4636SBarry Smith 
7174387f4636SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetVariableNames()
7175387f4636SBarry Smith @*/
7176387f4636SBarry Smith PetscErrorCode  TSMonitorLGSetDisplayVariables(TS ts,const char * const *displaynames)
7177387f4636SBarry Smith {
7178a66092f1SBarry Smith   PetscInt          i;
7179387f4636SBarry Smith   PetscErrorCode    ierr;
7180387f4636SBarry Smith 
7181387f4636SBarry Smith   PetscFunctionBegin;
7182387f4636SBarry Smith   for (i=0; i<ts->numbermonitors; i++) {
7183387f4636SBarry Smith     if (ts->monitor[i] == TSMonitorLGSolution) {
71845537e223SBarry Smith       ierr = TSMonitorLGCtxSetDisplayVariables((TSMonitorLGCtx)ts->monitorcontext[i],displaynames);CHKERRQ(ierr);
7185b3d3934dSBarry Smith       break;
7186b037adc7SBarry Smith     }
7187b037adc7SBarry Smith   }
7188b037adc7SBarry Smith   PetscFunctionReturn(0);
7189b037adc7SBarry Smith }
7190b037adc7SBarry Smith 
719180666b62SBarry Smith /*@C
719280666b62SBarry Smith    TSMonitorLGSetTransform - Solution vector will be transformed by provided function before being displayed
719380666b62SBarry Smith 
719480666b62SBarry Smith    Collective on TS
719580666b62SBarry Smith 
719680666b62SBarry Smith    Input Parameters:
719780666b62SBarry Smith +  ts - the TS context
719880666b62SBarry Smith .  transform - the transform function
71997684fa3eSBarry Smith .  destroy - function to destroy the optional context
720080666b62SBarry Smith -  ctx - optional context used by transform function
720180666b62SBarry Smith 
72027db568b7SBarry Smith    Notes: If the TS object does not have a TSMonitorLGCtx associated with it then this function is ignored
72037db568b7SBarry Smith 
720480666b62SBarry Smith    Level: intermediate
720580666b62SBarry Smith 
720680666b62SBarry Smith .keywords: TS,  vector, monitor, view
720780666b62SBarry Smith 
7208a66092f1SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetVariableNames(), TSMonitorLGCtxSetTransform()
720980666b62SBarry Smith @*/
72107684fa3eSBarry Smith PetscErrorCode  TSMonitorLGSetTransform(TS ts,PetscErrorCode (*transform)(void*,Vec,Vec*),PetscErrorCode (*destroy)(void*),void *tctx)
721180666b62SBarry Smith {
721280666b62SBarry Smith   PetscInt          i;
7213a66092f1SBarry Smith   PetscErrorCode    ierr;
721480666b62SBarry Smith 
721580666b62SBarry Smith   PetscFunctionBegin;
721680666b62SBarry Smith   for (i=0; i<ts->numbermonitors; i++) {
721780666b62SBarry Smith     if (ts->monitor[i] == TSMonitorLGSolution) {
72185537e223SBarry Smith       ierr = TSMonitorLGCtxSetTransform((TSMonitorLGCtx)ts->monitorcontext[i],transform,destroy,tctx);CHKERRQ(ierr);
721980666b62SBarry Smith     }
722080666b62SBarry Smith   }
722180666b62SBarry Smith   PetscFunctionReturn(0);
722280666b62SBarry Smith }
722380666b62SBarry Smith 
7224e673d494SBarry Smith /*@C
7225e673d494SBarry Smith    TSMonitorLGCtxSetTransform - Solution vector will be transformed by provided function before being displayed
7226e673d494SBarry Smith 
7227e673d494SBarry Smith    Collective on TSLGCtx
7228e673d494SBarry Smith 
7229e673d494SBarry Smith    Input Parameters:
7230e673d494SBarry Smith +  ts - the TS context
7231e673d494SBarry Smith .  transform - the transform function
72327684fa3eSBarry Smith .  destroy - function to destroy the optional context
7233e673d494SBarry Smith -  ctx - optional context used by transform function
7234e673d494SBarry Smith 
7235e673d494SBarry Smith    Level: intermediate
7236e673d494SBarry Smith 
7237e673d494SBarry Smith .keywords: TS,  vector, monitor, view
7238e673d494SBarry Smith 
7239a66092f1SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetVariableNames(), TSMonitorLGSetTransform()
7240e673d494SBarry Smith @*/
72417684fa3eSBarry Smith PetscErrorCode  TSMonitorLGCtxSetTransform(TSMonitorLGCtx ctx,PetscErrorCode (*transform)(void*,Vec,Vec*),PetscErrorCode (*destroy)(void*),void *tctx)
7242e673d494SBarry Smith {
7243e673d494SBarry Smith   PetscFunctionBegin;
7244e673d494SBarry Smith   ctx->transform    = transform;
72457684fa3eSBarry Smith   ctx->transformdestroy = destroy;
7246e673d494SBarry Smith   ctx->transformctx = tctx;
7247e673d494SBarry Smith   PetscFunctionReturn(0);
7248e673d494SBarry Smith }
7249e673d494SBarry Smith 
7250ef20d060SBarry Smith /*@C
72514f09c107SBarry Smith    TSMonitorLGError - Monitors progress of the TS solvers by plotting each component of the solution vector
7252ef20d060SBarry Smith        in a time based line graph
7253ef20d060SBarry Smith 
7254ef20d060SBarry Smith    Collective on TS
7255ef20d060SBarry Smith 
7256ef20d060SBarry Smith    Input Parameters:
7257ef20d060SBarry Smith +  ts - the TS context
7258ef20d060SBarry Smith .  step - current time-step
7259ef20d060SBarry Smith .  ptime - current time
72607db568b7SBarry Smith .  u - current solution
72617db568b7SBarry Smith -  dctx - TSMonitorLGCtx object created with TSMonitorLGCtxCreate()
7262ef20d060SBarry Smith 
7263ef20d060SBarry Smith    Level: intermediate
7264ef20d060SBarry Smith 
72656934998bSLisandro Dalcin    Notes: Each process in a parallel run displays its component errors in a separate window
7266abd5a294SJed Brown 
7267abd5a294SJed Brown    The user must provide the solution using TSSetSolutionFunction() to use this monitor.
7268abd5a294SJed Brown 
7269abd5a294SJed Brown    Options Database Keys:
72704f09c107SBarry Smith .  -ts_monitor_lg_error - create a graphical monitor of error history
7271ef20d060SBarry Smith 
7272ef20d060SBarry Smith .keywords: TS,  vector, monitor, view
7273ef20d060SBarry Smith 
7274abd5a294SJed Brown .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSSetSolutionFunction()
7275ef20d060SBarry Smith @*/
72760910c330SBarry Smith PetscErrorCode  TSMonitorLGError(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
7277ef20d060SBarry Smith {
7278ef20d060SBarry Smith   PetscErrorCode    ierr;
72790b039ecaSBarry Smith   TSMonitorLGCtx    ctx = (TSMonitorLGCtx)dummy;
7280ef20d060SBarry Smith   const PetscScalar *yy;
7281ef20d060SBarry Smith   Vec               y;
7282ef20d060SBarry Smith 
7283ef20d060SBarry Smith   PetscFunctionBegin;
7284a9f9c1f6SBarry Smith   if (!step) {
7285a9f9c1f6SBarry Smith     PetscDrawAxis axis;
72866934998bSLisandro Dalcin     PetscInt      dim;
7287a9f9c1f6SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
72881ae185eaSBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Error in solution as function of time","Time","Solution");CHKERRQ(ierr);
72890910c330SBarry Smith     ierr = VecGetLocalSize(u,&dim);CHKERRQ(ierr);
7290a9f9c1f6SBarry Smith     ierr = PetscDrawLGSetDimension(ctx->lg,dim);CHKERRQ(ierr);
7291a9f9c1f6SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
7292a9f9c1f6SBarry Smith   }
72930910c330SBarry Smith   ierr = VecDuplicate(u,&y);CHKERRQ(ierr);
7294ef20d060SBarry Smith   ierr = TSComputeSolutionFunction(ts,ptime,y);CHKERRQ(ierr);
72950910c330SBarry Smith   ierr = VecAXPY(y,-1.0,u);CHKERRQ(ierr);
7296ef20d060SBarry Smith   ierr = VecGetArrayRead(y,&yy);CHKERRQ(ierr);
7297e3efe391SJed Brown #if defined(PETSC_USE_COMPLEX)
7298e3efe391SJed Brown   {
7299e3efe391SJed Brown     PetscReal *yreal;
7300e3efe391SJed Brown     PetscInt  i,n;
7301e3efe391SJed Brown     ierr = VecGetLocalSize(y,&n);CHKERRQ(ierr);
7302785e854fSJed Brown     ierr = PetscMalloc1(n,&yreal);CHKERRQ(ierr);
7303e3efe391SJed Brown     for (i=0; i<n; i++) yreal[i] = PetscRealPart(yy[i]);
73040b039ecaSBarry Smith     ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yreal);CHKERRQ(ierr);
7305e3efe391SJed Brown     ierr = PetscFree(yreal);CHKERRQ(ierr);
7306e3efe391SJed Brown   }
7307e3efe391SJed Brown #else
73080b039ecaSBarry Smith   ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yy);CHKERRQ(ierr);
7309e3efe391SJed Brown #endif
7310ef20d060SBarry Smith   ierr = VecRestoreArrayRead(y,&yy);CHKERRQ(ierr);
7311ef20d060SBarry Smith   ierr = VecDestroy(&y);CHKERRQ(ierr);
7312b06615a5SLisandro Dalcin   if (((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason)) {
73130b039ecaSBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
73146934998bSLisandro Dalcin     ierr = PetscDrawLGSave(ctx->lg);CHKERRQ(ierr);
73153923b477SBarry Smith   }
7316ef20d060SBarry Smith   PetscFunctionReturn(0);
7317ef20d060SBarry Smith }
7318ef20d060SBarry Smith 
7319201da799SBarry Smith PetscErrorCode TSMonitorLGSNESIterations(TS ts,PetscInt n,PetscReal ptime,Vec v,void *monctx)
7320201da799SBarry Smith {
7321201da799SBarry Smith   TSMonitorLGCtx ctx = (TSMonitorLGCtx) monctx;
7322201da799SBarry Smith   PetscReal      x   = ptime,y;
7323201da799SBarry Smith   PetscErrorCode ierr;
7324201da799SBarry Smith   PetscInt       its;
7325201da799SBarry Smith 
7326201da799SBarry Smith   PetscFunctionBegin;
732763e21af5SBarry Smith   if (n < 0) PetscFunctionReturn(0); /* -1 indicates interpolated solution */
7328201da799SBarry Smith   if (!n) {
7329201da799SBarry Smith     PetscDrawAxis axis;
7330201da799SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
7331201da799SBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Nonlinear iterations as function of time","Time","SNES Iterations");CHKERRQ(ierr);
7332201da799SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
7333201da799SBarry Smith     ctx->snes_its = 0;
7334201da799SBarry Smith   }
7335201da799SBarry Smith   ierr = TSGetSNESIterations(ts,&its);CHKERRQ(ierr);
7336201da799SBarry Smith   y    = its - ctx->snes_its;
7337201da799SBarry Smith   ierr = PetscDrawLGAddPoint(ctx->lg,&x,&y);CHKERRQ(ierr);
73383fbbecb0SBarry Smith   if (((ctx->howoften > 0) && (!(n % ctx->howoften)) && (n > -1)) || ((ctx->howoften == -1) && (n == -1))) {
7339201da799SBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
73406934998bSLisandro Dalcin     ierr = PetscDrawLGSave(ctx->lg);CHKERRQ(ierr);
7341201da799SBarry Smith   }
7342201da799SBarry Smith   ctx->snes_its = its;
7343201da799SBarry Smith   PetscFunctionReturn(0);
7344201da799SBarry Smith }
7345201da799SBarry Smith 
7346201da799SBarry Smith PetscErrorCode TSMonitorLGKSPIterations(TS ts,PetscInt n,PetscReal ptime,Vec v,void *monctx)
7347201da799SBarry Smith {
7348201da799SBarry Smith   TSMonitorLGCtx ctx = (TSMonitorLGCtx) monctx;
7349201da799SBarry Smith   PetscReal      x   = ptime,y;
7350201da799SBarry Smith   PetscErrorCode ierr;
7351201da799SBarry Smith   PetscInt       its;
7352201da799SBarry Smith 
7353201da799SBarry Smith   PetscFunctionBegin;
735463e21af5SBarry Smith   if (n < 0) PetscFunctionReturn(0); /* -1 indicates interpolated solution */
7355201da799SBarry Smith   if (!n) {
7356201da799SBarry Smith     PetscDrawAxis axis;
7357201da799SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
7358201da799SBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Linear iterations as function of time","Time","KSP Iterations");CHKERRQ(ierr);
7359201da799SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
7360201da799SBarry Smith     ctx->ksp_its = 0;
7361201da799SBarry Smith   }
7362201da799SBarry Smith   ierr = TSGetKSPIterations(ts,&its);CHKERRQ(ierr);
7363201da799SBarry Smith   y    = its - ctx->ksp_its;
7364201da799SBarry Smith   ierr = PetscDrawLGAddPoint(ctx->lg,&x,&y);CHKERRQ(ierr);
736599fdda47SBarry Smith   if (((ctx->howoften > 0) && (!(n % ctx->howoften)) && (n > -1)) || ((ctx->howoften == -1) && (n == -1))) {
7366201da799SBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
73676934998bSLisandro Dalcin     ierr = PetscDrawLGSave(ctx->lg);CHKERRQ(ierr);
7368201da799SBarry Smith   }
7369201da799SBarry Smith   ctx->ksp_its = its;
7370201da799SBarry Smith   PetscFunctionReturn(0);
7371201da799SBarry Smith }
7372f9c1d6abSBarry Smith 
7373f9c1d6abSBarry Smith /*@
7374f9c1d6abSBarry Smith    TSComputeLinearStability - computes the linear stability function at a point
7375f9c1d6abSBarry Smith 
7376f9c1d6abSBarry Smith    Collective on TS and Vec
7377f9c1d6abSBarry Smith 
7378f9c1d6abSBarry Smith    Input Parameters:
7379f9c1d6abSBarry Smith +  ts - the TS context
7380f9c1d6abSBarry Smith -  xr,xi - real and imaginary part of input arguments
7381f9c1d6abSBarry Smith 
7382f9c1d6abSBarry Smith    Output Parameters:
7383f9c1d6abSBarry Smith .  yr,yi - real and imaginary part of function value
7384f9c1d6abSBarry Smith 
7385f9c1d6abSBarry Smith    Level: developer
7386f9c1d6abSBarry Smith 
7387f9c1d6abSBarry Smith .keywords: TS, compute
7388f9c1d6abSBarry Smith 
7389f9c1d6abSBarry Smith .seealso: TSSetRHSFunction(), TSComputeIFunction()
7390f9c1d6abSBarry Smith @*/
7391f9c1d6abSBarry Smith PetscErrorCode TSComputeLinearStability(TS ts,PetscReal xr,PetscReal xi,PetscReal *yr,PetscReal *yi)
7392f9c1d6abSBarry Smith {
7393f9c1d6abSBarry Smith   PetscErrorCode ierr;
7394f9c1d6abSBarry Smith 
7395f9c1d6abSBarry Smith   PetscFunctionBegin;
7396f9c1d6abSBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
7397ce94432eSBarry Smith   if (!ts->ops->linearstability) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"Linearized stability function not provided for this method");
7398f9c1d6abSBarry Smith   ierr = (*ts->ops->linearstability)(ts,xr,xi,yr,yi);CHKERRQ(ierr);
7399f9c1d6abSBarry Smith   PetscFunctionReturn(0);
7400f9c1d6abSBarry Smith }
740124655328SShri 
7402b3d3934dSBarry Smith /* ------------------------------------------------------------------------*/
7403b3d3934dSBarry Smith /*@C
7404b3d3934dSBarry Smith    TSMonitorEnvelopeCtxCreate - Creates a context for use with TSMonitorEnvelope()
7405b3d3934dSBarry Smith 
7406b3d3934dSBarry Smith    Collective on TS
7407b3d3934dSBarry Smith 
7408b3d3934dSBarry Smith    Input Parameters:
7409b3d3934dSBarry Smith .  ts  - the ODE solver object
7410b3d3934dSBarry Smith 
7411b3d3934dSBarry Smith    Output Parameter:
7412b3d3934dSBarry Smith .  ctx - the context
7413b3d3934dSBarry Smith 
7414b3d3934dSBarry Smith    Level: intermediate
7415b3d3934dSBarry Smith 
7416b3d3934dSBarry Smith .keywords: TS, monitor, line graph, residual, seealso
7417b3d3934dSBarry Smith 
7418b3d3934dSBarry Smith .seealso: TSMonitorLGTimeStep(), TSMonitorSet(), TSMonitorLGSolution(), TSMonitorLGError()
7419b3d3934dSBarry Smith 
7420b3d3934dSBarry Smith @*/
7421b3d3934dSBarry Smith PetscErrorCode  TSMonitorEnvelopeCtxCreate(TS ts,TSMonitorEnvelopeCtx *ctx)
7422b3d3934dSBarry Smith {
7423b3d3934dSBarry Smith   PetscErrorCode ierr;
7424b3d3934dSBarry Smith 
7425b3d3934dSBarry Smith   PetscFunctionBegin;
7426a74656a8SBarry Smith   ierr = PetscNew(ctx);CHKERRQ(ierr);
7427b3d3934dSBarry Smith   PetscFunctionReturn(0);
7428b3d3934dSBarry Smith }
7429b3d3934dSBarry Smith 
7430b3d3934dSBarry Smith /*@C
7431b3d3934dSBarry Smith    TSMonitorEnvelope - Monitors the maximum and minimum value of each component of the solution
7432b3d3934dSBarry Smith 
7433b3d3934dSBarry Smith    Collective on TS
7434b3d3934dSBarry Smith 
7435b3d3934dSBarry Smith    Input Parameters:
7436b3d3934dSBarry Smith +  ts - the TS context
7437b3d3934dSBarry Smith .  step - current time-step
7438b3d3934dSBarry Smith .  ptime - current time
74397db568b7SBarry Smith .  u  - current solution
74407db568b7SBarry Smith -  dctx - the envelope context
7441b3d3934dSBarry Smith 
7442b3d3934dSBarry Smith    Options Database:
7443b3d3934dSBarry Smith .  -ts_monitor_envelope
7444b3d3934dSBarry Smith 
7445b3d3934dSBarry Smith    Level: intermediate
7446b3d3934dSBarry Smith 
7447b3d3934dSBarry Smith    Notes: after a solve you can use TSMonitorEnvelopeGetBounds() to access the envelope
7448b3d3934dSBarry Smith 
7449b3d3934dSBarry Smith .keywords: TS,  vector, monitor, view
7450b3d3934dSBarry Smith 
74517db568b7SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorEnvelopeGetBounds(), TSMonitorEnvelopeCtxCreate()
7452b3d3934dSBarry Smith @*/
74537db568b7SBarry Smith PetscErrorCode  TSMonitorEnvelope(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dctx)
7454b3d3934dSBarry Smith {
7455b3d3934dSBarry Smith   PetscErrorCode       ierr;
74567db568b7SBarry Smith   TSMonitorEnvelopeCtx ctx = (TSMonitorEnvelopeCtx)dctx;
7457b3d3934dSBarry Smith 
7458b3d3934dSBarry Smith   PetscFunctionBegin;
7459b3d3934dSBarry Smith   if (!ctx->max) {
7460b3d3934dSBarry Smith     ierr = VecDuplicate(u,&ctx->max);CHKERRQ(ierr);
7461b3d3934dSBarry Smith     ierr = VecDuplicate(u,&ctx->min);CHKERRQ(ierr);
7462b3d3934dSBarry Smith     ierr = VecCopy(u,ctx->max);CHKERRQ(ierr);
7463b3d3934dSBarry Smith     ierr = VecCopy(u,ctx->min);CHKERRQ(ierr);
7464b3d3934dSBarry Smith   } else {
7465b3d3934dSBarry Smith     ierr = VecPointwiseMax(ctx->max,u,ctx->max);CHKERRQ(ierr);
7466b3d3934dSBarry Smith     ierr = VecPointwiseMin(ctx->min,u,ctx->min);CHKERRQ(ierr);
7467b3d3934dSBarry Smith   }
7468b3d3934dSBarry Smith   PetscFunctionReturn(0);
7469b3d3934dSBarry Smith }
7470b3d3934dSBarry Smith 
7471b3d3934dSBarry Smith 
7472b3d3934dSBarry Smith /*@C
7473b3d3934dSBarry Smith    TSMonitorEnvelopeGetBounds - Gets the bounds for the components of the solution
7474b3d3934dSBarry Smith 
7475b3d3934dSBarry Smith    Collective on TS
7476b3d3934dSBarry Smith 
7477b3d3934dSBarry Smith    Input Parameter:
7478b3d3934dSBarry Smith .  ts - the TS context
7479b3d3934dSBarry Smith 
7480b3d3934dSBarry Smith    Output Parameter:
7481b3d3934dSBarry Smith +  max - the maximum values
7482b3d3934dSBarry Smith -  min - the minimum values
7483b3d3934dSBarry Smith 
74847db568b7SBarry Smith    Notes: If the TS does not have a TSMonitorEnvelopeCtx associated with it then this function is ignored
74857db568b7SBarry Smith 
7486b3d3934dSBarry Smith    Level: intermediate
7487b3d3934dSBarry Smith 
7488b3d3934dSBarry Smith .keywords: TS,  vector, monitor, view
7489b3d3934dSBarry Smith 
7490b3d3934dSBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetDisplayVariables()
7491b3d3934dSBarry Smith @*/
7492b3d3934dSBarry Smith PetscErrorCode  TSMonitorEnvelopeGetBounds(TS ts,Vec *max,Vec *min)
7493b3d3934dSBarry Smith {
7494b3d3934dSBarry Smith   PetscInt i;
7495b3d3934dSBarry Smith 
7496b3d3934dSBarry Smith   PetscFunctionBegin;
7497b3d3934dSBarry Smith   if (max) *max = NULL;
7498b3d3934dSBarry Smith   if (min) *min = NULL;
7499b3d3934dSBarry Smith   for (i=0; i<ts->numbermonitors; i++) {
7500b3d3934dSBarry Smith     if (ts->monitor[i] == TSMonitorEnvelope) {
75015537e223SBarry Smith       TSMonitorEnvelopeCtx  ctx = (TSMonitorEnvelopeCtx) ts->monitorcontext[i];
7502b3d3934dSBarry Smith       if (max) *max = ctx->max;
7503b3d3934dSBarry Smith       if (min) *min = ctx->min;
7504b3d3934dSBarry Smith       break;
7505b3d3934dSBarry Smith     }
7506b3d3934dSBarry Smith   }
7507b3d3934dSBarry Smith   PetscFunctionReturn(0);
7508b3d3934dSBarry Smith }
7509b3d3934dSBarry Smith 
7510b3d3934dSBarry Smith /*@C
7511b3d3934dSBarry Smith    TSMonitorEnvelopeCtxDestroy - Destroys a context that was created  with TSMonitorEnvelopeCtxCreate().
7512b3d3934dSBarry Smith 
7513b3d3934dSBarry Smith    Collective on TSMonitorEnvelopeCtx
7514b3d3934dSBarry Smith 
7515b3d3934dSBarry Smith    Input Parameter:
7516b3d3934dSBarry Smith .  ctx - the monitor context
7517b3d3934dSBarry Smith 
7518b3d3934dSBarry Smith    Level: intermediate
7519b3d3934dSBarry Smith 
7520b3d3934dSBarry Smith .keywords: TS, monitor, line graph, destroy
7521b3d3934dSBarry Smith 
75227db568b7SBarry Smith .seealso: TSMonitorLGCtxCreate(),  TSMonitorSet(), TSMonitorLGTimeStep()
7523b3d3934dSBarry Smith @*/
7524b3d3934dSBarry Smith PetscErrorCode  TSMonitorEnvelopeCtxDestroy(TSMonitorEnvelopeCtx *ctx)
7525b3d3934dSBarry Smith {
7526b3d3934dSBarry Smith   PetscErrorCode ierr;
7527b3d3934dSBarry Smith 
7528b3d3934dSBarry Smith   PetscFunctionBegin;
7529b3d3934dSBarry Smith   ierr = VecDestroy(&(*ctx)->min);CHKERRQ(ierr);
7530b3d3934dSBarry Smith   ierr = VecDestroy(&(*ctx)->max);CHKERRQ(ierr);
7531b3d3934dSBarry Smith   ierr = PetscFree(*ctx);CHKERRQ(ierr);
7532b3d3934dSBarry Smith   PetscFunctionReturn(0);
7533b3d3934dSBarry Smith }
7534f2dee214SBarry Smith 
753524655328SShri /*@
753624655328SShri    TSRollBack - Rolls back one time step
753724655328SShri 
753824655328SShri    Collective on TS
753924655328SShri 
754024655328SShri    Input Parameter:
754124655328SShri .  ts - the TS context obtained from TSCreate()
754224655328SShri 
754324655328SShri    Level: advanced
754424655328SShri 
754524655328SShri .keywords: TS, timestep, rollback
754624655328SShri 
754724655328SShri .seealso: TSCreate(), TSSetUp(), TSDestroy(), TSSolve(), TSSetPreStep(), TSSetPreStage(), TSInterpolate()
754824655328SShri @*/
754924655328SShri PetscErrorCode  TSRollBack(TS ts)
755024655328SShri {
755124655328SShri   PetscErrorCode ierr;
755224655328SShri 
755324655328SShri   PetscFunctionBegin;
755424655328SShri   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
7555b3de5cdeSLisandro Dalcin   if (ts->steprollback) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONGSTATE,"TSRollBack already called");
755624655328SShri   if (!ts->ops->rollback) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"TSRollBack not implemented for type '%s'",((PetscObject)ts)->type_name);
755724655328SShri   ierr = (*ts->ops->rollback)(ts);CHKERRQ(ierr);
755824655328SShri   ts->time_step = ts->ptime - ts->ptime_prev;
755924655328SShri   ts->ptime = ts->ptime_prev;
7560be5899b3SLisandro Dalcin   ts->ptime_prev = ts->ptime_prev_rollback;
7561be5899b3SLisandro Dalcin   ts->steps--; ts->total_steps--;
756210b82f12SShri Abhyankar   ierr = TSPostEvaluate(ts);CHKERRQ(ierr);
7563b3de5cdeSLisandro Dalcin   ts->steprollback = PETSC_TRUE;
756424655328SShri   PetscFunctionReturn(0);
756524655328SShri }
7566aeb4809dSShri Abhyankar 
7567ff22ae23SHong Zhang /*@
7568ff22ae23SHong Zhang    TSGetStages - Get the number of stages and stage values
7569ff22ae23SHong Zhang 
7570ff22ae23SHong Zhang    Input Parameter:
7571ff22ae23SHong Zhang .  ts - the TS context obtained from TSCreate()
7572ff22ae23SHong Zhang 
7573ff22ae23SHong Zhang    Level: advanced
7574ff22ae23SHong Zhang 
7575ff22ae23SHong Zhang .keywords: TS, getstages
7576ff22ae23SHong Zhang 
7577ff22ae23SHong Zhang .seealso: TSCreate()
7578ff22ae23SHong Zhang @*/
7579ff22ae23SHong Zhang PetscErrorCode  TSGetStages(TS ts,PetscInt *ns,Vec **Y)
7580ff22ae23SHong Zhang {
7581ff22ae23SHong Zhang   PetscErrorCode ierr;
7582ff22ae23SHong Zhang 
7583ff22ae23SHong Zhang   PetscFunctionBegin;
7584ff22ae23SHong Zhang   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
7585ff22ae23SHong Zhang   PetscValidPointer(ns,2);
7586ff22ae23SHong Zhang 
7587ff22ae23SHong Zhang   if (!ts->ops->getstages) *ns=0;
7588ff22ae23SHong Zhang   else {
7589ff22ae23SHong Zhang     ierr = (*ts->ops->getstages)(ts,ns,Y);CHKERRQ(ierr);
7590ff22ae23SHong Zhang   }
7591ff22ae23SHong Zhang   PetscFunctionReturn(0);
7592ff22ae23SHong Zhang }
7593ff22ae23SHong Zhang 
7594847ff0e1SMatthew G. Knepley /*@C
7595847ff0e1SMatthew G. Knepley   TSComputeIJacobianDefaultColor - Computes the Jacobian using finite differences and coloring to exploit matrix sparsity.
7596847ff0e1SMatthew G. Knepley 
7597847ff0e1SMatthew G. Knepley   Collective on SNES
7598847ff0e1SMatthew G. Knepley 
7599847ff0e1SMatthew G. Knepley   Input Parameters:
7600847ff0e1SMatthew G. Knepley + ts - the TS context
7601847ff0e1SMatthew G. Knepley . t - current timestep
7602847ff0e1SMatthew G. Knepley . U - state vector
7603847ff0e1SMatthew G. Knepley . Udot - time derivative of state vector
7604847ff0e1SMatthew G. Knepley . shift - shift to apply, see note below
7605847ff0e1SMatthew G. Knepley - ctx - an optional user context
7606847ff0e1SMatthew G. Knepley 
7607847ff0e1SMatthew G. Knepley   Output Parameters:
7608847ff0e1SMatthew G. Knepley + J - Jacobian matrix (not altered in this routine)
7609847ff0e1SMatthew G. Knepley - B - newly computed Jacobian matrix to use with preconditioner (generally the same as J)
7610847ff0e1SMatthew G. Knepley 
7611847ff0e1SMatthew G. Knepley   Level: intermediate
7612847ff0e1SMatthew G. Knepley 
7613847ff0e1SMatthew G. Knepley   Notes:
7614847ff0e1SMatthew G. Knepley   If F(t,U,Udot)=0 is the DAE, the required Jacobian is
7615847ff0e1SMatthew G. Knepley 
7616847ff0e1SMatthew G. Knepley   dF/dU + shift*dF/dUdot
7617847ff0e1SMatthew G. Knepley 
7618847ff0e1SMatthew G. Knepley   Most users should not need to explicitly call this routine, as it
7619847ff0e1SMatthew G. Knepley   is used internally within the nonlinear solvers.
7620847ff0e1SMatthew G. Knepley 
7621847ff0e1SMatthew G. Knepley   This will first try to get the coloring from the DM.  If the DM type has no coloring
7622847ff0e1SMatthew G. Knepley   routine, then it will try to get the coloring from the matrix.  This requires that the
7623847ff0e1SMatthew G. Knepley   matrix have nonzero entries precomputed.
7624847ff0e1SMatthew G. Knepley 
7625847ff0e1SMatthew G. Knepley .keywords: TS, finite differences, Jacobian, coloring, sparse
7626847ff0e1SMatthew G. Knepley .seealso: TSSetIJacobian(), MatFDColoringCreate(), MatFDColoringSetFunction()
7627847ff0e1SMatthew G. Knepley @*/
7628847ff0e1SMatthew G. Knepley PetscErrorCode TSComputeIJacobianDefaultColor(TS ts,PetscReal t,Vec U,Vec Udot,PetscReal shift,Mat J,Mat B,void *ctx)
7629847ff0e1SMatthew G. Knepley {
7630847ff0e1SMatthew G. Knepley   SNES           snes;
7631847ff0e1SMatthew G. Knepley   MatFDColoring  color;
7632847ff0e1SMatthew G. Knepley   PetscBool      hascolor, matcolor = PETSC_FALSE;
7633847ff0e1SMatthew G. Knepley   PetscErrorCode ierr;
7634847ff0e1SMatthew G. Knepley 
7635847ff0e1SMatthew G. Knepley   PetscFunctionBegin;
7636c5929fdfSBarry Smith   ierr = PetscOptionsGetBool(((PetscObject)ts)->options,((PetscObject) ts)->prefix, "-ts_fd_color_use_mat", &matcolor, NULL);CHKERRQ(ierr);
7637847ff0e1SMatthew G. Knepley   ierr = PetscObjectQuery((PetscObject) B, "TSMatFDColoring", (PetscObject *) &color);CHKERRQ(ierr);
7638847ff0e1SMatthew G. Knepley   if (!color) {
7639847ff0e1SMatthew G. Knepley     DM         dm;
7640847ff0e1SMatthew G. Knepley     ISColoring iscoloring;
7641847ff0e1SMatthew G. Knepley 
7642847ff0e1SMatthew G. Knepley     ierr = TSGetDM(ts, &dm);CHKERRQ(ierr);
7643847ff0e1SMatthew G. Knepley     ierr = DMHasColoring(dm, &hascolor);CHKERRQ(ierr);
7644847ff0e1SMatthew G. Knepley     if (hascolor && !matcolor) {
7645847ff0e1SMatthew G. Knepley       ierr = DMCreateColoring(dm, IS_COLORING_GLOBAL, &iscoloring);CHKERRQ(ierr);
7646847ff0e1SMatthew G. Knepley       ierr = MatFDColoringCreate(B, iscoloring, &color);CHKERRQ(ierr);
7647847ff0e1SMatthew G. Knepley       ierr = MatFDColoringSetFunction(color, (PetscErrorCode (*)(void)) SNESTSFormFunction, (void *) ts);CHKERRQ(ierr);
7648847ff0e1SMatthew G. Knepley       ierr = MatFDColoringSetFromOptions(color);CHKERRQ(ierr);
7649847ff0e1SMatthew G. Knepley       ierr = MatFDColoringSetUp(B, iscoloring, color);CHKERRQ(ierr);
7650847ff0e1SMatthew G. Knepley       ierr = ISColoringDestroy(&iscoloring);CHKERRQ(ierr);
7651847ff0e1SMatthew G. Knepley     } else {
7652847ff0e1SMatthew G. Knepley       MatColoring mc;
7653847ff0e1SMatthew G. Knepley 
7654847ff0e1SMatthew G. Knepley       ierr = MatColoringCreate(B, &mc);CHKERRQ(ierr);
7655847ff0e1SMatthew G. Knepley       ierr = MatColoringSetDistance(mc, 2);CHKERRQ(ierr);
7656847ff0e1SMatthew G. Knepley       ierr = MatColoringSetType(mc, MATCOLORINGSL);CHKERRQ(ierr);
7657847ff0e1SMatthew G. Knepley       ierr = MatColoringSetFromOptions(mc);CHKERRQ(ierr);
7658847ff0e1SMatthew G. Knepley       ierr = MatColoringApply(mc, &iscoloring);CHKERRQ(ierr);
7659847ff0e1SMatthew G. Knepley       ierr = MatColoringDestroy(&mc);CHKERRQ(ierr);
7660847ff0e1SMatthew G. Knepley       ierr = MatFDColoringCreate(B, iscoloring, &color);CHKERRQ(ierr);
7661847ff0e1SMatthew G. Knepley       ierr = MatFDColoringSetFunction(color, (PetscErrorCode (*)(void)) SNESTSFormFunction, (void *) ts);CHKERRQ(ierr);
7662847ff0e1SMatthew G. Knepley       ierr = MatFDColoringSetFromOptions(color);CHKERRQ(ierr);
7663847ff0e1SMatthew G. Knepley       ierr = MatFDColoringSetUp(B, iscoloring, color);CHKERRQ(ierr);
7664847ff0e1SMatthew G. Knepley       ierr = ISColoringDestroy(&iscoloring);CHKERRQ(ierr);
7665847ff0e1SMatthew G. Knepley     }
7666847ff0e1SMatthew G. Knepley     ierr = PetscObjectCompose((PetscObject) B, "TSMatFDColoring", (PetscObject) color);CHKERRQ(ierr);
7667847ff0e1SMatthew G. Knepley     ierr = PetscObjectDereference((PetscObject) color);CHKERRQ(ierr);
7668847ff0e1SMatthew G. Knepley   }
7669847ff0e1SMatthew G. Knepley   ierr = TSGetSNES(ts, &snes);CHKERRQ(ierr);
7670847ff0e1SMatthew G. Knepley   ierr = MatFDColoringApply(B, color, U, snes);CHKERRQ(ierr);
7671847ff0e1SMatthew G. Knepley   if (J != B) {
7672847ff0e1SMatthew G. Knepley     ierr = MatAssemblyBegin(J, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
7673847ff0e1SMatthew G. Knepley     ierr = MatAssemblyEnd(J, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
7674847ff0e1SMatthew G. Knepley   }
7675847ff0e1SMatthew G. Knepley   PetscFunctionReturn(0);
7676847ff0e1SMatthew G. Knepley }
767793b34091SDebojyoti Ghosh 
7678cb9d8021SPierre Barbier de Reuille /*@
7679cb9d8021SPierre Barbier de Reuille     TSSetFunctionDomainError - Set the function testing if the current state vector is valid
7680cb9d8021SPierre Barbier de Reuille 
7681cb9d8021SPierre Barbier de Reuille     Input Parameters:
7682cb9d8021SPierre Barbier de Reuille     ts - the TS context
7683cb9d8021SPierre Barbier de Reuille     func - function called within TSFunctionDomainError
7684cb9d8021SPierre Barbier de Reuille 
7685cb9d8021SPierre Barbier de Reuille     Level: intermediate
7686cb9d8021SPierre Barbier de Reuille 
7687cb9d8021SPierre Barbier de Reuille .keywords: TS, state, domain
7688cb9d8021SPierre Barbier de Reuille .seealso: TSAdaptCheckStage(), TSFunctionDomainError()
7689cb9d8021SPierre Barbier de Reuille @*/
7690cb9d8021SPierre Barbier de Reuille 
7691d183316bSPierre Barbier de Reuille PetscErrorCode TSSetFunctionDomainError(TS ts, PetscErrorCode (*func)(TS,PetscReal,Vec,PetscBool*))
7692cb9d8021SPierre Barbier de Reuille {
7693cb9d8021SPierre Barbier de Reuille   PetscFunctionBegin;
7694cb9d8021SPierre Barbier de Reuille   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
7695cb9d8021SPierre Barbier de Reuille   ts->functiondomainerror = func;
7696cb9d8021SPierre Barbier de Reuille   PetscFunctionReturn(0);
7697cb9d8021SPierre Barbier de Reuille }
7698cb9d8021SPierre Barbier de Reuille 
7699cb9d8021SPierre Barbier de Reuille /*@
7700cb9d8021SPierre Barbier de Reuille     TSFunctionDomainError - Check if the current state is valid
7701cb9d8021SPierre Barbier de Reuille 
7702cb9d8021SPierre Barbier de Reuille     Input Parameters:
7703cb9d8021SPierre Barbier de Reuille     ts - the TS context
7704cb9d8021SPierre Barbier de Reuille     stagetime - time of the simulation
7705d183316bSPierre Barbier de Reuille     Y - state vector to check.
7706cb9d8021SPierre Barbier de Reuille 
7707cb9d8021SPierre Barbier de Reuille     Output Parameter:
7708cb9d8021SPierre Barbier de Reuille     accept - Set to PETSC_FALSE if the current state vector is valid.
7709cb9d8021SPierre Barbier de Reuille 
7710cb9d8021SPierre Barbier de Reuille     Note:
7711cb9d8021SPierre Barbier de Reuille     This function should be used to ensure the state is in a valid part of the space.
7712cb9d8021SPierre Barbier de Reuille     For example, one can ensure here all values are positive.
771396a0c994SBarry Smith 
771496a0c994SBarry Smith     Level: advanced
7715cb9d8021SPierre Barbier de Reuille @*/
7716d183316bSPierre Barbier de Reuille PetscErrorCode TSFunctionDomainError(TS ts,PetscReal stagetime,Vec Y,PetscBool* accept)
7717cb9d8021SPierre Barbier de Reuille {
7718cb9d8021SPierre Barbier de Reuille   PetscErrorCode ierr;
7719cb9d8021SPierre Barbier de Reuille 
7720cb9d8021SPierre Barbier de Reuille   PetscFunctionBegin;
7721cb9d8021SPierre Barbier de Reuille 
7722cb9d8021SPierre Barbier de Reuille   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
7723cb9d8021SPierre Barbier de Reuille   *accept = PETSC_TRUE;
7724cb9d8021SPierre Barbier de Reuille   if (ts->functiondomainerror) {
7725d183316bSPierre Barbier de Reuille     PetscStackCallStandard((*ts->functiondomainerror),(ts,stagetime,Y,accept));
7726cb9d8021SPierre Barbier de Reuille   }
7727cb9d8021SPierre Barbier de Reuille   PetscFunctionReturn(0);
7728cb9d8021SPierre Barbier de Reuille }
77291ceb14c0SBarry Smith 
773093b34091SDebojyoti Ghosh /*@C
7731e5168f73SEmil Constantinescu   TSClone - This function clones a time step object.
773293b34091SDebojyoti Ghosh 
773393b34091SDebojyoti Ghosh   Collective on MPI_Comm
773493b34091SDebojyoti Ghosh 
773593b34091SDebojyoti Ghosh   Input Parameter:
773693b34091SDebojyoti Ghosh . tsin    - The input TS
773793b34091SDebojyoti Ghosh 
773893b34091SDebojyoti Ghosh   Output Parameter:
7739e5168f73SEmil Constantinescu . tsout   - The output TS (cloned)
774093b34091SDebojyoti Ghosh 
77415eca1a21SEmil Constantinescu   Notes:
77425eca1a21SEmil Constantinescu   This function is used to create a clone of a TS object. It is used in ARKIMEX for initializing the slope for first stage explicit methods. It will likely be replaced in the future with a mechanism of switching methods on the fly.
77435eca1a21SEmil Constantinescu 
7744baa10174SEmil Constantinescu   When using TSDestroy() on a clone the user has to first reset the correct TS reference in the embedded SNES object: e.g.: by running SNES snes_dup=NULL; TSGetSNES(ts,&snes_dup); ierr = TSSetSNES(ts,snes_dup);
77455eca1a21SEmil Constantinescu 
77465eca1a21SEmil Constantinescu   Level: developer
774793b34091SDebojyoti Ghosh 
7748e5168f73SEmil Constantinescu .keywords: TS, clone
7749e5168f73SEmil Constantinescu .seealso: TSCreate(), TSSetType(), TSSetUp(), TSDestroy(), TSSetProblemType()
775093b34091SDebojyoti Ghosh @*/
7751baa10174SEmil Constantinescu PetscErrorCode  TSClone(TS tsin, TS *tsout)
775293b34091SDebojyoti Ghosh {
775393b34091SDebojyoti Ghosh   TS             t;
775493b34091SDebojyoti Ghosh   PetscErrorCode ierr;
7755dc846ba4SSatish Balay   SNES           snes_start;
7756dc846ba4SSatish Balay   DM             dm;
7757dc846ba4SSatish Balay   TSType         type;
775893b34091SDebojyoti Ghosh 
775993b34091SDebojyoti Ghosh   PetscFunctionBegin;
776093b34091SDebojyoti Ghosh   PetscValidPointer(tsin,1);
776193b34091SDebojyoti Ghosh   *tsout = NULL;
776293b34091SDebojyoti Ghosh 
77637a37829fSSatish Balay   ierr = PetscHeaderCreate(t, TS_CLASSID, "TS", "Time stepping", "TS", PetscObjectComm((PetscObject)tsin), TSDestroy, TSView);CHKERRQ(ierr);
776493b34091SDebojyoti Ghosh 
776593b34091SDebojyoti Ghosh   /* General TS description */
776693b34091SDebojyoti Ghosh   t->numbermonitors    = 0;
776793b34091SDebojyoti Ghosh   t->setupcalled       = 0;
776893b34091SDebojyoti Ghosh   t->ksp_its           = 0;
776993b34091SDebojyoti Ghosh   t->snes_its          = 0;
777093b34091SDebojyoti Ghosh   t->nwork             = 0;
777193b34091SDebojyoti Ghosh   t->rhsjacobian.time  = -1e20;
777293b34091SDebojyoti Ghosh   t->rhsjacobian.scale = 1.;
777393b34091SDebojyoti Ghosh   t->ijacobian.shift   = 1.;
777493b34091SDebojyoti Ghosh 
777534561852SEmil Constantinescu   ierr = TSGetSNES(tsin,&snes_start);CHKERRQ(ierr);
777634561852SEmil Constantinescu   ierr = TSSetSNES(t,snes_start);CHKERRQ(ierr);
7777d15a3a53SEmil Constantinescu 
777893b34091SDebojyoti Ghosh   ierr = TSGetDM(tsin,&dm);CHKERRQ(ierr);
777993b34091SDebojyoti Ghosh   ierr = TSSetDM(t,dm);CHKERRQ(ierr);
778093b34091SDebojyoti Ghosh 
778193b34091SDebojyoti Ghosh   t->adapt = tsin->adapt;
778251699248SLisandro Dalcin   ierr = PetscObjectReference((PetscObject)t->adapt);CHKERRQ(ierr);
778393b34091SDebojyoti Ghosh 
7784e7069c78SShri   t->trajectory = tsin->trajectory;
7785e7069c78SShri   ierr = PetscObjectReference((PetscObject)t->trajectory);CHKERRQ(ierr);
7786e7069c78SShri 
7787e7069c78SShri   t->event = tsin->event;
77886b10a48eSSatish Balay   if (t->event) t->event->refct++;
7789e7069c78SShri 
779093b34091SDebojyoti Ghosh   t->problem_type      = tsin->problem_type;
779193b34091SDebojyoti Ghosh   t->ptime             = tsin->ptime;
7792e7069c78SShri   t->ptime_prev        = tsin->ptime_prev;
779393b34091SDebojyoti Ghosh   t->time_step         = tsin->time_step;
779493b34091SDebojyoti Ghosh   t->max_time          = tsin->max_time;
779593b34091SDebojyoti Ghosh   t->steps             = tsin->steps;
7796e7069c78SShri   t->total_steps       = tsin->total_steps;
779793b34091SDebojyoti Ghosh   t->max_steps         = tsin->max_steps;
779893b34091SDebojyoti Ghosh   t->equation_type     = tsin->equation_type;
779993b34091SDebojyoti Ghosh   t->atol              = tsin->atol;
780093b34091SDebojyoti Ghosh   t->rtol              = tsin->rtol;
780193b34091SDebojyoti Ghosh   t->max_snes_failures = tsin->max_snes_failures;
780293b34091SDebojyoti Ghosh   t->max_reject        = tsin->max_reject;
780393b34091SDebojyoti Ghosh   t->errorifstepfailed = tsin->errorifstepfailed;
780493b34091SDebojyoti Ghosh 
780593b34091SDebojyoti Ghosh   ierr = TSGetType(tsin,&type);CHKERRQ(ierr);
780693b34091SDebojyoti Ghosh   ierr = TSSetType(t,type);CHKERRQ(ierr);
780793b34091SDebojyoti Ghosh 
780893b34091SDebojyoti Ghosh   t->vec_sol           = NULL;
780993b34091SDebojyoti Ghosh 
781093b34091SDebojyoti Ghosh   t->cfltime          = tsin->cfltime;
781193b34091SDebojyoti Ghosh   t->cfltime_local    = tsin->cfltime_local;
781293b34091SDebojyoti Ghosh   t->exact_final_time = tsin->exact_final_time;
781393b34091SDebojyoti Ghosh 
781493b34091SDebojyoti Ghosh   ierr = PetscMemcpy(t->ops,tsin->ops,sizeof(struct _TSOps));CHKERRQ(ierr);
781593b34091SDebojyoti Ghosh 
78160d4fed19SBarry Smith   if (((PetscObject)tsin)->fortran_func_pointers) {
78170d4fed19SBarry Smith     PetscInt i;
78180d4fed19SBarry Smith     ierr = PetscMalloc((10)*sizeof(void(*)(void)),&((PetscObject)t)->fortran_func_pointers);CHKERRQ(ierr);
78190d4fed19SBarry Smith     for (i=0; i<10; i++) {
78200d4fed19SBarry Smith       ((PetscObject)t)->fortran_func_pointers[i] = ((PetscObject)tsin)->fortran_func_pointers[i];
78210d4fed19SBarry Smith     }
78220d4fed19SBarry Smith   }
782393b34091SDebojyoti Ghosh   *tsout = t;
782493b34091SDebojyoti Ghosh   PetscFunctionReturn(0);
782593b34091SDebojyoti Ghosh }
7826