xref: /petsc/src/ts/interface/ts.c (revision f6953c82d99de3ddaf7b816893c4757af3d134a0)
1af0996ceSBarry Smith #include <petsc/private/tsimpl.h>        /*I "petscts.h"  I*/
2496e6a7aSJed Brown #include <petscdmshell.h>
31e25c274SJed Brown #include <petscdmda.h>
42d5ee99bSBarry Smith #include <petscviewer.h>
52d5ee99bSBarry Smith #include <petscdraw.h>
6d763cef2SBarry Smith 
7d5ba7fb7SMatthew Knepley /* Logging support */
8d74926cbSBarry Smith PetscClassId  TS_CLASSID, DMTS_CLASSID;
98d0ad7a8SHong Zhang PetscLogEvent TS_AdjointStep, TS_Step, TS_PseudoComputeTimeStep, TS_FunctionEval, TS_JacobianEval;
10d405a339SMatthew Knepley 
11feed9e9dSBarry Smith const char *const TSExactFinalTimeOptions[] = {"UNSPECIFIED","STEPOVER","INTERPOLATE","MATCHSTEP","TSExactFinalTimeOption","TS_EXACTFINALTIME_",0};
1249354f04SShri Abhyankar 
132d5ee99bSBarry Smith struct _n_TSMonitorDrawCtx {
142d5ee99bSBarry Smith   PetscViewer   viewer;
152d5ee99bSBarry Smith   Vec           initialsolution;
162d5ee99bSBarry Smith   PetscBool     showinitial;
172d5ee99bSBarry Smith   PetscInt      howoften;  /* when > 0 uses step % howoften, when negative only final solution plotted */
182d5ee99bSBarry Smith   PetscBool     showtimestepandtime;
192d5ee99bSBarry Smith };
202d5ee99bSBarry Smith 
21fde5950dSBarry Smith /*@C
22fde5950dSBarry Smith    TSMonitorSetFromOptions - Sets a monitor function and viewer appropriate for the type indicated by the user
23fde5950dSBarry Smith 
24fde5950dSBarry Smith    Collective on TS
25fde5950dSBarry Smith 
26fde5950dSBarry Smith    Input Parameters:
27fde5950dSBarry Smith +  ts - TS object you wish to monitor
28fde5950dSBarry Smith .  name - the monitor type one is seeking
29fde5950dSBarry Smith .  help - message indicating what monitoring is done
30fde5950dSBarry Smith .  manual - manual page for the monitor
31fde5950dSBarry Smith .  monitor - the monitor function
32fde5950dSBarry 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
33fde5950dSBarry Smith 
34fde5950dSBarry Smith    Level: developer
35fde5950dSBarry Smith 
36fde5950dSBarry Smith .seealso: PetscOptionsGetViewer(), PetscOptionsGetReal(), PetscOptionsHasName(), PetscOptionsGetString(),
37fde5950dSBarry Smith           PetscOptionsGetIntArray(), PetscOptionsGetRealArray(), PetscOptionsBool()
38fde5950dSBarry Smith           PetscOptionsInt(), PetscOptionsString(), PetscOptionsReal(), PetscOptionsBool(),
39fde5950dSBarry Smith           PetscOptionsName(), PetscOptionsBegin(), PetscOptionsEnd(), PetscOptionsHead(),
40fde5950dSBarry Smith           PetscOptionsStringArray(),PetscOptionsRealArray(), PetscOptionsScalar(),
41fde5950dSBarry Smith           PetscOptionsBoolGroupBegin(), PetscOptionsBoolGroup(), PetscOptionsBoolGroupEnd(),
42fde5950dSBarry Smith           PetscOptionsFList(), PetscOptionsEList()
43fde5950dSBarry Smith @*/
44721cd6eeSBarry 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*))
45fde5950dSBarry Smith {
46fde5950dSBarry Smith   PetscErrorCode    ierr;
47fde5950dSBarry Smith   PetscViewer       viewer;
48fde5950dSBarry Smith   PetscViewerFormat format;
49fde5950dSBarry Smith   PetscBool         flg;
50fde5950dSBarry Smith 
51fde5950dSBarry Smith   PetscFunctionBegin;
52fde5950dSBarry Smith   ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)ts),((PetscObject)ts)->prefix,name,&viewer,&format,&flg);CHKERRQ(ierr);
53fde5950dSBarry Smith   if (flg) {
54721cd6eeSBarry Smith     PetscViewerAndFormat *vf;
55721cd6eeSBarry Smith     ierr = PetscViewerAndFormatCreate(viewer,format,&vf);CHKERRQ(ierr);
56721cd6eeSBarry Smith     ierr = PetscObjectDereference((PetscObject)viewer);CHKERRQ(ierr);
57fde5950dSBarry Smith     if (monitorsetup) {
58721cd6eeSBarry Smith       ierr = (*monitorsetup)(ts,vf);CHKERRQ(ierr);
59fde5950dSBarry Smith     }
60721cd6eeSBarry Smith     ierr = TSMonitorSet(ts,(PetscErrorCode (*)(TS,PetscInt,PetscReal,Vec,void*))monitor,vf,(PetscErrorCode (*)(void**))PetscViewerAndFormatDestroy);CHKERRQ(ierr);
61fde5950dSBarry Smith   }
62fde5950dSBarry Smith   PetscFunctionReturn(0);
63fde5950dSBarry Smith }
64fde5950dSBarry Smith 
65fde5950dSBarry Smith /*@C
66e875c4f7SBarry Smith    TSAdjointMonitorSensi - monitors the first lambda sensitivity
67287c2655SBarry Smith 
68287c2655SBarry Smith    Level: intermediate
69287c2655SBarry Smith 
70287c2655SBarry Smith .keywords: TS, set, monitor
71287c2655SBarry Smith 
72287c2655SBarry Smith .seealso: TSAdjointMonitorSet()
73287c2655SBarry Smith @*/
74f4c7b390SBarry Smith PetscErrorCode TSAdjointMonitorSensi(TS ts,PetscInt step,PetscReal ptime,Vec v,PetscInt numcost,Vec *lambda,Vec *mu,PetscViewerAndFormat *vf)
75287c2655SBarry Smith {
76287c2655SBarry Smith   PetscErrorCode ierr;
77287c2655SBarry Smith   PetscViewer    viewer = vf->viewer;
78287c2655SBarry Smith 
79287c2655SBarry Smith   PetscFunctionBegin;
80287c2655SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,4);
81287c2655SBarry Smith   ierr = PetscViewerPushFormat(viewer,vf->format);CHKERRQ(ierr);
82287c2655SBarry Smith   ierr = VecView(lambda[0],viewer);CHKERRQ(ierr);
83287c2655SBarry Smith   ierr = PetscViewerPopFormat(viewer);CHKERRQ(ierr);
84287c2655SBarry Smith   PetscFunctionReturn(0);
85287c2655SBarry Smith }
86287c2655SBarry Smith 
87287c2655SBarry Smith /*@C
88fde5950dSBarry Smith    TSAdjointMonitorSetFromOptions - Sets a monitor function and viewer appropriate for the type indicated by the user
89fde5950dSBarry Smith 
90fde5950dSBarry Smith    Collective on TS
91fde5950dSBarry Smith 
92fde5950dSBarry Smith    Input Parameters:
93fde5950dSBarry Smith +  ts - TS object you wish to monitor
94fde5950dSBarry Smith .  name - the monitor type one is seeking
95fde5950dSBarry Smith .  help - message indicating what monitoring is done
96fde5950dSBarry Smith .  manual - manual page for the monitor
97fde5950dSBarry Smith .  monitor - the monitor function
98fde5950dSBarry 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
99fde5950dSBarry Smith 
100fde5950dSBarry Smith    Level: developer
101fde5950dSBarry Smith 
102fde5950dSBarry Smith .seealso: PetscOptionsGetViewer(), PetscOptionsGetReal(), PetscOptionsHasName(), PetscOptionsGetString(),
103fde5950dSBarry Smith           PetscOptionsGetIntArray(), PetscOptionsGetRealArray(), PetscOptionsBool()
104fde5950dSBarry Smith           PetscOptionsInt(), PetscOptionsString(), PetscOptionsReal(), PetscOptionsBool(),
105fde5950dSBarry Smith           PetscOptionsName(), PetscOptionsBegin(), PetscOptionsEnd(), PetscOptionsHead(),
106fde5950dSBarry Smith           PetscOptionsStringArray(),PetscOptionsRealArray(), PetscOptionsScalar(),
107fde5950dSBarry Smith           PetscOptionsBoolGroupBegin(), PetscOptionsBoolGroup(), PetscOptionsBoolGroupEnd(),
108fde5950dSBarry Smith           PetscOptionsFList(), PetscOptionsEList()
109fde5950dSBarry Smith @*/
110721cd6eeSBarry 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*))
111fde5950dSBarry Smith {
112fde5950dSBarry Smith   PetscErrorCode    ierr;
113fde5950dSBarry Smith   PetscViewer       viewer;
114fde5950dSBarry Smith   PetscViewerFormat format;
115fde5950dSBarry Smith   PetscBool         flg;
116fde5950dSBarry Smith 
117fde5950dSBarry Smith   PetscFunctionBegin;
118fde5950dSBarry Smith   ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject)ts),((PetscObject)ts)->prefix,name,&viewer,&format,&flg);CHKERRQ(ierr);
119fde5950dSBarry Smith   if (flg) {
120721cd6eeSBarry Smith     PetscViewerAndFormat *vf;
121721cd6eeSBarry Smith     ierr = PetscViewerAndFormatCreate(viewer,format,&vf);CHKERRQ(ierr);
122721cd6eeSBarry Smith     ierr = PetscObjectDereference((PetscObject)viewer);CHKERRQ(ierr);
123fde5950dSBarry Smith     if (monitorsetup) {
124721cd6eeSBarry Smith       ierr = (*monitorsetup)(ts,vf);CHKERRQ(ierr);
125fde5950dSBarry Smith     }
126721cd6eeSBarry Smith     ierr = TSAdjointMonitorSet(ts,(PetscErrorCode (*)(TS,PetscInt,PetscReal,Vec,PetscInt,Vec*,Vec*,void*))monitor,vf,(PetscErrorCode (*)(void**))PetscViewerAndFormatDestroy);CHKERRQ(ierr);
127fde5950dSBarry Smith   }
128fde5950dSBarry Smith   PetscFunctionReturn(0);
129fde5950dSBarry Smith }
130fde5950dSBarry Smith 
1312ffb9264SLisandro Dalcin static PetscErrorCode TSAdaptSetDefaultType(TSAdapt adapt,TSAdaptType default_type)
1322ffb9264SLisandro Dalcin {
1332ffb9264SLisandro Dalcin   PetscErrorCode ierr;
1342ffb9264SLisandro Dalcin 
1352ffb9264SLisandro Dalcin   PetscFunctionBegin;
136b92453a8SLisandro Dalcin   PetscValidHeaderSpecific(adapt,TSADAPT_CLASSID,1);
137b92453a8SLisandro Dalcin   PetscValidCharPointer(default_type,2);
1382ffb9264SLisandro Dalcin   if (!((PetscObject)adapt)->type_name) {
1392ffb9264SLisandro Dalcin     ierr = TSAdaptSetType(adapt,default_type);CHKERRQ(ierr);
1402ffb9264SLisandro Dalcin   }
1412ffb9264SLisandro Dalcin   PetscFunctionReturn(0);
1422ffb9264SLisandro Dalcin }
1432ffb9264SLisandro Dalcin 
144bdad233fSMatthew Knepley /*@
145bdad233fSMatthew Knepley    TSSetFromOptions - Sets various TS parameters from user options.
146bdad233fSMatthew Knepley 
147bdad233fSMatthew Knepley    Collective on TS
148bdad233fSMatthew Knepley 
149bdad233fSMatthew Knepley    Input Parameter:
150bdad233fSMatthew Knepley .  ts - the TS context obtained from TSCreate()
151bdad233fSMatthew Knepley 
152bdad233fSMatthew Knepley    Options Database Keys:
153b6a60446SDebojyoti Ghosh +  -ts_type <type> - TSEULER, TSBEULER, TSSUNDIALS, TSPSEUDO, TSCN, TSRK, TSTHETA, TSALPHA, TSGLLE, TSSSP, TSGLEE
154ef222394SBarry Smith .  -ts_save_trajectory - checkpoint the solution at each time-step
1553e4cdcaaSBarry Smith .  -ts_max_steps <maxsteps> - maximum number of time-steps to take
1563e4cdcaaSBarry Smith .  -ts_final_time <time> - maximum time to compute to
1573e4cdcaaSBarry Smith .  -ts_dt <dt> - initial time step
158a3cdaa26SBarry 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
159a3cdaa26SBarry Smith .  -ts_max_snes_failures <maxfailures> - Maximum number of nonlinear solve failures allowed
160a3cdaa26SBarry Smith .  -ts_max_reject <maxrejects> - Maximum number of step rejections before step fails
161a3cdaa26SBarry Smith .  -ts_error_if_step_fails <true,false> - Error if no step succeeds
162a3cdaa26SBarry Smith .  -ts_rtol <rtol> - relative tolerance for local truncation error
163a3cdaa26SBarry Smith .  -ts_atol <atol> Absolute tolerance for local truncation error
164ef222394SBarry Smith .  -ts_adjoint_solve <yes,no> After solving the ODE/DAE solve the adjoint problem (requires -ts_save_trajectory)
165847ff0e1SMatthew G. Knepley .  -ts_fd_color - Use finite differences with coloring to compute IJacobian
166bdad233fSMatthew Knepley .  -ts_monitor - print information at each timestep
167de06c3feSJed Brown .  -ts_monitor_lg_solution - Monitor solution graphically
168de06c3feSJed Brown .  -ts_monitor_lg_error - Monitor error graphically
1696934998bSLisandro Dalcin .  -ts_monitor_lg_timestep - Monitor timestep size graphically
170de06c3feSJed Brown .  -ts_monitor_lg_snes_iterations - Monitor number nonlinear iterations for each timestep graphically
171de06c3feSJed Brown .  -ts_monitor_lg_ksp_iterations - Monitor number nonlinear iterations for each timestep graphically
172de06c3feSJed Brown .  -ts_monitor_sp_eig - Monitor eigenvalues of linearized operator graphically
173de06c3feSJed Brown .  -ts_monitor_draw_solution - Monitor solution graphically
1743e4cdcaaSBarry Smith .  -ts_monitor_draw_solution_phase  <xleft,yleft,xright,yright> - Monitor solution graphically with phase diagram, requires problem with exactly 2 degrees of freedom
1753e4cdcaaSBarry Smith .  -ts_monitor_draw_error - Monitor error graphically, requires use to have provided TSSetSolutionFunction()
176fde5950dSBarry Smith .  -ts_monitor_solution [ascii binary draw][:filename][:viewerformat] - monitors the solution at each timestep
177e4160dc7SJulian Andrej .  -ts_monitor_solution_vtk <filename.vts,filename.vtu> - Save each time step to a binary file, use filename-%%03D.vts (filename-%%03D.vtu)
178110eb670SHong Zhang .  -ts_monitor_envelope - determine maximum and minimum value of each component of the solution over the solution time
179110eb670SHong Zhang .  -ts_adjoint_monitor - print information at each adjoint time step
18053ea634cSHong Zhang -  -ts_adjoint_monitor_draw_sensi - monitor the sensitivity of the first cost function wrt initial conditions (lambda[0]) graphically
18153ea634cSHong Zhang 
18291b97e58SBarry Smith    Developer Note: We should unify all the -ts_monitor options in the way that -xxx_view has been unified
183bdad233fSMatthew Knepley 
184bdad233fSMatthew Knepley    Level: beginner
185bdad233fSMatthew Knepley 
186bdad233fSMatthew Knepley .keywords: TS, timestep, set, options, database
187bdad233fSMatthew Knepley 
188a313700dSBarry Smith .seealso: TSGetType()
189bdad233fSMatthew Knepley @*/
1907087cfbeSBarry Smith PetscErrorCode  TSSetFromOptions(TS ts)
191bdad233fSMatthew Knepley {
192bc952696SBarry Smith   PetscBool              opt,flg,tflg;
193dfbe8321SBarry Smith   PetscErrorCode         ierr;
194eabae89aSBarry Smith   char                   monfilename[PETSC_MAX_PATH_LEN];
19531748224SBarry Smith   PetscReal              time_step;
19649354f04SShri Abhyankar   TSExactFinalTimeOption eftopt;
197d1212d36SBarry Smith   char                   dir[16];
198cd11d68dSLisandro Dalcin   TSIFunction            ifun;
1996991f827SBarry Smith   const char             *defaultType;
2006991f827SBarry Smith   char                   typeName[256];
201bdad233fSMatthew Knepley 
202bdad233fSMatthew Knepley   PetscFunctionBegin;
2030700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2046991f827SBarry Smith 
2056991f827SBarry Smith   ierr = TSRegisterAll();CHKERRQ(ierr);
206cd11d68dSLisandro Dalcin   ierr = TSGetIFunction(ts,NULL,&ifun,NULL);CHKERRQ(ierr);
207cd11d68dSLisandro Dalcin 
208cd11d68dSLisandro Dalcin   ierr = PetscObjectOptionsBegin((PetscObject)ts);CHKERRQ(ierr);
209cd11d68dSLisandro Dalcin   if (((PetscObject)ts)->type_name)
210cd11d68dSLisandro Dalcin     defaultType = ((PetscObject)ts)->type_name;
211cd11d68dSLisandro Dalcin   else
212cd11d68dSLisandro Dalcin     defaultType = ifun ? TSBEULER : TSEULER;
2136991f827SBarry Smith   ierr = PetscOptionsFList("-ts_type","TS method","TSSetType",TSList,defaultType,typeName,256,&opt);CHKERRQ(ierr);
2146991f827SBarry Smith   if (opt) {
2156991f827SBarry Smith     ierr = TSSetType(ts,typeName);CHKERRQ(ierr);
2166991f827SBarry Smith   } else {
2176991f827SBarry Smith     ierr = TSSetType(ts,defaultType);CHKERRQ(ierr);
2186991f827SBarry Smith   }
219bdad233fSMatthew Knepley 
220bdad233fSMatthew Knepley   /* Handle generic TS options */
2210298fd71SBarry Smith   ierr = PetscOptionsInt("-ts_max_steps","Maximum number of time steps","TSSetDuration",ts->max_steps,&ts->max_steps,NULL);CHKERRQ(ierr);
2220298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_final_time","Time to run to","TSSetDuration",ts->max_time,&ts->max_time,NULL);CHKERRQ(ierr);
2230298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_init_time","Initial time","TSSetTime",ts->ptime,&ts->ptime,NULL);CHKERRQ(ierr);
22431748224SBarry Smith   ierr = PetscOptionsReal("-ts_dt","Initial time step","TSSetTimeStep",ts->time_step,&time_step,&flg);CHKERRQ(ierr);
225cd11d68dSLisandro Dalcin   if (flg) {ierr = TSSetTimeStep(ts,time_step);CHKERRQ(ierr);}
22649354f04SShri 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);
22749354f04SShri Abhyankar   if (flg) {ierr = TSSetExactFinalTime(ts,eftopt);CHKERRQ(ierr);}
2280298fd71SBarry 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);
2290298fd71SBarry Smith   ierr = PetscOptionsInt("-ts_max_reject","Maximum number of step rejections before step fails","TSSetMaxStepRejections",ts->max_reject,&ts->max_reject,NULL);CHKERRQ(ierr);
2300298fd71SBarry Smith   ierr = PetscOptionsBool("-ts_error_if_step_fails","Error if no step succeeds","TSSetErrorIfStepFails",ts->errorifstepfailed,&ts->errorifstepfailed,NULL);CHKERRQ(ierr);
2310298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_rtol","Relative tolerance for local truncation error","TSSetTolerances",ts->rtol,&ts->rtol,NULL);CHKERRQ(ierr);
2320298fd71SBarry Smith   ierr = PetscOptionsReal("-ts_atol","Absolute tolerance for local truncation error","TSSetTolerances",ts->atol,&ts->atol,NULL);CHKERRQ(ierr);
233bdad233fSMatthew Knepley 
23456f85f32SBarry Smith #if defined(PETSC_HAVE_SAWS)
23556f85f32SBarry Smith   {
23656f85f32SBarry Smith   PetscBool set;
23756f85f32SBarry Smith   flg  = PETSC_FALSE;
23856f85f32SBarry Smith   ierr = PetscOptionsBool("-ts_saws_block","Block for SAWs memory snooper at end of TSSolve","PetscObjectSAWsBlock",((PetscObject)ts)->amspublishblock,&flg,&set);CHKERRQ(ierr);
23956f85f32SBarry Smith   if (set) {
24056f85f32SBarry Smith     ierr = PetscObjectSAWsSetBlock((PetscObject)ts,flg);CHKERRQ(ierr);
24156f85f32SBarry Smith   }
24256f85f32SBarry Smith   }
24356f85f32SBarry Smith #endif
24456f85f32SBarry Smith 
245bdad233fSMatthew Knepley   /* Monitor options */
246cd11d68dSLisandro Dalcin   ierr = TSMonitorSetFromOptions(ts,"-ts_monitor","Monitor time and timestep size","TSMonitorDefault",TSMonitorDefault,NULL);CHKERRQ(ierr);
247fde5950dSBarry Smith   ierr = TSMonitorSetFromOptions(ts,"-ts_monitor_solution","View the solution at each timestep","TSMonitorSolution",TSMonitorSolution,NULL);CHKERRQ(ierr);
248fde5950dSBarry Smith   ierr = TSAdjointMonitorSetFromOptions(ts,"-ts_adjoint_monitor","Monitor adjoint timestep size","TSAdjointMonitorDefault",TSAdjointMonitorDefault,NULL);CHKERRQ(ierr);
249e875c4f7SBarry Smith   ierr = TSAdjointMonitorSetFromOptions(ts,"-ts_adjoint_monitor_sensi","Monitor sensitivity in the adjoint computation","TSAdjointMonitorSensi",TSAdjointMonitorSensi,NULL);CHKERRQ(ierr);
250fde5950dSBarry Smith 
2515180491cSLisandro Dalcin   ierr = PetscOptionsString("-ts_monitor_python","Use Python function","TSMonitorSet",0,monfilename,PETSC_MAX_PATH_LEN,&flg);CHKERRQ(ierr);
2525180491cSLisandro Dalcin   if (flg) {ierr = PetscPythonMonitorSet((PetscObject)ts,monfilename);CHKERRQ(ierr);}
2535180491cSLisandro Dalcin 
2544f09c107SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_solution","Monitor solution graphically","TSMonitorLGSolution",&opt);CHKERRQ(ierr);
255b3603a34SBarry Smith   if (opt) {
2560b039ecaSBarry Smith     TSMonitorLGCtx ctx;
2573923b477SBarry Smith     PetscInt       howoften = 1;
258b3603a34SBarry Smith 
2590298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_solution","Monitor solution graphically","TSMonitorLGSolution",howoften,&howoften,NULL);CHKERRQ(ierr);
2606ba87a44SLisandro Dalcin     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,400,300,howoften,&ctx);CHKERRQ(ierr);
2614f09c107SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGSolution,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
262bdad233fSMatthew Knepley   }
2636ba87a44SLisandro Dalcin 
2644f09c107SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_error","Monitor error graphically","TSMonitorLGError",&opt);CHKERRQ(ierr);
265ef20d060SBarry Smith   if (opt) {
2660b039ecaSBarry Smith     TSMonitorLGCtx ctx;
2673923b477SBarry Smith     PetscInt       howoften = 1;
268ef20d060SBarry Smith 
2690298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_error","Monitor error graphically","TSMonitorLGError",howoften,&howoften,NULL);CHKERRQ(ierr);
2706ba87a44SLisandro Dalcin     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,400,300,howoften,&ctx);CHKERRQ(ierr);
2714f09c107SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGError,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
272ef20d060SBarry Smith   }
2736934998bSLisandro Dalcin 
2746934998bSLisandro Dalcin   ierr = PetscOptionsName("-ts_monitor_lg_timestep","Monitor timestep size graphically","TSMonitorLGTimeStep",&opt);CHKERRQ(ierr);
2756934998bSLisandro Dalcin   if (opt) {
2766934998bSLisandro Dalcin     TSMonitorLGCtx ctx;
2776934998bSLisandro Dalcin     PetscInt       howoften = 1;
2786934998bSLisandro Dalcin 
2796934998bSLisandro Dalcin     ierr = PetscOptionsInt("-ts_monitor_lg_timestep","Monitor timestep size graphically","TSMonitorLGTimeStep",howoften,&howoften,NULL);CHKERRQ(ierr);
2806ba87a44SLisandro Dalcin     ierr = TSMonitorLGCtxCreate(PetscObjectComm((PetscObject)ts),NULL,NULL,PETSC_DECIDE,PETSC_DECIDE,400,300,howoften,&ctx);CHKERRQ(ierr);
2816934998bSLisandro Dalcin     ierr = TSMonitorSet(ts,TSMonitorLGTimeStep,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
2826934998bSLisandro Dalcin   }
283201da799SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_snes_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGSNESIterations",&opt);CHKERRQ(ierr);
284201da799SBarry Smith   if (opt) {
285201da799SBarry Smith     TSMonitorLGCtx ctx;
286201da799SBarry Smith     PetscInt       howoften = 1;
287201da799SBarry Smith 
2880298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_snes_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGSNESIterations",howoften,&howoften,NULL);CHKERRQ(ierr);
2896ba87a44SLisandro Dalcin     ierr = TSMonitorLGCtxCreate(PetscObjectComm((PetscObject)ts),NULL,NULL,PETSC_DECIDE,PETSC_DECIDE,400,300,howoften,&ctx);CHKERRQ(ierr);
290201da799SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGSNESIterations,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
291201da799SBarry Smith   }
292201da799SBarry Smith   ierr = PetscOptionsName("-ts_monitor_lg_ksp_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGKSPIterations",&opt);CHKERRQ(ierr);
293201da799SBarry Smith   if (opt) {
294201da799SBarry Smith     TSMonitorLGCtx ctx;
295201da799SBarry Smith     PetscInt       howoften = 1;
296201da799SBarry Smith 
2970298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_lg_ksp_iterations","Monitor number nonlinear iterations for each timestep graphically","TSMonitorLGKSPIterations",howoften,&howoften,NULL);CHKERRQ(ierr);
2986ba87a44SLisandro Dalcin     ierr = TSMonitorLGCtxCreate(PetscObjectComm((PetscObject)ts),NULL,NULL,PETSC_DECIDE,PETSC_DECIDE,400,300,howoften,&ctx);CHKERRQ(ierr);
299201da799SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorLGKSPIterations,ctx,(PetscErrorCode (*)(void**))TSMonitorLGCtxDestroy);CHKERRQ(ierr);
300201da799SBarry Smith   }
3018189c53fSBarry Smith   ierr = PetscOptionsName("-ts_monitor_sp_eig","Monitor eigenvalues of linearized operator graphically","TSMonitorSPEig",&opt);CHKERRQ(ierr);
3028189c53fSBarry Smith   if (opt) {
3038189c53fSBarry Smith     TSMonitorSPEigCtx ctx;
3048189c53fSBarry Smith     PetscInt          howoften = 1;
3058189c53fSBarry Smith 
3060298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_sp_eig","Monitor eigenvalues of linearized operator graphically","TSMonitorSPEig",howoften,&howoften,NULL);CHKERRQ(ierr);
3076934998bSLisandro Dalcin     ierr = TSMonitorSPEigCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,howoften,&ctx);CHKERRQ(ierr);
3088189c53fSBarry Smith     ierr = TSMonitorSet(ts,TSMonitorSPEig,ctx,(PetscErrorCode (*)(void**))TSMonitorSPEigCtxDestroy);CHKERRQ(ierr);
3098189c53fSBarry Smith   }
310ef20d060SBarry Smith   opt  = PETSC_FALSE;
3110dcf80beSBarry Smith   ierr = PetscOptionsName("-ts_monitor_draw_solution","Monitor solution graphically","TSMonitorDrawSolution",&opt);CHKERRQ(ierr);
312a7cc72afSBarry Smith   if (opt) {
31383a4ac43SBarry Smith     TSMonitorDrawCtx ctx;
31483a4ac43SBarry Smith     PetscInt         howoften = 1;
315a80ad3e0SBarry Smith 
3160298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_draw_solution","Monitor solution graphically","TSMonitorDrawSolution",howoften,&howoften,NULL);CHKERRQ(ierr);
3176934998bSLisandro Dalcin     ierr = TSMonitorDrawCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,howoften,&ctx);CHKERRQ(ierr);
31883a4ac43SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDrawSolution,ctx,(PetscErrorCode (*)(void**))TSMonitorDrawCtxDestroy);CHKERRQ(ierr);
319bdad233fSMatthew Knepley   }
320fb1732b5SBarry Smith   opt  = PETSC_FALSE;
3219110b2e7SHong Zhang   ierr = PetscOptionsName("-ts_adjoint_monitor_draw_sensi","Monitor adjoint sensitivities (lambda only) graphically","TSAdjointMonitorDrawSensi",&opt);CHKERRQ(ierr);
3229110b2e7SHong Zhang   if (opt) {
3239110b2e7SHong Zhang     TSMonitorDrawCtx ctx;
3249110b2e7SHong Zhang     PetscInt         howoften = 1;
3259110b2e7SHong Zhang 
3269110b2e7SHong Zhang     ierr = PetscOptionsInt("-ts_adjoint_monitor_draw_sensi","Monitor adjoint sensitivities (lambda only) graphically","TSAdjointMonitorDrawSensi",howoften,&howoften,NULL);CHKERRQ(ierr);
3276934998bSLisandro Dalcin     ierr = TSMonitorDrawCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,howoften,&ctx);CHKERRQ(ierr);
3289110b2e7SHong Zhang     ierr = TSAdjointMonitorSet(ts,TSAdjointMonitorDrawSensi,ctx,(PetscErrorCode (*)(void**))TSMonitorDrawCtxDestroy);CHKERRQ(ierr);
3299110b2e7SHong Zhang   }
3309110b2e7SHong Zhang   opt  = PETSC_FALSE;
3312d5ee99bSBarry Smith   ierr = PetscOptionsName("-ts_monitor_draw_solution_phase","Monitor solution graphically","TSMonitorDrawSolutionPhase",&opt);CHKERRQ(ierr);
3322d5ee99bSBarry Smith   if (opt) {
3332d5ee99bSBarry Smith     TSMonitorDrawCtx ctx;
3342d5ee99bSBarry Smith     PetscReal        bounds[4];
3352d5ee99bSBarry Smith     PetscInt         n = 4;
3362d5ee99bSBarry Smith     PetscDraw        draw;
3376934998bSLisandro Dalcin     PetscDrawAxis    axis;
3382d5ee99bSBarry Smith 
3392d5ee99bSBarry Smith     ierr = PetscOptionsRealArray("-ts_monitor_draw_solution_phase","Monitor solution graphically","TSMonitorDrawSolutionPhase",bounds,&n,NULL);CHKERRQ(ierr);
3402d5ee99bSBarry Smith     if (n != 4) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Must provide bounding box of phase field");
3416934998bSLisandro Dalcin     ierr = TSMonitorDrawCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,1,&ctx);CHKERRQ(ierr);
3422d5ee99bSBarry Smith     ierr = PetscViewerDrawGetDraw(ctx->viewer,0,&draw);CHKERRQ(ierr);
3436934998bSLisandro Dalcin     ierr = PetscViewerDrawGetDrawAxis(ctx->viewer,0,&axis);CHKERRQ(ierr);
3446934998bSLisandro Dalcin     ierr = PetscDrawAxisSetLimits(axis,bounds[0],bounds[2],bounds[1],bounds[3]);CHKERRQ(ierr);
3456934998bSLisandro Dalcin     ierr = PetscDrawAxisSetLabels(axis,"Phase Diagram","Variable 1","Variable 2");CHKERRQ(ierr);
3462d5ee99bSBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDrawSolutionPhase,ctx,(PetscErrorCode (*)(void**))TSMonitorDrawCtxDestroy);CHKERRQ(ierr);
3472d5ee99bSBarry Smith   }
3482d5ee99bSBarry Smith   opt  = PETSC_FALSE;
3490dcf80beSBarry Smith   ierr = PetscOptionsName("-ts_monitor_draw_error","Monitor error graphically","TSMonitorDrawError",&opt);CHKERRQ(ierr);
3503a471f94SBarry Smith   if (opt) {
35183a4ac43SBarry Smith     TSMonitorDrawCtx ctx;
35283a4ac43SBarry Smith     PetscInt         howoften = 1;
3533a471f94SBarry Smith 
3540298fd71SBarry Smith     ierr = PetscOptionsInt("-ts_monitor_draw_error","Monitor error graphically","TSMonitorDrawError",howoften,&howoften,NULL);CHKERRQ(ierr);
3556934998bSLisandro Dalcin     ierr = TSMonitorDrawCtxCreate(PetscObjectComm((PetscObject)ts),0,0,PETSC_DECIDE,PETSC_DECIDE,300,300,howoften,&ctx);CHKERRQ(ierr);
35683a4ac43SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDrawError,ctx,(PetscErrorCode (*)(void**))TSMonitorDrawCtxDestroy);CHKERRQ(ierr);
3573a471f94SBarry Smith   }
358fde5950dSBarry Smith 
359ed81e22dSJed Brown   opt  = PETSC_FALSE;
36091b97e58SBarry 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);
361ed81e22dSJed Brown   if (flg) {
362ed81e22dSJed Brown     const char *ptr,*ptr2;
363ed81e22dSJed Brown     char       *filetemplate;
364ce94432eSBarry Smith     if (!monfilename[0]) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"-ts_monitor_solution_vtk requires a file template, e.g. filename-%%03D.vts");
365ed81e22dSJed Brown     /* Do some cursory validation of the input. */
366ed81e22dSJed Brown     ierr = PetscStrstr(monfilename,"%",(char**)&ptr);CHKERRQ(ierr);
367ce94432eSBarry Smith     if (!ptr) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"-ts_monitor_solution_vtk requires a file template, e.g. filename-%%03D.vts");
368ed81e22dSJed Brown     for (ptr++; ptr && *ptr; ptr++) {
369ed81e22dSJed Brown       ierr = PetscStrchr("DdiouxX",*ptr,(char**)&ptr2);CHKERRQ(ierr);
370ce94432eSBarry 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");
371ed81e22dSJed Brown       if (ptr2) break;
372ed81e22dSJed Brown     }
373ed81e22dSJed Brown     ierr = PetscStrallocpy(monfilename,&filetemplate);CHKERRQ(ierr);
374ed81e22dSJed Brown     ierr = TSMonitorSet(ts,TSMonitorSolutionVTK,filetemplate,(PetscErrorCode (*)(void**))TSMonitorSolutionVTKDestroy);CHKERRQ(ierr);
375ed81e22dSJed Brown   }
376bdad233fSMatthew Knepley 
377d1212d36SBarry Smith   ierr = PetscOptionsString("-ts_monitor_dmda_ray","Display a ray of the solution","None","y=0",dir,16,&flg);CHKERRQ(ierr);
378d1212d36SBarry Smith   if (flg) {
379d1212d36SBarry Smith     TSMonitorDMDARayCtx *rayctx;
380d1212d36SBarry Smith     int                  ray = 0;
381d1212d36SBarry Smith     DMDADirection        ddir;
382d1212d36SBarry Smith     DM                   da;
383d1212d36SBarry Smith     PetscMPIInt          rank;
384d1212d36SBarry Smith 
385ce94432eSBarry Smith     if (dir[1] != '=') SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Unknown ray %s",dir);
386d1212d36SBarry Smith     if (dir[0] == 'x') ddir = DMDA_X;
387d1212d36SBarry Smith     else if (dir[0] == 'y') ddir = DMDA_Y;
388ce94432eSBarry Smith     else SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Unknown ray %s",dir);
389d1212d36SBarry Smith     sscanf(dir+2,"%d",&ray);
390d1212d36SBarry Smith 
391d1212d36SBarry Smith     ierr = PetscInfo2(((PetscObject)ts),"Displaying DMDA ray %c = %D\n",dir[0],ray);CHKERRQ(ierr);
392b00a9115SJed Brown     ierr = PetscNew(&rayctx);CHKERRQ(ierr);
393d1212d36SBarry Smith     ierr = TSGetDM(ts,&da);CHKERRQ(ierr);
394d1212d36SBarry Smith     ierr = DMDAGetRay(da,ddir,ray,&rayctx->ray,&rayctx->scatter);CHKERRQ(ierr);
395ce94432eSBarry Smith     ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)ts),&rank);CHKERRQ(ierr);
396d1212d36SBarry Smith     if (!rank) {
397d1212d36SBarry Smith       ierr = PetscViewerDrawOpen(PETSC_COMM_SELF,0,0,0,0,600,300,&rayctx->viewer);CHKERRQ(ierr);
398d1212d36SBarry Smith     }
39951b4a12fSMatthew G. Knepley     rayctx->lgctx = NULL;
400d1212d36SBarry Smith     ierr = TSMonitorSet(ts,TSMonitorDMDARay,rayctx,TSMonitorDMDARayDestroy);CHKERRQ(ierr);
401d1212d36SBarry Smith   }
40251b4a12fSMatthew G. Knepley   ierr = PetscOptionsString("-ts_monitor_lg_dmda_ray","Display a ray of the solution","None","x=0",dir,16,&flg);CHKERRQ(ierr);
40351b4a12fSMatthew G. Knepley   if (flg) {
40451b4a12fSMatthew G. Knepley     TSMonitorDMDARayCtx *rayctx;
40551b4a12fSMatthew G. Knepley     int                 ray = 0;
40651b4a12fSMatthew G. Knepley     DMDADirection       ddir;
40751b4a12fSMatthew G. Knepley     DM                  da;
40851b4a12fSMatthew G. Knepley     PetscInt            howoften = 1;
409d1212d36SBarry Smith 
41051b4a12fSMatthew G. Knepley     if (dir[1] != '=') SETERRQ1(PetscObjectComm((PetscObject) ts), PETSC_ERR_ARG_WRONG, "Malformed ray %s", dir);
41151b4a12fSMatthew G. Knepley     if      (dir[0] == 'x') ddir = DMDA_X;
41251b4a12fSMatthew G. Knepley     else if (dir[0] == 'y') ddir = DMDA_Y;
41351b4a12fSMatthew G. Knepley     else SETERRQ1(PetscObjectComm((PetscObject) ts), PETSC_ERR_ARG_WRONG, "Unknown ray direction %s", dir);
41451b4a12fSMatthew G. Knepley     sscanf(dir+2, "%d", &ray);
4151c3436cfSJed Brown 
41651b4a12fSMatthew G. Knepley     ierr = PetscInfo2(((PetscObject) ts),"Displaying LG DMDA ray %c = %D\n", dir[0], ray);CHKERRQ(ierr);
417b00a9115SJed Brown     ierr = PetscNew(&rayctx);CHKERRQ(ierr);
41851b4a12fSMatthew G. Knepley     ierr = TSGetDM(ts, &da);CHKERRQ(ierr);
41951b4a12fSMatthew G. Knepley     ierr = DMDAGetRay(da, ddir, ray, &rayctx->ray, &rayctx->scatter);CHKERRQ(ierr);
42051b4a12fSMatthew G. Knepley     ierr = TSMonitorLGCtxCreate(PETSC_COMM_SELF,0,0,PETSC_DECIDE,PETSC_DECIDE,600,400,howoften,&rayctx->lgctx);CHKERRQ(ierr);
42151b4a12fSMatthew G. Knepley     ierr = TSMonitorSet(ts, TSMonitorLGDMDARay, rayctx, TSMonitorDMDARayDestroy);CHKERRQ(ierr);
42251b4a12fSMatthew G. Knepley   }
423a7a1495cSBarry Smith 
424b3d3934dSBarry Smith   ierr = PetscOptionsName("-ts_monitor_envelope","Monitor maximum and minimum value of each component of the solution","TSMonitorEnvelope",&opt);CHKERRQ(ierr);
425b3d3934dSBarry Smith   if (opt) {
426b3d3934dSBarry Smith     TSMonitorEnvelopeCtx ctx;
427b3d3934dSBarry Smith 
428b3d3934dSBarry Smith     ierr = TSMonitorEnvelopeCtxCreate(ts,&ctx);CHKERRQ(ierr);
429b3d3934dSBarry Smith     ierr = TSMonitorSet(ts,TSMonitorEnvelope,ctx,(PetscErrorCode (*)(void**))TSMonitorEnvelopeCtxDestroy);CHKERRQ(ierr);
430b3d3934dSBarry Smith   }
431b3d3934dSBarry Smith 
432847ff0e1SMatthew G. Knepley   flg  = PETSC_FALSE;
433847ff0e1SMatthew G. Knepley   ierr = PetscOptionsBool("-ts_fd_color", "Use finite differences with coloring to compute IJacobian", "TSComputeJacobianDefaultColor", flg, &flg, NULL);CHKERRQ(ierr);
434847ff0e1SMatthew G. Knepley   if (flg) {
435847ff0e1SMatthew G. Knepley     DM   dm;
436847ff0e1SMatthew G. Knepley     DMTS tdm;
437847ff0e1SMatthew G. Knepley 
438847ff0e1SMatthew G. Knepley     ierr = TSGetDM(ts, &dm);CHKERRQ(ierr);
439847ff0e1SMatthew G. Knepley     ierr = DMGetDMTS(dm, &tdm);CHKERRQ(ierr);
440847ff0e1SMatthew G. Knepley     tdm->ijacobianctx = NULL;
441847ff0e1SMatthew G. Knepley     ierr = TSSetIJacobian(ts, NULL, NULL, TSComputeIJacobianDefaultColor, 0);CHKERRQ(ierr);
442847ff0e1SMatthew G. Knepley     ierr = PetscInfo(ts, "Setting default finite difference coloring Jacobian matrix\n");CHKERRQ(ierr);
443847ff0e1SMatthew G. Knepley   }
444847ff0e1SMatthew G. Knepley 
445d763cef2SBarry Smith   /* Handle specific TS options */
446d763cef2SBarry Smith   if (ts->ops->setfromoptions) {
4476991f827SBarry Smith     ierr = (*ts->ops->setfromoptions)(PetscOptionsObject,ts);CHKERRQ(ierr);
448d763cef2SBarry Smith   }
449fbc52257SHong Zhang 
450a7bdc993SLisandro Dalcin   /* Handle TSAdapt options */
451a7bdc993SLisandro Dalcin   ierr = TSGetAdapt(ts,&ts->adapt);CHKERRQ(ierr);
452a7bdc993SLisandro Dalcin   ierr = TSAdaptSetDefaultType(ts->adapt,ts->default_adapt_type);CHKERRQ(ierr);
453a7bdc993SLisandro Dalcin   ierr = TSAdaptSetFromOptions(PetscOptionsObject,ts->adapt);CHKERRQ(ierr);
454a7bdc993SLisandro Dalcin 
45568bece0bSHong Zhang   /* TS trajectory must be set after TS, since it may use some TS options above */
4564f122a70SLisandro Dalcin   tflg = ts->trajectory ? PETSC_TRUE : PETSC_FALSE;
45768bece0bSHong Zhang   ierr = PetscOptionsBool("-ts_save_trajectory","Save the solution at each timestep","TSSetSaveTrajectory",tflg,&tflg,NULL);CHKERRQ(ierr);
45868bece0bSHong Zhang   if (tflg) {
45968bece0bSHong Zhang     ierr = TSSetSaveTrajectory(ts);CHKERRQ(ierr);
46068bece0bSHong Zhang   }
4614f122a70SLisandro Dalcin   tflg = ts->adjoint_solve ? PETSC_TRUE : PETSC_FALSE;
46268bece0bSHong Zhang   ierr = PetscOptionsBool("-ts_adjoint_solve","Solve the adjoint problem immediately after solving the forward problem","",tflg,&tflg,&flg);CHKERRQ(ierr);
46368bece0bSHong Zhang   if (flg) {
46468bece0bSHong Zhang     ierr = TSSetSaveTrajectory(ts);CHKERRQ(ierr);
46568bece0bSHong Zhang     ts->adjoint_solve = tflg;
46668bece0bSHong Zhang   }
467d763cef2SBarry Smith 
468d763cef2SBarry Smith   /* process any options handlers added with PetscObjectAddOptionsHandler() */
4690633abcbSJed Brown   ierr = PetscObjectProcessOptionsHandlers(PetscOptionsObject,(PetscObject)ts);CHKERRQ(ierr);
470fbc52257SHong Zhang   ierr = PetscOptionsEnd();CHKERRQ(ierr);
471d763cef2SBarry Smith 
4724f122a70SLisandro Dalcin   if (ts->trajectory) {
4734f122a70SLisandro Dalcin     ierr = TSTrajectorySetFromOptions(ts->trajectory,ts);CHKERRQ(ierr);
474d763cef2SBarry Smith   }
47568bece0bSHong Zhang 
4764f122a70SLisandro Dalcin   ierr = TSGetSNES(ts,&ts->snes);CHKERRQ(ierr);
4774f122a70SLisandro Dalcin   if (ts->problem_type == TS_LINEAR) {ierr = SNESSetType(ts->snes,SNESKSPONLY);CHKERRQ(ierr);}
4784f122a70SLisandro Dalcin   ierr = SNESSetFromOptions(ts->snes);CHKERRQ(ierr);
479d763cef2SBarry Smith   PetscFunctionReturn(0);
480d763cef2SBarry Smith }
481d763cef2SBarry Smith 
482d2daff3dSHong Zhang /*@
48378fbdcc8SBarry Smith    TSGetTrajectory - Gets the trajectory from a TS if it exists
48478fbdcc8SBarry Smith 
48578fbdcc8SBarry Smith    Collective on TS
48678fbdcc8SBarry Smith 
48778fbdcc8SBarry Smith    Input Parameters:
48878fbdcc8SBarry Smith .  ts - the TS context obtained from TSCreate()
48978fbdcc8SBarry Smith 
49078fbdcc8SBarry Smith    Output Parameters;
49178fbdcc8SBarry Smith .  tr - the TSTrajectory object, if it exists
49278fbdcc8SBarry Smith 
49378fbdcc8SBarry Smith    Note: This routine should be called after all TS options have been set
49478fbdcc8SBarry Smith 
49578fbdcc8SBarry Smith    Level: advanced
49678fbdcc8SBarry Smith 
49778fbdcc8SBarry Smith .seealso: TSGetTrajectory(), TSAdjointSolve(), TSTrajectory, TSTrajectoryCreate()
49878fbdcc8SBarry Smith 
49978fbdcc8SBarry Smith .keywords: TS, set, checkpoint,
50078fbdcc8SBarry Smith @*/
50178fbdcc8SBarry Smith PetscErrorCode  TSGetTrajectory(TS ts,TSTrajectory *tr)
50278fbdcc8SBarry Smith {
50378fbdcc8SBarry Smith   PetscFunctionBegin;
50478fbdcc8SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
50578fbdcc8SBarry Smith   *tr = ts->trajectory;
50678fbdcc8SBarry Smith   PetscFunctionReturn(0);
50778fbdcc8SBarry Smith }
50878fbdcc8SBarry Smith 
50978fbdcc8SBarry Smith /*@
510bc952696SBarry Smith    TSSetSaveTrajectory - Causes the TS to save its solutions as it iterates forward in time in a TSTrajectory object
511d2daff3dSHong Zhang 
512d2daff3dSHong Zhang    Collective on TS
513d2daff3dSHong Zhang 
514d2daff3dSHong Zhang    Input Parameters:
515bc952696SBarry Smith .  ts - the TS context obtained from TSCreate()
516bc952696SBarry Smith 
51778fbdcc8SBarry Smith    Options Database:
51878fbdcc8SBarry Smith +  -ts_save_trajectory - saves the trajectory to a file
51978fbdcc8SBarry Smith -  -ts_trajectory_type type
52078fbdcc8SBarry Smith 
52168bece0bSHong Zhang Note: This routine should be called after all TS options have been set
522d2daff3dSHong Zhang 
52378fbdcc8SBarry Smith     The TSTRAJECTORYVISUALIZATION files can be loaded into Python with $PETSC_DIR/bin/PetscBinaryIOTrajectory.py and
52478fbdcc8SBarry Smith    MATLAB with $PETSC_DIR/share/petsc/matlab/PetscReadBinaryTrajectory.m
52578fbdcc8SBarry Smith 
526d2daff3dSHong Zhang    Level: intermediate
527d2daff3dSHong Zhang 
52878fbdcc8SBarry Smith .seealso: TSGetTrajectory(), TSAdjointSolve(), TSTrajectoryType, TSSetTrajectoryType()
529d2daff3dSHong Zhang 
530bc952696SBarry Smith .keywords: TS, set, checkpoint,
531d2daff3dSHong Zhang @*/
532bc952696SBarry Smith PetscErrorCode  TSSetSaveTrajectory(TS ts)
533d2daff3dSHong Zhang {
534bc952696SBarry Smith   PetscErrorCode ierr;
535bc952696SBarry Smith 
536d2daff3dSHong Zhang   PetscFunctionBegin;
537d2daff3dSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
538bc952696SBarry Smith   if (!ts->trajectory) {
539bc952696SBarry Smith     ierr = TSTrajectoryCreate(PetscObjectComm((PetscObject)ts),&ts->trajectory);CHKERRQ(ierr);
540972caf09SHong Zhang     ierr = TSTrajectorySetFromOptions(ts->trajectory,ts);CHKERRQ(ierr);
541bc952696SBarry Smith   }
542d2daff3dSHong Zhang   PetscFunctionReturn(0);
543d2daff3dSHong Zhang }
544d2daff3dSHong Zhang 
545a7a1495cSBarry Smith /*@
546a7a1495cSBarry Smith    TSComputeRHSJacobian - Computes the Jacobian matrix that has been
547a7a1495cSBarry Smith       set with TSSetRHSJacobian().
548a7a1495cSBarry Smith 
549a7a1495cSBarry Smith    Collective on TS and Vec
550a7a1495cSBarry Smith 
551a7a1495cSBarry Smith    Input Parameters:
552316643e7SJed Brown +  ts - the TS context
553a7a1495cSBarry Smith .  t - current timestep
5540910c330SBarry Smith -  U - input vector
555a7a1495cSBarry Smith 
556a7a1495cSBarry Smith    Output Parameters:
557a7a1495cSBarry Smith +  A - Jacobian matrix
558a7a1495cSBarry Smith .  B - optional preconditioning matrix
559a7a1495cSBarry Smith -  flag - flag indicating matrix structure
560a7a1495cSBarry Smith 
561a7a1495cSBarry Smith    Notes:
562a7a1495cSBarry Smith    Most users should not need to explicitly call this routine, as it
563a7a1495cSBarry Smith    is used internally within the nonlinear solvers.
564a7a1495cSBarry Smith 
56594b7f48cSBarry Smith    See KSPSetOperators() for important information about setting the
566a7a1495cSBarry Smith    flag parameter.
567a7a1495cSBarry Smith 
568a7a1495cSBarry Smith    Level: developer
569a7a1495cSBarry Smith 
570a7a1495cSBarry Smith .keywords: SNES, compute, Jacobian, matrix
571a7a1495cSBarry Smith 
57294b7f48cSBarry Smith .seealso:  TSSetRHSJacobian(), KSPSetOperators()
573a7a1495cSBarry Smith @*/
574d1e9a80fSBarry Smith PetscErrorCode  TSComputeRHSJacobian(TS ts,PetscReal t,Vec U,Mat A,Mat B)
575a7a1495cSBarry Smith {
576dfbe8321SBarry Smith   PetscErrorCode   ierr;
577270bf2e7SJed Brown   PetscObjectState Ustate;
5786c1e1eecSBarry Smith   PetscObjectId    Uid;
57924989b8cSPeter Brune   DM               dm;
580942e3340SBarry Smith   DMTS             tsdm;
58124989b8cSPeter Brune   TSRHSJacobian    rhsjacobianfunc;
58224989b8cSPeter Brune   void             *ctx;
58324989b8cSPeter Brune   TSIJacobian      ijacobianfunc;
584b2df71adSDebojyoti Ghosh   TSRHSFunction    rhsfunction;
585a7a1495cSBarry Smith 
586a7a1495cSBarry Smith   PetscFunctionBegin;
5870700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5880910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
5890910c330SBarry Smith   PetscCheckSameComm(ts,1,U,3);
59024989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
591942e3340SBarry Smith   ierr = DMGetDMTS(dm,&tsdm);CHKERRQ(ierr);
59224989b8cSPeter Brune   ierr = DMTSGetRHSJacobian(dm,&rhsjacobianfunc,&ctx);CHKERRQ(ierr);
5930298fd71SBarry Smith   ierr = DMTSGetIJacobian(dm,&ijacobianfunc,NULL);CHKERRQ(ierr);
594b2df71adSDebojyoti Ghosh   ierr = DMTSGetRHSFunction(dm,&rhsfunction,&ctx);CHKERRQ(ierr);
59559e4f3c8SBarry Smith   ierr = PetscObjectStateGet((PetscObject)U,&Ustate);CHKERRQ(ierr);
5966c1e1eecSBarry Smith   ierr = PetscObjectGetId((PetscObject)U,&Uid);CHKERRQ(ierr);
5976c1e1eecSBarry Smith   if (ts->rhsjacobian.time == t && (ts->problem_type == TS_LINEAR || (ts->rhsjacobian.Xid == Uid && ts->rhsjacobian.Xstate == Ustate)) && (rhsfunction != TSComputeRHSFunctionLinear)) {
5980e4ef248SJed Brown     PetscFunctionReturn(0);
599f8ede8e7SJed Brown   }
600d90be118SSean Farley 
601ce94432eSBarry Smith   if (!rhsjacobianfunc && !ijacobianfunc) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSJacobian() and / or TSSetIJacobian()");
602d90be118SSean Farley 
603e1244c69SJed Brown   if (ts->rhsjacobian.reuse) {
60494ab13aaSBarry Smith     ierr = MatShift(A,-ts->rhsjacobian.shift);CHKERRQ(ierr);
60594ab13aaSBarry Smith     ierr = MatScale(A,1./ts->rhsjacobian.scale);CHKERRQ(ierr);
60694ab13aaSBarry Smith     if (A != B) {
60794ab13aaSBarry Smith       ierr = MatShift(B,-ts->rhsjacobian.shift);CHKERRQ(ierr);
60894ab13aaSBarry Smith       ierr = MatScale(B,1./ts->rhsjacobian.scale);CHKERRQ(ierr);
609e1244c69SJed Brown     }
610e1244c69SJed Brown     ts->rhsjacobian.shift = 0;
611e1244c69SJed Brown     ts->rhsjacobian.scale = 1.;
612e1244c69SJed Brown   }
613e1244c69SJed Brown 
61424989b8cSPeter Brune   if (rhsjacobianfunc) {
6156cd88445SBarry Smith     PetscBool missing;
61694ab13aaSBarry Smith     ierr = PetscLogEventBegin(TS_JacobianEval,ts,U,A,B);CHKERRQ(ierr);
617a7a1495cSBarry Smith     PetscStackPush("TS user Jacobian function");
618d1e9a80fSBarry Smith     ierr = (*rhsjacobianfunc)(ts,t,U,A,B,ctx);CHKERRQ(ierr);
619a7a1495cSBarry Smith     PetscStackPop;
62094ab13aaSBarry Smith     ierr = PetscLogEventEnd(TS_JacobianEval,ts,U,A,B);CHKERRQ(ierr);
6216cd88445SBarry Smith     if (A) {
6226cd88445SBarry Smith       ierr = MatMissingDiagonal(A,&missing,NULL);CHKERRQ(ierr);
6236cd88445SBarry 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");
6246cd88445SBarry Smith     }
6256cd88445SBarry Smith     if (B && B != A) {
6266cd88445SBarry Smith       ierr = MatMissingDiagonal(B,&missing,NULL);CHKERRQ(ierr);
6276cd88445SBarry 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");
6286cd88445SBarry Smith     }
629ef66eb69SBarry Smith   } else {
63094ab13aaSBarry Smith     ierr = MatZeroEntries(A);CHKERRQ(ierr);
63194ab13aaSBarry Smith     if (A != B) {ierr = MatZeroEntries(B);CHKERRQ(ierr);}
632ef66eb69SBarry Smith   }
6330e4ef248SJed Brown   ts->rhsjacobian.time       = t;
6347f79407eSBarry Smith   ierr                       = PetscObjectGetId((PetscObject)U,&ts->rhsjacobian.Xid);CHKERRQ(ierr);
63559e4f3c8SBarry Smith   ierr                       = PetscObjectStateGet((PetscObject)U,&ts->rhsjacobian.Xstate);CHKERRQ(ierr);
636a7a1495cSBarry Smith   PetscFunctionReturn(0);
637a7a1495cSBarry Smith }
638a7a1495cSBarry Smith 
639316643e7SJed Brown /*@
640d763cef2SBarry Smith    TSComputeRHSFunction - Evaluates the right-hand-side function.
641d763cef2SBarry Smith 
642316643e7SJed Brown    Collective on TS and Vec
643316643e7SJed Brown 
644316643e7SJed Brown    Input Parameters:
645316643e7SJed Brown +  ts - the TS context
646316643e7SJed Brown .  t - current time
6470910c330SBarry Smith -  U - state vector
648316643e7SJed Brown 
649316643e7SJed Brown    Output Parameter:
650316643e7SJed Brown .  y - right hand side
651316643e7SJed Brown 
652316643e7SJed Brown    Note:
653316643e7SJed Brown    Most users should not need to explicitly call this routine, as it
654316643e7SJed Brown    is used internally within the nonlinear solvers.
655316643e7SJed Brown 
656316643e7SJed Brown    Level: developer
657316643e7SJed Brown 
658316643e7SJed Brown .keywords: TS, compute
659316643e7SJed Brown 
660316643e7SJed Brown .seealso: TSSetRHSFunction(), TSComputeIFunction()
661316643e7SJed Brown @*/
6620910c330SBarry Smith PetscErrorCode TSComputeRHSFunction(TS ts,PetscReal t,Vec U,Vec y)
663d763cef2SBarry Smith {
664dfbe8321SBarry Smith   PetscErrorCode ierr;
66524989b8cSPeter Brune   TSRHSFunction  rhsfunction;
66624989b8cSPeter Brune   TSIFunction    ifunction;
66724989b8cSPeter Brune   void           *ctx;
66824989b8cSPeter Brune   DM             dm;
66924989b8cSPeter Brune 
670d763cef2SBarry Smith   PetscFunctionBegin;
6710700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
6720910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
6730700a824SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,4);
67424989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
67524989b8cSPeter Brune   ierr = DMTSGetRHSFunction(dm,&rhsfunction,&ctx);CHKERRQ(ierr);
6760298fd71SBarry Smith   ierr = DMTSGetIFunction(dm,&ifunction,NULL);CHKERRQ(ierr);
677d763cef2SBarry Smith 
678ce94432eSBarry Smith   if (!rhsfunction && !ifunction) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSFunction() and / or TSSetIFunction()");
679d763cef2SBarry Smith 
6800910c330SBarry Smith   ierr = PetscLogEventBegin(TS_FunctionEval,ts,U,y,0);CHKERRQ(ierr);
68124989b8cSPeter Brune   if (rhsfunction) {
682d763cef2SBarry Smith     PetscStackPush("TS user right-hand-side function");
6830910c330SBarry Smith     ierr = (*rhsfunction)(ts,t,U,y,ctx);CHKERRQ(ierr);
684d763cef2SBarry Smith     PetscStackPop;
685214bc6a2SJed Brown   } else {
686214bc6a2SJed Brown     ierr = VecZeroEntries(y);CHKERRQ(ierr);
687b2cd27e8SJed Brown   }
68844a41b28SSean Farley 
6890910c330SBarry Smith   ierr = PetscLogEventEnd(TS_FunctionEval,ts,U,y,0);CHKERRQ(ierr);
690d763cef2SBarry Smith   PetscFunctionReturn(0);
691d763cef2SBarry Smith }
692d763cef2SBarry Smith 
693ef20d060SBarry Smith /*@
694ef20d060SBarry Smith    TSComputeSolutionFunction - Evaluates the solution function.
695ef20d060SBarry Smith 
696ef20d060SBarry Smith    Collective on TS and Vec
697ef20d060SBarry Smith 
698ef20d060SBarry Smith    Input Parameters:
699ef20d060SBarry Smith +  ts - the TS context
700ef20d060SBarry Smith -  t - current time
701ef20d060SBarry Smith 
702ef20d060SBarry Smith    Output Parameter:
7030910c330SBarry Smith .  U - the solution
704ef20d060SBarry Smith 
705ef20d060SBarry Smith    Note:
706ef20d060SBarry Smith    Most users should not need to explicitly call this routine, as it
707ef20d060SBarry Smith    is used internally within the nonlinear solvers.
708ef20d060SBarry Smith 
709ef20d060SBarry Smith    Level: developer
710ef20d060SBarry Smith 
711ef20d060SBarry Smith .keywords: TS, compute
712ef20d060SBarry Smith 
713abd5a294SJed Brown .seealso: TSSetSolutionFunction(), TSSetRHSFunction(), TSComputeIFunction()
714ef20d060SBarry Smith @*/
7150910c330SBarry Smith PetscErrorCode TSComputeSolutionFunction(TS ts,PetscReal t,Vec U)
716ef20d060SBarry Smith {
717ef20d060SBarry Smith   PetscErrorCode     ierr;
718ef20d060SBarry Smith   TSSolutionFunction solutionfunction;
719ef20d060SBarry Smith   void               *ctx;
720ef20d060SBarry Smith   DM                 dm;
721ef20d060SBarry Smith 
722ef20d060SBarry Smith   PetscFunctionBegin;
723ef20d060SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
7240910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
725ef20d060SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
726ef20d060SBarry Smith   ierr = DMTSGetSolutionFunction(dm,&solutionfunction,&ctx);CHKERRQ(ierr);
727ef20d060SBarry Smith 
728ef20d060SBarry Smith   if (solutionfunction) {
7299b7cd975SBarry Smith     PetscStackPush("TS user solution function");
7300910c330SBarry Smith     ierr = (*solutionfunction)(ts,t,U,ctx);CHKERRQ(ierr);
731ef20d060SBarry Smith     PetscStackPop;
732ef20d060SBarry Smith   }
733ef20d060SBarry Smith   PetscFunctionReturn(0);
734ef20d060SBarry Smith }
7359b7cd975SBarry Smith /*@
7369b7cd975SBarry Smith    TSComputeForcingFunction - Evaluates the forcing function.
7379b7cd975SBarry Smith 
7389b7cd975SBarry Smith    Collective on TS and Vec
7399b7cd975SBarry Smith 
7409b7cd975SBarry Smith    Input Parameters:
7419b7cd975SBarry Smith +  ts - the TS context
7429b7cd975SBarry Smith -  t - current time
7439b7cd975SBarry Smith 
7449b7cd975SBarry Smith    Output Parameter:
7459b7cd975SBarry Smith .  U - the function value
7469b7cd975SBarry Smith 
7479b7cd975SBarry Smith    Note:
7489b7cd975SBarry Smith    Most users should not need to explicitly call this routine, as it
7499b7cd975SBarry Smith    is used internally within the nonlinear solvers.
7509b7cd975SBarry Smith 
7519b7cd975SBarry Smith    Level: developer
7529b7cd975SBarry Smith 
7539b7cd975SBarry Smith .keywords: TS, compute
7549b7cd975SBarry Smith 
7559b7cd975SBarry Smith .seealso: TSSetSolutionFunction(), TSSetRHSFunction(), TSComputeIFunction()
7569b7cd975SBarry Smith @*/
7579b7cd975SBarry Smith PetscErrorCode TSComputeForcingFunction(TS ts,PetscReal t,Vec U)
7589b7cd975SBarry Smith {
7599b7cd975SBarry Smith   PetscErrorCode     ierr, (*forcing)(TS,PetscReal,Vec,void*);
7609b7cd975SBarry Smith   void               *ctx;
7619b7cd975SBarry Smith   DM                 dm;
7629b7cd975SBarry Smith 
7639b7cd975SBarry Smith   PetscFunctionBegin;
7649b7cd975SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
7659b7cd975SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
7669b7cd975SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
7679b7cd975SBarry Smith   ierr = DMTSGetForcingFunction(dm,&forcing,&ctx);CHKERRQ(ierr);
7689b7cd975SBarry Smith 
7699b7cd975SBarry Smith   if (forcing) {
7709b7cd975SBarry Smith     PetscStackPush("TS user forcing function");
7719b7cd975SBarry Smith     ierr = (*forcing)(ts,t,U,ctx);CHKERRQ(ierr);
7729b7cd975SBarry Smith     PetscStackPop;
7739b7cd975SBarry Smith   }
7749b7cd975SBarry Smith   PetscFunctionReturn(0);
7759b7cd975SBarry Smith }
776ef20d060SBarry Smith 
777214bc6a2SJed Brown static PetscErrorCode TSGetRHSVec_Private(TS ts,Vec *Frhs)
778214bc6a2SJed Brown {
7792dd45cf8SJed Brown   Vec            F;
780214bc6a2SJed Brown   PetscErrorCode ierr;
781214bc6a2SJed Brown 
782214bc6a2SJed Brown   PetscFunctionBegin;
7830298fd71SBarry Smith   *Frhs = NULL;
7840298fd71SBarry Smith   ierr  = TSGetIFunction(ts,&F,NULL,NULL);CHKERRQ(ierr);
785214bc6a2SJed Brown   if (!ts->Frhs) {
7862dd45cf8SJed Brown     ierr = VecDuplicate(F,&ts->Frhs);CHKERRQ(ierr);
787214bc6a2SJed Brown   }
788214bc6a2SJed Brown   *Frhs = ts->Frhs;
789214bc6a2SJed Brown   PetscFunctionReturn(0);
790214bc6a2SJed Brown }
791214bc6a2SJed Brown 
792214bc6a2SJed Brown static PetscErrorCode TSGetRHSMats_Private(TS ts,Mat *Arhs,Mat *Brhs)
793214bc6a2SJed Brown {
794214bc6a2SJed Brown   Mat            A,B;
7952dd45cf8SJed Brown   PetscErrorCode ierr;
79641a1d4d2SBarry Smith   TSIJacobian    ijacobian;
797214bc6a2SJed Brown 
798214bc6a2SJed Brown   PetscFunctionBegin;
799c0cd0301SJed Brown   if (Arhs) *Arhs = NULL;
800c0cd0301SJed Brown   if (Brhs) *Brhs = NULL;
80141a1d4d2SBarry Smith   ierr = TSGetIJacobian(ts,&A,&B,&ijacobian,NULL);CHKERRQ(ierr);
802214bc6a2SJed Brown   if (Arhs) {
803214bc6a2SJed Brown     if (!ts->Arhs) {
80441a1d4d2SBarry Smith       if (ijacobian) {
805214bc6a2SJed Brown         ierr = MatDuplicate(A,MAT_DO_NOT_COPY_VALUES,&ts->Arhs);CHKERRQ(ierr);
80641a1d4d2SBarry Smith       } else {
80741a1d4d2SBarry Smith         ts->Arhs = A;
80841a1d4d2SBarry Smith         ierr = PetscObjectReference((PetscObject)A);CHKERRQ(ierr);
80941a1d4d2SBarry Smith       }
8103565c898SBarry Smith     } else {
8113565c898SBarry Smith       PetscBool flg;
8123565c898SBarry Smith       ierr = SNESGetUseMatrixFree(ts->snes,NULL,&flg);CHKERRQ(ierr);
8133565c898SBarry Smith       /* Handle case where user provided only RHSJacobian and used -snes_mf_operator */
8143565c898SBarry Smith       if (flg && !ijacobian && ts->Arhs == ts->Brhs){
8153565c898SBarry Smith         ierr = PetscObjectDereference((PetscObject)ts->Arhs);CHKERRQ(ierr);
8163565c898SBarry Smith         ts->Arhs = A;
8173565c898SBarry Smith         ierr = PetscObjectReference((PetscObject)A);CHKERRQ(ierr);
8183565c898SBarry Smith       }
819214bc6a2SJed Brown     }
820214bc6a2SJed Brown     *Arhs = ts->Arhs;
821214bc6a2SJed Brown   }
822214bc6a2SJed Brown   if (Brhs) {
823214bc6a2SJed Brown     if (!ts->Brhs) {
824bdb70873SJed Brown       if (A != B) {
82541a1d4d2SBarry Smith         if (ijacobian) {
826214bc6a2SJed Brown           ierr = MatDuplicate(B,MAT_DO_NOT_COPY_VALUES,&ts->Brhs);CHKERRQ(ierr);
827bdb70873SJed Brown         } else {
82841a1d4d2SBarry Smith           ts->Brhs = B;
82941a1d4d2SBarry Smith           ierr = PetscObjectReference((PetscObject)B);CHKERRQ(ierr);
83041a1d4d2SBarry Smith         }
83141a1d4d2SBarry Smith       } else {
832bdb70873SJed Brown         ierr = PetscObjectReference((PetscObject)ts->Arhs);CHKERRQ(ierr);
83351699248SLisandro Dalcin         ts->Brhs = ts->Arhs;
834bdb70873SJed Brown       }
835214bc6a2SJed Brown     }
836214bc6a2SJed Brown     *Brhs = ts->Brhs;
837214bc6a2SJed Brown   }
838214bc6a2SJed Brown   PetscFunctionReturn(0);
839214bc6a2SJed Brown }
840214bc6a2SJed Brown 
841316643e7SJed Brown /*@
8420910c330SBarry Smith    TSComputeIFunction - Evaluates the DAE residual written in implicit form F(t,U,Udot)=0
843316643e7SJed Brown 
844316643e7SJed Brown    Collective on TS and Vec
845316643e7SJed Brown 
846316643e7SJed Brown    Input Parameters:
847316643e7SJed Brown +  ts - the TS context
848316643e7SJed Brown .  t - current time
8490910c330SBarry Smith .  U - state vector
8500910c330SBarry Smith .  Udot - time derivative of state vector
851214bc6a2SJed Brown -  imex - flag indicates if the method is IMEX so that the RHSFunction should be kept separate
852316643e7SJed Brown 
853316643e7SJed Brown    Output Parameter:
854316643e7SJed Brown .  Y - right hand side
855316643e7SJed Brown 
856316643e7SJed Brown    Note:
857316643e7SJed Brown    Most users should not need to explicitly call this routine, as it
858316643e7SJed Brown    is used internally within the nonlinear solvers.
859316643e7SJed Brown 
860316643e7SJed Brown    If the user did did not write their equations in implicit form, this
861316643e7SJed Brown    function recasts them in implicit form.
862316643e7SJed Brown 
863316643e7SJed Brown    Level: developer
864316643e7SJed Brown 
865316643e7SJed Brown .keywords: TS, compute
866316643e7SJed Brown 
867316643e7SJed Brown .seealso: TSSetIFunction(), TSComputeRHSFunction()
868316643e7SJed Brown @*/
8690910c330SBarry Smith PetscErrorCode TSComputeIFunction(TS ts,PetscReal t,Vec U,Vec Udot,Vec Y,PetscBool imex)
870316643e7SJed Brown {
871316643e7SJed Brown   PetscErrorCode ierr;
87224989b8cSPeter Brune   TSIFunction    ifunction;
87324989b8cSPeter Brune   TSRHSFunction  rhsfunction;
87424989b8cSPeter Brune   void           *ctx;
87524989b8cSPeter Brune   DM             dm;
876316643e7SJed Brown 
877316643e7SJed Brown   PetscFunctionBegin;
8780700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
8790910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
8800910c330SBarry Smith   PetscValidHeaderSpecific(Udot,VEC_CLASSID,4);
8810700a824SBarry Smith   PetscValidHeaderSpecific(Y,VEC_CLASSID,5);
882316643e7SJed Brown 
88324989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
88424989b8cSPeter Brune   ierr = DMTSGetIFunction(dm,&ifunction,&ctx);CHKERRQ(ierr);
8850298fd71SBarry Smith   ierr = DMTSGetRHSFunction(dm,&rhsfunction,NULL);CHKERRQ(ierr);
88624989b8cSPeter Brune 
887ce94432eSBarry Smith   if (!rhsfunction && !ifunction) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSFunction() and / or TSSetIFunction()");
888d90be118SSean Farley 
8890910c330SBarry Smith   ierr = PetscLogEventBegin(TS_FunctionEval,ts,U,Udot,Y);CHKERRQ(ierr);
89024989b8cSPeter Brune   if (ifunction) {
891316643e7SJed Brown     PetscStackPush("TS user implicit function");
8920910c330SBarry Smith     ierr = (*ifunction)(ts,t,U,Udot,Y,ctx);CHKERRQ(ierr);
893316643e7SJed Brown     PetscStackPop;
894214bc6a2SJed Brown   }
895214bc6a2SJed Brown   if (imex) {
89624989b8cSPeter Brune     if (!ifunction) {
8970910c330SBarry Smith       ierr = VecCopy(Udot,Y);CHKERRQ(ierr);
8982dd45cf8SJed Brown     }
89924989b8cSPeter Brune   } else if (rhsfunction) {
90024989b8cSPeter Brune     if (ifunction) {
901214bc6a2SJed Brown       Vec Frhs;
902214bc6a2SJed Brown       ierr = TSGetRHSVec_Private(ts,&Frhs);CHKERRQ(ierr);
9030910c330SBarry Smith       ierr = TSComputeRHSFunction(ts,t,U,Frhs);CHKERRQ(ierr);
904214bc6a2SJed Brown       ierr = VecAXPY(Y,-1,Frhs);CHKERRQ(ierr);
9052dd45cf8SJed Brown     } else {
9060910c330SBarry Smith       ierr = TSComputeRHSFunction(ts,t,U,Y);CHKERRQ(ierr);
9070910c330SBarry Smith       ierr = VecAYPX(Y,-1,Udot);CHKERRQ(ierr);
908316643e7SJed Brown     }
9094a6899ffSJed Brown   }
9100910c330SBarry Smith   ierr = PetscLogEventEnd(TS_FunctionEval,ts,U,Udot,Y);CHKERRQ(ierr);
911316643e7SJed Brown   PetscFunctionReturn(0);
912316643e7SJed Brown }
913316643e7SJed Brown 
914316643e7SJed Brown /*@
915316643e7SJed Brown    TSComputeIJacobian - Evaluates the Jacobian of the DAE
916316643e7SJed Brown 
917316643e7SJed Brown    Collective on TS and Vec
918316643e7SJed Brown 
919316643e7SJed Brown    Input
920316643e7SJed Brown       Input Parameters:
921316643e7SJed Brown +  ts - the TS context
922316643e7SJed Brown .  t - current timestep
9230910c330SBarry Smith .  U - state vector
9240910c330SBarry Smith .  Udot - time derivative of state vector
925214bc6a2SJed Brown .  shift - shift to apply, see note below
926214bc6a2SJed Brown -  imex - flag indicates if the method is IMEX so that the RHSJacobian should be kept separate
927316643e7SJed Brown 
928316643e7SJed Brown    Output Parameters:
929316643e7SJed Brown +  A - Jacobian matrix
9303565c898SBarry Smith -  B - matrix from which the preconditioner is constructed; often the same as A
931316643e7SJed Brown 
932316643e7SJed Brown    Notes:
9330910c330SBarry Smith    If F(t,U,Udot)=0 is the DAE, the required Jacobian is
934316643e7SJed Brown 
9350910c330SBarry Smith    dF/dU + shift*dF/dUdot
936316643e7SJed Brown 
937316643e7SJed Brown    Most users should not need to explicitly call this routine, as it
938316643e7SJed Brown    is used internally within the nonlinear solvers.
939316643e7SJed Brown 
940316643e7SJed Brown    Level: developer
941316643e7SJed Brown 
942316643e7SJed Brown .keywords: TS, compute, Jacobian, matrix
943316643e7SJed Brown 
944316643e7SJed Brown .seealso:  TSSetIJacobian()
94563495f91SJed Brown @*/
946d1e9a80fSBarry Smith PetscErrorCode TSComputeIJacobian(TS ts,PetscReal t,Vec U,Vec Udot,PetscReal shift,Mat A,Mat B,PetscBool imex)
947316643e7SJed Brown {
948316643e7SJed Brown   PetscErrorCode ierr;
94924989b8cSPeter Brune   TSIJacobian    ijacobian;
95024989b8cSPeter Brune   TSRHSJacobian  rhsjacobian;
95124989b8cSPeter Brune   DM             dm;
95224989b8cSPeter Brune   void           *ctx;
953316643e7SJed Brown 
954316643e7SJed Brown   PetscFunctionBegin;
9550700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
9560910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
9570910c330SBarry Smith   PetscValidHeaderSpecific(Udot,VEC_CLASSID,4);
958316643e7SJed Brown   PetscValidPointer(A,6);
95994ab13aaSBarry Smith   PetscValidHeaderSpecific(A,MAT_CLASSID,6);
960316643e7SJed Brown   PetscValidPointer(B,7);
96194ab13aaSBarry Smith   PetscValidHeaderSpecific(B,MAT_CLASSID,7);
96224989b8cSPeter Brune 
96324989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
96424989b8cSPeter Brune   ierr = DMTSGetIJacobian(dm,&ijacobian,&ctx);CHKERRQ(ierr);
9650298fd71SBarry Smith   ierr = DMTSGetRHSJacobian(dm,&rhsjacobian,NULL);CHKERRQ(ierr);
96624989b8cSPeter Brune 
967ce94432eSBarry Smith   if (!rhsjacobian && !ijacobian) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_USER,"Must call TSSetRHSJacobian() and / or TSSetIJacobian()");
968316643e7SJed Brown 
96994ab13aaSBarry Smith   ierr = PetscLogEventBegin(TS_JacobianEval,ts,U,A,B);CHKERRQ(ierr);
97024989b8cSPeter Brune   if (ijacobian) {
9716cd88445SBarry Smith     PetscBool missing;
972316643e7SJed Brown     PetscStackPush("TS user implicit Jacobian");
973d1e9a80fSBarry Smith     ierr = (*ijacobian)(ts,t,U,Udot,shift,A,B,ctx);CHKERRQ(ierr);
974316643e7SJed Brown     PetscStackPop;
9756cd88445SBarry Smith     ierr = MatMissingDiagonal(A,&missing,NULL);CHKERRQ(ierr);
9766cd88445SBarry 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");
9773565c898SBarry Smith     if (B != A) {
9786cd88445SBarry Smith       ierr = MatMissingDiagonal(B,&missing,NULL);CHKERRQ(ierr);
9796cd88445SBarry 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");
9806cd88445SBarry Smith     }
9814a6899ffSJed Brown   }
982214bc6a2SJed Brown   if (imex) {
983b5abc632SBarry Smith     if (!ijacobian) {  /* system was written as Udot = G(t,U) */
9844c26be97Sstefano_zampini       PetscBool assembled;
98594ab13aaSBarry Smith       ierr = MatZeroEntries(A);CHKERRQ(ierr);
9864c26be97Sstefano_zampini       ierr = MatAssembled(A,&assembled);CHKERRQ(ierr);
9874c26be97Sstefano_zampini       if (!assembled) {
9884c26be97Sstefano_zampini         ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
9894c26be97Sstefano_zampini         ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
9904c26be97Sstefano_zampini       }
99194ab13aaSBarry Smith       ierr = MatShift(A,shift);CHKERRQ(ierr);
99294ab13aaSBarry Smith       if (A != B) {
99394ab13aaSBarry Smith         ierr = MatZeroEntries(B);CHKERRQ(ierr);
9944c26be97Sstefano_zampini         ierr = MatAssembled(B,&assembled);CHKERRQ(ierr);
9954c26be97Sstefano_zampini         if (!assembled) {
9964c26be97Sstefano_zampini           ierr = MatAssemblyBegin(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
9974c26be97Sstefano_zampini           ierr = MatAssemblyEnd(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
9984c26be97Sstefano_zampini         }
99994ab13aaSBarry Smith         ierr = MatShift(B,shift);CHKERRQ(ierr);
1000214bc6a2SJed Brown       }
1001214bc6a2SJed Brown     }
1002214bc6a2SJed Brown   } else {
1003e1244c69SJed Brown     Mat Arhs = NULL,Brhs = NULL;
1004e1244c69SJed Brown     if (rhsjacobian) {
1005214bc6a2SJed Brown       ierr = TSGetRHSMats_Private(ts,&Arhs,&Brhs);CHKERRQ(ierr);
1006d1e9a80fSBarry Smith       ierr = TSComputeRHSJacobian(ts,t,U,Arhs,Brhs);CHKERRQ(ierr);
1007e1244c69SJed Brown     }
100894ab13aaSBarry Smith     if (Arhs == A) {           /* No IJacobian, so we only have the RHS matrix */
10093565c898SBarry Smith       PetscBool flg;
1010e1244c69SJed Brown       ts->rhsjacobian.scale = -1;
1011e1244c69SJed Brown       ts->rhsjacobian.shift = shift;
10123565c898SBarry Smith       ierr = SNESGetUseMatrixFree(ts->snes,NULL,&flg);CHKERRQ(ierr);
10133565c898SBarry Smith       /* since -snes_mf_operator uses the full SNES function it does not need to be shifted or scaled here */
10143565c898SBarry Smith       if (!flg) {
101594ab13aaSBarry Smith         ierr = MatScale(A,-1);CHKERRQ(ierr);
101694ab13aaSBarry Smith         ierr = MatShift(A,shift);CHKERRQ(ierr);
10173565c898SBarry Smith       }
101894ab13aaSBarry Smith       if (A != B) {
101994ab13aaSBarry Smith         ierr = MatScale(B,-1);CHKERRQ(ierr);
102094ab13aaSBarry Smith         ierr = MatShift(B,shift);CHKERRQ(ierr);
1021316643e7SJed Brown       }
1022e1244c69SJed Brown     } else if (Arhs) {          /* Both IJacobian and RHSJacobian */
1023e1244c69SJed Brown       MatStructure axpy = DIFFERENT_NONZERO_PATTERN;
1024e1244c69SJed Brown       if (!ijacobian) {         /* No IJacobian provided, but we have a separate RHS matrix */
102594ab13aaSBarry Smith         ierr = MatZeroEntries(A);CHKERRQ(ierr);
102694ab13aaSBarry Smith         ierr = MatShift(A,shift);CHKERRQ(ierr);
102794ab13aaSBarry Smith         if (A != B) {
102894ab13aaSBarry Smith           ierr = MatZeroEntries(B);CHKERRQ(ierr);
102994ab13aaSBarry Smith           ierr = MatShift(B,shift);CHKERRQ(ierr);
1030214bc6a2SJed Brown         }
1031316643e7SJed Brown       }
103294ab13aaSBarry Smith       ierr = MatAXPY(A,-1,Arhs,axpy);CHKERRQ(ierr);
103394ab13aaSBarry Smith       if (A != B) {
103494ab13aaSBarry Smith         ierr = MatAXPY(B,-1,Brhs,axpy);CHKERRQ(ierr);
1035316643e7SJed Brown       }
1036316643e7SJed Brown     }
1037316643e7SJed Brown   }
103894ab13aaSBarry Smith   ierr = PetscLogEventEnd(TS_JacobianEval,ts,U,A,B);CHKERRQ(ierr);
1039316643e7SJed Brown   PetscFunctionReturn(0);
1040316643e7SJed Brown }
1041316643e7SJed Brown 
1042d763cef2SBarry Smith /*@C
1043d763cef2SBarry Smith     TSSetRHSFunction - Sets the routine for evaluating the function,
1044b5abc632SBarry Smith     where U_t = G(t,u).
1045d763cef2SBarry Smith 
10463f9fe445SBarry Smith     Logically Collective on TS
1047d763cef2SBarry Smith 
1048d763cef2SBarry Smith     Input Parameters:
1049d763cef2SBarry Smith +   ts - the TS context obtained from TSCreate()
10500298fd71SBarry Smith .   r - vector to put the computed right hand side (or NULL to have it created)
1051d763cef2SBarry Smith .   f - routine for evaluating the right-hand-side function
1052d763cef2SBarry Smith -   ctx - [optional] user-defined context for private data for the
10530298fd71SBarry Smith           function evaluation routine (may be NULL)
1054d763cef2SBarry Smith 
1055d763cef2SBarry Smith     Calling sequence of func:
105687828ca2SBarry Smith $     func (TS ts,PetscReal t,Vec u,Vec F,void *ctx);
1057d763cef2SBarry Smith 
1058d763cef2SBarry Smith +   t - current timestep
1059d763cef2SBarry Smith .   u - input vector
1060d763cef2SBarry Smith .   F - function vector
1061d763cef2SBarry Smith -   ctx - [optional] user-defined function context
1062d763cef2SBarry Smith 
1063d763cef2SBarry Smith     Level: beginner
1064d763cef2SBarry Smith 
10652bbac0d3SBarry Smith     Notes: You must call this function or TSSetIFunction() to define your ODE. You cannot use this function when solving a DAE.
10662bbac0d3SBarry Smith 
1067d763cef2SBarry Smith .keywords: TS, timestep, set, right-hand-side, function
1068d763cef2SBarry Smith 
1069ae8867d6SBarry Smith .seealso: TSSetRHSJacobian(), TSSetIJacobian(), TSSetIFunction()
1070d763cef2SBarry Smith @*/
1071089b2837SJed Brown PetscErrorCode  TSSetRHSFunction(TS ts,Vec r,PetscErrorCode (*f)(TS,PetscReal,Vec,Vec,void*),void *ctx)
1072d763cef2SBarry Smith {
1073089b2837SJed Brown   PetscErrorCode ierr;
1074089b2837SJed Brown   SNES           snes;
10750298fd71SBarry Smith   Vec            ralloc = NULL;
107624989b8cSPeter Brune   DM             dm;
1077d763cef2SBarry Smith 
1078089b2837SJed Brown   PetscFunctionBegin;
10790700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1080ca94891dSJed Brown   if (r) PetscValidHeaderSpecific(r,VEC_CLASSID,2);
108124989b8cSPeter Brune 
108224989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
108324989b8cSPeter Brune   ierr = DMTSSetRHSFunction(dm,f,ctx);CHKERRQ(ierr);
1084089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
1085e856ceecSJed Brown   if (!r && !ts->dm && ts->vec_sol) {
1086e856ceecSJed Brown     ierr = VecDuplicate(ts->vec_sol,&ralloc);CHKERRQ(ierr);
1087e856ceecSJed Brown     r = ralloc;
1088e856ceecSJed Brown   }
1089089b2837SJed Brown   ierr = SNESSetFunction(snes,r,SNESTSFormFunction,ts);CHKERRQ(ierr);
1090e856ceecSJed Brown   ierr = VecDestroy(&ralloc);CHKERRQ(ierr);
1091d763cef2SBarry Smith   PetscFunctionReturn(0);
1092d763cef2SBarry Smith }
1093d763cef2SBarry Smith 
1094ef20d060SBarry Smith /*@C
1095abd5a294SJed Brown     TSSetSolutionFunction - Provide a function that computes the solution of the ODE or DAE
1096ef20d060SBarry Smith 
1097ef20d060SBarry Smith     Logically Collective on TS
1098ef20d060SBarry Smith 
1099ef20d060SBarry Smith     Input Parameters:
1100ef20d060SBarry Smith +   ts - the TS context obtained from TSCreate()
1101ef20d060SBarry Smith .   f - routine for evaluating the solution
1102ef20d060SBarry Smith -   ctx - [optional] user-defined context for private data for the
11030298fd71SBarry Smith           function evaluation routine (may be NULL)
1104ef20d060SBarry Smith 
1105ef20d060SBarry Smith     Calling sequence of func:
1106ef20d060SBarry Smith $     func (TS ts,PetscReal t,Vec u,void *ctx);
1107ef20d060SBarry Smith 
1108ef20d060SBarry Smith +   t - current timestep
1109ef20d060SBarry Smith .   u - output vector
1110ef20d060SBarry Smith -   ctx - [optional] user-defined function context
1111ef20d060SBarry Smith 
1112abd5a294SJed Brown     Notes:
1113abd5a294SJed Brown     This routine is used for testing accuracy of time integration schemes when you already know the solution.
1114abd5a294SJed Brown     If analytic solutions are not known for your system, consider using the Method of Manufactured Solutions to
1115abd5a294SJed Brown     create closed-form solutions with non-physical forcing terms.
1116abd5a294SJed Brown 
11174f09c107SBarry Smith     For low-dimensional problems solved in serial, such as small discrete systems, TSMonitorLGError() can be used to monitor the error history.
1118abd5a294SJed Brown 
1119ef20d060SBarry Smith     Level: beginner
1120ef20d060SBarry Smith 
1121ef20d060SBarry Smith .keywords: TS, timestep, set, right-hand-side, function
1122ef20d060SBarry Smith 
11239b7cd975SBarry Smith .seealso: TSSetRHSJacobian(), TSSetIJacobian(), TSComputeSolutionFunction(), TSSetForcingFunction()
1124ef20d060SBarry Smith @*/
1125ef20d060SBarry Smith PetscErrorCode  TSSetSolutionFunction(TS ts,PetscErrorCode (*f)(TS,PetscReal,Vec,void*),void *ctx)
1126ef20d060SBarry Smith {
1127ef20d060SBarry Smith   PetscErrorCode ierr;
1128ef20d060SBarry Smith   DM             dm;
1129ef20d060SBarry Smith 
1130ef20d060SBarry Smith   PetscFunctionBegin;
1131ef20d060SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1132ef20d060SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1133ef20d060SBarry Smith   ierr = DMTSSetSolutionFunction(dm,f,ctx);CHKERRQ(ierr);
1134ef20d060SBarry Smith   PetscFunctionReturn(0);
1135ef20d060SBarry Smith }
1136ef20d060SBarry Smith 
11379b7cd975SBarry Smith /*@C
11389b7cd975SBarry Smith     TSSetForcingFunction - Provide a function that computes a forcing term for a ODE or PDE
11399b7cd975SBarry Smith 
11409b7cd975SBarry Smith     Logically Collective on TS
11419b7cd975SBarry Smith 
11429b7cd975SBarry Smith     Input Parameters:
11439b7cd975SBarry Smith +   ts - the TS context obtained from TSCreate()
1144e162b725SBarry Smith .   func - routine for evaluating the forcing function
11459b7cd975SBarry Smith -   ctx - [optional] user-defined context for private data for the
11460298fd71SBarry Smith           function evaluation routine (may be NULL)
11479b7cd975SBarry Smith 
11489b7cd975SBarry Smith     Calling sequence of func:
1149e162b725SBarry Smith $     func (TS ts,PetscReal t,Vec f,void *ctx);
11509b7cd975SBarry Smith 
11519b7cd975SBarry Smith +   t - current timestep
1152e162b725SBarry Smith .   f - output vector
11539b7cd975SBarry Smith -   ctx - [optional] user-defined function context
11549b7cd975SBarry Smith 
11559b7cd975SBarry Smith     Notes:
11569b7cd975SBarry Smith     This routine is useful for testing accuracy of time integration schemes when using the Method of Manufactured Solutions to
1157e162b725SBarry 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
1158e162b725SBarry Smith     definition of the problem you are solving and hence possibly introducing bugs.
1159e162b725SBarry Smith 
1160e162b725SBarry Smith     This replaces the ODE F(u,u_t,t) = 0 the TS is solving with F(u,u_t,t) - func(t) = 0
1161e162b725SBarry Smith 
1162e162b725SBarry 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
1163e162b725SBarry Smith     parameters can be passed in the ctx variable.
11649b7cd975SBarry Smith 
11659b7cd975SBarry Smith     For low-dimensional problems solved in serial, such as small discrete systems, TSMonitorLGError() can be used to monitor the error history.
11669b7cd975SBarry Smith 
11679b7cd975SBarry Smith     Level: beginner
11689b7cd975SBarry Smith 
11699b7cd975SBarry Smith .keywords: TS, timestep, set, right-hand-side, function
11709b7cd975SBarry Smith 
11719b7cd975SBarry Smith .seealso: TSSetRHSJacobian(), TSSetIJacobian(), TSComputeSolutionFunction(), TSSetSolutionFunction()
11729b7cd975SBarry Smith @*/
1173e162b725SBarry Smith PetscErrorCode  TSSetForcingFunction(TS ts,TSForcingFunction func,void *ctx)
11749b7cd975SBarry Smith {
11759b7cd975SBarry Smith   PetscErrorCode ierr;
11769b7cd975SBarry Smith   DM             dm;
11779b7cd975SBarry Smith 
11789b7cd975SBarry Smith   PetscFunctionBegin;
11799b7cd975SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
11809b7cd975SBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1181e162b725SBarry Smith   ierr = DMTSSetForcingFunction(dm,func,ctx);CHKERRQ(ierr);
11829b7cd975SBarry Smith   PetscFunctionReturn(0);
11839b7cd975SBarry Smith }
11849b7cd975SBarry Smith 
1185d763cef2SBarry Smith /*@C
1186f7ab8db6SBarry Smith    TSSetRHSJacobian - Sets the function to compute the Jacobian of G,
1187b5abc632SBarry Smith    where U_t = G(U,t), as well as the location to store the matrix.
1188d763cef2SBarry Smith 
11893f9fe445SBarry Smith    Logically Collective on TS
1190d763cef2SBarry Smith 
1191d763cef2SBarry Smith    Input Parameters:
1192d763cef2SBarry Smith +  ts  - the TS context obtained from TSCreate()
1193e5d3d808SBarry Smith .  Amat - (approximate) Jacobian matrix
1194e5d3d808SBarry Smith .  Pmat - matrix from which preconditioner is to be constructed (usually the same as Amat)
1195d763cef2SBarry Smith .  f   - the Jacobian evaluation routine
1196d763cef2SBarry Smith -  ctx - [optional] user-defined context for private data for the
11970298fd71SBarry Smith          Jacobian evaluation routine (may be NULL)
1198d763cef2SBarry Smith 
1199f7ab8db6SBarry Smith    Calling sequence of f:
1200ae8867d6SBarry Smith $     func (TS ts,PetscReal t,Vec u,Mat A,Mat B,void *ctx);
1201d763cef2SBarry Smith 
1202d763cef2SBarry Smith +  t - current timestep
1203d763cef2SBarry Smith .  u - input vector
1204e5d3d808SBarry Smith .  Amat - (approximate) Jacobian matrix
1205e5d3d808SBarry Smith .  Pmat - matrix from which preconditioner is to be constructed (usually the same as Amat)
1206d763cef2SBarry Smith -  ctx - [optional] user-defined context for matrix evaluation routine
1207d763cef2SBarry Smith 
12086cd88445SBarry Smith    Notes:
12096cd88445SBarry Smith    You must set all the diagonal entries of the matrices, if they are zero you must still set them with a zero value
12106cd88445SBarry Smith 
12116cd88445SBarry Smith    The TS solver may modify the nonzero structure and the entries of the matrices Amat and Pmat between the calls to f()
1212ca5f011dSBarry Smith    You should not assume the values are the same in the next call to f() as you set them in the previous call.
1213d763cef2SBarry Smith 
1214d763cef2SBarry Smith    Level: beginner
1215d763cef2SBarry Smith 
1216d763cef2SBarry Smith .keywords: TS, timestep, set, right-hand-side, Jacobian
1217d763cef2SBarry Smith 
1218ae8867d6SBarry Smith .seealso: SNESComputeJacobianDefaultColor(), TSSetRHSFunction(), TSRHSJacobianSetReuse(), TSSetIJacobian()
1219d763cef2SBarry Smith 
1220d763cef2SBarry Smith @*/
1221e5d3d808SBarry Smith PetscErrorCode  TSSetRHSJacobian(TS ts,Mat Amat,Mat Pmat,TSRHSJacobian f,void *ctx)
1222d763cef2SBarry Smith {
1223277b19d0SLisandro Dalcin   PetscErrorCode ierr;
1224089b2837SJed Brown   SNES           snes;
122524989b8cSPeter Brune   DM             dm;
122624989b8cSPeter Brune   TSIJacobian    ijacobian;
1227277b19d0SLisandro Dalcin 
1228d763cef2SBarry Smith   PetscFunctionBegin;
12290700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1230e5d3d808SBarry Smith   if (Amat) PetscValidHeaderSpecific(Amat,MAT_CLASSID,2);
1231e5d3d808SBarry Smith   if (Pmat) PetscValidHeaderSpecific(Pmat,MAT_CLASSID,3);
1232e5d3d808SBarry Smith   if (Amat) PetscCheckSameComm(ts,1,Amat,2);
1233e5d3d808SBarry Smith   if (Pmat) PetscCheckSameComm(ts,1,Pmat,3);
1234d763cef2SBarry Smith 
123524989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
123624989b8cSPeter Brune   ierr = DMTSSetRHSJacobian(dm,f,ctx);CHKERRQ(ierr);
1237e1244c69SJed Brown   if (f == TSComputeRHSJacobianConstant) {
1238e1244c69SJed Brown     /* Handle this case automatically for the user; otherwise user should call themselves. */
1239e1244c69SJed Brown     ierr = TSRHSJacobianSetReuse(ts,PETSC_TRUE);CHKERRQ(ierr);
1240e1244c69SJed Brown   }
12410298fd71SBarry Smith   ierr = DMTSGetIJacobian(dm,&ijacobian,NULL);CHKERRQ(ierr);
1242089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
12435f659677SPeter Brune   if (!ijacobian) {
1244e5d3d808SBarry Smith     ierr = SNESSetJacobian(snes,Amat,Pmat,SNESTSFormJacobian,ts);CHKERRQ(ierr);
12450e4ef248SJed Brown   }
1246e5d3d808SBarry Smith   if (Amat) {
1247e5d3d808SBarry Smith     ierr = PetscObjectReference((PetscObject)Amat);CHKERRQ(ierr);
12480e4ef248SJed Brown     ierr = MatDestroy(&ts->Arhs);CHKERRQ(ierr);
1249e5d3d808SBarry Smith     ts->Arhs = Amat;
12500e4ef248SJed Brown   }
1251e5d3d808SBarry Smith   if (Pmat) {
1252e5d3d808SBarry Smith     ierr = PetscObjectReference((PetscObject)Pmat);CHKERRQ(ierr);
12530e4ef248SJed Brown     ierr = MatDestroy(&ts->Brhs);CHKERRQ(ierr);
1254e5d3d808SBarry Smith     ts->Brhs = Pmat;
12550e4ef248SJed Brown   }
1256d763cef2SBarry Smith   PetscFunctionReturn(0);
1257d763cef2SBarry Smith }
1258d763cef2SBarry Smith 
1259316643e7SJed Brown /*@C
1260b5abc632SBarry Smith    TSSetIFunction - Set the function to compute F(t,U,U_t) where F() = 0 is the DAE to be solved.
1261316643e7SJed Brown 
12623f9fe445SBarry Smith    Logically Collective on TS
1263316643e7SJed Brown 
1264316643e7SJed Brown    Input Parameters:
1265316643e7SJed Brown +  ts  - the TS context obtained from TSCreate()
12660298fd71SBarry Smith .  r   - vector to hold the residual (or NULL to have it created internally)
1267316643e7SJed Brown .  f   - the function evaluation routine
12680298fd71SBarry Smith -  ctx - user-defined context for private data for the function evaluation routine (may be NULL)
1269316643e7SJed Brown 
1270316643e7SJed Brown    Calling sequence of f:
1271316643e7SJed Brown $  f(TS ts,PetscReal t,Vec u,Vec u_t,Vec F,ctx);
1272316643e7SJed Brown 
1273316643e7SJed Brown +  t   - time at step/stage being solved
1274316643e7SJed Brown .  u   - state vector
1275316643e7SJed Brown .  u_t - time derivative of state vector
1276316643e7SJed Brown .  F   - function vector
1277316643e7SJed Brown -  ctx - [optional] user-defined context for matrix evaluation routine
1278316643e7SJed Brown 
1279316643e7SJed Brown    Important:
12802bbac0d3SBarry Smith    The user MUST call either this routine or TSSetRHSFunction() to define the ODE.  When solving DAEs you must use this function.
1281316643e7SJed Brown 
1282316643e7SJed Brown    Level: beginner
1283316643e7SJed Brown 
1284316643e7SJed Brown .keywords: TS, timestep, set, DAE, Jacobian
1285316643e7SJed Brown 
1286d6cbdb99SBarry Smith .seealso: TSSetRHSJacobian(), TSSetRHSFunction(), TSSetIJacobian()
1287316643e7SJed Brown @*/
128851699248SLisandro Dalcin PetscErrorCode  TSSetIFunction(TS ts,Vec r,TSIFunction f,void *ctx)
1289316643e7SJed Brown {
1290089b2837SJed Brown   PetscErrorCode ierr;
1291089b2837SJed Brown   SNES           snes;
129251699248SLisandro Dalcin   Vec            ralloc = NULL;
129324989b8cSPeter Brune   DM             dm;
1294316643e7SJed Brown 
1295316643e7SJed Brown   PetscFunctionBegin;
12960700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
129751699248SLisandro Dalcin   if (r) PetscValidHeaderSpecific(r,VEC_CLASSID,2);
129824989b8cSPeter Brune 
129924989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
130024989b8cSPeter Brune   ierr = DMTSSetIFunction(dm,f,ctx);CHKERRQ(ierr);
130124989b8cSPeter Brune 
1302089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
130351699248SLisandro Dalcin   if (!r && !ts->dm && ts->vec_sol) {
130451699248SLisandro Dalcin     ierr = VecDuplicate(ts->vec_sol,&ralloc);CHKERRQ(ierr);
130551699248SLisandro Dalcin     r  = ralloc;
1306e856ceecSJed Brown   }
130751699248SLisandro Dalcin   ierr = SNESSetFunction(snes,r,SNESTSFormFunction,ts);CHKERRQ(ierr);
130851699248SLisandro Dalcin   ierr = VecDestroy(&ralloc);CHKERRQ(ierr);
1309089b2837SJed Brown   PetscFunctionReturn(0);
1310089b2837SJed Brown }
1311089b2837SJed Brown 
1312089b2837SJed Brown /*@C
1313089b2837SJed Brown    TSGetIFunction - Returns the vector where the implicit residual is stored and the function/contex to compute it.
1314089b2837SJed Brown 
1315089b2837SJed Brown    Not Collective
1316089b2837SJed Brown 
1317089b2837SJed Brown    Input Parameter:
1318089b2837SJed Brown .  ts - the TS context
1319089b2837SJed Brown 
1320089b2837SJed Brown    Output Parameter:
13210298fd71SBarry Smith +  r - vector to hold residual (or NULL)
13220298fd71SBarry Smith .  func - the function to compute residual (or NULL)
13230298fd71SBarry Smith -  ctx - the function context (or NULL)
1324089b2837SJed Brown 
1325089b2837SJed Brown    Level: advanced
1326089b2837SJed Brown 
1327089b2837SJed Brown .keywords: TS, nonlinear, get, function
1328089b2837SJed Brown 
1329089b2837SJed Brown .seealso: TSSetIFunction(), SNESGetFunction()
1330089b2837SJed Brown @*/
1331089b2837SJed Brown PetscErrorCode TSGetIFunction(TS ts,Vec *r,TSIFunction *func,void **ctx)
1332089b2837SJed Brown {
1333089b2837SJed Brown   PetscErrorCode ierr;
1334089b2837SJed Brown   SNES           snes;
133524989b8cSPeter Brune   DM             dm;
1336089b2837SJed Brown 
1337089b2837SJed Brown   PetscFunctionBegin;
1338089b2837SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1339089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
13400298fd71SBarry Smith   ierr = SNESGetFunction(snes,r,NULL,NULL);CHKERRQ(ierr);
134124989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
134224989b8cSPeter Brune   ierr = DMTSGetIFunction(dm,func,ctx);CHKERRQ(ierr);
1343089b2837SJed Brown   PetscFunctionReturn(0);
1344089b2837SJed Brown }
1345089b2837SJed Brown 
1346089b2837SJed Brown /*@C
1347089b2837SJed Brown    TSGetRHSFunction - Returns the vector where the right hand side is stored and the function/context to compute it.
1348089b2837SJed Brown 
1349089b2837SJed Brown    Not Collective
1350089b2837SJed Brown 
1351089b2837SJed Brown    Input Parameter:
1352089b2837SJed Brown .  ts - the TS context
1353089b2837SJed Brown 
1354089b2837SJed Brown    Output Parameter:
13550298fd71SBarry Smith +  r - vector to hold computed right hand side (or NULL)
13560298fd71SBarry Smith .  func - the function to compute right hand side (or NULL)
13570298fd71SBarry Smith -  ctx - the function context (or NULL)
1358089b2837SJed Brown 
1359089b2837SJed Brown    Level: advanced
1360089b2837SJed Brown 
1361089b2837SJed Brown .keywords: TS, nonlinear, get, function
1362089b2837SJed Brown 
13632bbac0d3SBarry Smith .seealso: TSSetRHSFunction(), SNESGetFunction()
1364089b2837SJed Brown @*/
1365089b2837SJed Brown PetscErrorCode TSGetRHSFunction(TS ts,Vec *r,TSRHSFunction *func,void **ctx)
1366089b2837SJed Brown {
1367089b2837SJed Brown   PetscErrorCode ierr;
1368089b2837SJed Brown   SNES           snes;
136924989b8cSPeter Brune   DM             dm;
1370089b2837SJed Brown 
1371089b2837SJed Brown   PetscFunctionBegin;
1372089b2837SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1373089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
13740298fd71SBarry Smith   ierr = SNESGetFunction(snes,r,NULL,NULL);CHKERRQ(ierr);
137524989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
137624989b8cSPeter Brune   ierr = DMTSGetRHSFunction(dm,func,ctx);CHKERRQ(ierr);
1377316643e7SJed Brown   PetscFunctionReturn(0);
1378316643e7SJed Brown }
1379316643e7SJed Brown 
1380316643e7SJed Brown /*@C
1381a4f0a591SBarry Smith    TSSetIJacobian - Set the function to compute the matrix dF/dU + a*dF/dU_t where F(t,U,U_t) is the function
1382ae8867d6SBarry Smith         provided with TSSetIFunction().
1383316643e7SJed Brown 
13843f9fe445SBarry Smith    Logically Collective on TS
1385316643e7SJed Brown 
1386316643e7SJed Brown    Input Parameters:
1387316643e7SJed Brown +  ts  - the TS context obtained from TSCreate()
1388e5d3d808SBarry Smith .  Amat - (approximate) Jacobian matrix
1389e5d3d808SBarry Smith .  Pmat - matrix used to compute preconditioner (usually the same as Amat)
1390316643e7SJed Brown .  f   - the Jacobian evaluation routine
13910298fd71SBarry Smith -  ctx - user-defined context for private data for the Jacobian evaluation routine (may be NULL)
1392316643e7SJed Brown 
1393316643e7SJed Brown    Calling sequence of f:
1394ae8867d6SBarry Smith $  f(TS ts,PetscReal t,Vec U,Vec U_t,PetscReal a,Mat Amat,Mat Pmat,void *ctx);
1395316643e7SJed Brown 
1396316643e7SJed Brown +  t    - time at step/stage being solved
13971b4a444bSJed Brown .  U    - state vector
13981b4a444bSJed Brown .  U_t  - time derivative of state vector
1399316643e7SJed Brown .  a    - shift
1400e5d3d808SBarry Smith .  Amat - (approximate) Jacobian of F(t,U,W+a*U), equivalent to dF/dU + a*dF/dU_t
1401e5d3d808SBarry Smith .  Pmat - matrix used for constructing preconditioner, usually the same as Amat
1402316643e7SJed Brown -  ctx  - [optional] user-defined context for matrix evaluation routine
1403316643e7SJed Brown 
1404316643e7SJed Brown    Notes:
1405e5d3d808SBarry Smith    The matrices Amat and Pmat are exactly the matrices that are used by SNES for the nonlinear solve.
1406316643e7SJed Brown 
1407895c21f2SBarry Smith    If you know the operator Amat has a null space you can use MatSetNullSpace() and MatSetTransposeNullSpace() to supply the null
1408895c21f2SBarry Smith    space to Amat and the KSP solvers will automatically use that null space as needed during the solution process.
1409895c21f2SBarry Smith 
1410a4f0a591SBarry Smith    The matrix dF/dU + a*dF/dU_t you provide turns out to be
1411b5abc632SBarry Smith    the Jacobian of F(t,U,W+a*U) where F(t,U,U_t) = 0 is the DAE to be solved.
1412a4f0a591SBarry Smith    The time integrator internally approximates U_t by W+a*U where the positive "shift"
1413a4f0a591SBarry Smith    a and vector W depend on the integration method, step size, and past states. For example with
1414a4f0a591SBarry Smith    the backward Euler method a = 1/dt and W = -a*U(previous timestep) so
1415a4f0a591SBarry Smith    W + a*U = a*(U - U(previous timestep)) = (U - U(previous timestep))/dt
1416a4f0a591SBarry Smith 
14176cd88445SBarry Smith    You must set all the diagonal entries of the matrices, if they are zero you must still set them with a zero value
14186cd88445SBarry Smith 
14196cd88445SBarry Smith    The TS solver may modify the nonzero structure and the entries of the matrices Amat and Pmat between the calls to f()
1420ca5f011dSBarry Smith    You should not assume the values are the same in the next call to f() as you set them in the previous call.
1421ca5f011dSBarry Smith 
1422316643e7SJed Brown    Level: beginner
1423316643e7SJed Brown 
1424316643e7SJed Brown .keywords: TS, timestep, DAE, Jacobian
1425316643e7SJed Brown 
1426ae8867d6SBarry Smith .seealso: TSSetIFunction(), TSSetRHSJacobian(), SNESComputeJacobianDefaultColor(), SNESComputeJacobianDefault(), TSSetRHSFunction()
1427316643e7SJed Brown 
1428316643e7SJed Brown @*/
1429e5d3d808SBarry Smith PetscErrorCode  TSSetIJacobian(TS ts,Mat Amat,Mat Pmat,TSIJacobian f,void *ctx)
1430316643e7SJed Brown {
1431316643e7SJed Brown   PetscErrorCode ierr;
1432089b2837SJed Brown   SNES           snes;
143324989b8cSPeter Brune   DM             dm;
1434316643e7SJed Brown 
1435316643e7SJed Brown   PetscFunctionBegin;
14360700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1437e5d3d808SBarry Smith   if (Amat) PetscValidHeaderSpecific(Amat,MAT_CLASSID,2);
1438e5d3d808SBarry Smith   if (Pmat) PetscValidHeaderSpecific(Pmat,MAT_CLASSID,3);
1439e5d3d808SBarry Smith   if (Amat) PetscCheckSameComm(ts,1,Amat,2);
1440e5d3d808SBarry Smith   if (Pmat) PetscCheckSameComm(ts,1,Pmat,3);
144124989b8cSPeter Brune 
144224989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
144324989b8cSPeter Brune   ierr = DMTSSetIJacobian(dm,f,ctx);CHKERRQ(ierr);
144424989b8cSPeter Brune 
1445089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
1446e5d3d808SBarry Smith   ierr = SNESSetJacobian(snes,Amat,Pmat,SNESTSFormJacobian,ts);CHKERRQ(ierr);
1447316643e7SJed Brown   PetscFunctionReturn(0);
1448316643e7SJed Brown }
1449316643e7SJed Brown 
1450e1244c69SJed Brown /*@
1451e1244c69SJed Brown    TSRHSJacobianSetReuse - restore RHS Jacobian before re-evaluating.  Without this flag, TS will change the sign and
1452e1244c69SJed Brown    shift the RHS Jacobian for a finite-time-step implicit solve, in which case the user function will need to recompute
1453e1244c69SJed Brown    the entire Jacobian.  The reuse flag must be set if the evaluation function will assume that the matrix entries have
1454e1244c69SJed Brown    not been changed by the TS.
1455e1244c69SJed Brown 
1456e1244c69SJed Brown    Logically Collective
1457e1244c69SJed Brown 
1458e1244c69SJed Brown    Input Arguments:
1459e1244c69SJed Brown +  ts - TS context obtained from TSCreate()
1460e1244c69SJed Brown -  reuse - PETSC_TRUE if the RHS Jacobian
1461e1244c69SJed Brown 
1462e1244c69SJed Brown    Level: intermediate
1463e1244c69SJed Brown 
1464e1244c69SJed Brown .seealso: TSSetRHSJacobian(), TSComputeRHSJacobianConstant()
1465e1244c69SJed Brown @*/
1466e1244c69SJed Brown PetscErrorCode TSRHSJacobianSetReuse(TS ts,PetscBool reuse)
1467e1244c69SJed Brown {
1468e1244c69SJed Brown   PetscFunctionBegin;
1469e1244c69SJed Brown   ts->rhsjacobian.reuse = reuse;
1470e1244c69SJed Brown   PetscFunctionReturn(0);
1471e1244c69SJed Brown }
1472e1244c69SJed Brown 
1473efe9872eSLisandro Dalcin /*@C
1474efe9872eSLisandro Dalcin    TSSetI2Function - Set the function to compute F(t,U,U_t,U_tt) where F = 0 is the DAE to be solved.
1475efe9872eSLisandro Dalcin 
1476efe9872eSLisandro Dalcin    Logically Collective on TS
1477efe9872eSLisandro Dalcin 
1478efe9872eSLisandro Dalcin    Input Parameters:
1479efe9872eSLisandro Dalcin +  ts  - the TS context obtained from TSCreate()
1480efe9872eSLisandro Dalcin .  F   - vector to hold the residual (or NULL to have it created internally)
1481efe9872eSLisandro Dalcin .  fun - the function evaluation routine
1482efe9872eSLisandro Dalcin -  ctx - user-defined context for private data for the function evaluation routine (may be NULL)
1483efe9872eSLisandro Dalcin 
1484efe9872eSLisandro Dalcin    Calling sequence of fun:
1485efe9872eSLisandro Dalcin $  fun(TS ts,PetscReal t,Vec U,Vec U_t,Vec U_tt,Vec F,ctx);
1486efe9872eSLisandro Dalcin 
1487efe9872eSLisandro Dalcin +  t    - time at step/stage being solved
1488efe9872eSLisandro Dalcin .  U    - state vector
1489efe9872eSLisandro Dalcin .  U_t  - time derivative of state vector
1490efe9872eSLisandro Dalcin .  U_tt - second time derivative of state vector
1491efe9872eSLisandro Dalcin .  F    - function vector
1492efe9872eSLisandro Dalcin -  ctx  - [optional] user-defined context for matrix evaluation routine (may be NULL)
1493efe9872eSLisandro Dalcin 
1494efe9872eSLisandro Dalcin    Level: beginner
1495efe9872eSLisandro Dalcin 
1496efe9872eSLisandro Dalcin .keywords: TS, timestep, set, ODE, DAE, Function
1497efe9872eSLisandro Dalcin 
1498efe9872eSLisandro Dalcin .seealso: TSSetI2Jacobian()
1499efe9872eSLisandro Dalcin @*/
1500efe9872eSLisandro Dalcin PetscErrorCode TSSetI2Function(TS ts,Vec F,TSI2Function fun,void *ctx)
1501efe9872eSLisandro Dalcin {
1502efe9872eSLisandro Dalcin   DM             dm;
1503efe9872eSLisandro Dalcin   PetscErrorCode ierr;
1504efe9872eSLisandro Dalcin 
1505efe9872eSLisandro Dalcin   PetscFunctionBegin;
1506efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1507efe9872eSLisandro Dalcin   if (F) PetscValidHeaderSpecific(F,VEC_CLASSID,2);
1508efe9872eSLisandro Dalcin   ierr = TSSetIFunction(ts,F,NULL,NULL);CHKERRQ(ierr);
1509efe9872eSLisandro Dalcin   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1510efe9872eSLisandro Dalcin   ierr = DMTSSetI2Function(dm,fun,ctx);CHKERRQ(ierr);
1511efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1512efe9872eSLisandro Dalcin }
1513efe9872eSLisandro Dalcin 
1514efe9872eSLisandro Dalcin /*@C
1515efe9872eSLisandro Dalcin   TSGetI2Function - Returns the vector where the implicit residual is stored and the function/contex to compute it.
1516efe9872eSLisandro Dalcin 
1517efe9872eSLisandro Dalcin   Not Collective
1518efe9872eSLisandro Dalcin 
1519efe9872eSLisandro Dalcin   Input Parameter:
1520efe9872eSLisandro Dalcin . ts - the TS context
1521efe9872eSLisandro Dalcin 
1522efe9872eSLisandro Dalcin   Output Parameter:
1523efe9872eSLisandro Dalcin + r - vector to hold residual (or NULL)
1524efe9872eSLisandro Dalcin . fun - the function to compute residual (or NULL)
1525efe9872eSLisandro Dalcin - ctx - the function context (or NULL)
1526efe9872eSLisandro Dalcin 
1527efe9872eSLisandro Dalcin   Level: advanced
1528efe9872eSLisandro Dalcin 
1529efe9872eSLisandro Dalcin .keywords: TS, nonlinear, get, function
1530efe9872eSLisandro Dalcin 
1531efe9872eSLisandro Dalcin .seealso: TSSetI2Function(), SNESGetFunction()
1532efe9872eSLisandro Dalcin @*/
1533efe9872eSLisandro Dalcin PetscErrorCode TSGetI2Function(TS ts,Vec *r,TSI2Function *fun,void **ctx)
1534efe9872eSLisandro Dalcin {
1535efe9872eSLisandro Dalcin   PetscErrorCode ierr;
1536efe9872eSLisandro Dalcin   SNES           snes;
1537efe9872eSLisandro Dalcin   DM             dm;
1538efe9872eSLisandro Dalcin 
1539efe9872eSLisandro Dalcin   PetscFunctionBegin;
1540efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1541efe9872eSLisandro Dalcin   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
1542efe9872eSLisandro Dalcin   ierr = SNESGetFunction(snes,r,NULL,NULL);CHKERRQ(ierr);
1543efe9872eSLisandro Dalcin   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1544efe9872eSLisandro Dalcin   ierr = DMTSGetI2Function(dm,fun,ctx);CHKERRQ(ierr);
1545efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1546efe9872eSLisandro Dalcin }
1547efe9872eSLisandro Dalcin 
1548efe9872eSLisandro Dalcin /*@C
1549bc77d74cSLisandro Dalcin    TSSetI2Jacobian - Set the function to compute the matrix dF/dU + v*dF/dU_t  + a*dF/dU_tt
1550efe9872eSLisandro Dalcin         where F(t,U,U_t,U_tt) is the function you provided with TSSetI2Function().
1551efe9872eSLisandro Dalcin 
1552efe9872eSLisandro Dalcin    Logically Collective on TS
1553efe9872eSLisandro Dalcin 
1554efe9872eSLisandro Dalcin    Input Parameters:
1555efe9872eSLisandro Dalcin +  ts  - the TS context obtained from TSCreate()
1556efe9872eSLisandro Dalcin .  J   - Jacobian matrix
1557efe9872eSLisandro Dalcin .  P   - preconditioning matrix for J (may be same as J)
1558efe9872eSLisandro Dalcin .  jac - the Jacobian evaluation routine
1559efe9872eSLisandro Dalcin -  ctx - user-defined context for private data for the Jacobian evaluation routine (may be NULL)
1560efe9872eSLisandro Dalcin 
1561efe9872eSLisandro Dalcin    Calling sequence of jac:
1562bc77d74cSLisandro Dalcin $  jac(TS ts,PetscReal t,Vec U,Vec U_t,Vec U_tt,PetscReal v,PetscReal a,Mat J,Mat P,void *ctx);
1563efe9872eSLisandro Dalcin 
1564efe9872eSLisandro Dalcin +  t    - time at step/stage being solved
1565efe9872eSLisandro Dalcin .  U    - state vector
1566efe9872eSLisandro Dalcin .  U_t  - time derivative of state vector
1567efe9872eSLisandro Dalcin .  U_tt - second time derivative of state vector
1568efe9872eSLisandro Dalcin .  v    - shift for U_t
1569efe9872eSLisandro Dalcin .  a    - shift for U_tt
1570efe9872eSLisandro 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
1571efe9872eSLisandro Dalcin .  P    - preconditioning matrix for J, may be same as J
1572efe9872eSLisandro Dalcin -  ctx  - [optional] user-defined context for matrix evaluation routine
1573efe9872eSLisandro Dalcin 
1574efe9872eSLisandro Dalcin    Notes:
1575efe9872eSLisandro Dalcin    The matrices J and P are exactly the matrices that are used by SNES for the nonlinear solve.
1576efe9872eSLisandro Dalcin 
1577efe9872eSLisandro Dalcin    The matrix dF/dU + v*dF/dU_t + a*dF/dU_tt you provide turns out to be
1578efe9872eSLisandro 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.
1579efe9872eSLisandro Dalcin    The time integrator internally approximates U_t by W+v*U and U_tt by W'+a*U  where the positive "shift"
1580bc77d74cSLisandro Dalcin    parameters 'v' and 'a' and vectors W, W' depend on the integration method, step size, and past states.
1581efe9872eSLisandro Dalcin 
1582efe9872eSLisandro Dalcin    Level: beginner
1583efe9872eSLisandro Dalcin 
1584efe9872eSLisandro Dalcin .keywords: TS, timestep, set, ODE, DAE, Jacobian
1585efe9872eSLisandro Dalcin 
1586efe9872eSLisandro Dalcin .seealso: TSSetI2Function()
1587efe9872eSLisandro Dalcin @*/
1588efe9872eSLisandro Dalcin PetscErrorCode TSSetI2Jacobian(TS ts,Mat J,Mat P,TSI2Jacobian jac,void *ctx)
1589efe9872eSLisandro Dalcin {
1590efe9872eSLisandro Dalcin   DM             dm;
1591efe9872eSLisandro Dalcin   PetscErrorCode ierr;
1592efe9872eSLisandro Dalcin 
1593efe9872eSLisandro Dalcin   PetscFunctionBegin;
1594efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1595efe9872eSLisandro Dalcin   if (J) PetscValidHeaderSpecific(J,MAT_CLASSID,2);
1596efe9872eSLisandro Dalcin   if (P) PetscValidHeaderSpecific(P,MAT_CLASSID,3);
1597efe9872eSLisandro Dalcin   ierr = TSSetIJacobian(ts,J,P,NULL,NULL);CHKERRQ(ierr);
1598efe9872eSLisandro Dalcin   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1599efe9872eSLisandro Dalcin   ierr = DMTSSetI2Jacobian(dm,jac,ctx);CHKERRQ(ierr);
1600efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1601efe9872eSLisandro Dalcin }
1602efe9872eSLisandro Dalcin 
1603efe9872eSLisandro Dalcin /*@C
1604efe9872eSLisandro Dalcin   TSGetI2Jacobian - Returns the implicit Jacobian at the present timestep.
1605efe9872eSLisandro Dalcin 
1606efe9872eSLisandro Dalcin   Not Collective, but parallel objects are returned if TS is parallel
1607efe9872eSLisandro Dalcin 
1608efe9872eSLisandro Dalcin   Input Parameter:
1609efe9872eSLisandro Dalcin . ts  - The TS context obtained from TSCreate()
1610efe9872eSLisandro Dalcin 
1611efe9872eSLisandro Dalcin   Output Parameters:
1612efe9872eSLisandro Dalcin + J  - The (approximate) Jacobian of F(t,U,U_t,U_tt)
1613efe9872eSLisandro Dalcin . P - The matrix from which the preconditioner is constructed, often the same as J
1614efe9872eSLisandro Dalcin . jac - The function to compute the Jacobian matrices
1615efe9872eSLisandro Dalcin - ctx - User-defined context for Jacobian evaluation routine
1616efe9872eSLisandro Dalcin 
1617efe9872eSLisandro Dalcin   Notes: You can pass in NULL for any return argument you do not need.
1618efe9872eSLisandro Dalcin 
1619efe9872eSLisandro Dalcin   Level: advanced
1620efe9872eSLisandro Dalcin 
162180275a0aSLisandro Dalcin .seealso: TSGetTimeStep(), TSGetMatrices(), TSGetTime(), TSGetStepNumber()
1622efe9872eSLisandro Dalcin 
1623efe9872eSLisandro Dalcin .keywords: TS, timestep, get, matrix, Jacobian
1624efe9872eSLisandro Dalcin @*/
1625efe9872eSLisandro Dalcin PetscErrorCode  TSGetI2Jacobian(TS ts,Mat *J,Mat *P,TSI2Jacobian *jac,void **ctx)
1626efe9872eSLisandro Dalcin {
1627efe9872eSLisandro Dalcin   PetscErrorCode ierr;
1628efe9872eSLisandro Dalcin   SNES           snes;
1629efe9872eSLisandro Dalcin   DM             dm;
1630efe9872eSLisandro Dalcin 
1631efe9872eSLisandro Dalcin   PetscFunctionBegin;
1632efe9872eSLisandro Dalcin   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
1633efe9872eSLisandro Dalcin   ierr = SNESSetUpMatrices(snes);CHKERRQ(ierr);
1634efe9872eSLisandro Dalcin   ierr = SNESGetJacobian(snes,J,P,NULL,NULL);CHKERRQ(ierr);
1635efe9872eSLisandro Dalcin   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1636efe9872eSLisandro Dalcin   ierr = DMTSGetI2Jacobian(dm,jac,ctx);CHKERRQ(ierr);
1637efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1638efe9872eSLisandro Dalcin }
1639efe9872eSLisandro Dalcin 
1640efe9872eSLisandro Dalcin /*@
1641efe9872eSLisandro Dalcin   TSComputeI2Function - Evaluates the DAE residual written in implicit form F(t,U,U_t,U_tt) = 0
1642efe9872eSLisandro Dalcin 
1643efe9872eSLisandro Dalcin   Collective on TS and Vec
1644efe9872eSLisandro Dalcin 
1645efe9872eSLisandro Dalcin   Input Parameters:
1646efe9872eSLisandro Dalcin + ts - the TS context
1647efe9872eSLisandro Dalcin . t - current time
1648efe9872eSLisandro Dalcin . U - state vector
1649efe9872eSLisandro Dalcin . V - time derivative of state vector (U_t)
1650efe9872eSLisandro Dalcin - A - second time derivative of state vector (U_tt)
1651efe9872eSLisandro Dalcin 
1652efe9872eSLisandro Dalcin   Output Parameter:
1653efe9872eSLisandro Dalcin . F - the residual vector
1654efe9872eSLisandro Dalcin 
1655efe9872eSLisandro Dalcin   Note:
1656efe9872eSLisandro Dalcin   Most users should not need to explicitly call this routine, as it
1657efe9872eSLisandro Dalcin   is used internally within the nonlinear solvers.
1658efe9872eSLisandro Dalcin 
1659efe9872eSLisandro Dalcin   Level: developer
1660efe9872eSLisandro Dalcin 
1661efe9872eSLisandro Dalcin .keywords: TS, compute, function, vector
1662efe9872eSLisandro Dalcin 
1663efe9872eSLisandro Dalcin .seealso: TSSetI2Function()
1664efe9872eSLisandro Dalcin @*/
1665efe9872eSLisandro Dalcin PetscErrorCode TSComputeI2Function(TS ts,PetscReal t,Vec U,Vec V,Vec A,Vec F)
1666efe9872eSLisandro Dalcin {
1667efe9872eSLisandro Dalcin   DM             dm;
1668efe9872eSLisandro Dalcin   TSI2Function   I2Function;
1669efe9872eSLisandro Dalcin   void           *ctx;
1670efe9872eSLisandro Dalcin   TSRHSFunction  rhsfunction;
1671efe9872eSLisandro Dalcin   PetscErrorCode ierr;
1672efe9872eSLisandro Dalcin 
1673efe9872eSLisandro Dalcin   PetscFunctionBegin;
1674efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1675efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
1676efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(V,VEC_CLASSID,4);
1677efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(A,VEC_CLASSID,5);
1678efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(F,VEC_CLASSID,6);
1679efe9872eSLisandro Dalcin 
1680efe9872eSLisandro Dalcin   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1681efe9872eSLisandro Dalcin   ierr = DMTSGetI2Function(dm,&I2Function,&ctx);CHKERRQ(ierr);
1682efe9872eSLisandro Dalcin   ierr = DMTSGetRHSFunction(dm,&rhsfunction,NULL);CHKERRQ(ierr);
1683efe9872eSLisandro Dalcin 
1684efe9872eSLisandro Dalcin   if (!I2Function) {
1685efe9872eSLisandro Dalcin     ierr = TSComputeIFunction(ts,t,U,A,F,PETSC_FALSE);CHKERRQ(ierr);
1686efe9872eSLisandro Dalcin     PetscFunctionReturn(0);
1687efe9872eSLisandro Dalcin   }
1688efe9872eSLisandro Dalcin 
1689efe9872eSLisandro Dalcin   ierr = PetscLogEventBegin(TS_FunctionEval,ts,U,V,F);CHKERRQ(ierr);
1690efe9872eSLisandro Dalcin 
1691efe9872eSLisandro Dalcin   PetscStackPush("TS user implicit function");
1692efe9872eSLisandro Dalcin   ierr = I2Function(ts,t,U,V,A,F,ctx);CHKERRQ(ierr);
1693efe9872eSLisandro Dalcin   PetscStackPop;
1694efe9872eSLisandro Dalcin 
1695efe9872eSLisandro Dalcin   if (rhsfunction) {
1696efe9872eSLisandro Dalcin     Vec Frhs;
1697efe9872eSLisandro Dalcin     ierr = TSGetRHSVec_Private(ts,&Frhs);CHKERRQ(ierr);
1698efe9872eSLisandro Dalcin     ierr = TSComputeRHSFunction(ts,t,U,Frhs);CHKERRQ(ierr);
1699efe9872eSLisandro Dalcin     ierr = VecAXPY(F,-1,Frhs);CHKERRQ(ierr);
1700efe9872eSLisandro Dalcin   }
1701efe9872eSLisandro Dalcin 
1702efe9872eSLisandro Dalcin   ierr = PetscLogEventEnd(TS_FunctionEval,ts,U,V,F);CHKERRQ(ierr);
1703efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1704efe9872eSLisandro Dalcin }
1705efe9872eSLisandro Dalcin 
1706efe9872eSLisandro Dalcin /*@
1707efe9872eSLisandro Dalcin   TSComputeI2Jacobian - Evaluates the Jacobian of the DAE
1708efe9872eSLisandro Dalcin 
1709efe9872eSLisandro Dalcin   Collective on TS and Vec
1710efe9872eSLisandro Dalcin 
1711efe9872eSLisandro Dalcin   Input Parameters:
1712efe9872eSLisandro Dalcin + ts - the TS context
1713efe9872eSLisandro Dalcin . t - current timestep
1714efe9872eSLisandro Dalcin . U - state vector
1715efe9872eSLisandro Dalcin . V - time derivative of state vector
1716efe9872eSLisandro Dalcin . A - second time derivative of state vector
1717efe9872eSLisandro Dalcin . shiftV - shift to apply, see note below
1718efe9872eSLisandro Dalcin - shiftA - shift to apply, see note below
1719efe9872eSLisandro Dalcin 
1720efe9872eSLisandro Dalcin   Output Parameters:
1721efe9872eSLisandro Dalcin + J - Jacobian matrix
1722efe9872eSLisandro Dalcin - P - optional preconditioning matrix
1723efe9872eSLisandro Dalcin 
1724efe9872eSLisandro Dalcin   Notes:
1725efe9872eSLisandro Dalcin   If F(t,U,V,A)=0 is the DAE, the required Jacobian is
1726efe9872eSLisandro Dalcin 
1727efe9872eSLisandro Dalcin   dF/dU + shiftV*dF/dV + shiftA*dF/dA
1728efe9872eSLisandro Dalcin 
1729efe9872eSLisandro Dalcin   Most users should not need to explicitly call this routine, as it
1730efe9872eSLisandro Dalcin   is used internally within the nonlinear solvers.
1731efe9872eSLisandro Dalcin 
1732efe9872eSLisandro Dalcin   Level: developer
1733efe9872eSLisandro Dalcin 
1734efe9872eSLisandro Dalcin .keywords: TS, compute, Jacobian, matrix
1735efe9872eSLisandro Dalcin 
1736efe9872eSLisandro Dalcin .seealso:  TSSetI2Jacobian()
1737efe9872eSLisandro Dalcin @*/
1738efe9872eSLisandro Dalcin PetscErrorCode TSComputeI2Jacobian(TS ts,PetscReal t,Vec U,Vec V,Vec A,PetscReal shiftV,PetscReal shiftA,Mat J,Mat P)
1739efe9872eSLisandro Dalcin {
1740efe9872eSLisandro Dalcin   DM             dm;
1741efe9872eSLisandro Dalcin   TSI2Jacobian   I2Jacobian;
1742efe9872eSLisandro Dalcin   void           *ctx;
1743efe9872eSLisandro Dalcin   TSRHSJacobian  rhsjacobian;
1744efe9872eSLisandro Dalcin   PetscErrorCode ierr;
1745efe9872eSLisandro Dalcin 
1746efe9872eSLisandro Dalcin   PetscFunctionBegin;
1747efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1748efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
1749efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(V,VEC_CLASSID,4);
1750efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(A,VEC_CLASSID,5);
1751efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(J,MAT_CLASSID,8);
1752efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(P,MAT_CLASSID,9);
1753efe9872eSLisandro Dalcin 
1754efe9872eSLisandro Dalcin   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
1755efe9872eSLisandro Dalcin   ierr = DMTSGetI2Jacobian(dm,&I2Jacobian,&ctx);CHKERRQ(ierr);
1756efe9872eSLisandro Dalcin   ierr = DMTSGetRHSJacobian(dm,&rhsjacobian,NULL);CHKERRQ(ierr);
1757efe9872eSLisandro Dalcin 
1758efe9872eSLisandro Dalcin   if (!I2Jacobian) {
1759efe9872eSLisandro Dalcin     ierr = TSComputeIJacobian(ts,t,U,A,shiftA,J,P,PETSC_FALSE);CHKERRQ(ierr);
1760efe9872eSLisandro Dalcin     PetscFunctionReturn(0);
1761efe9872eSLisandro Dalcin   }
1762efe9872eSLisandro Dalcin 
1763efe9872eSLisandro Dalcin   ierr = PetscLogEventBegin(TS_JacobianEval,ts,U,J,P);CHKERRQ(ierr);
1764efe9872eSLisandro Dalcin 
1765efe9872eSLisandro Dalcin   PetscStackPush("TS user implicit Jacobian");
1766efe9872eSLisandro Dalcin   ierr = I2Jacobian(ts,t,U,V,A,shiftV,shiftA,J,P,ctx);CHKERRQ(ierr);
1767efe9872eSLisandro Dalcin   PetscStackPop;
1768efe9872eSLisandro Dalcin 
1769efe9872eSLisandro Dalcin   if (rhsjacobian) {
1770efe9872eSLisandro Dalcin     Mat Jrhs,Prhs; MatStructure axpy = DIFFERENT_NONZERO_PATTERN;
1771efe9872eSLisandro Dalcin     ierr = TSGetRHSMats_Private(ts,&Jrhs,&Prhs);CHKERRQ(ierr);
1772efe9872eSLisandro Dalcin     ierr = TSComputeRHSJacobian(ts,t,U,Jrhs,Prhs);CHKERRQ(ierr);
1773efe9872eSLisandro Dalcin     ierr = MatAXPY(J,-1,Jrhs,axpy);CHKERRQ(ierr);
1774efe9872eSLisandro Dalcin     if (P != J) {ierr = MatAXPY(P,-1,Prhs,axpy);CHKERRQ(ierr);}
1775efe9872eSLisandro Dalcin   }
1776efe9872eSLisandro Dalcin 
1777efe9872eSLisandro Dalcin   ierr = PetscLogEventEnd(TS_JacobianEval,ts,U,J,P);CHKERRQ(ierr);
1778efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1779efe9872eSLisandro Dalcin }
1780efe9872eSLisandro Dalcin 
1781efe9872eSLisandro Dalcin /*@
1782efe9872eSLisandro Dalcin    TS2SetSolution - Sets the initial solution and time derivative vectors
1783efe9872eSLisandro Dalcin    for use by the TS routines handling second order equations.
1784efe9872eSLisandro Dalcin 
1785efe9872eSLisandro Dalcin    Logically Collective on TS and Vec
1786efe9872eSLisandro Dalcin 
1787efe9872eSLisandro Dalcin    Input Parameters:
1788efe9872eSLisandro Dalcin +  ts - the TS context obtained from TSCreate()
1789efe9872eSLisandro Dalcin .  u - the solution vector
1790efe9872eSLisandro Dalcin -  v - the time derivative vector
1791efe9872eSLisandro Dalcin 
1792efe9872eSLisandro Dalcin    Level: beginner
1793efe9872eSLisandro Dalcin 
1794efe9872eSLisandro Dalcin .keywords: TS, timestep, set, solution, initial conditions
1795efe9872eSLisandro Dalcin @*/
1796efe9872eSLisandro Dalcin PetscErrorCode  TS2SetSolution(TS ts,Vec u,Vec v)
1797efe9872eSLisandro Dalcin {
1798efe9872eSLisandro Dalcin   PetscErrorCode ierr;
1799efe9872eSLisandro Dalcin 
1800efe9872eSLisandro Dalcin   PetscFunctionBegin;
1801efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1802efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(u,VEC_CLASSID,2);
1803efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(v,VEC_CLASSID,3);
1804efe9872eSLisandro Dalcin   ierr = TSSetSolution(ts,u);CHKERRQ(ierr);
1805efe9872eSLisandro Dalcin   ierr = PetscObjectReference((PetscObject)v);CHKERRQ(ierr);
1806efe9872eSLisandro Dalcin   ierr = VecDestroy(&ts->vec_dot);CHKERRQ(ierr);
1807efe9872eSLisandro Dalcin   ts->vec_dot = v;
1808efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1809efe9872eSLisandro Dalcin }
1810efe9872eSLisandro Dalcin 
1811efe9872eSLisandro Dalcin /*@
1812efe9872eSLisandro Dalcin    TS2GetSolution - Returns the solution and time derivative at the present timestep
1813efe9872eSLisandro Dalcin    for second order equations. It is valid to call this routine inside the function
1814efe9872eSLisandro Dalcin    that you are evaluating in order to move to the new timestep. This vector not
1815efe9872eSLisandro Dalcin    changed until the solution at the next timestep has been calculated.
1816efe9872eSLisandro Dalcin 
1817efe9872eSLisandro Dalcin    Not Collective, but Vec returned is parallel if TS is parallel
1818efe9872eSLisandro Dalcin 
1819efe9872eSLisandro Dalcin    Input Parameter:
1820efe9872eSLisandro Dalcin .  ts - the TS context obtained from TSCreate()
1821efe9872eSLisandro Dalcin 
1822efe9872eSLisandro Dalcin    Output Parameter:
1823efe9872eSLisandro Dalcin +  u - the vector containing the solution
1824efe9872eSLisandro Dalcin -  v - the vector containing the time derivative
1825efe9872eSLisandro Dalcin 
1826efe9872eSLisandro Dalcin    Level: intermediate
1827efe9872eSLisandro Dalcin 
1828efe9872eSLisandro Dalcin .seealso: TS2SetSolution(), TSGetTimeStep(), TSGetTime()
1829efe9872eSLisandro Dalcin 
1830efe9872eSLisandro Dalcin .keywords: TS, timestep, get, solution
1831efe9872eSLisandro Dalcin @*/
1832efe9872eSLisandro Dalcin PetscErrorCode  TS2GetSolution(TS ts,Vec *u,Vec *v)
1833efe9872eSLisandro Dalcin {
1834efe9872eSLisandro Dalcin   PetscFunctionBegin;
1835efe9872eSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
1836efe9872eSLisandro Dalcin   if (u) PetscValidPointer(u,2);
1837efe9872eSLisandro Dalcin   if (v) PetscValidPointer(v,3);
1838efe9872eSLisandro Dalcin   if (u) *u = ts->vec_sol;
1839efe9872eSLisandro Dalcin   if (v) *v = ts->vec_dot;
1840efe9872eSLisandro Dalcin   PetscFunctionReturn(0);
1841efe9872eSLisandro Dalcin }
1842efe9872eSLisandro Dalcin 
184355849f57SBarry Smith /*@C
184455849f57SBarry Smith   TSLoad - Loads a KSP that has been stored in binary  with KSPView().
184555849f57SBarry Smith 
184655849f57SBarry Smith   Collective on PetscViewer
184755849f57SBarry Smith 
184855849f57SBarry Smith   Input Parameters:
184955849f57SBarry Smith + newdm - the newly loaded TS, this needs to have been created with TSCreate() or
185055849f57SBarry Smith            some related function before a call to TSLoad().
185155849f57SBarry Smith - viewer - binary file viewer, obtained from PetscViewerBinaryOpen()
185255849f57SBarry Smith 
185355849f57SBarry Smith    Level: intermediate
185455849f57SBarry Smith 
185555849f57SBarry Smith   Notes:
185655849f57SBarry Smith    The type is determined by the data in the file, any type set into the TS before this call is ignored.
185755849f57SBarry Smith 
185855849f57SBarry Smith   Notes for advanced users:
185955849f57SBarry Smith   Most users should not need to know the details of the binary storage
186055849f57SBarry Smith   format, since TSLoad() and TSView() completely hide these details.
186155849f57SBarry Smith   But for anyone who's interested, the standard binary matrix storage
186255849f57SBarry Smith   format is
186355849f57SBarry Smith .vb
186455849f57SBarry Smith      has not yet been determined
186555849f57SBarry Smith .ve
186655849f57SBarry Smith 
186755849f57SBarry Smith .seealso: PetscViewerBinaryOpen(), TSView(), MatLoad(), VecLoad()
186855849f57SBarry Smith @*/
1869f2c2a1b9SBarry Smith PetscErrorCode  TSLoad(TS ts, PetscViewer viewer)
187055849f57SBarry Smith {
187155849f57SBarry Smith   PetscErrorCode ierr;
187255849f57SBarry Smith   PetscBool      isbinary;
187355849f57SBarry Smith   PetscInt       classid;
187455849f57SBarry Smith   char           type[256];
18752d53ad75SBarry Smith   DMTS           sdm;
1876ad6bc421SBarry Smith   DM             dm;
187755849f57SBarry Smith 
187855849f57SBarry Smith   PetscFunctionBegin;
1879f2c2a1b9SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
188055849f57SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
188155849f57SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
188255849f57SBarry Smith   if (!isbinary) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Invalid viewer; open viewer with PetscViewerBinaryOpen()");
188355849f57SBarry Smith 
1884060da220SMatthew G. Knepley   ierr = PetscViewerBinaryRead(viewer,&classid,1,NULL,PETSC_INT);CHKERRQ(ierr);
1885ce94432eSBarry Smith   if (classid != TS_FILE_CLASSID) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONG,"Not TS next in file");
1886060da220SMatthew G. Knepley   ierr = PetscViewerBinaryRead(viewer,type,256,NULL,PETSC_CHAR);CHKERRQ(ierr);
1887f2c2a1b9SBarry Smith   ierr = TSSetType(ts, type);CHKERRQ(ierr);
1888f2c2a1b9SBarry Smith   if (ts->ops->load) {
1889f2c2a1b9SBarry Smith     ierr = (*ts->ops->load)(ts,viewer);CHKERRQ(ierr);
1890f2c2a1b9SBarry Smith   }
1891ce94432eSBarry Smith   ierr = DMCreate(PetscObjectComm((PetscObject)ts),&dm);CHKERRQ(ierr);
1892ad6bc421SBarry Smith   ierr = DMLoad(dm,viewer);CHKERRQ(ierr);
1893ad6bc421SBarry Smith   ierr = TSSetDM(ts,dm);CHKERRQ(ierr);
1894f2c2a1b9SBarry Smith   ierr = DMCreateGlobalVector(ts->dm,&ts->vec_sol);CHKERRQ(ierr);
1895f2c2a1b9SBarry Smith   ierr = VecLoad(ts->vec_sol,viewer);CHKERRQ(ierr);
18962d53ad75SBarry Smith   ierr = DMGetDMTS(ts->dm,&sdm);CHKERRQ(ierr);
18972d53ad75SBarry Smith   ierr = DMTSLoad(sdm,viewer);CHKERRQ(ierr);
189855849f57SBarry Smith   PetscFunctionReturn(0);
189955849f57SBarry Smith }
190055849f57SBarry Smith 
19019804daf3SBarry Smith #include <petscdraw.h>
1902e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1903e04113cfSBarry Smith #include <petscviewersaws.h>
1904f05ece33SBarry Smith #endif
19057e2c5f70SBarry Smith /*@C
1906d763cef2SBarry Smith     TSView - Prints the TS data structure.
1907d763cef2SBarry Smith 
19084c49b128SBarry Smith     Collective on TS
1909d763cef2SBarry Smith 
1910d763cef2SBarry Smith     Input Parameters:
1911d763cef2SBarry Smith +   ts - the TS context obtained from TSCreate()
1912d763cef2SBarry Smith -   viewer - visualization context
1913d763cef2SBarry Smith 
1914d763cef2SBarry Smith     Options Database Key:
1915d763cef2SBarry Smith .   -ts_view - calls TSView() at end of TSStep()
1916d763cef2SBarry Smith 
1917d763cef2SBarry Smith     Notes:
1918d763cef2SBarry Smith     The available visualization contexts include
1919b0a32e0cSBarry Smith +     PETSC_VIEWER_STDOUT_SELF - standard output (default)
1920b0a32e0cSBarry Smith -     PETSC_VIEWER_STDOUT_WORLD - synchronized standard
1921d763cef2SBarry Smith          output where only the first processor opens
1922d763cef2SBarry Smith          the file.  All other processors send their
1923d763cef2SBarry Smith          data to the first processor to print.
1924d763cef2SBarry Smith 
1925d763cef2SBarry Smith     The user can open an alternative visualization context with
1926b0a32e0cSBarry Smith     PetscViewerASCIIOpen() - output to a specified file.
1927d763cef2SBarry Smith 
1928d763cef2SBarry Smith     Level: beginner
1929d763cef2SBarry Smith 
1930d763cef2SBarry Smith .keywords: TS, timestep, view
1931d763cef2SBarry Smith 
1932b0a32e0cSBarry Smith .seealso: PetscViewerASCIIOpen()
1933d763cef2SBarry Smith @*/
19347087cfbeSBarry Smith PetscErrorCode  TSView(TS ts,PetscViewer viewer)
1935d763cef2SBarry Smith {
1936dfbe8321SBarry Smith   PetscErrorCode ierr;
193719fd82e9SBarry Smith   TSType         type;
19382b0a91c0SBarry Smith   PetscBool      iascii,isstring,isundials,isbinary,isdraw;
19392d53ad75SBarry Smith   DMTS           sdm;
1940e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1941536b137fSBarry Smith   PetscBool      issaws;
1942f05ece33SBarry Smith #endif
1943d763cef2SBarry Smith 
1944d763cef2SBarry Smith   PetscFunctionBegin;
19450700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
19463050cee2SBarry Smith   if (!viewer) {
1947ce94432eSBarry Smith     ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)ts),&viewer);CHKERRQ(ierr);
19483050cee2SBarry Smith   }
19490700a824SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
1950c9780b6fSBarry Smith   PetscCheckSameComm(ts,1,viewer,2);
1951fd16b177SBarry Smith 
1952251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr);
1953251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSTRING,&isstring);CHKERRQ(ierr);
195455849f57SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
19552b0a91c0SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
1956e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
1957536b137fSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSAWS,&issaws);CHKERRQ(ierr);
1958f05ece33SBarry Smith #endif
195932077d6dSBarry Smith   if (iascii) {
1960dae58748SBarry Smith     ierr = PetscObjectPrintClassNamePrefixType((PetscObject)ts,viewer);CHKERRQ(ierr);
1961efd4aadfSBarry Smith     if (ts->ops->view) {
1962efd4aadfSBarry Smith       ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
1963efd4aadfSBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
1964efd4aadfSBarry Smith       ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
1965efd4aadfSBarry Smith     }
196677431f27SBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  maximum steps=%D\n",ts->max_steps);CHKERRQ(ierr);
19677c8652ddSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  maximum time=%g\n",(double)ts->max_time);CHKERRQ(ierr);
1968efd4aadfSBarry Smith     if (ts->usessnes) {
1969efd4aadfSBarry Smith       PetscBool lin;
1970d763cef2SBarry Smith       if (ts->problem_type == TS_NONLINEAR) {
19715ef26d82SJed Brown         ierr = PetscViewerASCIIPrintf(viewer,"  total number of nonlinear solver iterations=%D\n",ts->snes_its);CHKERRQ(ierr);
1972d763cef2SBarry Smith       }
19735ef26d82SJed Brown       ierr = PetscViewerASCIIPrintf(viewer,"  total number of linear solver iterations=%D\n",ts->ksp_its);CHKERRQ(ierr);
1974efd4aadfSBarry Smith       ierr = PetscObjectTypeCompare((PetscObject)ts->snes,SNESKSPONLY,&lin);CHKERRQ(ierr);
1975efd4aadfSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  total number of %slinear solve failures=%D\n",lin ? "" : "non",ts->num_snes_failures);CHKERRQ(ierr);
1976efd4aadfSBarry Smith     }
1977193ac0bcSJed Brown     ierr = PetscViewerASCIIPrintf(viewer,"  total number of rejected steps=%D\n",ts->reject);CHKERRQ(ierr);
1978a0af407cSBarry Smith     if (ts->vrtol) {
1979a0af407cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  using vector of relative error tolerances, ");CHKERRQ(ierr);
1980a0af407cSBarry Smith     } else {
1981a0af407cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  using relative error tolerance of %g, ",(double)ts->rtol);CHKERRQ(ierr);
1982a0af407cSBarry Smith     }
1983a0af407cSBarry Smith     if (ts->vatol) {
1984a0af407cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  using vector of absolute error tolerances\n");CHKERRQ(ierr);
1985a0af407cSBarry Smith     } else {
1986a0af407cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"  using absolute error tolerance of %g\n",(double)ts->atol);CHKERRQ(ierr);
1987a0af407cSBarry Smith     }
1988efd4aadfSBarry Smith     ierr = TSAdaptView(ts->adapt,viewer);CHKERRQ(ierr);
1989efd4aadfSBarry Smith     if (ts->snes && ts->usessnes)  {ierr = SNESView(ts->snes,viewer);CHKERRQ(ierr);}
19902d53ad75SBarry Smith     ierr = DMGetDMTS(ts->dm,&sdm);CHKERRQ(ierr);
19912d53ad75SBarry Smith     ierr = DMTSView(sdm,viewer);CHKERRQ(ierr);
19920f5bd95cSBarry Smith   } else if (isstring) {
1993a313700dSBarry Smith     ierr = TSGetType(ts,&type);CHKERRQ(ierr);
1994b0a32e0cSBarry Smith     ierr = PetscViewerStringSPrintf(viewer," %-7.7s",type);CHKERRQ(ierr);
199555849f57SBarry Smith   } else if (isbinary) {
199655849f57SBarry Smith     PetscInt    classid = TS_FILE_CLASSID;
199755849f57SBarry Smith     MPI_Comm    comm;
199855849f57SBarry Smith     PetscMPIInt rank;
199955849f57SBarry Smith     char        type[256];
200055849f57SBarry Smith 
200155849f57SBarry Smith     ierr = PetscObjectGetComm((PetscObject)ts,&comm);CHKERRQ(ierr);
200255849f57SBarry Smith     ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
200355849f57SBarry Smith     if (!rank) {
200455849f57SBarry Smith       ierr = PetscViewerBinaryWrite(viewer,&classid,1,PETSC_INT,PETSC_FALSE);CHKERRQ(ierr);
200555849f57SBarry Smith       ierr = PetscStrncpy(type,((PetscObject)ts)->type_name,256);CHKERRQ(ierr);
200655849f57SBarry Smith       ierr = PetscViewerBinaryWrite(viewer,type,256,PETSC_CHAR,PETSC_FALSE);CHKERRQ(ierr);
200755849f57SBarry Smith     }
200855849f57SBarry Smith     if (ts->ops->view) {
200955849f57SBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
201055849f57SBarry Smith     }
2011efd4aadfSBarry Smith     if (ts->adapt) {ierr = TSAdaptView(ts->adapt,viewer);CHKERRQ(ierr);}
2012f2c2a1b9SBarry Smith     ierr = DMView(ts->dm,viewer);CHKERRQ(ierr);
2013f2c2a1b9SBarry Smith     ierr = VecView(ts->vec_sol,viewer);CHKERRQ(ierr);
20142d53ad75SBarry Smith     ierr = DMGetDMTS(ts->dm,&sdm);CHKERRQ(ierr);
20152d53ad75SBarry Smith     ierr = DMTSView(sdm,viewer);CHKERRQ(ierr);
20162b0a91c0SBarry Smith   } else if (isdraw) {
20172b0a91c0SBarry Smith     PetscDraw draw;
20182b0a91c0SBarry Smith     char      str[36];
201989fd9fafSBarry Smith     PetscReal x,y,bottom,h;
20202b0a91c0SBarry Smith 
20212b0a91c0SBarry Smith     ierr   = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
20222b0a91c0SBarry Smith     ierr   = PetscDrawGetCurrentPoint(draw,&x,&y);CHKERRQ(ierr);
20232b0a91c0SBarry Smith     ierr   = PetscStrcpy(str,"TS: ");CHKERRQ(ierr);
20242b0a91c0SBarry Smith     ierr   = PetscStrcat(str,((PetscObject)ts)->type_name);CHKERRQ(ierr);
202551fa3d41SBarry Smith     ierr   = PetscDrawStringBoxed(draw,x,y,PETSC_DRAW_BLACK,PETSC_DRAW_BLACK,str,NULL,&h);CHKERRQ(ierr);
202689fd9fafSBarry Smith     bottom = y - h;
20272b0a91c0SBarry Smith     ierr   = PetscDrawPushCurrentPoint(draw,x,bottom);CHKERRQ(ierr);
20282b0a91c0SBarry Smith     if (ts->ops->view) {
20292b0a91c0SBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
20302b0a91c0SBarry Smith     }
2031efd4aadfSBarry Smith     if (ts->adapt) {ierr = TSAdaptView(ts->adapt,viewer);CHKERRQ(ierr);}
2032efd4aadfSBarry Smith     if (ts->snes)  {ierr = SNESView(ts->snes,viewer);CHKERRQ(ierr);}
20332b0a91c0SBarry Smith     ierr = PetscDrawPopCurrentPoint(draw);CHKERRQ(ierr);
2034e04113cfSBarry Smith #if defined(PETSC_HAVE_SAWS)
2035536b137fSBarry Smith   } else if (issaws) {
2036d45a07a7SBarry Smith     PetscMPIInt rank;
20372657e9d9SBarry Smith     const char  *name;
20382657e9d9SBarry Smith 
20392657e9d9SBarry Smith     ierr = PetscObjectGetName((PetscObject)ts,&name);CHKERRQ(ierr);
2040d45a07a7SBarry Smith     ierr = MPI_Comm_rank(PETSC_COMM_WORLD,&rank);CHKERRQ(ierr);
2041d45a07a7SBarry Smith     if (!((PetscObject)ts)->amsmem && !rank) {
2042d45a07a7SBarry Smith       char       dir[1024];
2043d45a07a7SBarry Smith 
2044e04113cfSBarry Smith       ierr = PetscObjectViewSAWs((PetscObject)ts,viewer);CHKERRQ(ierr);
2045a0931e03SBarry Smith       ierr = PetscSNPrintf(dir,1024,"/PETSc/Objects/%s/time_step",name);CHKERRQ(ierr);
20462657e9d9SBarry Smith       PetscStackCallSAWs(SAWs_Register,(dir,&ts->steps,1,SAWs_READ,SAWs_INT));
20472657e9d9SBarry Smith       ierr = PetscSNPrintf(dir,1024,"/PETSc/Objects/%s/time",name);CHKERRQ(ierr);
20482657e9d9SBarry Smith       PetscStackCallSAWs(SAWs_Register,(dir,&ts->ptime,1,SAWs_READ,SAWs_DOUBLE));
2049d763cef2SBarry Smith     }
20500acecf5bSBarry Smith     if (ts->ops->view) {
20510acecf5bSBarry Smith       ierr = (*ts->ops->view)(ts,viewer);CHKERRQ(ierr);
20520acecf5bSBarry Smith     }
2053f05ece33SBarry Smith #endif
2054f05ece33SBarry Smith   }
2055f05ece33SBarry Smith 
2056b0a32e0cSBarry Smith   ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
2057251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)ts,TSSUNDIALS,&isundials);CHKERRQ(ierr);
2058b0a32e0cSBarry Smith   ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
2059d763cef2SBarry Smith   PetscFunctionReturn(0);
2060d763cef2SBarry Smith }
2061d763cef2SBarry Smith 
2062b07ff414SBarry Smith /*@
2063d763cef2SBarry Smith    TSSetApplicationContext - Sets an optional user-defined context for
2064d763cef2SBarry Smith    the timesteppers.
2065d763cef2SBarry Smith 
20663f9fe445SBarry Smith    Logically Collective on TS
2067d763cef2SBarry Smith 
2068d763cef2SBarry Smith    Input Parameters:
2069d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
2070d763cef2SBarry Smith -  usrP - optional user context
2071d763cef2SBarry Smith 
2072daf670e6SBarry Smith    Fortran Notes: To use this from Fortran you must write a Fortran interface definition for this
2073daf670e6SBarry Smith     function that tells Fortran the Fortran derived data type that you are passing in as the ctx argument.
2074daf670e6SBarry Smith 
2075d763cef2SBarry Smith    Level: intermediate
2076d763cef2SBarry Smith 
2077d763cef2SBarry Smith .keywords: TS, timestep, set, application, context
2078d763cef2SBarry Smith 
2079d763cef2SBarry Smith .seealso: TSGetApplicationContext()
2080d763cef2SBarry Smith @*/
20817087cfbeSBarry Smith PetscErrorCode  TSSetApplicationContext(TS ts,void *usrP)
2082d763cef2SBarry Smith {
2083d763cef2SBarry Smith   PetscFunctionBegin;
20840700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2085d763cef2SBarry Smith   ts->user = usrP;
2086d763cef2SBarry Smith   PetscFunctionReturn(0);
2087d763cef2SBarry Smith }
2088d763cef2SBarry Smith 
2089b07ff414SBarry Smith /*@
2090d763cef2SBarry Smith     TSGetApplicationContext - Gets the user-defined context for the
2091d763cef2SBarry Smith     timestepper.
2092d763cef2SBarry Smith 
2093d763cef2SBarry Smith     Not Collective
2094d763cef2SBarry Smith 
2095d763cef2SBarry Smith     Input Parameter:
2096d763cef2SBarry Smith .   ts - the TS context obtained from TSCreate()
2097d763cef2SBarry Smith 
2098d763cef2SBarry Smith     Output Parameter:
2099d763cef2SBarry Smith .   usrP - user context
2100d763cef2SBarry Smith 
2101daf670e6SBarry Smith    Fortran Notes: To use this from Fortran you must write a Fortran interface definition for this
2102daf670e6SBarry Smith     function that tells Fortran the Fortran derived data type that you are passing in as the ctx argument.
2103daf670e6SBarry Smith 
2104d763cef2SBarry Smith     Level: intermediate
2105d763cef2SBarry Smith 
2106d763cef2SBarry Smith .keywords: TS, timestep, get, application, context
2107d763cef2SBarry Smith 
2108d763cef2SBarry Smith .seealso: TSSetApplicationContext()
2109d763cef2SBarry Smith @*/
2110e71120c6SJed Brown PetscErrorCode  TSGetApplicationContext(TS ts,void *usrP)
2111d763cef2SBarry Smith {
2112d763cef2SBarry Smith   PetscFunctionBegin;
21130700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2114e71120c6SJed Brown   *(void**)usrP = ts->user;
2115d763cef2SBarry Smith   PetscFunctionReturn(0);
2116d763cef2SBarry Smith }
2117d763cef2SBarry Smith 
2118d763cef2SBarry Smith /*@
211980275a0aSLisandro Dalcin    TSGetStepNumber - Gets the number of steps completed.
2120d763cef2SBarry Smith 
2121d763cef2SBarry Smith    Not Collective
2122d763cef2SBarry Smith 
2123d763cef2SBarry Smith    Input Parameter:
2124d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2125d763cef2SBarry Smith 
2126d763cef2SBarry Smith    Output Parameter:
212780275a0aSLisandro Dalcin .  steps - number of steps completed so far
2128d763cef2SBarry Smith 
2129d763cef2SBarry Smith    Level: intermediate
2130d763cef2SBarry Smith 
2131d763cef2SBarry Smith .keywords: TS, timestep, get, iteration, number
21329be3e283SDebojyoti Ghosh .seealso: TSGetTime(), TSGetTimeStep(), TSSetPreStep(), TSSetPreStage(), TSSetPostStage(), TSSetPostStep()
2133d763cef2SBarry Smith @*/
213480275a0aSLisandro Dalcin PetscErrorCode TSGetStepNumber(TS ts,PetscInt *steps)
2135d763cef2SBarry Smith {
2136d763cef2SBarry Smith   PetscFunctionBegin;
21370700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
213880275a0aSLisandro Dalcin   PetscValidIntPointer(steps,2);
213980275a0aSLisandro Dalcin   *steps = ts->steps;
214080275a0aSLisandro Dalcin   PetscFunctionReturn(0);
214180275a0aSLisandro Dalcin }
214280275a0aSLisandro Dalcin 
214380275a0aSLisandro Dalcin /*@
214480275a0aSLisandro Dalcin    TSSetStepNumber - Sets the number of steps completed.
214580275a0aSLisandro Dalcin 
214680275a0aSLisandro Dalcin    Logically Collective on TS
214780275a0aSLisandro Dalcin 
214880275a0aSLisandro Dalcin    Input Parameters:
214980275a0aSLisandro Dalcin +  ts - the TS context
215080275a0aSLisandro Dalcin -  steps - number of steps completed so far
215180275a0aSLisandro Dalcin 
215280275a0aSLisandro Dalcin    Notes:
215380275a0aSLisandro Dalcin    For most uses of the TS solvers the user need not explicitly call
215480275a0aSLisandro Dalcin    TSSetStepNumber(), as the step counter is appropriately updated in
215580275a0aSLisandro Dalcin    TSSolve()/TSStep()/TSRollBack(). Power users may call this routine to
215680275a0aSLisandro Dalcin    reinitialize timestepping by setting the step counter to zero (and time
215780275a0aSLisandro Dalcin    to the initial time) to solve a similar problem with different initial
215880275a0aSLisandro Dalcin    conditions or parameters. Other possible use case is to continue
215980275a0aSLisandro Dalcin    timestepping from a previously interrupted run in such a way that TS
216080275a0aSLisandro Dalcin    monitors will be called with a initial nonzero step counter.
216180275a0aSLisandro Dalcin 
216280275a0aSLisandro Dalcin    Level: advanced
216380275a0aSLisandro Dalcin 
216480275a0aSLisandro Dalcin .keywords: TS, timestep, set, iteration, number
216580275a0aSLisandro Dalcin .seealso: TSGetStepNumber(), TSSetTime(), TSSetTimeStep(), TSSetSolution()
216680275a0aSLisandro Dalcin @*/
216780275a0aSLisandro Dalcin PetscErrorCode TSSetStepNumber(TS ts,PetscInt steps)
216880275a0aSLisandro Dalcin {
216980275a0aSLisandro Dalcin   PetscFunctionBegin;
217080275a0aSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
217180275a0aSLisandro Dalcin   PetscValidLogicalCollectiveInt(ts,steps,2);
217280275a0aSLisandro Dalcin   if (steps < 0) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_OUTOFRANGE,"Step number must be non-negative");
217380275a0aSLisandro Dalcin   ts->steps = steps;
2174d763cef2SBarry Smith   PetscFunctionReturn(0);
2175d763cef2SBarry Smith }
2176d763cef2SBarry Smith 
2177d763cef2SBarry Smith /*@
2178d763cef2SBarry Smith    TSSetInitialTimeStep - Sets the initial timestep to be used,
2179d763cef2SBarry Smith    as well as the initial time.
2180d763cef2SBarry Smith 
21813f9fe445SBarry Smith    Logically Collective on TS
2182d763cef2SBarry Smith 
2183d763cef2SBarry Smith    Input Parameters:
2184d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
2185d763cef2SBarry Smith .  initial_time - the initial time
2186d763cef2SBarry Smith -  time_step - the size of the timestep
2187d763cef2SBarry Smith 
2188d763cef2SBarry Smith    Level: intermediate
2189d763cef2SBarry Smith 
2190d763cef2SBarry Smith .seealso: TSSetTimeStep(), TSGetTimeStep()
2191d763cef2SBarry Smith 
2192d763cef2SBarry Smith .keywords: TS, set, initial, timestep
2193d763cef2SBarry Smith @*/
21947087cfbeSBarry Smith PetscErrorCode  TSSetInitialTimeStep(TS ts,PetscReal initial_time,PetscReal time_step)
2195d763cef2SBarry Smith {
2196e144a568SJed Brown   PetscErrorCode ierr;
2197e144a568SJed Brown 
2198d763cef2SBarry Smith   PetscFunctionBegin;
21990700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2200e144a568SJed Brown   ierr = TSSetTimeStep(ts,time_step);CHKERRQ(ierr);
2201d8cd7023SBarry Smith   ierr = TSSetTime(ts,initial_time);CHKERRQ(ierr);
2202d763cef2SBarry Smith   PetscFunctionReturn(0);
2203d763cef2SBarry Smith }
2204d763cef2SBarry Smith 
2205d763cef2SBarry Smith /*@
2206d763cef2SBarry Smith    TSSetTimeStep - Allows one to reset the timestep at any time,
2207d763cef2SBarry Smith    useful for simple pseudo-timestepping codes.
2208d763cef2SBarry Smith 
22093f9fe445SBarry Smith    Logically Collective on TS
2210d763cef2SBarry Smith 
2211d763cef2SBarry Smith    Input Parameters:
2212d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
2213d763cef2SBarry Smith -  time_step - the size of the timestep
2214d763cef2SBarry Smith 
2215d763cef2SBarry Smith    Level: intermediate
2216d763cef2SBarry Smith 
2217d763cef2SBarry Smith .seealso: TSSetInitialTimeStep(), TSGetTimeStep()
2218d763cef2SBarry Smith 
2219d763cef2SBarry Smith .keywords: TS, set, timestep
2220d763cef2SBarry Smith @*/
22217087cfbeSBarry Smith PetscErrorCode  TSSetTimeStep(TS ts,PetscReal time_step)
2222d763cef2SBarry Smith {
2223d763cef2SBarry Smith   PetscFunctionBegin;
22240700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2225c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(ts,time_step,2);
2226d763cef2SBarry Smith   ts->time_step = time_step;
2227d763cef2SBarry Smith   PetscFunctionReturn(0);
2228d763cef2SBarry Smith }
2229d763cef2SBarry Smith 
2230a43b19c4SJed Brown /*@
223149354f04SShri Abhyankar    TSSetExactFinalTime - Determines whether to adapt the final time step to
223249354f04SShri Abhyankar      match the exact final time, interpolate solution to the exact final time,
223349354f04SShri Abhyankar      or just return at the final time TS computed.
2234a43b19c4SJed Brown 
2235a43b19c4SJed Brown   Logically Collective on TS
2236a43b19c4SJed Brown 
2237a43b19c4SJed Brown    Input Parameter:
2238a43b19c4SJed Brown +   ts - the time-step context
223949354f04SShri Abhyankar -   eftopt - exact final time option
2240a43b19c4SJed Brown 
2241feed9e9dSBarry Smith $  TS_EXACTFINALTIME_STEPOVER    - Don't do anything if final time is exceeded
2242feed9e9dSBarry Smith $  TS_EXACTFINALTIME_INTERPOLATE - Interpolate back to final time
2243feed9e9dSBarry Smith $  TS_EXACTFINALTIME_MATCHSTEP - Adapt final time step to match the final time
2244feed9e9dSBarry Smith 
2245feed9e9dSBarry Smith    Options Database:
2246feed9e9dSBarry Smith .   -ts_exact_final_time <stepover,interpolate,matchstep> - select the final step at runtime
2247feed9e9dSBarry Smith 
2248ee346746SBarry Smith    Warning: If you use the option TS_EXACTFINALTIME_STEPOVER the solution may be at a very different time
2249ee346746SBarry Smith     then the final time you selected.
2250ee346746SBarry Smith 
2251a43b19c4SJed Brown    Level: beginner
2252a43b19c4SJed Brown 
2253*f6953c82SLisandro Dalcin .seealso: TSExactFinalTimeOption, TSGetExactFinalTime()
2254a43b19c4SJed Brown @*/
225549354f04SShri Abhyankar PetscErrorCode TSSetExactFinalTime(TS ts,TSExactFinalTimeOption eftopt)
2256a43b19c4SJed Brown {
2257a43b19c4SJed Brown   PetscFunctionBegin;
2258a43b19c4SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
225949354f04SShri Abhyankar   PetscValidLogicalCollectiveEnum(ts,eftopt,2);
226049354f04SShri Abhyankar   ts->exact_final_time = eftopt;
2261a43b19c4SJed Brown   PetscFunctionReturn(0);
2262a43b19c4SJed Brown }
2263a43b19c4SJed Brown 
2264d763cef2SBarry Smith /*@
2265*f6953c82SLisandro Dalcin    TSGetExactFinalTime - Gets the exact final time option.
2266*f6953c82SLisandro Dalcin 
2267*f6953c82SLisandro Dalcin    Not Collective
2268*f6953c82SLisandro Dalcin 
2269*f6953c82SLisandro Dalcin    Input Parameter:
2270*f6953c82SLisandro Dalcin .  ts - the TS context
2271*f6953c82SLisandro Dalcin 
2272*f6953c82SLisandro Dalcin    Output Parameter:
2273*f6953c82SLisandro Dalcin .  eftopt - exact final time option
2274*f6953c82SLisandro Dalcin 
2275*f6953c82SLisandro Dalcin    Level: beginner
2276*f6953c82SLisandro Dalcin 
2277*f6953c82SLisandro Dalcin .seealso: TSExactFinalTimeOption, TSSetExactFinalTime()
2278*f6953c82SLisandro Dalcin @*/
2279*f6953c82SLisandro Dalcin PetscErrorCode TSGetExactFinalTime(TS ts,TSExactFinalTimeOption *eftopt)
2280*f6953c82SLisandro Dalcin {
2281*f6953c82SLisandro Dalcin   PetscFunctionBegin;
2282*f6953c82SLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2283*f6953c82SLisandro Dalcin   PetscValidPointer(eftopt,2);
2284*f6953c82SLisandro Dalcin   *eftopt = ts->exact_final_time;
2285*f6953c82SLisandro Dalcin   PetscFunctionReturn(0);
2286*f6953c82SLisandro Dalcin }
2287*f6953c82SLisandro Dalcin 
2288*f6953c82SLisandro Dalcin /*@
2289d763cef2SBarry Smith    TSGetTimeStep - Gets the current timestep size.
2290d763cef2SBarry Smith 
2291d763cef2SBarry Smith    Not Collective
2292d763cef2SBarry Smith 
2293d763cef2SBarry Smith    Input Parameter:
2294d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2295d763cef2SBarry Smith 
2296d763cef2SBarry Smith    Output Parameter:
2297d763cef2SBarry Smith .  dt - the current timestep size
2298d763cef2SBarry Smith 
2299d763cef2SBarry Smith    Level: intermediate
2300d763cef2SBarry Smith 
2301d763cef2SBarry Smith .seealso: TSSetInitialTimeStep(), TSGetTimeStep()
2302d763cef2SBarry Smith 
2303d763cef2SBarry Smith .keywords: TS, get, timestep
2304d763cef2SBarry Smith @*/
23057087cfbeSBarry Smith PetscErrorCode  TSGetTimeStep(TS ts,PetscReal *dt)
2306d763cef2SBarry Smith {
2307d763cef2SBarry Smith   PetscFunctionBegin;
23080700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2309f7cf8827SBarry Smith   PetscValidRealPointer(dt,2);
2310d763cef2SBarry Smith   *dt = ts->time_step;
2311d763cef2SBarry Smith   PetscFunctionReturn(0);
2312d763cef2SBarry Smith }
2313d763cef2SBarry Smith 
2314d8e5e3e6SSatish Balay /*@
2315d763cef2SBarry Smith    TSGetSolution - Returns the solution at the present timestep. It
2316d763cef2SBarry Smith    is valid to call this routine inside the function that you are evaluating
2317d763cef2SBarry Smith    in order to move to the new timestep. This vector not changed until
2318d763cef2SBarry Smith    the solution at the next timestep has been calculated.
2319d763cef2SBarry Smith 
2320d763cef2SBarry Smith    Not Collective, but Vec returned is parallel if TS is parallel
2321d763cef2SBarry Smith 
2322d763cef2SBarry Smith    Input Parameter:
2323d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2324d763cef2SBarry Smith 
2325d763cef2SBarry Smith    Output Parameter:
2326d763cef2SBarry Smith .  v - the vector containing the solution
2327d763cef2SBarry Smith 
232863e21af5SBarry Smith    Note: If you used TSSetExactFinalTime(ts,TS_EXACTFINALTIME_MATCHSTEP); this does not return the solution at the requested
232963e21af5SBarry Smith    final time. It returns the solution at the next timestep.
233063e21af5SBarry Smith 
2331d763cef2SBarry Smith    Level: intermediate
2332d763cef2SBarry Smith 
2333b2bf4f3aSDebojyoti Ghosh .seealso: TSGetTimeStep(), TSGetTime(), TSGetSolveTime(), TSGetSolutionComponents()
2334d763cef2SBarry Smith 
2335d763cef2SBarry Smith .keywords: TS, timestep, get, solution
2336d763cef2SBarry Smith @*/
23377087cfbeSBarry Smith PetscErrorCode  TSGetSolution(TS ts,Vec *v)
2338d763cef2SBarry Smith {
2339d763cef2SBarry Smith   PetscFunctionBegin;
23400700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
23414482741eSBarry Smith   PetscValidPointer(v,2);
23428737fe31SLisandro Dalcin   *v = ts->vec_sol;
2343d763cef2SBarry Smith   PetscFunctionReturn(0);
2344d763cef2SBarry Smith }
2345d763cef2SBarry Smith 
234603fe5f5eSDebojyoti Ghosh /*@
2347b2bf4f3aSDebojyoti Ghosh    TSGetSolutionComponents - Returns any solution components at the present
234803fe5f5eSDebojyoti Ghosh    timestep, if available for the time integration method being used.
2349b2bf4f3aSDebojyoti Ghosh    Solution components are quantities that share the same size and
235003fe5f5eSDebojyoti Ghosh    structure as the solution vector.
235103fe5f5eSDebojyoti Ghosh 
235203fe5f5eSDebojyoti Ghosh    Not Collective, but Vec returned is parallel if TS is parallel
235303fe5f5eSDebojyoti Ghosh 
235403fe5f5eSDebojyoti Ghosh    Parameters :
235503fe5f5eSDebojyoti Ghosh .  ts - the TS context obtained from TSCreate() (input parameter).
2356b2bf4f3aSDebojyoti Ghosh .  n - If v is PETSC_NULL, then the number of solution components is
2357b2bf4f3aSDebojyoti Ghosh        returned through n, else the n-th solution component is
235803fe5f5eSDebojyoti Ghosh        returned in v.
2359b2bf4f3aSDebojyoti Ghosh .  v - the vector containing the n-th solution component
236003fe5f5eSDebojyoti Ghosh        (may be PETSC_NULL to use this function to find out
2361b2bf4f3aSDebojyoti Ghosh         the number of solutions components).
236203fe5f5eSDebojyoti Ghosh 
23634cdd57e5SDebojyoti Ghosh    Level: advanced
236403fe5f5eSDebojyoti Ghosh 
236503fe5f5eSDebojyoti Ghosh .seealso: TSGetSolution()
236603fe5f5eSDebojyoti Ghosh 
236703fe5f5eSDebojyoti Ghosh .keywords: TS, timestep, get, solution
236803fe5f5eSDebojyoti Ghosh @*/
2369b2bf4f3aSDebojyoti Ghosh PetscErrorCode  TSGetSolutionComponents(TS ts,PetscInt *n,Vec *v)
237003fe5f5eSDebojyoti Ghosh {
237103fe5f5eSDebojyoti Ghosh   PetscErrorCode ierr;
237203fe5f5eSDebojyoti Ghosh 
237303fe5f5eSDebojyoti Ghosh   PetscFunctionBegin;
237403fe5f5eSDebojyoti Ghosh   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2375b2bf4f3aSDebojyoti Ghosh   if (!ts->ops->getsolutioncomponents) *n = 0;
237603fe5f5eSDebojyoti Ghosh   else {
2377b2bf4f3aSDebojyoti Ghosh     ierr = (*ts->ops->getsolutioncomponents)(ts,n,v);CHKERRQ(ierr);
237803fe5f5eSDebojyoti Ghosh   }
237903fe5f5eSDebojyoti Ghosh   PetscFunctionReturn(0);
238003fe5f5eSDebojyoti Ghosh }
238103fe5f5eSDebojyoti Ghosh 
23824cdd57e5SDebojyoti Ghosh /*@
23834cdd57e5SDebojyoti Ghosh    TSGetAuxSolution - Returns an auxiliary solution at the present
23844cdd57e5SDebojyoti Ghosh    timestep, if available for the time integration method being used.
23854cdd57e5SDebojyoti Ghosh 
23864cdd57e5SDebojyoti Ghosh    Not Collective, but Vec returned is parallel if TS is parallel
23874cdd57e5SDebojyoti Ghosh 
23884cdd57e5SDebojyoti Ghosh    Parameters :
23894cdd57e5SDebojyoti Ghosh .  ts - the TS context obtained from TSCreate() (input parameter).
23904cdd57e5SDebojyoti Ghosh .  v - the vector containing the auxiliary solution
23914cdd57e5SDebojyoti Ghosh 
23924cdd57e5SDebojyoti Ghosh    Level: intermediate
23934cdd57e5SDebojyoti Ghosh 
23944cdd57e5SDebojyoti Ghosh .seealso: TSGetSolution()
23954cdd57e5SDebojyoti Ghosh 
23964cdd57e5SDebojyoti Ghosh .keywords: TS, timestep, get, solution
23974cdd57e5SDebojyoti Ghosh @*/
23984cdd57e5SDebojyoti Ghosh PetscErrorCode  TSGetAuxSolution(TS ts,Vec *v)
23994cdd57e5SDebojyoti Ghosh {
24004cdd57e5SDebojyoti Ghosh   PetscErrorCode ierr;
24014cdd57e5SDebojyoti Ghosh 
24024cdd57e5SDebojyoti Ghosh   PetscFunctionBegin;
24034cdd57e5SDebojyoti Ghosh   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2404f6356ec7SDebojyoti Ghosh   if (ts->ops->getauxsolution) {
24054cdd57e5SDebojyoti Ghosh     ierr = (*ts->ops->getauxsolution)(ts,v);CHKERRQ(ierr);
2406f6356ec7SDebojyoti Ghosh   } else {
2407f6356ec7SDebojyoti Ghosh     ierr = VecZeroEntries(*v); CHKERRQ(ierr);
2408f6356ec7SDebojyoti Ghosh   }
24094cdd57e5SDebojyoti Ghosh   PetscFunctionReturn(0);
24104cdd57e5SDebojyoti Ghosh }
24114cdd57e5SDebojyoti Ghosh 
24124cdd57e5SDebojyoti Ghosh /*@
24134cdd57e5SDebojyoti Ghosh    TSGetTimeError - Returns the estimated error vector, if the chosen
24144cdd57e5SDebojyoti Ghosh    TSType has an error estimation functionality.
24154cdd57e5SDebojyoti Ghosh 
24164cdd57e5SDebojyoti Ghosh    Not Collective, but Vec returned is parallel if TS is parallel
24174cdd57e5SDebojyoti Ghosh 
24189657682dSDebojyoti Ghosh    Note: MUST call after TSSetUp()
24199657682dSDebojyoti Ghosh 
24204cdd57e5SDebojyoti Ghosh    Parameters :
24214cdd57e5SDebojyoti Ghosh .  ts - the TS context obtained from TSCreate() (input parameter).
2422657c1e31SEmil Constantinescu .  n - current estimate (n=0) or previous one (n=-1)
24234cdd57e5SDebojyoti Ghosh .  v - the vector containing the error (same size as the solution).
24244cdd57e5SDebojyoti Ghosh 
24254cdd57e5SDebojyoti Ghosh    Level: intermediate
24264cdd57e5SDebojyoti Ghosh 
242757df6a1bSDebojyoti Ghosh .seealso: TSGetSolution(), TSSetTimeError()
24284cdd57e5SDebojyoti Ghosh 
24294cdd57e5SDebojyoti Ghosh .keywords: TS, timestep, get, error
24304cdd57e5SDebojyoti Ghosh @*/
24310a01e1b2SEmil Constantinescu PetscErrorCode  TSGetTimeError(TS ts,PetscInt n,Vec *v)
24324cdd57e5SDebojyoti Ghosh {
24334cdd57e5SDebojyoti Ghosh   PetscErrorCode ierr;
24344cdd57e5SDebojyoti Ghosh 
24354cdd57e5SDebojyoti Ghosh   PetscFunctionBegin;
24364cdd57e5SDebojyoti Ghosh   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2437f6356ec7SDebojyoti Ghosh   if (ts->ops->gettimeerror) {
24380a01e1b2SEmil Constantinescu     ierr = (*ts->ops->gettimeerror)(ts,n,v);CHKERRQ(ierr);
2439f6356ec7SDebojyoti Ghosh   } else {
2440f6356ec7SDebojyoti Ghosh     ierr = VecZeroEntries(*v);CHKERRQ(ierr);
2441f6356ec7SDebojyoti Ghosh   }
24424cdd57e5SDebojyoti Ghosh   PetscFunctionReturn(0);
24434cdd57e5SDebojyoti Ghosh }
24444cdd57e5SDebojyoti Ghosh 
244557df6a1bSDebojyoti Ghosh /*@
244657df6a1bSDebojyoti Ghosh    TSSetTimeError - Sets the estimated error vector, if the chosen
244757df6a1bSDebojyoti Ghosh    TSType has an error estimation functionality. This can be used
244857df6a1bSDebojyoti Ghosh    to restart such a time integrator with a given error vector.
244957df6a1bSDebojyoti Ghosh 
245057df6a1bSDebojyoti Ghosh    Not Collective, but Vec returned is parallel if TS is parallel
245157df6a1bSDebojyoti Ghosh 
245257df6a1bSDebojyoti Ghosh    Parameters :
245357df6a1bSDebojyoti Ghosh .  ts - the TS context obtained from TSCreate() (input parameter).
245457df6a1bSDebojyoti Ghosh .  v - the vector containing the error (same size as the solution).
245557df6a1bSDebojyoti Ghosh 
245657df6a1bSDebojyoti Ghosh    Level: intermediate
245757df6a1bSDebojyoti Ghosh 
245857df6a1bSDebojyoti Ghosh .seealso: TSSetSolution(), TSGetTimeError)
245957df6a1bSDebojyoti Ghosh 
246057df6a1bSDebojyoti Ghosh .keywords: TS, timestep, get, error
246157df6a1bSDebojyoti Ghosh @*/
246257df6a1bSDebojyoti Ghosh PetscErrorCode  TSSetTimeError(TS ts,Vec v)
246357df6a1bSDebojyoti Ghosh {
246457df6a1bSDebojyoti Ghosh   PetscErrorCode ierr;
246557df6a1bSDebojyoti Ghosh 
246657df6a1bSDebojyoti Ghosh   PetscFunctionBegin;
246757df6a1bSDebojyoti Ghosh   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
24689657682dSDebojyoti Ghosh   if (!ts->setupcalled) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Must call TSSetUp() first");
246957df6a1bSDebojyoti Ghosh   if (ts->ops->settimeerror) {
247057df6a1bSDebojyoti Ghosh     ierr = (*ts->ops->settimeerror)(ts,v);CHKERRQ(ierr);
247157df6a1bSDebojyoti Ghosh   }
247257df6a1bSDebojyoti Ghosh   PetscFunctionReturn(0);
247357df6a1bSDebojyoti Ghosh }
247457df6a1bSDebojyoti Ghosh 
2475c235aa8dSHong Zhang /*@
2476dfb21088SHong Zhang    TSGetCostGradients - Returns the gradients from the TSAdjointSolve()
2477c235aa8dSHong Zhang 
2478c235aa8dSHong Zhang    Not Collective, but Vec returned is parallel if TS is parallel
2479c235aa8dSHong Zhang 
2480c235aa8dSHong Zhang    Input Parameter:
2481c235aa8dSHong Zhang .  ts - the TS context obtained from TSCreate()
2482c235aa8dSHong Zhang 
2483c235aa8dSHong Zhang    Output Parameter:
2484abc2977eSBarry Smith +  lambda - vectors containing the gradients of the cost functions with respect to the ODE/DAE solution variables
2485abc2977eSBarry Smith -  mu - vectors containing the gradients of the cost functions with respect to the problem parameters
2486c235aa8dSHong Zhang 
2487c235aa8dSHong Zhang    Level: intermediate
2488c235aa8dSHong Zhang 
2489c235aa8dSHong Zhang .seealso: TSGetTimeStep()
2490c235aa8dSHong Zhang 
2491c235aa8dSHong Zhang .keywords: TS, timestep, get, sensitivity
2492c235aa8dSHong Zhang @*/
2493dfb21088SHong Zhang PetscErrorCode  TSGetCostGradients(TS ts,PetscInt *numcost,Vec **lambda,Vec **mu)
2494c235aa8dSHong Zhang {
2495c235aa8dSHong Zhang   PetscFunctionBegin;
2496c235aa8dSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2497abc2977eSBarry Smith   if (numcost) *numcost = ts->numcost;
2498abc2977eSBarry Smith   if (lambda)  *lambda  = ts->vecs_sensi;
2499abc2977eSBarry Smith   if (mu)      *mu      = ts->vecs_sensip;
2500c235aa8dSHong Zhang   PetscFunctionReturn(0);
2501c235aa8dSHong Zhang }
2502c235aa8dSHong Zhang 
2503bdad233fSMatthew Knepley /* ----- Routines to initialize and destroy a timestepper ---- */
2504d8e5e3e6SSatish Balay /*@
2505bdad233fSMatthew Knepley   TSSetProblemType - Sets the type of problem to be solved.
2506d763cef2SBarry Smith 
2507bdad233fSMatthew Knepley   Not collective
2508d763cef2SBarry Smith 
2509bdad233fSMatthew Knepley   Input Parameters:
2510bdad233fSMatthew Knepley + ts   - The TS
2511bdad233fSMatthew Knepley - type - One of TS_LINEAR, TS_NONLINEAR where these types refer to problems of the forms
2512d763cef2SBarry Smith .vb
25130910c330SBarry Smith          U_t - A U = 0      (linear)
25140910c330SBarry Smith          U_t - A(t) U = 0   (linear)
25150910c330SBarry Smith          F(t,U,U_t) = 0     (nonlinear)
2516d763cef2SBarry Smith .ve
2517d763cef2SBarry Smith 
2518d763cef2SBarry Smith    Level: beginner
2519d763cef2SBarry Smith 
2520bdad233fSMatthew Knepley .keywords: TS, problem type
2521bdad233fSMatthew Knepley .seealso: TSSetUp(), TSProblemType, TS
2522d763cef2SBarry Smith @*/
25237087cfbeSBarry Smith PetscErrorCode  TSSetProblemType(TS ts, TSProblemType type)
2524a7cc72afSBarry Smith {
25259e2a6581SJed Brown   PetscErrorCode ierr;
25269e2a6581SJed Brown 
2527d763cef2SBarry Smith   PetscFunctionBegin;
25280700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
2529bdad233fSMatthew Knepley   ts->problem_type = type;
25309e2a6581SJed Brown   if (type == TS_LINEAR) {
25319e2a6581SJed Brown     SNES snes;
25329e2a6581SJed Brown     ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
25339e2a6581SJed Brown     ierr = SNESSetType(snes,SNESKSPONLY);CHKERRQ(ierr);
25349e2a6581SJed Brown   }
2535d763cef2SBarry Smith   PetscFunctionReturn(0);
2536d763cef2SBarry Smith }
2537d763cef2SBarry Smith 
2538bdad233fSMatthew Knepley /*@C
2539bdad233fSMatthew Knepley   TSGetProblemType - Gets the type of problem to be solved.
2540bdad233fSMatthew Knepley 
2541bdad233fSMatthew Knepley   Not collective
2542bdad233fSMatthew Knepley 
2543bdad233fSMatthew Knepley   Input Parameter:
2544bdad233fSMatthew Knepley . ts   - The TS
2545bdad233fSMatthew Knepley 
2546bdad233fSMatthew Knepley   Output Parameter:
2547bdad233fSMatthew Knepley . type - One of TS_LINEAR, TS_NONLINEAR where these types refer to problems of the forms
2548bdad233fSMatthew Knepley .vb
2549089b2837SJed Brown          M U_t = A U
2550089b2837SJed Brown          M(t) U_t = A(t) U
2551b5abc632SBarry Smith          F(t,U,U_t)
2552bdad233fSMatthew Knepley .ve
2553bdad233fSMatthew Knepley 
2554bdad233fSMatthew Knepley    Level: beginner
2555bdad233fSMatthew Knepley 
2556bdad233fSMatthew Knepley .keywords: TS, problem type
2557bdad233fSMatthew Knepley .seealso: TSSetUp(), TSProblemType, TS
2558bdad233fSMatthew Knepley @*/
25597087cfbeSBarry Smith PetscErrorCode  TSGetProblemType(TS ts, TSProblemType *type)
2560a7cc72afSBarry Smith {
2561bdad233fSMatthew Knepley   PetscFunctionBegin;
25620700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
25634482741eSBarry Smith   PetscValidIntPointer(type,2);
2564bdad233fSMatthew Knepley   *type = ts->problem_type;
2565bdad233fSMatthew Knepley   PetscFunctionReturn(0);
2566bdad233fSMatthew Knepley }
2567d763cef2SBarry Smith 
2568d763cef2SBarry Smith /*@
2569d763cef2SBarry Smith    TSSetUp - Sets up the internal data structures for the later use
2570d763cef2SBarry Smith    of a timestepper.
2571d763cef2SBarry Smith 
2572d763cef2SBarry Smith    Collective on TS
2573d763cef2SBarry Smith 
2574d763cef2SBarry Smith    Input Parameter:
2575d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2576d763cef2SBarry Smith 
2577d763cef2SBarry Smith    Notes:
2578d763cef2SBarry Smith    For basic use of the TS solvers the user need not explicitly call
2579d763cef2SBarry Smith    TSSetUp(), since these actions will automatically occur during
2580d763cef2SBarry Smith    the call to TSStep().  However, if one wishes to control this
2581d763cef2SBarry Smith    phase separately, TSSetUp() should be called after TSCreate()
2582d763cef2SBarry Smith    and optional routines of the form TSSetXXX(), but before TSStep().
2583d763cef2SBarry Smith 
2584d763cef2SBarry Smith    Level: advanced
2585d763cef2SBarry Smith 
2586d763cef2SBarry Smith .keywords: TS, timestep, setup
2587d763cef2SBarry Smith 
2588d763cef2SBarry Smith .seealso: TSCreate(), TSStep(), TSDestroy()
2589d763cef2SBarry Smith @*/
25907087cfbeSBarry Smith PetscErrorCode  TSSetUp(TS ts)
2591d763cef2SBarry Smith {
2592dfbe8321SBarry Smith   PetscErrorCode ierr;
25936c6b9e74SPeter Brune   DM             dm;
25946c6b9e74SPeter Brune   PetscErrorCode (*func)(SNES,Vec,Vec,void*);
2595d1e9a80fSBarry Smith   PetscErrorCode (*jac)(SNES,Vec,Mat,Mat,void*);
2596cd11d68dSLisandro Dalcin   TSIFunction    ifun;
25976c6b9e74SPeter Brune   TSIJacobian    ijac;
2598efe9872eSLisandro Dalcin   TSI2Jacobian   i2jac;
25996c6b9e74SPeter Brune   TSRHSJacobian  rhsjac;
26002ffb9264SLisandro Dalcin   PetscBool      isnone;
2601d763cef2SBarry Smith 
2602d763cef2SBarry Smith   PetscFunctionBegin;
26030700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2604277b19d0SLisandro Dalcin   if (ts->setupcalled) PetscFunctionReturn(0);
2605277b19d0SLisandro Dalcin 
26067adad957SLisandro Dalcin   if (!((PetscObject)ts)->type_name) {
2607cd11d68dSLisandro Dalcin     ierr = TSGetIFunction(ts,NULL,&ifun,NULL);CHKERRQ(ierr);
2608cd11d68dSLisandro Dalcin     ierr = TSSetType(ts,ifun ? TSBEULER : TSEULER);CHKERRQ(ierr);
2609d763cef2SBarry Smith   }
2610277b19d0SLisandro Dalcin 
2611277b19d0SLisandro Dalcin   if (!ts->vec_sol) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Must call TSSetSolution() first");
2612277b19d0SLisandro Dalcin 
2613e1244c69SJed Brown   if (ts->rhsjacobian.reuse) {
2614e1244c69SJed Brown     Mat Amat,Pmat;
2615e1244c69SJed Brown     SNES snes;
2616e1244c69SJed Brown     ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
2617e1244c69SJed Brown     ierr = SNESGetJacobian(snes,&Amat,&Pmat,NULL,NULL);CHKERRQ(ierr);
2618e1244c69SJed Brown     /* Matching matrices implies that an IJacobian is NOT set, because if it had been set, the IJacobian's matrix would
2619e1244c69SJed Brown      * have displaced the RHS matrix */
2620e1244c69SJed Brown     if (Amat == ts->Arhs) {
2621abc0d4abSBarry Smith       /* we need to copy the values of the matrix because for the constant Jacobian case the user will never set the numerical values in this new location */
2622abc0d4abSBarry Smith       ierr = MatDuplicate(ts->Arhs,MAT_COPY_VALUES,&Amat);CHKERRQ(ierr);
2623e1244c69SJed Brown       ierr = SNESSetJacobian(snes,Amat,NULL,NULL,NULL);CHKERRQ(ierr);
2624e1244c69SJed Brown       ierr = MatDestroy(&Amat);CHKERRQ(ierr);
2625e1244c69SJed Brown     }
2626e1244c69SJed Brown     if (Pmat == ts->Brhs) {
2627abc0d4abSBarry Smith       ierr = MatDuplicate(ts->Brhs,MAT_COPY_VALUES,&Pmat);CHKERRQ(ierr);
2628e1244c69SJed Brown       ierr = SNESSetJacobian(snes,NULL,Pmat,NULL,NULL);CHKERRQ(ierr);
2629e1244c69SJed Brown       ierr = MatDestroy(&Pmat);CHKERRQ(ierr);
2630e1244c69SJed Brown     }
2631e1244c69SJed Brown   }
26322ffb9264SLisandro Dalcin 
26332ffb9264SLisandro Dalcin   ierr = TSGetAdapt(ts,&ts->adapt);CHKERRQ(ierr);
26342ffb9264SLisandro Dalcin   ierr = TSAdaptSetDefaultType(ts->adapt,ts->default_adapt_type);CHKERRQ(ierr);
26352ffb9264SLisandro Dalcin 
2636277b19d0SLisandro Dalcin   if (ts->ops->setup) {
2637000e7ae3SMatthew Knepley     ierr = (*ts->ops->setup)(ts);CHKERRQ(ierr);
2638277b19d0SLisandro Dalcin   }
2639277b19d0SLisandro Dalcin 
26402ffb9264SLisandro Dalcin   /* Attempt to check/preset a default value for the exact final time option */
26412ffb9264SLisandro Dalcin   ierr = PetscObjectTypeCompare((PetscObject)ts->adapt,TSADAPTNONE,&isnone);CHKERRQ(ierr);
26422ffb9264SLisandro Dalcin   if (!isnone && ts->exact_final_time == TS_EXACTFINALTIME_UNSPECIFIED)
26432ffb9264SLisandro Dalcin     ts->exact_final_time = TS_EXACTFINALTIME_MATCHSTEP;
26442ffb9264SLisandro Dalcin 
2645a6772fa2SLisandro Dalcin   /* In the case where we've set a DMTSFunction or what have you, we need the default SNESFunction
26466c6b9e74SPeter Brune      to be set right but can't do it elsewhere due to the overreliance on ctx=ts.
26476c6b9e74SPeter Brune    */
26486c6b9e74SPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
26490298fd71SBarry Smith   ierr = DMSNESGetFunction(dm,&func,NULL);CHKERRQ(ierr);
26506c6b9e74SPeter Brune   if (!func) {
26516c6b9e74SPeter Brune     ierr = DMSNESSetFunction(dm,SNESTSFormFunction,ts);CHKERRQ(ierr);
26526c6b9e74SPeter Brune   }
2653a6772fa2SLisandro 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.
26546c6b9e74SPeter Brune      Otherwise, the SNES will use coloring internally to form the Jacobian.
26556c6b9e74SPeter Brune    */
26560298fd71SBarry Smith   ierr = DMSNESGetJacobian(dm,&jac,NULL);CHKERRQ(ierr);
26570298fd71SBarry Smith   ierr = DMTSGetIJacobian(dm,&ijac,NULL);CHKERRQ(ierr);
2658efe9872eSLisandro Dalcin   ierr = DMTSGetI2Jacobian(dm,&i2jac,NULL);CHKERRQ(ierr);
26590298fd71SBarry Smith   ierr = DMTSGetRHSJacobian(dm,&rhsjac,NULL);CHKERRQ(ierr);
2660efe9872eSLisandro Dalcin   if (!jac && (ijac || i2jac || rhsjac)) {
26616c6b9e74SPeter Brune     ierr = DMSNESSetJacobian(dm,SNESTSFormJacobian,ts);CHKERRQ(ierr);
26626c6b9e74SPeter Brune   }
2663c0517034SDebojyoti Ghosh 
2664c0517034SDebojyoti Ghosh   /* if time integration scheme has a starting method, call it */
2665c0517034SDebojyoti Ghosh   if (ts->ops->startingmethod) {
2666c0517034SDebojyoti Ghosh     ierr = (*ts->ops->startingmethod)(ts);CHKERRQ(ierr);
2667c0517034SDebojyoti Ghosh   }
2668c0517034SDebojyoti Ghosh 
2669277b19d0SLisandro Dalcin   ts->setupcalled = PETSC_TRUE;
2670277b19d0SLisandro Dalcin   PetscFunctionReturn(0);
2671277b19d0SLisandro Dalcin }
2672277b19d0SLisandro Dalcin 
2673f6a906c0SBarry Smith /*@
2674f6a906c0SBarry Smith    TSAdjointSetUp - Sets up the internal data structures for the later use
2675f6a906c0SBarry Smith    of an adjoint solver
2676f6a906c0SBarry Smith 
2677f6a906c0SBarry Smith    Collective on TS
2678f6a906c0SBarry Smith 
2679f6a906c0SBarry Smith    Input Parameter:
2680f6a906c0SBarry Smith .  ts - the TS context obtained from TSCreate()
2681f6a906c0SBarry Smith 
2682f6a906c0SBarry Smith    Level: advanced
2683f6a906c0SBarry Smith 
2684f6a906c0SBarry Smith .keywords: TS, timestep, setup
2685f6a906c0SBarry Smith 
2686947abb85SHong Zhang .seealso: TSCreate(), TSAdjointStep(), TSSetCostGradients()
2687f6a906c0SBarry Smith @*/
2688f6a906c0SBarry Smith PetscErrorCode  TSAdjointSetUp(TS ts)
2689f6a906c0SBarry Smith {
2690f6a906c0SBarry Smith   PetscErrorCode ierr;
2691f6a906c0SBarry Smith 
2692f6a906c0SBarry Smith   PetscFunctionBegin;
2693f6a906c0SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2694f6a906c0SBarry Smith   if (ts->adjointsetupcalled) PetscFunctionReturn(0);
269523706b9aSHong Zhang   if (!ts->vecs_sensi) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONGSTATE,"Must call TSSetCostGradients() first");
2696c5767687SHong Zhang   if (ts->vecs_sensip && !ts->Jacp) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONGSTATE,"Must call TSAdjointSetRHSJacobian() first");
2697d8151eeaSBarry Smith 
2698947abb85SHong Zhang   if (ts->vec_costintegral) { /* if there is integral in the cost function */
2699d8151eeaSBarry Smith     ierr = VecDuplicateVecs(ts->vecs_sensi[0],ts->numcost,&ts->vecs_drdy);CHKERRQ(ierr);
2700d8151eeaSBarry Smith     if (ts->vecs_sensip){
2701d8151eeaSBarry Smith       ierr = VecDuplicateVecs(ts->vecs_sensip[0],ts->numcost,&ts->vecs_drdp);CHKERRQ(ierr);
2702d8151eeaSBarry Smith     }
2703947abb85SHong Zhang   }
2704d8151eeaSBarry Smith 
270542f2b339SBarry Smith   if (ts->ops->adjointsetup) {
270642f2b339SBarry Smith     ierr = (*ts->ops->adjointsetup)(ts);CHKERRQ(ierr);
2707f6a906c0SBarry Smith   }
2708f6a906c0SBarry Smith   ts->adjointsetupcalled = PETSC_TRUE;
2709f6a906c0SBarry Smith   PetscFunctionReturn(0);
2710f6a906c0SBarry Smith }
2711f6a906c0SBarry Smith 
2712277b19d0SLisandro Dalcin /*@
2713277b19d0SLisandro Dalcin    TSReset - Resets a TS context and removes any allocated Vecs and Mats.
2714277b19d0SLisandro Dalcin 
2715277b19d0SLisandro Dalcin    Collective on TS
2716277b19d0SLisandro Dalcin 
2717277b19d0SLisandro Dalcin    Input Parameter:
2718277b19d0SLisandro Dalcin .  ts - the TS context obtained from TSCreate()
2719277b19d0SLisandro Dalcin 
2720277b19d0SLisandro Dalcin    Level: beginner
2721277b19d0SLisandro Dalcin 
2722277b19d0SLisandro Dalcin .keywords: TS, timestep, reset
2723277b19d0SLisandro Dalcin 
2724277b19d0SLisandro Dalcin .seealso: TSCreate(), TSSetup(), TSDestroy()
2725277b19d0SLisandro Dalcin @*/
2726277b19d0SLisandro Dalcin PetscErrorCode  TSReset(TS ts)
2727277b19d0SLisandro Dalcin {
2728277b19d0SLisandro Dalcin   PetscErrorCode ierr;
2729277b19d0SLisandro Dalcin 
2730277b19d0SLisandro Dalcin   PetscFunctionBegin;
2731277b19d0SLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2732b18ea86cSHong Zhang 
2733277b19d0SLisandro Dalcin   if (ts->ops->reset) {
2734277b19d0SLisandro Dalcin     ierr = (*ts->ops->reset)(ts);CHKERRQ(ierr);
2735277b19d0SLisandro Dalcin   }
2736277b19d0SLisandro Dalcin   if (ts->snes) {ierr = SNESReset(ts->snes);CHKERRQ(ierr);}
2737e27a82bcSLisandro Dalcin   if (ts->adapt) {ierr = TSAdaptReset(ts->adapt);CHKERRQ(ierr);}
2738bbd56ea5SKarl Rupp 
27394e684422SJed Brown   ierr = MatDestroy(&ts->Arhs);CHKERRQ(ierr);
27404e684422SJed Brown   ierr = MatDestroy(&ts->Brhs);CHKERRQ(ierr);
2741214bc6a2SJed Brown   ierr = VecDestroy(&ts->Frhs);CHKERRQ(ierr);
27426bf464f9SBarry Smith   ierr = VecDestroy(&ts->vec_sol);CHKERRQ(ierr);
2743efe9872eSLisandro Dalcin   ierr = VecDestroy(&ts->vec_dot);CHKERRQ(ierr);
2744e3d84a46SJed Brown   ierr = VecDestroy(&ts->vatol);CHKERRQ(ierr);
2745e3d84a46SJed Brown   ierr = VecDestroy(&ts->vrtol);CHKERRQ(ierr);
274638637c2eSJed Brown   ierr = VecDestroyVecs(ts->nwork,&ts->work);CHKERRQ(ierr);
2747bbd56ea5SKarl Rupp 
2748d8151eeaSBarry Smith   ierr = VecDestroyVecs(ts->numcost,&ts->vecs_drdy);CHKERRQ(ierr);
2749d8151eeaSBarry Smith   ierr = VecDestroyVecs(ts->numcost,&ts->vecs_drdp);CHKERRQ(ierr);
2750715f1b00SHong Zhang 
2751ad8e2604SHong Zhang   ierr = MatDestroy(&ts->Jacp);CHKERRQ(ierr);
27522c39e106SBarry Smith   ierr = VecDestroy(&ts->vec_costintegral);CHKERRQ(ierr);
275336eaed60SHong Zhang   ierr = VecDestroy(&ts->vec_costintegrand);CHKERRQ(ierr);
2754715f1b00SHong Zhang 
2755022c081aSHong Zhang   ierr = PetscFree(ts->vecs_fwdsensipacked);CHKERRQ(ierr);
2756022c081aSHong Zhang 
2757277b19d0SLisandro Dalcin   ts->setupcalled = PETSC_FALSE;
2758d763cef2SBarry Smith   PetscFunctionReturn(0);
2759d763cef2SBarry Smith }
2760d763cef2SBarry Smith 
2761d8e5e3e6SSatish Balay /*@
2762d763cef2SBarry Smith    TSDestroy - Destroys the timestepper context that was created
2763d763cef2SBarry Smith    with TSCreate().
2764d763cef2SBarry Smith 
2765d763cef2SBarry Smith    Collective on TS
2766d763cef2SBarry Smith 
2767d763cef2SBarry Smith    Input Parameter:
2768d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2769d763cef2SBarry Smith 
2770d763cef2SBarry Smith    Level: beginner
2771d763cef2SBarry Smith 
2772d763cef2SBarry Smith .keywords: TS, timestepper, destroy
2773d763cef2SBarry Smith 
2774d763cef2SBarry Smith .seealso: TSCreate(), TSSetUp(), TSSolve()
2775d763cef2SBarry Smith @*/
27766bf464f9SBarry Smith PetscErrorCode  TSDestroy(TS *ts)
2777d763cef2SBarry Smith {
27786849ba73SBarry Smith   PetscErrorCode ierr;
2779d763cef2SBarry Smith 
2780d763cef2SBarry Smith   PetscFunctionBegin;
27816bf464f9SBarry Smith   if (!*ts) PetscFunctionReturn(0);
27826bf464f9SBarry Smith   PetscValidHeaderSpecific((*ts),TS_CLASSID,1);
27836bf464f9SBarry Smith   if (--((PetscObject)(*ts))->refct > 0) {*ts = 0; PetscFunctionReturn(0);}
2784d763cef2SBarry Smith 
27856bf464f9SBarry Smith   ierr = TSReset((*ts));CHKERRQ(ierr);
2786277b19d0SLisandro Dalcin 
2787e04113cfSBarry Smith   /* if memory was published with SAWs then destroy it */
2788e04113cfSBarry Smith   ierr = PetscObjectSAWsViewOff((PetscObject)*ts);CHKERRQ(ierr);
27896bf464f9SBarry Smith   if ((*ts)->ops->destroy) {ierr = (*(*ts)->ops->destroy)((*ts));CHKERRQ(ierr);}
27906d4c513bSLisandro Dalcin 
2791bc952696SBarry Smith   ierr = TSTrajectoryDestroy(&(*ts)->trajectory);CHKERRQ(ierr);
2792bc952696SBarry Smith 
279384df9cb4SJed Brown   ierr = TSAdaptDestroy(&(*ts)->adapt);CHKERRQ(ierr);
27946427ac75SLisandro Dalcin   ierr = TSEventDestroy(&(*ts)->event);CHKERRQ(ierr);
27956427ac75SLisandro Dalcin 
27966bf464f9SBarry Smith   ierr = SNESDestroy(&(*ts)->snes);CHKERRQ(ierr);
27976bf464f9SBarry Smith   ierr = DMDestroy(&(*ts)->dm);CHKERRQ(ierr);
27986bf464f9SBarry Smith   ierr = TSMonitorCancel((*ts));CHKERRQ(ierr);
27990dd9f2efSHong Zhang   ierr = TSAdjointMonitorCancel((*ts));CHKERRQ(ierr);
28006d4c513bSLisandro Dalcin 
2801a79aaaedSSatish Balay   ierr = PetscHeaderDestroy(ts);CHKERRQ(ierr);
2802d763cef2SBarry Smith   PetscFunctionReturn(0);
2803d763cef2SBarry Smith }
2804d763cef2SBarry Smith 
2805d8e5e3e6SSatish Balay /*@
2806d763cef2SBarry Smith    TSGetSNES - Returns the SNES (nonlinear solver) associated with
2807d763cef2SBarry Smith    a TS (timestepper) context. Valid only for nonlinear problems.
2808d763cef2SBarry Smith 
2809d763cef2SBarry Smith    Not Collective, but SNES is parallel if TS is parallel
2810d763cef2SBarry Smith 
2811d763cef2SBarry Smith    Input Parameter:
2812d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2813d763cef2SBarry Smith 
2814d763cef2SBarry Smith    Output Parameter:
2815d763cef2SBarry Smith .  snes - the nonlinear solver context
2816d763cef2SBarry Smith 
2817d763cef2SBarry Smith    Notes:
2818d763cef2SBarry Smith    The user can then directly manipulate the SNES context to set various
2819d763cef2SBarry Smith    options, etc.  Likewise, the user can then extract and manipulate the
282094b7f48cSBarry Smith    KSP, KSP, and PC contexts as well.
2821d763cef2SBarry Smith 
2822d763cef2SBarry Smith    TSGetSNES() does not work for integrators that do not use SNES; in
28230298fd71SBarry Smith    this case TSGetSNES() returns NULL in snes.
2824d763cef2SBarry Smith 
2825d763cef2SBarry Smith    Level: beginner
2826d763cef2SBarry Smith 
2827d763cef2SBarry Smith .keywords: timestep, get, SNES
2828d763cef2SBarry Smith @*/
28297087cfbeSBarry Smith PetscErrorCode  TSGetSNES(TS ts,SNES *snes)
2830d763cef2SBarry Smith {
2831d372ba47SLisandro Dalcin   PetscErrorCode ierr;
2832d372ba47SLisandro Dalcin 
2833d763cef2SBarry Smith   PetscFunctionBegin;
28340700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
28354482741eSBarry Smith   PetscValidPointer(snes,2);
2836d372ba47SLisandro Dalcin   if (!ts->snes) {
2837ce94432eSBarry Smith     ierr = SNESCreate(PetscObjectComm((PetscObject)ts),&ts->snes);CHKERRQ(ierr);
28380298fd71SBarry Smith     ierr = SNESSetFunction(ts->snes,NULL,SNESTSFormFunction,ts);CHKERRQ(ierr);
28393bb1ff40SBarry Smith     ierr = PetscLogObjectParent((PetscObject)ts,(PetscObject)ts->snes);CHKERRQ(ierr);
2840d372ba47SLisandro Dalcin     ierr = PetscObjectIncrementTabLevel((PetscObject)ts->snes,(PetscObject)ts,1);CHKERRQ(ierr);
2841496e6a7aSJed Brown     if (ts->dm) {ierr = SNESSetDM(ts->snes,ts->dm);CHKERRQ(ierr);}
28429e2a6581SJed Brown     if (ts->problem_type == TS_LINEAR) {
28439e2a6581SJed Brown       ierr = SNESSetType(ts->snes,SNESKSPONLY);CHKERRQ(ierr);
28449e2a6581SJed Brown     }
2845d372ba47SLisandro Dalcin   }
2846d763cef2SBarry Smith   *snes = ts->snes;
2847d763cef2SBarry Smith   PetscFunctionReturn(0);
2848d763cef2SBarry Smith }
2849d763cef2SBarry Smith 
2850deb2cd25SJed Brown /*@
2851deb2cd25SJed Brown    TSSetSNES - Set the SNES (nonlinear solver) to be used by the timestepping context
2852deb2cd25SJed Brown 
2853deb2cd25SJed Brown    Collective
2854deb2cd25SJed Brown 
2855deb2cd25SJed Brown    Input Parameter:
2856deb2cd25SJed Brown +  ts - the TS context obtained from TSCreate()
2857deb2cd25SJed Brown -  snes - the nonlinear solver context
2858deb2cd25SJed Brown 
2859deb2cd25SJed Brown    Notes:
2860deb2cd25SJed Brown    Most users should have the TS created by calling TSGetSNES()
2861deb2cd25SJed Brown 
2862deb2cd25SJed Brown    Level: developer
2863deb2cd25SJed Brown 
2864deb2cd25SJed Brown .keywords: timestep, set, SNES
2865deb2cd25SJed Brown @*/
2866deb2cd25SJed Brown PetscErrorCode TSSetSNES(TS ts,SNES snes)
2867deb2cd25SJed Brown {
2868deb2cd25SJed Brown   PetscErrorCode ierr;
2869d1e9a80fSBarry Smith   PetscErrorCode (*func)(SNES,Vec,Mat,Mat,void*);
2870deb2cd25SJed Brown 
2871deb2cd25SJed Brown   PetscFunctionBegin;
2872deb2cd25SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2873deb2cd25SJed Brown   PetscValidHeaderSpecific(snes,SNES_CLASSID,2);
2874deb2cd25SJed Brown   ierr = PetscObjectReference((PetscObject)snes);CHKERRQ(ierr);
2875deb2cd25SJed Brown   ierr = SNESDestroy(&ts->snes);CHKERRQ(ierr);
2876bbd56ea5SKarl Rupp 
2877deb2cd25SJed Brown   ts->snes = snes;
2878bbd56ea5SKarl Rupp 
28790298fd71SBarry Smith   ierr = SNESSetFunction(ts->snes,NULL,SNESTSFormFunction,ts);CHKERRQ(ierr);
28800298fd71SBarry Smith   ierr = SNESGetJacobian(ts->snes,NULL,NULL,&func,NULL);CHKERRQ(ierr);
2881740132f1SEmil Constantinescu   if (func == SNESTSFormJacobian) {
28820298fd71SBarry Smith     ierr = SNESSetJacobian(ts->snes,NULL,NULL,SNESTSFormJacobian,ts);CHKERRQ(ierr);
2883740132f1SEmil Constantinescu   }
2884deb2cd25SJed Brown   PetscFunctionReturn(0);
2885deb2cd25SJed Brown }
2886deb2cd25SJed Brown 
2887d8e5e3e6SSatish Balay /*@
288894b7f48cSBarry Smith    TSGetKSP - Returns the KSP (linear solver) associated with
2889d763cef2SBarry Smith    a TS (timestepper) context.
2890d763cef2SBarry Smith 
289194b7f48cSBarry Smith    Not Collective, but KSP is parallel if TS is parallel
2892d763cef2SBarry Smith 
2893d763cef2SBarry Smith    Input Parameter:
2894d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
2895d763cef2SBarry Smith 
2896d763cef2SBarry Smith    Output Parameter:
289794b7f48cSBarry Smith .  ksp - the nonlinear solver context
2898d763cef2SBarry Smith 
2899d763cef2SBarry Smith    Notes:
290094b7f48cSBarry Smith    The user can then directly manipulate the KSP context to set various
2901d763cef2SBarry Smith    options, etc.  Likewise, the user can then extract and manipulate the
2902d763cef2SBarry Smith    KSP and PC contexts as well.
2903d763cef2SBarry Smith 
290494b7f48cSBarry Smith    TSGetKSP() does not work for integrators that do not use KSP;
29050298fd71SBarry Smith    in this case TSGetKSP() returns NULL in ksp.
2906d763cef2SBarry Smith 
2907d763cef2SBarry Smith    Level: beginner
2908d763cef2SBarry Smith 
290994b7f48cSBarry Smith .keywords: timestep, get, KSP
2910d763cef2SBarry Smith @*/
29117087cfbeSBarry Smith PetscErrorCode  TSGetKSP(TS ts,KSP *ksp)
2912d763cef2SBarry Smith {
2913d372ba47SLisandro Dalcin   PetscErrorCode ierr;
2914089b2837SJed Brown   SNES           snes;
2915d372ba47SLisandro Dalcin 
2916d763cef2SBarry Smith   PetscFunctionBegin;
29170700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
29184482741eSBarry Smith   PetscValidPointer(ksp,2);
291917186662SBarry Smith   if (!((PetscObject)ts)->type_name) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NULL,"KSP is not created yet. Call TSSetType() first");
2920e32f2f54SBarry Smith   if (ts->problem_type != TS_LINEAR) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Linear only; use TSGetSNES()");
2921089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
2922089b2837SJed Brown   ierr = SNESGetKSP(snes,ksp);CHKERRQ(ierr);
2923d763cef2SBarry Smith   PetscFunctionReturn(0);
2924d763cef2SBarry Smith }
2925d763cef2SBarry Smith 
2926d763cef2SBarry Smith /* ----------- Routines to set solver parameters ---------- */
2927d763cef2SBarry Smith 
2928adb62b0dSMatthew Knepley /*@
2929618ce8baSLisandro Dalcin    TSSetMaxSteps - Sets the maximum number of steps to use.
2930618ce8baSLisandro Dalcin 
2931618ce8baSLisandro Dalcin    Logically Collective on TS
2932618ce8baSLisandro Dalcin 
2933618ce8baSLisandro Dalcin    Input Parameters:
2934618ce8baSLisandro Dalcin +  ts - the TS context obtained from TSCreate()
2935618ce8baSLisandro Dalcin -  maxsteps - maximum number of steps to use
2936618ce8baSLisandro Dalcin 
2937618ce8baSLisandro Dalcin    Options Database Keys:
2938618ce8baSLisandro Dalcin .  -ts_max_steps <maxsteps> - Sets maxsteps
2939618ce8baSLisandro Dalcin 
2940618ce8baSLisandro Dalcin    Notes:
2941618ce8baSLisandro Dalcin    The default maximum number of steps is 5000
2942618ce8baSLisandro Dalcin 
2943618ce8baSLisandro Dalcin    Level: intermediate
2944618ce8baSLisandro Dalcin 
2945618ce8baSLisandro Dalcin .keywords: TS, timestep, set, maximum, steps
2946618ce8baSLisandro Dalcin 
2947618ce8baSLisandro Dalcin .seealso: TSGetMaxSteps(), TSSetMaxTime(), TSSetExactFinalTime()
2948618ce8baSLisandro Dalcin @*/
2949618ce8baSLisandro Dalcin PetscErrorCode TSSetMaxSteps(TS ts,PetscInt maxsteps)
2950618ce8baSLisandro Dalcin {
2951618ce8baSLisandro Dalcin   PetscFunctionBegin;
2952618ce8baSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2953618ce8baSLisandro Dalcin   PetscValidLogicalCollectiveInt(ts,maxsteps,2);
2954618ce8baSLisandro Dalcin   if (maxsteps < 0 ) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_OUTOFRANGE,"Maximum number of steps must be non-negative");
2955618ce8baSLisandro Dalcin   ts->max_steps = maxsteps;
2956618ce8baSLisandro Dalcin   PetscFunctionReturn(0);
2957618ce8baSLisandro Dalcin }
2958618ce8baSLisandro Dalcin 
2959618ce8baSLisandro Dalcin /*@
2960618ce8baSLisandro Dalcin    TSGetMaxSteps - Gets the maximum number of steps to use.
2961618ce8baSLisandro Dalcin 
2962618ce8baSLisandro Dalcin    Not Collective
2963618ce8baSLisandro Dalcin 
2964618ce8baSLisandro Dalcin    Input Parameters:
2965618ce8baSLisandro Dalcin .  ts - the TS context obtained from TSCreate()
2966618ce8baSLisandro Dalcin 
2967618ce8baSLisandro Dalcin    Output Parameter:
2968618ce8baSLisandro Dalcin .  maxsteps - maximum number of steps to use
2969618ce8baSLisandro Dalcin 
2970618ce8baSLisandro Dalcin    Level: advanced
2971618ce8baSLisandro Dalcin 
2972618ce8baSLisandro Dalcin .keywords: TS, timestep, get, maximum, steps
2973618ce8baSLisandro Dalcin 
2974618ce8baSLisandro Dalcin .seealso: TSSetMaxSteps(), TSGetMaxTime(), TSSetMaxTime()
2975618ce8baSLisandro Dalcin @*/
2976618ce8baSLisandro Dalcin PetscErrorCode TSGetMaxSteps(TS ts,PetscInt *maxsteps)
2977618ce8baSLisandro Dalcin {
2978618ce8baSLisandro Dalcin   PetscFunctionBegin;
2979618ce8baSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
2980618ce8baSLisandro Dalcin   PetscValidIntPointer(maxsteps,2);
2981618ce8baSLisandro Dalcin   *maxsteps = ts->max_steps;
2982618ce8baSLisandro Dalcin   PetscFunctionReturn(0);
2983618ce8baSLisandro Dalcin }
2984618ce8baSLisandro Dalcin 
2985618ce8baSLisandro Dalcin /*@
2986618ce8baSLisandro Dalcin    TSSetMaxTime - Sets the maximum (or final) time for timestepping.
2987618ce8baSLisandro Dalcin 
2988618ce8baSLisandro Dalcin    Logically Collective on TS
2989618ce8baSLisandro Dalcin 
2990618ce8baSLisandro Dalcin    Input Parameters:
2991618ce8baSLisandro Dalcin +  ts - the TS context obtained from TSCreate()
2992618ce8baSLisandro Dalcin -  maxtime - final time to step to
2993618ce8baSLisandro Dalcin 
2994618ce8baSLisandro Dalcin    Options Database Keys:
2995618ce8baSLisandro Dalcin .  -ts_final_time <maxtime> - Sets maxtime
2996618ce8baSLisandro Dalcin 
2997618ce8baSLisandro Dalcin    Notes:
2998618ce8baSLisandro Dalcin    The default maximum time is 5.0
2999618ce8baSLisandro Dalcin 
3000618ce8baSLisandro Dalcin    Level: intermediate
3001618ce8baSLisandro Dalcin 
3002618ce8baSLisandro Dalcin .keywords: TS, timestep, set, maximum, time
3003618ce8baSLisandro Dalcin 
3004618ce8baSLisandro Dalcin .seealso: TSGetMaxTime(), TSSetMaxSteps(), TSSetExactFinalTime()
3005618ce8baSLisandro Dalcin @*/
3006618ce8baSLisandro Dalcin PetscErrorCode TSSetMaxTime(TS ts,PetscReal maxtime)
3007618ce8baSLisandro Dalcin {
3008618ce8baSLisandro Dalcin   PetscFunctionBegin;
3009618ce8baSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3010618ce8baSLisandro Dalcin   PetscValidLogicalCollectiveReal(ts,maxtime,2);
3011618ce8baSLisandro Dalcin   ts->max_time = maxtime;
3012618ce8baSLisandro Dalcin   PetscFunctionReturn(0);
3013618ce8baSLisandro Dalcin }
3014618ce8baSLisandro Dalcin 
3015618ce8baSLisandro Dalcin /*@
3016618ce8baSLisandro Dalcin    TSGetMaxTime - Gets the maximum (or final) time for timestepping.
3017618ce8baSLisandro Dalcin 
3018618ce8baSLisandro Dalcin    Not Collective
3019618ce8baSLisandro Dalcin 
3020618ce8baSLisandro Dalcin    Input Parameters:
3021618ce8baSLisandro Dalcin .  ts - the TS context obtained from TSCreate()
3022618ce8baSLisandro Dalcin 
3023618ce8baSLisandro Dalcin    Output Parameter:
3024618ce8baSLisandro Dalcin .  maxtime - final time to step to
3025618ce8baSLisandro Dalcin 
3026618ce8baSLisandro Dalcin    Level: advanced
3027618ce8baSLisandro Dalcin 
3028618ce8baSLisandro Dalcin .keywords: TS, timestep, get, maximum, time
3029618ce8baSLisandro Dalcin 
3030618ce8baSLisandro Dalcin .seealso: TSSetMaxTime(), TSGetMaxSteps(), TSSetMaxSteps()
3031618ce8baSLisandro Dalcin @*/
3032618ce8baSLisandro Dalcin PetscErrorCode TSGetMaxTime(TS ts,PetscReal *maxtime)
3033618ce8baSLisandro Dalcin {
3034618ce8baSLisandro Dalcin   PetscFunctionBegin;
3035618ce8baSLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3036618ce8baSLisandro Dalcin   PetscValidRealPointer(maxtime,2);
3037618ce8baSLisandro Dalcin   *maxtime = ts->max_time;
3038618ce8baSLisandro Dalcin   PetscFunctionReturn(0);
3039618ce8baSLisandro Dalcin }
3040618ce8baSLisandro Dalcin 
3041618ce8baSLisandro Dalcin /*@
3042adb62b0dSMatthew Knepley    TSGetDuration - Gets the maximum number of timesteps to use and
3043adb62b0dSMatthew Knepley    maximum time for iteration.
3044adb62b0dSMatthew Knepley 
30453f9fe445SBarry Smith    Not Collective
3046adb62b0dSMatthew Knepley 
3047adb62b0dSMatthew Knepley    Input Parameters:
3048adb62b0dSMatthew Knepley +  ts       - the TS context obtained from TSCreate()
30490298fd71SBarry Smith .  maxsteps - maximum number of iterations to use, or NULL
30500298fd71SBarry Smith -  maxtime  - final time to iterate to, or NULL
3051adb62b0dSMatthew Knepley 
3052adb62b0dSMatthew Knepley    Level: intermediate
3053adb62b0dSMatthew Knepley 
3054adb62b0dSMatthew Knepley .keywords: TS, timestep, get, maximum, iterations, time
3055adb62b0dSMatthew Knepley @*/
30567087cfbeSBarry Smith PetscErrorCode  TSGetDuration(TS ts, PetscInt *maxsteps, PetscReal *maxtime)
3057adb62b0dSMatthew Knepley {
3058adb62b0dSMatthew Knepley   PetscFunctionBegin;
30590700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
3060abc0a331SBarry Smith   if (maxsteps) {
30614482741eSBarry Smith     PetscValidIntPointer(maxsteps,2);
3062adb62b0dSMatthew Knepley     *maxsteps = ts->max_steps;
3063adb62b0dSMatthew Knepley   }
3064abc0a331SBarry Smith   if (maxtime) {
30654482741eSBarry Smith     PetscValidScalarPointer(maxtime,3);
3066adb62b0dSMatthew Knepley     *maxtime = ts->max_time;
3067adb62b0dSMatthew Knepley   }
3068adb62b0dSMatthew Knepley   PetscFunctionReturn(0);
3069adb62b0dSMatthew Knepley }
3070adb62b0dSMatthew Knepley 
3071d763cef2SBarry Smith /*@
3072d763cef2SBarry Smith    TSSetDuration - Sets the maximum number of timesteps to use and
3073d763cef2SBarry Smith    maximum time for iteration.
3074d763cef2SBarry Smith 
30753f9fe445SBarry Smith    Logically Collective on TS
3076d763cef2SBarry Smith 
3077d763cef2SBarry Smith    Input Parameters:
3078d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
3079d763cef2SBarry Smith .  maxsteps - maximum number of iterations to use
3080d763cef2SBarry Smith -  maxtime - final time to iterate to
3081d763cef2SBarry Smith 
3082d763cef2SBarry Smith    Options Database Keys:
3083d763cef2SBarry Smith .  -ts_max_steps <maxsteps> - Sets maxsteps
30843bca7d26SBarry Smith .  -ts_final_time <maxtime> - Sets maxtime
3085d763cef2SBarry Smith 
3086d763cef2SBarry Smith    Notes:
3087d763cef2SBarry Smith    The default maximum number of iterations is 5000. Default time is 5.0
3088d763cef2SBarry Smith 
3089d763cef2SBarry Smith    Level: intermediate
3090d763cef2SBarry Smith 
3091d763cef2SBarry Smith .keywords: TS, timestep, set, maximum, iterations
3092a43b19c4SJed Brown 
3093a43b19c4SJed Brown .seealso: TSSetExactFinalTime()
3094d763cef2SBarry Smith @*/
30957087cfbeSBarry Smith PetscErrorCode  TSSetDuration(TS ts,PetscInt maxsteps,PetscReal maxtime)
3096d763cef2SBarry Smith {
3097d763cef2SBarry Smith   PetscFunctionBegin;
30980700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3099c5eb9154SBarry Smith   PetscValidLogicalCollectiveInt(ts,maxsteps,2);
3100c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(ts,maxtime,2);
310139b7ec4bSSean Farley   if (maxsteps >= 0) ts->max_steps = maxsteps;
310239b7ec4bSSean Farley   if (maxtime != PETSC_DEFAULT) ts->max_time = maxtime;
3103d763cef2SBarry Smith   PetscFunctionReturn(0);
3104d763cef2SBarry Smith }
3105d763cef2SBarry Smith 
3106d763cef2SBarry Smith /*@
3107d763cef2SBarry Smith    TSSetSolution - Sets the initial solution vector
3108d763cef2SBarry Smith    for use by the TS routines.
3109d763cef2SBarry Smith 
31103f9fe445SBarry Smith    Logically Collective on TS and Vec
3111d763cef2SBarry Smith 
3112d763cef2SBarry Smith    Input Parameters:
3113d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
31140910c330SBarry Smith -  u - the solution vector
3115d763cef2SBarry Smith 
3116d763cef2SBarry Smith    Level: beginner
3117d763cef2SBarry Smith 
3118715f1b00SHong Zhang .keywords: TS, timestep, set, solution, initial values
3119d763cef2SBarry Smith @*/
31200910c330SBarry Smith PetscErrorCode  TSSetSolution(TS ts,Vec u)
3121d763cef2SBarry Smith {
31228737fe31SLisandro Dalcin   PetscErrorCode ierr;
3123496e6a7aSJed Brown   DM             dm;
31248737fe31SLisandro Dalcin 
3125d763cef2SBarry Smith   PetscFunctionBegin;
31260700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
31270910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,2);
31280910c330SBarry Smith   ierr = PetscObjectReference((PetscObject)u);CHKERRQ(ierr);
31296bf464f9SBarry Smith   ierr = VecDestroy(&ts->vec_sol);CHKERRQ(ierr);
31300910c330SBarry Smith   ts->vec_sol = u;
3131bbd56ea5SKarl Rupp 
3132496e6a7aSJed Brown   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
31330910c330SBarry Smith   ierr = DMShellSetGlobalVector(dm,u);CHKERRQ(ierr);
3134d763cef2SBarry Smith   PetscFunctionReturn(0);
3135d763cef2SBarry Smith }
3136d763cef2SBarry Smith 
313773b18844SBarry Smith /*@
313873b18844SBarry Smith    TSAdjointSetSteps - Sets the number of steps the adjoint solver should take backward in time
313973b18844SBarry Smith 
314073b18844SBarry Smith    Logically Collective on TS
314173b18844SBarry Smith 
314273b18844SBarry Smith    Input Parameters:
314373b18844SBarry Smith +  ts - the TS context obtained from TSCreate()
314473b18844SBarry Smith .  steps - number of steps to use
314573b18844SBarry Smith 
314673b18844SBarry Smith    Level: intermediate
314773b18844SBarry Smith 
314873b18844SBarry Smith    Notes: Normally one does not call this and TSAdjointSolve() integrates back to the original timestep. One can call this
314973b18844SBarry Smith           so as to integrate back to less than the original timestep
315073b18844SBarry Smith 
315173b18844SBarry Smith .keywords: TS, timestep, set, maximum, iterations
315273b18844SBarry Smith 
315373b18844SBarry Smith .seealso: TSSetExactFinalTime()
315473b18844SBarry Smith @*/
315573b18844SBarry Smith PetscErrorCode  TSAdjointSetSteps(TS ts,PetscInt steps)
315673b18844SBarry Smith {
315773b18844SBarry Smith   PetscFunctionBegin;
315873b18844SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
315973b18844SBarry Smith   PetscValidLogicalCollectiveInt(ts,steps,2);
316073b18844SBarry Smith   if (steps < 0) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_OUTOFRANGE,"Cannot step back a negative number of steps");
31612808aa04SLisandro Dalcin   if (steps > ts->steps) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_OUTOFRANGE,"Cannot step back more than the total number of forward steps");
316273b18844SBarry Smith   ts->adjoint_max_steps = steps;
316373b18844SBarry Smith   PetscFunctionReturn(0);
316473b18844SBarry Smith }
316573b18844SBarry Smith 
3166c235aa8dSHong Zhang /*@
3167715f1b00SHong Zhang    TSSetCostGradients - Sets the initial value of the gradients of the cost function w.r.t. initial values and w.r.t. the problem parameters
31680cf82b59SBarry Smith       for use by the TSAdjoint routines.
3169c235aa8dSHong Zhang 
3170c235aa8dSHong Zhang    Logically Collective on TS and Vec
3171c235aa8dSHong Zhang 
3172c235aa8dSHong Zhang    Input Parameters:
3173c235aa8dSHong Zhang +  ts - the TS context obtained from TSCreate()
3174abc2977eSBarry 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
3175abc2977eSBarry Smith -  mu - gradients with respect to the parameters, the number of entries in these vectors is the same as the number of parameters
3176c235aa8dSHong Zhang 
3177c235aa8dSHong Zhang    Level: beginner
3178c235aa8dSHong Zhang 
3179abc2977eSBarry Smith    Notes: the entries in these vectors must be correctly initialized with the values lamda_i = df/dy|finaltime  mu_i = df/dp|finaltime
31800cf82b59SBarry Smith 
3181715f1b00SHong Zhang .keywords: TS, timestep, set, sensitivity, initial values
3182c235aa8dSHong Zhang @*/
3183dfb21088SHong Zhang PetscErrorCode  TSSetCostGradients(TS ts,PetscInt numcost,Vec *lambda,Vec *mu)
3184c235aa8dSHong Zhang {
3185c235aa8dSHong Zhang   PetscFunctionBegin;
3186c235aa8dSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3187abc2977eSBarry Smith   PetscValidPointer(lambda,2);
3188abc2977eSBarry Smith   ts->vecs_sensi  = lambda;
3189abc2977eSBarry Smith   ts->vecs_sensip = mu;
3190dfb21088SHong 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");
3191abc2977eSBarry Smith   ts->numcost  = numcost;
3192ad8e2604SHong Zhang   PetscFunctionReturn(0);
3193ad8e2604SHong Zhang }
3194ad8e2604SHong Zhang 
3195ad8e2604SHong Zhang /*@C
31960cf82b59SBarry 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.
3197ad8e2604SHong Zhang 
3198ad8e2604SHong Zhang   Logically Collective on TS
3199ad8e2604SHong Zhang 
3200ad8e2604SHong Zhang   Input Parameters:
3201ad8e2604SHong Zhang + ts   - The TS context obtained from TSCreate()
3202ad8e2604SHong Zhang - func - The function
3203ad8e2604SHong Zhang 
3204ad8e2604SHong Zhang   Calling sequence of func:
32050cf82b59SBarry Smith $ func (TS ts,PetscReal t,Vec y,Mat A,void *ctx);
320605755b9cSHong Zhang +   t - current timestep
32070cf82b59SBarry Smith .   y - input vector (current ODE solution)
320805755b9cSHong Zhang .   A - output matrix
320905755b9cSHong Zhang -   ctx - [optional] user-defined function context
3210ad8e2604SHong Zhang 
3211ad8e2604SHong Zhang   Level: intermediate
3212ad8e2604SHong Zhang 
32130cf82b59SBarry 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
32140cf82b59SBarry Smith 
3215ad8e2604SHong Zhang .keywords: TS, sensitivity
3216ad8e2604SHong Zhang .seealso:
3217ad8e2604SHong Zhang @*/
32185bf8c567SBarry Smith PetscErrorCode  TSAdjointSetRHSJacobian(TS ts,Mat Amat,PetscErrorCode (*func)(TS,PetscReal,Vec,Mat,void*),void *ctx)
3219ad8e2604SHong Zhang {
3220ad8e2604SHong Zhang   PetscErrorCode ierr;
3221ad8e2604SHong Zhang 
3222ad8e2604SHong Zhang   PetscFunctionBegin;
3223ad8e2604SHong Zhang   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
322423706b9aSHong Zhang   PetscValidHeaderSpecific(Amat,MAT_CLASSID,2);
3225ad8e2604SHong Zhang 
3226ad8e2604SHong Zhang   ts->rhsjacobianp    = func;
3227ad8e2604SHong Zhang   ts->rhsjacobianpctx = ctx;
3228ad8e2604SHong Zhang   if(Amat) {
3229ad8e2604SHong Zhang     ierr = PetscObjectReference((PetscObject)Amat);CHKERRQ(ierr);
3230ad8e2604SHong Zhang     ierr = MatDestroy(&ts->Jacp);CHKERRQ(ierr);
3231ad8e2604SHong Zhang     ts->Jacp = Amat;
3232ad8e2604SHong Zhang   }
3233ad8e2604SHong Zhang   PetscFunctionReturn(0);
3234ad8e2604SHong Zhang }
3235ad8e2604SHong Zhang 
32360cf82b59SBarry Smith /*@C
32375bf8c567SBarry Smith   TSAdjointComputeRHSJacobian - Runs the user-defined Jacobian function.
3238ad8e2604SHong Zhang 
3239ad8e2604SHong Zhang   Collective on TS
3240ad8e2604SHong Zhang 
3241ad8e2604SHong Zhang   Input Parameters:
3242ad8e2604SHong Zhang . ts   - The TS context obtained from TSCreate()
3243ad8e2604SHong Zhang 
3244ad8e2604SHong Zhang   Level: developer
3245ad8e2604SHong Zhang 
3246ad8e2604SHong Zhang .keywords: TS, sensitivity
32475bf8c567SBarry Smith .seealso: TSAdjointSetRHSJacobian()
3248ad8e2604SHong Zhang @*/
32495bf8c567SBarry Smith PetscErrorCode  TSAdjointComputeRHSJacobian(TS ts,PetscReal t,Vec X,Mat Amat)
3250ad8e2604SHong Zhang {
3251ad8e2604SHong Zhang   PetscErrorCode ierr;
3252ad8e2604SHong Zhang 
3253ad8e2604SHong Zhang   PetscFunctionBegin;
3254ad8e2604SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3255ad8e2604SHong Zhang   PetscValidHeaderSpecific(X,VEC_CLASSID,3);
3256ad8e2604SHong Zhang   PetscValidPointer(Amat,4);
3257ad8e2604SHong Zhang 
3258ad8e2604SHong Zhang   PetscStackPush("TS user JacobianP function for sensitivity analysis");
3259ad8e2604SHong Zhang   ierr = (*ts->rhsjacobianp)(ts,t,X,Amat,ts->rhsjacobianpctx); CHKERRQ(ierr);
3260ad8e2604SHong Zhang   PetscStackPop;
3261c235aa8dSHong Zhang   PetscFunctionReturn(0);
3262c235aa8dSHong Zhang }
3263c235aa8dSHong Zhang 
32646fd0887fSHong Zhang /*@C
3265dfb21088SHong Zhang     TSSetCostIntegrand - Sets the routine for evaluating the integral term in one or more cost functions
32666fd0887fSHong Zhang 
32676fd0887fSHong Zhang     Logically Collective on TS
32686fd0887fSHong Zhang 
32696fd0887fSHong Zhang     Input Parameters:
32706fd0887fSHong Zhang +   ts - the TS context obtained from TSCreate()
3271abc2977eSBarry Smith .   numcost - number of gradients to be computed, this is the number of cost functions
32723d1d12c6SHong Zhang .   costintegral - vector that stores the integral values
32730cf82b59SBarry Smith .   rf - routine for evaluating the integrand function
3274b612ec54SBarry Smith .   drdyf - function that computes the gradients of the r's with respect to y,NULL if not a function y
3275b612ec54SBarry Smith .   drdpf - function that computes the gradients of the r's with respect to p, NULL if not a function of p
3276feaa1ddbSSatish Balay .   fwd - flag indicating whether to evaluate cost integral in the forward run or the adjoint run
3277b612ec54SBarry Smith -   ctx - [optional] user-defined context for private data for the function evaluation routine (may be NULL)
32786fd0887fSHong Zhang 
32790cf82b59SBarry Smith     Calling sequence of rf:
32803d1d12c6SHong Zhang $   PetscErrorCode rf(TS ts,PetscReal t,Vec y,Vec f,void *ctx);
32816fd0887fSHong Zhang 
3282b612ec54SBarry Smith     Calling sequence of drdyf:
32830cf82b59SBarry Smith $   PetscErroCode drdyf(TS ts,PetscReal t,Vec y,Vec *drdy,void *ctx);
3284b612ec54SBarry Smith 
3285b612ec54SBarry Smith     Calling sequence of drdpf:
32860cf82b59SBarry Smith $   PetscErroCode drdpf(TS ts,PetscReal t,Vec y,Vec *drdp,void *ctx);
3287b612ec54SBarry Smith 
3288b612ec54SBarry Smith     Level: intermediate
32896fd0887fSHong Zhang 
3290715f1b00SHong Zhang     Notes: For optimization there is usually a single cost function (numcost = 1). For sensitivities there may be multiple cost functions
32910cf82b59SBarry Smith 
32926fd0887fSHong Zhang .keywords: TS, sensitivity analysis, timestep, set, quadrature, function
32936fd0887fSHong Zhang 
3294dfb21088SHong Zhang .seealso: TSAdjointSetRHSJacobian(),TSGetCostGradients(), TSSetCostGradients()
32956fd0887fSHong Zhang @*/
32963d1d12c6SHong Zhang PetscErrorCode  TSSetCostIntegrand(TS ts,PetscInt numcost,Vec costintegral,PetscErrorCode (*rf)(TS,PetscReal,Vec,Vec,void*),
3297d8151eeaSBarry Smith                                                           PetscErrorCode (*drdyf)(TS,PetscReal,Vec,Vec*,void*),
3298b1cb36f3SHong Zhang                                                           PetscErrorCode (*drdpf)(TS,PetscReal,Vec,Vec*,void*),
3299b1cb36f3SHong Zhang                                                           PetscBool fwd,void *ctx)
33006fd0887fSHong Zhang {
33016fd0887fSHong Zhang   PetscErrorCode ierr;
33026fd0887fSHong Zhang 
33036fd0887fSHong Zhang   PetscFunctionBegin;
33046fd0887fSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
33053d1d12c6SHong Zhang   if (costintegral) PetscValidHeaderSpecific(costintegral,VEC_CLASSID,3);
3306715f1b00SHong 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() or TSForwardSetIntegralGradients()");
3307c72ed514SHong Zhang   if (!ts->numcost) ts->numcost=numcost;
33086fd0887fSHong Zhang 
33093d1d12c6SHong Zhang   if (costintegral) {
33103d1d12c6SHong Zhang     ierr = PetscObjectReference((PetscObject)costintegral);CHKERRQ(ierr);
33113d1d12c6SHong Zhang     ierr = VecDestroy(&ts->vec_costintegral);CHKERRQ(ierr);
33123d1d12c6SHong Zhang     ts->vec_costintegral = costintegral;
3313afe7b317SHong Zhang   } else {
3314afe7b317SHong Zhang     if (!ts->vec_costintegral) { /* Create a seq vec if user does not provide one */
3315afe7b317SHong Zhang       ierr = VecCreateSeq(PETSC_COMM_SELF,numcost,&ts->vec_costintegral);CHKERRQ(ierr);
3316afe7b317SHong Zhang     } else {
3317afe7b317SHong Zhang       ierr = VecSet(ts->vec_costintegral,0.0);CHKERRQ(ierr);
3318afe7b317SHong Zhang     }
3319afe7b317SHong Zhang   }
3320afe7b317SHong Zhang   if (!ts->vec_costintegrand) {
33212c39e106SBarry Smith     ierr = VecDuplicate(ts->vec_costintegral,&ts->vec_costintegrand);CHKERRQ(ierr);
3322afe7b317SHong Zhang   } else {
3323afe7b317SHong Zhang     ierr = VecSet(ts->vec_costintegrand,0.0);CHKERRQ(ierr);
3324afe7b317SHong Zhang   }
3325afe7b317SHong Zhang   ts->costintegralfwd  = fwd; /* Evaluate the cost integral in forward run if fwd is true */
33260cf82b59SBarry Smith   ts->costintegrand    = rf;
332705755b9cSHong Zhang   ts->costintegrandctx = ctx;
3328b612ec54SBarry Smith   ts->drdyfunction     = drdyf;
3329b612ec54SBarry Smith   ts->drdpfunction     = drdpf;
33306fd0887fSHong Zhang   PetscFunctionReturn(0);
33316fd0887fSHong Zhang }
33326fd0887fSHong Zhang 
333336eaed60SHong Zhang /*@
3334dfb21088SHong Zhang    TSGetCostIntegral - Returns the values of the integral term in the cost functions.
333536eaed60SHong Zhang    It is valid to call the routine after a backward run.
333636eaed60SHong Zhang 
333736eaed60SHong Zhang    Not Collective
333836eaed60SHong Zhang 
333936eaed60SHong Zhang    Input Parameter:
334036eaed60SHong Zhang .  ts - the TS context obtained from TSCreate()
334136eaed60SHong Zhang 
334236eaed60SHong Zhang    Output Parameter:
33432c39e106SBarry Smith .  v - the vector containing the integrals for each cost function
334436eaed60SHong Zhang 
334536eaed60SHong Zhang    Level: intermediate
334636eaed60SHong Zhang 
3347dfb21088SHong Zhang .seealso: TSSetCostIntegrand()
334836eaed60SHong Zhang 
334936eaed60SHong Zhang .keywords: TS, sensitivity analysis
335036eaed60SHong Zhang @*/
3351dfb21088SHong Zhang PetscErrorCode  TSGetCostIntegral(TS ts,Vec *v)
335236eaed60SHong Zhang {
335336eaed60SHong Zhang   PetscFunctionBegin;
335436eaed60SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
335536eaed60SHong Zhang   PetscValidPointer(v,2);
33562c39e106SBarry Smith   *v = ts->vec_costintegral;
335736eaed60SHong Zhang   PetscFunctionReturn(0);
335836eaed60SHong Zhang }
335936eaed60SHong Zhang 
33606fd0887fSHong Zhang /*@
3361022c081aSHong Zhang    TSComputeCostIntegrand - Evaluates the integral function in the cost functions.
33626fd0887fSHong Zhang 
33636fd0887fSHong Zhang    Input Parameters:
33646fd0887fSHong Zhang +  ts - the TS context
33656fd0887fSHong Zhang .  t - current time
33660cf82b59SBarry Smith -  y - state vector, i.e. current solution
33676fd0887fSHong Zhang 
33686fd0887fSHong Zhang    Output Parameter:
3369abc2977eSBarry Smith .  q - vector of size numcost to hold the outputs
33706fd0887fSHong Zhang 
33716fd0887fSHong Zhang    Note:
33726fd0887fSHong Zhang    Most users should not need to explicitly call this routine, as it
33736fd0887fSHong Zhang    is used internally within the sensitivity analysis context.
33746fd0887fSHong Zhang 
33756fd0887fSHong Zhang    Level: developer
33766fd0887fSHong Zhang 
33776fd0887fSHong Zhang .keywords: TS, compute
33786fd0887fSHong Zhang 
3379dfb21088SHong Zhang .seealso: TSSetCostIntegrand()
33806fd0887fSHong Zhang @*/
3381022c081aSHong Zhang PetscErrorCode TSComputeCostIntegrand(TS ts,PetscReal t,Vec y,Vec q)
33826fd0887fSHong Zhang {
33836fd0887fSHong Zhang   PetscErrorCode ierr;
33846fd0887fSHong Zhang 
33856fd0887fSHong Zhang   PetscFunctionBegin;
33866fd0887fSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
33870cf82b59SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,3);
33886fd0887fSHong Zhang   PetscValidHeaderSpecific(q,VEC_CLASSID,4);
33896fd0887fSHong Zhang 
33900cf82b59SBarry Smith   ierr = PetscLogEventBegin(TS_FunctionEval,ts,y,q,0);CHKERRQ(ierr);
3391e4680132SHong Zhang   if (ts->costintegrand) {
3392e4680132SHong Zhang     PetscStackPush("TS user integrand in the cost function");
33930cf82b59SBarry Smith     ierr = (*ts->costintegrand)(ts,t,y,q,ts->costintegrandctx);CHKERRQ(ierr);
33946fd0887fSHong Zhang     PetscStackPop;
33956fd0887fSHong Zhang   } else {
33966fd0887fSHong Zhang     ierr = VecZeroEntries(q);CHKERRQ(ierr);
33976fd0887fSHong Zhang   }
33986fd0887fSHong Zhang 
33990cf82b59SBarry Smith   ierr = PetscLogEventEnd(TS_FunctionEval,ts,y,q,0);CHKERRQ(ierr);
34006fd0887fSHong Zhang   PetscFunctionReturn(0);
34016fd0887fSHong Zhang }
34026fd0887fSHong Zhang 
340305755b9cSHong Zhang /*@
3404d4aa0a58SBarry Smith   TSAdjointComputeDRDYFunction - Runs the user-defined DRDY function.
340505755b9cSHong Zhang 
340605755b9cSHong Zhang   Collective on TS
340705755b9cSHong Zhang 
340805755b9cSHong Zhang   Input Parameters:
340905755b9cSHong Zhang . ts   - The TS context obtained from TSCreate()
341005755b9cSHong Zhang 
341105755b9cSHong Zhang   Notes:
3412d4aa0a58SBarry Smith   TSAdjointComputeDRDYFunction() is typically used for sensitivity implementation,
341305755b9cSHong Zhang   so most users would not generally call this routine themselves.
341405755b9cSHong Zhang 
341505755b9cSHong Zhang   Level: developer
341605755b9cSHong Zhang 
341705755b9cSHong Zhang .keywords: TS, sensitivity
3418d4aa0a58SBarry Smith .seealso: TSAdjointComputeDRDYFunction()
341905755b9cSHong Zhang @*/
34200cf82b59SBarry Smith PetscErrorCode  TSAdjointComputeDRDYFunction(TS ts,PetscReal t,Vec y,Vec *drdy)
342105755b9cSHong Zhang {
342205755b9cSHong Zhang   PetscErrorCode ierr;
342305755b9cSHong Zhang 
342405755b9cSHong Zhang   PetscFunctionBegin;
342505755b9cSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
34260cf82b59SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,3);
342705755b9cSHong Zhang 
342805755b9cSHong Zhang   PetscStackPush("TS user DRDY function for sensitivity analysis");
34290cf82b59SBarry Smith   ierr = (*ts->drdyfunction)(ts,t,y,drdy,ts->costintegrandctx); CHKERRQ(ierr);
343005755b9cSHong Zhang   PetscStackPop;
343105755b9cSHong Zhang   PetscFunctionReturn(0);
343205755b9cSHong Zhang }
343305755b9cSHong Zhang 
343405755b9cSHong Zhang /*@
3435d4aa0a58SBarry Smith   TSAdjointComputeDRDPFunction - Runs the user-defined DRDP function.
343605755b9cSHong Zhang 
343705755b9cSHong Zhang   Collective on TS
343805755b9cSHong Zhang 
343905755b9cSHong Zhang   Input Parameters:
344005755b9cSHong Zhang . ts   - The TS context obtained from TSCreate()
344105755b9cSHong Zhang 
344205755b9cSHong Zhang   Notes:
344305755b9cSHong Zhang   TSDRDPFunction() is typically used for sensitivity implementation,
344405755b9cSHong Zhang   so most users would not generally call this routine themselves.
344505755b9cSHong Zhang 
344605755b9cSHong Zhang   Level: developer
344705755b9cSHong Zhang 
344805755b9cSHong Zhang .keywords: TS, sensitivity
3449d4aa0a58SBarry Smith .seealso: TSAdjointSetDRDPFunction()
345005755b9cSHong Zhang @*/
34510cf82b59SBarry Smith PetscErrorCode  TSAdjointComputeDRDPFunction(TS ts,PetscReal t,Vec y,Vec *drdp)
345205755b9cSHong Zhang {
345305755b9cSHong Zhang   PetscErrorCode ierr;
345405755b9cSHong Zhang 
345505755b9cSHong Zhang   PetscFunctionBegin;
345605755b9cSHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
34570cf82b59SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,3);
345805755b9cSHong Zhang 
345905755b9cSHong Zhang   PetscStackPush("TS user DRDP function for sensitivity analysis");
34600cf82b59SBarry Smith   ierr = (*ts->drdpfunction)(ts,t,y,drdp,ts->costintegrandctx); CHKERRQ(ierr);
346105755b9cSHong Zhang   PetscStackPop;
346205755b9cSHong Zhang   PetscFunctionReturn(0);
346305755b9cSHong Zhang }
346405755b9cSHong Zhang 
3465ac226902SBarry Smith /*@C
3466000e7ae3SMatthew Knepley   TSSetPreStep - Sets the general-purpose function
34673f2090d5SJed Brown   called once at the beginning of each time step.
3468000e7ae3SMatthew Knepley 
34693f9fe445SBarry Smith   Logically Collective on TS
3470000e7ae3SMatthew Knepley 
3471000e7ae3SMatthew Knepley   Input Parameters:
3472000e7ae3SMatthew Knepley + ts   - The TS context obtained from TSCreate()
3473000e7ae3SMatthew Knepley - func - The function
3474000e7ae3SMatthew Knepley 
3475000e7ae3SMatthew Knepley   Calling sequence of func:
3476000e7ae3SMatthew Knepley . func (TS ts);
3477000e7ae3SMatthew Knepley 
3478000e7ae3SMatthew Knepley   Level: intermediate
3479000e7ae3SMatthew Knepley 
3480000e7ae3SMatthew Knepley .keywords: TS, timestep
34819be3e283SDebojyoti Ghosh .seealso: TSSetPreStage(), TSSetPostStage(), TSSetPostStep(), TSStep()
3482000e7ae3SMatthew Knepley @*/
34837087cfbeSBarry Smith PetscErrorCode  TSSetPreStep(TS ts, PetscErrorCode (*func)(TS))
3484000e7ae3SMatthew Knepley {
3485000e7ae3SMatthew Knepley   PetscFunctionBegin;
34860700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
3487ae60f76fSBarry Smith   ts->prestep = func;
3488000e7ae3SMatthew Knepley   PetscFunctionReturn(0);
3489000e7ae3SMatthew Knepley }
3490000e7ae3SMatthew Knepley 
349109ee8438SJed Brown /*@
34923f2090d5SJed Brown   TSPreStep - Runs the user-defined pre-step function.
34933f2090d5SJed Brown 
34943f2090d5SJed Brown   Collective on TS
34953f2090d5SJed Brown 
34963f2090d5SJed Brown   Input Parameters:
34973f2090d5SJed Brown . ts   - The TS context obtained from TSCreate()
34983f2090d5SJed Brown 
34993f2090d5SJed Brown   Notes:
35003f2090d5SJed Brown   TSPreStep() is typically used within time stepping implementations,
35013f2090d5SJed Brown   so most users would not generally call this routine themselves.
35023f2090d5SJed Brown 
35033f2090d5SJed Brown   Level: developer
35043f2090d5SJed Brown 
35053f2090d5SJed Brown .keywords: TS, timestep
35069be3e283SDebojyoti Ghosh .seealso: TSSetPreStep(), TSPreStage(), TSPostStage(), TSPostStep()
35073f2090d5SJed Brown @*/
35087087cfbeSBarry Smith PetscErrorCode  TSPreStep(TS ts)
35093f2090d5SJed Brown {
35103f2090d5SJed Brown   PetscErrorCode ierr;
35113f2090d5SJed Brown 
35123f2090d5SJed Brown   PetscFunctionBegin;
35130700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3514ae60f76fSBarry Smith   if (ts->prestep) {
3515ae60f76fSBarry Smith     PetscStackCallStandard((*ts->prestep),(ts));
3516312ce896SJed Brown   }
35173f2090d5SJed Brown   PetscFunctionReturn(0);
35183f2090d5SJed Brown }
35193f2090d5SJed Brown 
3520b8123daeSJed Brown /*@C
3521b8123daeSJed Brown   TSSetPreStage - Sets the general-purpose function
3522b8123daeSJed Brown   called once at the beginning of each stage.
3523b8123daeSJed Brown 
3524b8123daeSJed Brown   Logically Collective on TS
3525b8123daeSJed Brown 
3526b8123daeSJed Brown   Input Parameters:
3527b8123daeSJed Brown + ts   - The TS context obtained from TSCreate()
3528b8123daeSJed Brown - func - The function
3529b8123daeSJed Brown 
3530b8123daeSJed Brown   Calling sequence of func:
3531b8123daeSJed Brown . PetscErrorCode func(TS ts, PetscReal stagetime);
3532b8123daeSJed Brown 
3533b8123daeSJed Brown   Level: intermediate
3534b8123daeSJed Brown 
3535b8123daeSJed Brown   Note:
3536b8123daeSJed Brown   There may be several stages per time step. If the solve for a given stage fails, the step may be rejected and retried.
353780275a0aSLisandro Dalcin   The time step number being computed can be queried using TSGetStepNumber() and the total size of the step being
3538b8123daeSJed Brown   attempted can be obtained using TSGetTimeStep(). The time at the start of the step is available via TSGetTime().
3539b8123daeSJed Brown 
3540b8123daeSJed Brown .keywords: TS, timestep
35419be3e283SDebojyoti Ghosh .seealso: TSSetPostStage(), TSSetPreStep(), TSSetPostStep(), TSGetApplicationContext()
3542b8123daeSJed Brown @*/
3543b8123daeSJed Brown PetscErrorCode  TSSetPreStage(TS ts, PetscErrorCode (*func)(TS,PetscReal))
3544b8123daeSJed Brown {
3545b8123daeSJed Brown   PetscFunctionBegin;
3546b8123daeSJed Brown   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
3547ae60f76fSBarry Smith   ts->prestage = func;
3548b8123daeSJed Brown   PetscFunctionReturn(0);
3549b8123daeSJed Brown }
3550b8123daeSJed Brown 
35519be3e283SDebojyoti Ghosh /*@C
35529be3e283SDebojyoti Ghosh   TSSetPostStage - Sets the general-purpose function
35539be3e283SDebojyoti Ghosh   called once at the end of each stage.
35549be3e283SDebojyoti Ghosh 
35559be3e283SDebojyoti Ghosh   Logically Collective on TS
35569be3e283SDebojyoti Ghosh 
35579be3e283SDebojyoti Ghosh   Input Parameters:
35589be3e283SDebojyoti Ghosh + ts   - The TS context obtained from TSCreate()
35599be3e283SDebojyoti Ghosh - func - The function
35609be3e283SDebojyoti Ghosh 
35619be3e283SDebojyoti Ghosh   Calling sequence of func:
35629be3e283SDebojyoti Ghosh . PetscErrorCode func(TS ts, PetscReal stagetime, PetscInt stageindex, Vec* Y);
35639be3e283SDebojyoti Ghosh 
35649be3e283SDebojyoti Ghosh   Level: intermediate
35659be3e283SDebojyoti Ghosh 
35669be3e283SDebojyoti Ghosh   Note:
35679be3e283SDebojyoti Ghosh   There may be several stages per time step. If the solve for a given stage fails, the step may be rejected and retried.
356880275a0aSLisandro Dalcin   The time step number being computed can be queried using TSGetStepNumber() and the total size of the step being
35699be3e283SDebojyoti Ghosh   attempted can be obtained using TSGetTimeStep(). The time at the start of the step is available via TSGetTime().
35709be3e283SDebojyoti Ghosh 
35719be3e283SDebojyoti Ghosh .keywords: TS, timestep
35729be3e283SDebojyoti Ghosh .seealso: TSSetPreStage(), TSSetPreStep(), TSSetPostStep(), TSGetApplicationContext()
35739be3e283SDebojyoti Ghosh @*/
35749be3e283SDebojyoti Ghosh PetscErrorCode  TSSetPostStage(TS ts, PetscErrorCode (*func)(TS,PetscReal,PetscInt,Vec*))
35759be3e283SDebojyoti Ghosh {
35769be3e283SDebojyoti Ghosh   PetscFunctionBegin;
35779be3e283SDebojyoti Ghosh   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
35789be3e283SDebojyoti Ghosh   ts->poststage = func;
35799be3e283SDebojyoti Ghosh   PetscFunctionReturn(0);
35809be3e283SDebojyoti Ghosh }
35819be3e283SDebojyoti Ghosh 
3582c688d042SShri Abhyankar /*@C
3583c688d042SShri Abhyankar   TSSetPostEvaluate - Sets the general-purpose function
3584c688d042SShri Abhyankar   called once at the end of each step evaluation.
3585c688d042SShri Abhyankar 
3586c688d042SShri Abhyankar   Logically Collective on TS
3587c688d042SShri Abhyankar 
3588c688d042SShri Abhyankar   Input Parameters:
3589c688d042SShri Abhyankar + ts   - The TS context obtained from TSCreate()
3590c688d042SShri Abhyankar - func - The function
3591c688d042SShri Abhyankar 
3592c688d042SShri Abhyankar   Calling sequence of func:
3593c688d042SShri Abhyankar . PetscErrorCode func(TS ts);
3594c688d042SShri Abhyankar 
3595c688d042SShri Abhyankar   Level: intermediate
3596c688d042SShri Abhyankar 
3597c688d042SShri Abhyankar   Note:
35981785ff2aSShri Abhyankar   Semantically, TSSetPostEvaluate() differs from TSSetPostStep() since the function it sets is called before event-handling
35991785ff2aSShri Abhyankar   thus guaranteeing the same solution (computed by the time-stepper) will be passed to it. On the other hand, TSPostStep()
3600e7e94ed4SShri Abhyankar   may be passed a different solution, possibly changed by the event handler. TSPostEvaluate() is called after the next step
3601e7e94ed4SShri Abhyankar   solution is evaluated allowing to modify it, if need be. The solution can be obtained with TSGetSolution(), the time step
3602e7e94ed4SShri Abhyankar   with TSGetTimeStep(), and the time at the start of the step is available via TSGetTime()
3603c688d042SShri Abhyankar 
3604c688d042SShri Abhyankar .keywords: TS, timestep
3605c688d042SShri Abhyankar .seealso: TSSetPreStage(), TSSetPreStep(), TSSetPostStep(), TSGetApplicationContext()
3606c688d042SShri Abhyankar @*/
3607c688d042SShri Abhyankar PetscErrorCode  TSSetPostEvaluate(TS ts, PetscErrorCode (*func)(TS))
3608c688d042SShri Abhyankar {
3609c688d042SShri Abhyankar   PetscFunctionBegin;
3610c688d042SShri Abhyankar   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
3611c688d042SShri Abhyankar   ts->postevaluate = func;
3612c688d042SShri Abhyankar   PetscFunctionReturn(0);
3613c688d042SShri Abhyankar }
3614c688d042SShri Abhyankar 
3615b8123daeSJed Brown /*@
3616b8123daeSJed Brown   TSPreStage - Runs the user-defined pre-stage function set using TSSetPreStage()
3617b8123daeSJed Brown 
3618b8123daeSJed Brown   Collective on TS
3619b8123daeSJed Brown 
3620b8123daeSJed Brown   Input Parameters:
3621b8123daeSJed Brown . ts          - The TS context obtained from TSCreate()
36229be3e283SDebojyoti Ghosh   stagetime   - The absolute time of the current stage
3623b8123daeSJed Brown 
3624b8123daeSJed Brown   Notes:
3625b8123daeSJed Brown   TSPreStage() is typically used within time stepping implementations,
3626b8123daeSJed Brown   most users would not generally call this routine themselves.
3627b8123daeSJed Brown 
3628b8123daeSJed Brown   Level: developer
3629b8123daeSJed Brown 
3630b8123daeSJed Brown .keywords: TS, timestep
36319be3e283SDebojyoti Ghosh .seealso: TSPostStage(), TSSetPreStep(), TSPreStep(), TSPostStep()
3632b8123daeSJed Brown @*/
3633b8123daeSJed Brown PetscErrorCode  TSPreStage(TS ts, PetscReal stagetime)
3634b8123daeSJed Brown {
3635b8123daeSJed Brown   PetscErrorCode ierr;
3636b8123daeSJed Brown 
3637b8123daeSJed Brown   PetscFunctionBegin;
3638b8123daeSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3639ae60f76fSBarry Smith   if (ts->prestage) {
3640ae60f76fSBarry Smith     PetscStackCallStandard((*ts->prestage),(ts,stagetime));
3641b8123daeSJed Brown   }
3642b8123daeSJed Brown   PetscFunctionReturn(0);
3643b8123daeSJed Brown }
3644b8123daeSJed Brown 
36459be3e283SDebojyoti Ghosh /*@
36469be3e283SDebojyoti Ghosh   TSPostStage - Runs the user-defined post-stage function set using TSSetPostStage()
36479be3e283SDebojyoti Ghosh 
36489be3e283SDebojyoti Ghosh   Collective on TS
36499be3e283SDebojyoti Ghosh 
36509be3e283SDebojyoti Ghosh   Input Parameters:
36519be3e283SDebojyoti Ghosh . ts          - The TS context obtained from TSCreate()
36529be3e283SDebojyoti Ghosh   stagetime   - The absolute time of the current stage
36539be3e283SDebojyoti Ghosh   stageindex  - Stage number
36549be3e283SDebojyoti Ghosh   Y           - Array of vectors (of size = total number
36559be3e283SDebojyoti Ghosh                 of stages) with the stage solutions
36569be3e283SDebojyoti Ghosh 
36579be3e283SDebojyoti Ghosh   Notes:
36589be3e283SDebojyoti Ghosh   TSPostStage() is typically used within time stepping implementations,
36599be3e283SDebojyoti Ghosh   most users would not generally call this routine themselves.
36609be3e283SDebojyoti Ghosh 
36619be3e283SDebojyoti Ghosh   Level: developer
36629be3e283SDebojyoti Ghosh 
36639be3e283SDebojyoti Ghosh .keywords: TS, timestep
36649be3e283SDebojyoti Ghosh .seealso: TSPreStage(), TSSetPreStep(), TSPreStep(), TSPostStep()
36659be3e283SDebojyoti Ghosh @*/
36669be3e283SDebojyoti Ghosh PetscErrorCode  TSPostStage(TS ts, PetscReal stagetime, PetscInt stageindex, Vec *Y)
36679be3e283SDebojyoti Ghosh {
36689be3e283SDebojyoti Ghosh   PetscErrorCode ierr;
36699be3e283SDebojyoti Ghosh 
36709be3e283SDebojyoti Ghosh   PetscFunctionBegin;
36719be3e283SDebojyoti Ghosh   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
36724beae5d8SLisandro Dalcin   if (ts->poststage) {
36739be3e283SDebojyoti Ghosh     PetscStackCallStandard((*ts->poststage),(ts,stagetime,stageindex,Y));
36749be3e283SDebojyoti Ghosh   }
36759be3e283SDebojyoti Ghosh   PetscFunctionReturn(0);
36769be3e283SDebojyoti Ghosh }
36779be3e283SDebojyoti Ghosh 
3678c688d042SShri Abhyankar /*@
3679c688d042SShri Abhyankar   TSPostEvaluate - Runs the user-defined post-evaluate function set using TSSetPostEvaluate()
3680c688d042SShri Abhyankar 
3681c688d042SShri Abhyankar   Collective on TS
3682c688d042SShri Abhyankar 
3683c688d042SShri Abhyankar   Input Parameters:
3684c688d042SShri Abhyankar . ts          - The TS context obtained from TSCreate()
3685c688d042SShri Abhyankar 
3686c688d042SShri Abhyankar   Notes:
3687c688d042SShri Abhyankar   TSPostEvaluate() is typically used within time stepping implementations,
3688c688d042SShri Abhyankar   most users would not generally call this routine themselves.
3689c688d042SShri Abhyankar 
3690c688d042SShri Abhyankar   Level: developer
3691c688d042SShri Abhyankar 
3692c688d042SShri Abhyankar .keywords: TS, timestep
3693c688d042SShri Abhyankar .seealso: TSSetPostEvaluate(), TSSetPreStep(), TSPreStep(), TSPostStep()
3694c688d042SShri Abhyankar @*/
3695c688d042SShri Abhyankar PetscErrorCode  TSPostEvaluate(TS ts)
3696c688d042SShri Abhyankar {
3697c688d042SShri Abhyankar   PetscErrorCode ierr;
3698c688d042SShri Abhyankar 
3699c688d042SShri Abhyankar   PetscFunctionBegin;
3700c688d042SShri Abhyankar   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3701c688d042SShri Abhyankar   if (ts->postevaluate) {
3702c688d042SShri Abhyankar     PetscStackCallStandard((*ts->postevaluate),(ts));
3703c688d042SShri Abhyankar   }
3704c688d042SShri Abhyankar   PetscFunctionReturn(0);
3705c688d042SShri Abhyankar }
3706c688d042SShri Abhyankar 
3707ac226902SBarry Smith /*@C
3708000e7ae3SMatthew Knepley   TSSetPostStep - Sets the general-purpose function
37093f2090d5SJed Brown   called once at the end of each time step.
3710000e7ae3SMatthew Knepley 
37113f9fe445SBarry Smith   Logically Collective on TS
3712000e7ae3SMatthew Knepley 
3713000e7ae3SMatthew Knepley   Input Parameters:
3714000e7ae3SMatthew Knepley + ts   - The TS context obtained from TSCreate()
3715000e7ae3SMatthew Knepley - func - The function
3716000e7ae3SMatthew Knepley 
3717000e7ae3SMatthew Knepley   Calling sequence of func:
3718b8123daeSJed Brown $ func (TS ts);
3719000e7ae3SMatthew Knepley 
37201785ff2aSShri Abhyankar   Notes:
37211785ff2aSShri Abhyankar   The function set by TSSetPostStep() is called after each successful step. The solution vector X
37221785ff2aSShri Abhyankar   obtained by TSGetSolution() may be different than that computed at the step end if the event handler
37231785ff2aSShri Abhyankar   locates an event and TSPostEvent() modifies it. Use TSSetPostEvaluate() if an unmodified solution is needed instead.
37241785ff2aSShri Abhyankar 
3725000e7ae3SMatthew Knepley   Level: intermediate
3726000e7ae3SMatthew Knepley 
3727000e7ae3SMatthew Knepley .keywords: TS, timestep
372880275a0aSLisandro Dalcin .seealso: TSSetPreStep(), TSSetPreStage(), TSSetPostEvaluate(), TSGetTimeStep(), TSGetStepNumber(), TSGetTime()
3729000e7ae3SMatthew Knepley @*/
37307087cfbeSBarry Smith PetscErrorCode  TSSetPostStep(TS ts, PetscErrorCode (*func)(TS))
3731000e7ae3SMatthew Knepley {
3732000e7ae3SMatthew Knepley   PetscFunctionBegin;
37330700a824SBarry Smith   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
3734ae60f76fSBarry Smith   ts->poststep = func;
3735000e7ae3SMatthew Knepley   PetscFunctionReturn(0);
3736000e7ae3SMatthew Knepley }
3737000e7ae3SMatthew Knepley 
373809ee8438SJed Brown /*@
37393f2090d5SJed Brown   TSPostStep - Runs the user-defined post-step function.
37403f2090d5SJed Brown 
37413f2090d5SJed Brown   Collective on TS
37423f2090d5SJed Brown 
37433f2090d5SJed Brown   Input Parameters:
37443f2090d5SJed Brown . ts   - The TS context obtained from TSCreate()
37453f2090d5SJed Brown 
37463f2090d5SJed Brown   Notes:
37473f2090d5SJed Brown   TSPostStep() is typically used within time stepping implementations,
37483f2090d5SJed Brown   so most users would not generally call this routine themselves.
37493f2090d5SJed Brown 
37503f2090d5SJed Brown   Level: developer
37513f2090d5SJed Brown 
37523f2090d5SJed Brown .keywords: TS, timestep
37533f2090d5SJed Brown @*/
37547087cfbeSBarry Smith PetscErrorCode  TSPostStep(TS ts)
37553f2090d5SJed Brown {
37563f2090d5SJed Brown   PetscErrorCode ierr;
37573f2090d5SJed Brown 
37583f2090d5SJed Brown   PetscFunctionBegin;
37590700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3760ae60f76fSBarry Smith   if (ts->poststep) {
3761ae60f76fSBarry Smith     PetscStackCallStandard((*ts->poststep),(ts));
376272ac3e02SJed Brown   }
37633f2090d5SJed Brown   PetscFunctionReturn(0);
37643f2090d5SJed Brown }
37653f2090d5SJed Brown 
3766d763cef2SBarry Smith /* ------------ Routines to set performance monitoring options ----------- */
3767d763cef2SBarry Smith 
3768d763cef2SBarry Smith /*@C
3769a6570f20SBarry Smith    TSMonitorSet - Sets an ADDITIONAL function that is to be used at every
3770d763cef2SBarry Smith    timestep to display the iteration's  progress.
3771d763cef2SBarry Smith 
37723f9fe445SBarry Smith    Logically Collective on TS
3773d763cef2SBarry Smith 
3774d763cef2SBarry Smith    Input Parameters:
3775d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
3776e213d8f1SJed Brown .  monitor - monitoring routine
3777329f5518SBarry Smith .  mctx - [optional] user-defined context for private data for the
37780298fd71SBarry Smith              monitor routine (use NULL if no context is desired)
3779b3006f0bSLois Curfman McInnes -  monitordestroy - [optional] routine that frees monitor context
37800298fd71SBarry Smith           (may be NULL)
3781d763cef2SBarry Smith 
3782e213d8f1SJed Brown    Calling sequence of monitor:
37830910c330SBarry Smith $    int monitor(TS ts,PetscInt steps,PetscReal time,Vec u,void *mctx)
3784d763cef2SBarry Smith 
3785d763cef2SBarry Smith +    ts - the TS context
378663e21af5SBarry 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)
37871f06c33eSBarry Smith .    time - current time
37880910c330SBarry Smith .    u - current iterate
3789d763cef2SBarry Smith -    mctx - [optional] monitoring context
3790d763cef2SBarry Smith 
3791d763cef2SBarry Smith    Notes:
3792d763cef2SBarry Smith    This routine adds an additional monitor to the list of monitors that
3793d763cef2SBarry Smith    already has been loaded.
3794d763cef2SBarry Smith 
3795025f1a04SBarry Smith    Fortran notes: Only a single monitor function can be set for each TS object
3796025f1a04SBarry Smith 
3797d763cef2SBarry Smith    Level: intermediate
3798d763cef2SBarry Smith 
3799d763cef2SBarry Smith .keywords: TS, timestep, set, monitor
3800d763cef2SBarry Smith 
3801a6570f20SBarry Smith .seealso: TSMonitorDefault(), TSMonitorCancel()
3802d763cef2SBarry Smith @*/
3803c2efdce3SBarry Smith PetscErrorCode  TSMonitorSet(TS ts,PetscErrorCode (*monitor)(TS,PetscInt,PetscReal,Vec,void*),void *mctx,PetscErrorCode (*mdestroy)(void**))
3804d763cef2SBarry Smith {
380578064530SBarry Smith   PetscErrorCode ierr;
380678064530SBarry Smith   PetscInt       i;
380778064530SBarry Smith   PetscBool      identical;
380878064530SBarry Smith 
3809d763cef2SBarry Smith   PetscFunctionBegin;
38100700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
381178064530SBarry Smith   for (i=0; i<ts->numbermonitors;i++) {
381278064530SBarry Smith     ierr = PetscMonitorCompare((PetscErrorCode (*)(void))monitor,mctx,mdestroy,(PetscErrorCode (*)(void))ts->monitor[i],ts->monitorcontext[i],ts->monitordestroy[i],&identical);CHKERRQ(ierr);
381378064530SBarry Smith     if (identical) PetscFunctionReturn(0);
381478064530SBarry Smith   }
381517186662SBarry Smith   if (ts->numbermonitors >= MAXTSMONITORS) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Too many monitors set");
3816d763cef2SBarry Smith   ts->monitor[ts->numbermonitors]          = monitor;
38178704b422SBarry Smith   ts->monitordestroy[ts->numbermonitors]   = mdestroy;
3818d763cef2SBarry Smith   ts->monitorcontext[ts->numbermonitors++] = (void*)mctx;
3819d763cef2SBarry Smith   PetscFunctionReturn(0);
3820d763cef2SBarry Smith }
3821d763cef2SBarry Smith 
3822d763cef2SBarry Smith /*@C
3823a6570f20SBarry Smith    TSMonitorCancel - Clears all the monitors that have been set on a time-step object.
3824d763cef2SBarry Smith 
38253f9fe445SBarry Smith    Logically Collective on TS
3826d763cef2SBarry Smith 
3827d763cef2SBarry Smith    Input Parameters:
3828d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
3829d763cef2SBarry Smith 
3830d763cef2SBarry Smith    Notes:
3831d763cef2SBarry Smith    There is no way to remove a single, specific monitor.
3832d763cef2SBarry Smith 
3833d763cef2SBarry Smith    Level: intermediate
3834d763cef2SBarry Smith 
3835d763cef2SBarry Smith .keywords: TS, timestep, set, monitor
3836d763cef2SBarry Smith 
3837a6570f20SBarry Smith .seealso: TSMonitorDefault(), TSMonitorSet()
3838d763cef2SBarry Smith @*/
38397087cfbeSBarry Smith PetscErrorCode  TSMonitorCancel(TS ts)
3840d763cef2SBarry Smith {
3841d952e501SBarry Smith   PetscErrorCode ierr;
3842d952e501SBarry Smith   PetscInt       i;
3843d952e501SBarry Smith 
3844d763cef2SBarry Smith   PetscFunctionBegin;
38450700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
3846d952e501SBarry Smith   for (i=0; i<ts->numbermonitors; i++) {
38478704b422SBarry Smith     if (ts->monitordestroy[i]) {
38488704b422SBarry Smith       ierr = (*ts->monitordestroy[i])(&ts->monitorcontext[i]);CHKERRQ(ierr);
3849d952e501SBarry Smith     }
3850d952e501SBarry Smith   }
3851d763cef2SBarry Smith   ts->numbermonitors = 0;
3852d763cef2SBarry Smith   PetscFunctionReturn(0);
3853d763cef2SBarry Smith }
3854d763cef2SBarry Smith 
3855721cd6eeSBarry Smith /*@C
3856721cd6eeSBarry Smith    TSMonitorDefault - The Default monitor, prints the timestep and time for each step
38575516499fSSatish Balay 
38585516499fSSatish Balay    Level: intermediate
385941251cbbSSatish Balay 
38605516499fSSatish Balay .keywords: TS, set, monitor
38615516499fSSatish Balay 
386263e21af5SBarry Smith .seealso:  TSMonitorSet()
386341251cbbSSatish Balay @*/
3864721cd6eeSBarry Smith PetscErrorCode TSMonitorDefault(TS ts,PetscInt step,PetscReal ptime,Vec v,PetscViewerAndFormat *vf)
3865d763cef2SBarry Smith {
3866dfbe8321SBarry Smith   PetscErrorCode ierr;
3867721cd6eeSBarry Smith   PetscViewer    viewer =  vf->viewer;
386841aca3d6SBarry Smith   PetscBool      iascii,ibinary;
3869d132466eSBarry Smith 
3870d763cef2SBarry Smith   PetscFunctionBegin;
38714d4332d5SBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,4);
387241aca3d6SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr);
387341aca3d6SBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&ibinary);CHKERRQ(ierr);
3874721cd6eeSBarry Smith   ierr = PetscViewerPushFormat(viewer,vf->format);CHKERRQ(ierr);
387541aca3d6SBarry Smith   if (iascii) {
3876649052a6SBarry Smith     ierr = PetscViewerASCIIAddTab(viewer,((PetscObject)ts)->tablevel);CHKERRQ(ierr);
387763e21af5SBarry Smith     if (step == -1){ /* this indicates it is an interpolated solution */
387863e21af5SBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"Interpolated solution at time %g between steps %D and %D\n",(double)ptime,ts->steps-1,ts->steps);CHKERRQ(ierr);
387963e21af5SBarry Smith     } else {
38808392e04aSShri 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);
388163e21af5SBarry Smith     }
3882649052a6SBarry Smith     ierr = PetscViewerASCIISubtractTab(viewer,((PetscObject)ts)->tablevel);CHKERRQ(ierr);
388341aca3d6SBarry Smith   } else if (ibinary) {
388441aca3d6SBarry Smith     PetscMPIInt rank;
388541aca3d6SBarry Smith     ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)viewer),&rank);CHKERRQ(ierr);
388641aca3d6SBarry Smith     if (!rank) {
3887450a797fSBarry Smith       PetscBool skipHeader;
3888450a797fSBarry Smith       PetscInt  classid = REAL_FILE_CLASSID;
3889450a797fSBarry Smith 
3890450a797fSBarry Smith       ierr = PetscViewerBinaryGetSkipHeader(viewer,&skipHeader);CHKERRQ(ierr);
3891450a797fSBarry Smith       if (!skipHeader) {
3892450a797fSBarry Smith          ierr = PetscViewerBinaryWrite(viewer,&classid,1,PETSC_INT,PETSC_FALSE);CHKERRQ(ierr);
3893450a797fSBarry Smith        }
389441aca3d6SBarry Smith       ierr = PetscRealView(1,&ptime,viewer);CHKERRQ(ierr);
389541aca3d6SBarry Smith     } else {
389641aca3d6SBarry Smith       ierr = PetscRealView(0,&ptime,viewer);CHKERRQ(ierr);
389741aca3d6SBarry Smith     }
389841aca3d6SBarry Smith   }
3899721cd6eeSBarry Smith   ierr = PetscViewerPopFormat(viewer);CHKERRQ(ierr);
3900d763cef2SBarry Smith   PetscFunctionReturn(0);
3901d763cef2SBarry Smith }
3902d763cef2SBarry Smith 
39039110b2e7SHong Zhang /*@C
39049110b2e7SHong Zhang    TSAdjointMonitorSet - Sets an ADDITIONAL function that is to be used at every
39059110b2e7SHong Zhang    timestep to display the iteration's  progress.
39069110b2e7SHong Zhang 
39079110b2e7SHong Zhang    Logically Collective on TS
39089110b2e7SHong Zhang 
39099110b2e7SHong Zhang    Input Parameters:
39109110b2e7SHong Zhang +  ts - the TS context obtained from TSCreate()
39119110b2e7SHong Zhang .  adjointmonitor - monitoring routine
39129110b2e7SHong Zhang .  adjointmctx - [optional] user-defined context for private data for the
39139110b2e7SHong Zhang              monitor routine (use NULL if no context is desired)
39149110b2e7SHong Zhang -  adjointmonitordestroy - [optional] routine that frees monitor context
39159110b2e7SHong Zhang           (may be NULL)
39169110b2e7SHong Zhang 
39179110b2e7SHong Zhang    Calling sequence of monitor:
39189110b2e7SHong Zhang $    int adjointmonitor(TS ts,PetscInt steps,PetscReal time,Vec u,PetscInt numcost,Vec *lambda, Vec *mu,void *adjointmctx)
39199110b2e7SHong Zhang 
39209110b2e7SHong Zhang +    ts - the TS context
39219110b2e7SHong 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
39229110b2e7SHong Zhang                                been interpolated to)
39239110b2e7SHong Zhang .    time - current time
39249110b2e7SHong Zhang .    u - current iterate
39259110b2e7SHong Zhang .    numcost - number of cost functionos
39269110b2e7SHong Zhang .    lambda - sensitivities to initial conditions
39279110b2e7SHong Zhang .    mu - sensitivities to parameters
39289110b2e7SHong Zhang -    adjointmctx - [optional] adjoint monitoring context
39299110b2e7SHong Zhang 
39309110b2e7SHong Zhang    Notes:
39319110b2e7SHong Zhang    This routine adds an additional monitor to the list of monitors that
39329110b2e7SHong Zhang    already has been loaded.
39339110b2e7SHong Zhang 
39349110b2e7SHong Zhang    Fortran notes: Only a single monitor function can be set for each TS object
39359110b2e7SHong Zhang 
39369110b2e7SHong Zhang    Level: intermediate
39379110b2e7SHong Zhang 
39389110b2e7SHong Zhang .keywords: TS, timestep, set, adjoint, monitor
39399110b2e7SHong Zhang 
39409110b2e7SHong Zhang .seealso: TSAdjointMonitorCancel()
39419110b2e7SHong Zhang @*/
39429110b2e7SHong Zhang PetscErrorCode  TSAdjointMonitorSet(TS ts,PetscErrorCode (*adjointmonitor)(TS,PetscInt,PetscReal,Vec,PetscInt,Vec*,Vec*,void*),void *adjointmctx,PetscErrorCode (*adjointmdestroy)(void**))
39439110b2e7SHong Zhang {
394478064530SBarry Smith   PetscErrorCode ierr;
394578064530SBarry Smith   PetscInt       i;
394678064530SBarry Smith   PetscBool      identical;
394778064530SBarry Smith 
39489110b2e7SHong Zhang   PetscFunctionBegin;
39499110b2e7SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
395078064530SBarry Smith   for (i=0; i<ts->numbermonitors;i++) {
395178064530SBarry Smith     ierr = PetscMonitorCompare((PetscErrorCode (*)(void))adjointmonitor,adjointmctx,adjointmdestroy,(PetscErrorCode (*)(void))ts->adjointmonitor[i],ts->adjointmonitorcontext[i],ts->adjointmonitordestroy[i],&identical);CHKERRQ(ierr);
395278064530SBarry Smith     if (identical) PetscFunctionReturn(0);
395378064530SBarry Smith   }
39549110b2e7SHong Zhang   if (ts->numberadjointmonitors >= MAXTSMONITORS) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Too many adjoint monitors set");
39559110b2e7SHong Zhang   ts->adjointmonitor[ts->numberadjointmonitors]          = adjointmonitor;
39569110b2e7SHong Zhang   ts->adjointmonitordestroy[ts->numberadjointmonitors]   = adjointmdestroy;
39579110b2e7SHong Zhang   ts->adjointmonitorcontext[ts->numberadjointmonitors++] = (void*)adjointmctx;
39589110b2e7SHong Zhang   PetscFunctionReturn(0);
39599110b2e7SHong Zhang }
39609110b2e7SHong Zhang 
39619110b2e7SHong Zhang /*@C
39629110b2e7SHong Zhang    TSAdjointMonitorCancel - Clears all the adjoint monitors that have been set on a time-step object.
39639110b2e7SHong Zhang 
39649110b2e7SHong Zhang    Logically Collective on TS
39659110b2e7SHong Zhang 
39669110b2e7SHong Zhang    Input Parameters:
39679110b2e7SHong Zhang .  ts - the TS context obtained from TSCreate()
39689110b2e7SHong Zhang 
39699110b2e7SHong Zhang    Notes:
39709110b2e7SHong Zhang    There is no way to remove a single, specific monitor.
39719110b2e7SHong Zhang 
39729110b2e7SHong Zhang    Level: intermediate
39739110b2e7SHong Zhang 
39749110b2e7SHong Zhang .keywords: TS, timestep, set, adjoint, monitor
39759110b2e7SHong Zhang 
39769110b2e7SHong Zhang .seealso: TSAdjointMonitorSet()
39779110b2e7SHong Zhang @*/
39789110b2e7SHong Zhang PetscErrorCode  TSAdjointMonitorCancel(TS ts)
39799110b2e7SHong Zhang {
39809110b2e7SHong Zhang   PetscErrorCode ierr;
39819110b2e7SHong Zhang   PetscInt       i;
39829110b2e7SHong Zhang 
39839110b2e7SHong Zhang   PetscFunctionBegin;
39849110b2e7SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
39859110b2e7SHong Zhang   for (i=0; i<ts->numberadjointmonitors; i++) {
39869110b2e7SHong Zhang     if (ts->adjointmonitordestroy[i]) {
39879110b2e7SHong Zhang       ierr = (*ts->adjointmonitordestroy[i])(&ts->adjointmonitorcontext[i]);CHKERRQ(ierr);
39889110b2e7SHong Zhang     }
39899110b2e7SHong Zhang   }
39909110b2e7SHong Zhang   ts->numberadjointmonitors = 0;
39919110b2e7SHong Zhang   PetscFunctionReturn(0);
39929110b2e7SHong Zhang }
39939110b2e7SHong Zhang 
3994721cd6eeSBarry Smith /*@C
3995721cd6eeSBarry Smith    TSAdjointMonitorDefault - the default monitor of adjoint computations
3996110eb670SHong Zhang 
3997110eb670SHong Zhang    Level: intermediate
3998110eb670SHong Zhang 
3999110eb670SHong Zhang .keywords: TS, set, monitor
4000110eb670SHong Zhang 
4001110eb670SHong Zhang .seealso: TSAdjointMonitorSet()
4002110eb670SHong Zhang @*/
4003721cd6eeSBarry Smith PetscErrorCode TSAdjointMonitorDefault(TS ts,PetscInt step,PetscReal ptime,Vec v,PetscInt numcost,Vec *lambda,Vec *mu,PetscViewerAndFormat *vf)
4004110eb670SHong Zhang {
4005110eb670SHong Zhang   PetscErrorCode ierr;
4006721cd6eeSBarry Smith   PetscViewer    viewer = vf->viewer;
4007110eb670SHong Zhang 
4008110eb670SHong Zhang   PetscFunctionBegin;
4009110eb670SHong Zhang   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,4);
4010721cd6eeSBarry Smith   ierr = PetscViewerPushFormat(viewer,vf->format);CHKERRQ(ierr);
4011110eb670SHong Zhang   ierr = PetscViewerASCIIAddTab(viewer,((PetscObject)ts)->tablevel);CHKERRQ(ierr);
4012110eb670SHong 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);
4013110eb670SHong Zhang   ierr = PetscViewerASCIISubtractTab(viewer,((PetscObject)ts)->tablevel);CHKERRQ(ierr);
4014721cd6eeSBarry Smith   ierr = PetscViewerPopFormat(viewer);CHKERRQ(ierr);
4015110eb670SHong Zhang   PetscFunctionReturn(0);
4016110eb670SHong Zhang }
4017110eb670SHong Zhang 
4018cd652676SJed Brown /*@
4019cd652676SJed Brown    TSInterpolate - Interpolate the solution computed during the previous step to an arbitrary location in the interval
4020cd652676SJed Brown 
4021cd652676SJed Brown    Collective on TS
4022cd652676SJed Brown 
4023cd652676SJed Brown    Input Argument:
4024cd652676SJed Brown +  ts - time stepping context
4025cd652676SJed Brown -  t - time to interpolate to
4026cd652676SJed Brown 
4027cd652676SJed Brown    Output Argument:
40280910c330SBarry Smith .  U - state at given time
4029cd652676SJed Brown 
4030cd652676SJed Brown    Level: intermediate
4031cd652676SJed Brown 
4032cd652676SJed Brown    Developer Notes:
4033cd652676SJed Brown    TSInterpolate() and the storing of previous steps/stages should be generalized to support delay differential equations and continuous adjoints.
4034cd652676SJed Brown 
4035cd652676SJed Brown .keywords: TS, set
4036cd652676SJed Brown 
4037874c02e6SLisandro Dalcin .seealso: TSSetExactFinalTime(), TSSolve()
4038cd652676SJed Brown @*/
40390910c330SBarry Smith PetscErrorCode TSInterpolate(TS ts,PetscReal t,Vec U)
4040cd652676SJed Brown {
4041cd652676SJed Brown   PetscErrorCode ierr;
4042cd652676SJed Brown 
4043cd652676SJed Brown   PetscFunctionBegin;
4044cd652676SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4045b06615a5SLisandro Dalcin   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
4046be5899b3SLisandro 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);
4047ce94432eSBarry Smith   if (!ts->ops->interpolate) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"%s does not provide interpolation",((PetscObject)ts)->type_name);
40480910c330SBarry Smith   ierr = (*ts->ops->interpolate)(ts,t,U);CHKERRQ(ierr);
4049cd652676SJed Brown   PetscFunctionReturn(0);
4050cd652676SJed Brown }
4051cd652676SJed Brown 
4052d763cef2SBarry Smith /*@
40536d9e5789SSean Farley    TSStep - Steps one time step
4054d763cef2SBarry Smith 
4055d763cef2SBarry Smith    Collective on TS
4056d763cef2SBarry Smith 
4057d763cef2SBarry Smith    Input Parameter:
4058d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
4059d763cef2SBarry Smith 
406027829d71SBarry Smith    Level: developer
4061d763cef2SBarry Smith 
4062b8123daeSJed Brown    Notes:
406327829d71SBarry Smith    The public interface for the ODE/DAE solvers is TSSolve(), you should almost for sure be using that routine and not this routine.
406427829d71SBarry Smith 
4065b8123daeSJed Brown    The hook set using TSSetPreStep() is called before each attempt to take the step. In general, the time step size may
4066b8123daeSJed Brown    be changed due to adaptive error controller or solve failures. Note that steps may contain multiple stages.
4067b8123daeSJed Brown 
406825cb2221SBarry Smith    This may over-step the final time provided in TSSetDuration() depending on the time-step used. TSSolve() interpolates to exactly the
406925cb2221SBarry Smith    time provided in TSSetDuration(). One can use TSInterpolate() to determine an interpolated solution within the final timestep.
407025cb2221SBarry Smith 
4071d763cef2SBarry Smith .keywords: TS, timestep, solve
4072d763cef2SBarry Smith 
40739be3e283SDebojyoti Ghosh .seealso: TSCreate(), TSSetUp(), TSDestroy(), TSSolve(), TSSetPreStep(), TSSetPreStage(), TSSetPostStage(), TSInterpolate()
4074d763cef2SBarry Smith @*/
4075193ac0bcSJed Brown PetscErrorCode  TSStep(TS ts)
4076d763cef2SBarry Smith {
4077dfbe8321SBarry Smith   PetscErrorCode   ierr;
4078fffbeea8SBarry Smith   static PetscBool cite = PETSC_FALSE;
4079be5899b3SLisandro Dalcin   PetscReal        ptime;
4080d763cef2SBarry Smith 
4081d763cef2SBarry Smith   PetscFunctionBegin;
40820700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4083fffbeea8SBarry Smith   ierr = PetscCitationsRegister("@techreport{tspaper,\n"
4084fffbeea8SBarry Smith                                 "  title       = {{PETSc/TS}: A Modern Scalable {DAE/ODE} Solver Library},\n"
4085fffbeea8SBarry Smith                                 "  author      = {Shrirang Abhyankar and Jed Brown and Emil Constantinescu and Debojyoti Ghosh and Barry F. Smith},\n"
4086fffbeea8SBarry Smith                                 "  type        = {Preprint},\n"
4087fffbeea8SBarry Smith                                 "  number      = {ANL/MCS-P5061-0114},\n"
4088fffbeea8SBarry Smith                                 "  institution = {Argonne National Laboratory},\n"
4089302440fdSBarry Smith                                 "  year        = {2014}\n}\n",&cite);CHKERRQ(ierr);
4090fffbeea8SBarry Smith 
4091d405a339SMatthew Knepley   ierr = TSSetUp(ts);CHKERRQ(ierr);
409268bece0bSHong Zhang   ierr = TSTrajectorySetUp(ts->trajectory,ts);CHKERRQ(ierr);
4093d405a339SMatthew Knepley 
4094a6772fa2SLisandro 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()");
4095be5899b3SLisandro 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");
4096a6772fa2SLisandro Dalcin 
4097be5899b3SLisandro Dalcin   if (!ts->steps) ts->ptime_prev = ts->ptime;
4098be5899b3SLisandro Dalcin   ptime = ts->ptime; ts->ptime_prev_rollback = ts->ptime_prev;
40992808aa04SLisandro Dalcin   ts->reason = TS_CONVERGED_ITERATING;
4100e04979a6SLisandro Dalcin   if (!ts->ops->step) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"TSStep not implemented for type '%s'",((PetscObject)ts)->type_name);
4101d5ba7fb7SMatthew Knepley   ierr = PetscLogEventBegin(TS_Step,ts,0,0,0);CHKERRQ(ierr);
4102193ac0bcSJed Brown   ierr = (*ts->ops->step)(ts);CHKERRQ(ierr);
4103d5ba7fb7SMatthew Knepley   ierr = PetscLogEventEnd(TS_Step,ts,0,0,0);CHKERRQ(ierr);
4104be5899b3SLisandro Dalcin   ts->ptime_prev = ptime;
41052808aa04SLisandro Dalcin   ts->steps++;
4106be5899b3SLisandro Dalcin   ts->steprollback = PETSC_FALSE;
410728d5b5d6SLisandro Dalcin   ts->steprestart  = PETSC_FALSE;
4108362cd11cSLisandro Dalcin 
4109362cd11cSLisandro Dalcin   if (ts->reason < 0) {
4110cef5090cSJed Brown     if (ts->errorifstepfailed) {
411108c7845fSBarry 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]);
411208c7845fSBarry Smith       else SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed due to %s",TSConvergedReasons[ts->reason]);
4113d2daff3dSHong Zhang     }
411408c7845fSBarry Smith   } else if (!ts->reason) {
411508c7845fSBarry Smith     if (ts->steps >= ts->max_steps) ts->reason = TS_CONVERGED_ITS;
411608c7845fSBarry Smith     else if (ts->ptime >= ts->max_time) ts->reason = TS_CONVERGED_TIME;
411708c7845fSBarry Smith   }
411808c7845fSBarry Smith   PetscFunctionReturn(0);
411908c7845fSBarry Smith }
412008c7845fSBarry Smith 
412108c7845fSBarry Smith /*@
4122b957a604SHong Zhang    TSAdjointStep - Steps one time step backward in the adjoint run
412308c7845fSBarry Smith 
412408c7845fSBarry Smith    Collective on TS
412508c7845fSBarry Smith 
412608c7845fSBarry Smith    Input Parameter:
412708c7845fSBarry Smith .  ts - the TS context obtained from TSCreate()
412808c7845fSBarry Smith 
41296a4d4014SLisandro Dalcin    Level: intermediate
41306a4d4014SLisandro Dalcin 
4131b957a604SHong Zhang .keywords: TS, adjoint, step
41326a4d4014SLisandro Dalcin 
4133b957a604SHong Zhang .seealso: TSAdjointSetUp(), TSAdjointSolve()
41346a4d4014SLisandro Dalcin @*/
413508c7845fSBarry Smith PetscErrorCode  TSAdjointStep(TS ts)
41366a4d4014SLisandro Dalcin {
413708c7845fSBarry Smith   DM               dm;
41386a4d4014SLisandro Dalcin   PetscErrorCode   ierr;
41396a4d4014SLisandro Dalcin 
41406a4d4014SLisandro Dalcin   PetscFunctionBegin;
41414a2ae208SSatish Balay   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
414208c7845fSBarry Smith   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
414308c7845fSBarry Smith   ierr = TSAdjointSetUp(ts);CHKERRQ(ierr);
4144d763cef2SBarry Smith 
4145685405a1SBarry Smith   ierr = VecViewFromOptions(ts->vec_sol,(PetscObject)ts,"-ts_view_solution");CHKERRQ(ierr);
4146d763cef2SBarry Smith 
4147be5899b3SLisandro Dalcin   ts->reason = TS_CONVERGED_ITERATING;
4148be5899b3SLisandro Dalcin   ts->ptime_prev = ts->ptime;
414942f2b339SBarry 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);
4150be5899b3SLisandro Dalcin   ierr = PetscLogEventBegin(TS_AdjointStep,ts,0,0,0);CHKERRQ(ierr);
415142f2b339SBarry Smith   ierr = (*ts->ops->adjointstep)(ts);CHKERRQ(ierr);
41528d0ad7a8SHong Zhang   ierr = PetscLogEventEnd(TS_AdjointStep,ts,0,0,0);CHKERRQ(ierr);
41532808aa04SLisandro Dalcin   ts->adjoint_steps++; ts->steps--;
4154362cd11cSLisandro Dalcin 
4155362cd11cSLisandro Dalcin   if (ts->reason < 0) {
4156cef5090cSJed Brown     if (ts->errorifstepfailed) {
41576c4ed002SBarry 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]);
41586c4ed002SBarry 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]);
41596c4ed002SBarry Smith       else SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_NOT_CONVERGED,"TSStep has failed due to %s",TSConvergedReasons[ts->reason]);
4160cef5090cSJed Brown     }
4161362cd11cSLisandro Dalcin   } else if (!ts->reason) {
41622808aa04SLisandro Dalcin     if (ts->adjoint_steps >= ts->adjoint_max_steps) ts->reason = TS_CONVERGED_ITS;
4163362cd11cSLisandro Dalcin   }
4164d763cef2SBarry Smith   PetscFunctionReturn(0);
4165d763cef2SBarry Smith }
4166d763cef2SBarry Smith 
41677cbde773SLisandro Dalcin /*@
41687cbde773SLisandro Dalcin    TSEvaluateWLTE - Evaluate the weighted local truncation error norm
41697cbde773SLisandro Dalcin    at the end of a time step with a given order of accuracy.
41707cbde773SLisandro Dalcin 
41717cbde773SLisandro Dalcin    Collective on TS
41727cbde773SLisandro Dalcin 
41737cbde773SLisandro Dalcin    Input Arguments:
41747cbde773SLisandro Dalcin +  ts - time stepping context
41757cbde773SLisandro Dalcin .  wnormtype - norm type, either NORM_2 or NORM_INFINITY
41767cbde773SLisandro Dalcin -  order - optional, desired order for the error evaluation or PETSC_DECIDE
41777cbde773SLisandro Dalcin 
41787cbde773SLisandro Dalcin    Output Arguments:
41797cbde773SLisandro Dalcin +  order - optional, the actual order of the error evaluation
41807cbde773SLisandro Dalcin -  wlte - the weighted local truncation error norm
41817cbde773SLisandro Dalcin 
41827cbde773SLisandro Dalcin    Level: advanced
41837cbde773SLisandro Dalcin 
41847cbde773SLisandro Dalcin    Notes:
41857cbde773SLisandro Dalcin    If the timestepper cannot evaluate the error in a particular step
41867cbde773SLisandro Dalcin    (eg. in the first step or restart steps after event handling),
41877cbde773SLisandro Dalcin    this routine returns wlte=-1.0 .
41887cbde773SLisandro Dalcin 
41897cbde773SLisandro Dalcin .seealso: TSStep(), TSAdapt, TSErrorWeightedNorm()
41907cbde773SLisandro Dalcin @*/
41917cbde773SLisandro Dalcin PetscErrorCode TSEvaluateWLTE(TS ts,NormType wnormtype,PetscInt *order,PetscReal *wlte)
41927cbde773SLisandro Dalcin {
41937cbde773SLisandro Dalcin   PetscErrorCode ierr;
41947cbde773SLisandro Dalcin 
41957cbde773SLisandro Dalcin   PetscFunctionBegin;
41967cbde773SLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
41977cbde773SLisandro Dalcin   PetscValidType(ts,1);
41987cbde773SLisandro Dalcin   PetscValidLogicalCollectiveEnum(ts,wnormtype,4);
41997cbde773SLisandro Dalcin   if (order) PetscValidIntPointer(order,3);
42007cbde773SLisandro Dalcin   if (order) PetscValidLogicalCollectiveInt(ts,*order,3);
42017cbde773SLisandro Dalcin   PetscValidRealPointer(wlte,4);
42027cbde773SLisandro Dalcin   if (wnormtype != NORM_2 && wnormtype != NORM_INFINITY) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"No support for norm type %s",NormTypes[wnormtype]);
42037cbde773SLisandro Dalcin   if (!ts->ops->evaluatewlte) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"TSEvaluateWLTE not implemented for type '%s'",((PetscObject)ts)->type_name);
42047cbde773SLisandro Dalcin   ierr = (*ts->ops->evaluatewlte)(ts,wnormtype,order,wlte);CHKERRQ(ierr);
42057cbde773SLisandro Dalcin   PetscFunctionReturn(0);
42067cbde773SLisandro Dalcin }
42077cbde773SLisandro Dalcin 
420805175c85SJed Brown /*@
420905175c85SJed Brown    TSEvaluateStep - Evaluate the solution at the end of a time step with a given order of accuracy.
421005175c85SJed Brown 
42111c3436cfSJed Brown    Collective on TS
421205175c85SJed Brown 
421305175c85SJed Brown    Input Arguments:
42141c3436cfSJed Brown +  ts - time stepping context
42151c3436cfSJed Brown .  order - desired order of accuracy
42160298fd71SBarry Smith -  done - whether the step was evaluated at this order (pass NULL to generate an error if not available)
421705175c85SJed Brown 
421805175c85SJed Brown    Output Arguments:
42190910c330SBarry Smith .  U - state at the end of the current step
422005175c85SJed Brown 
422105175c85SJed Brown    Level: advanced
422205175c85SJed Brown 
4223108c343cSJed Brown    Notes:
4224108c343cSJed Brown    This function cannot be called until all stages have been evaluated.
4225108c343cSJed 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.
4226108c343cSJed Brown 
42271c3436cfSJed Brown .seealso: TSStep(), TSAdapt
422805175c85SJed Brown @*/
42290910c330SBarry Smith PetscErrorCode TSEvaluateStep(TS ts,PetscInt order,Vec U,PetscBool *done)
423005175c85SJed Brown {
423105175c85SJed Brown   PetscErrorCode ierr;
423205175c85SJed Brown 
423305175c85SJed Brown   PetscFunctionBegin;
423405175c85SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
423505175c85SJed Brown   PetscValidType(ts,1);
42360910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
4237ce94432eSBarry Smith   if (!ts->ops->evaluatestep) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"TSEvaluateStep not implemented for type '%s'",((PetscObject)ts)->type_name);
42380910c330SBarry Smith   ierr = (*ts->ops->evaluatestep)(ts,order,U,done);CHKERRQ(ierr);
423905175c85SJed Brown   PetscFunctionReturn(0);
424005175c85SJed Brown }
424105175c85SJed Brown 
4242b1cb36f3SHong Zhang /*@
4243b1cb36f3SHong Zhang    TSForwardCostIntegral - Evaluate the cost integral in the forward run.
4244b1cb36f3SHong Zhang 
4245b1cb36f3SHong Zhang    Collective on TS
4246b1cb36f3SHong Zhang 
4247b1cb36f3SHong Zhang    Input Arguments:
4248b1cb36f3SHong Zhang .  ts - time stepping context
4249b1cb36f3SHong Zhang 
4250b1cb36f3SHong Zhang    Level: advanced
4251b1cb36f3SHong Zhang 
4252b1cb36f3SHong Zhang    Notes:
4253b1cb36f3SHong Zhang    This function cannot be called until TSStep() has been completed.
4254b1cb36f3SHong Zhang 
4255b1cb36f3SHong Zhang .seealso: TSSolve(), TSAdjointCostIntegral()
4256b1cb36f3SHong Zhang @*/
4257b1cb36f3SHong Zhang PetscErrorCode TSForwardCostIntegral(TS ts)
4258b1cb36f3SHong Zhang {
4259b1cb36f3SHong Zhang   PetscErrorCode ierr;
4260b1cb36f3SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4261b1cb36f3SHong 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);
4262b1cb36f3SHong Zhang   ierr = (*ts->ops->forwardintegral)(ts);CHKERRQ(ierr);
4263b1cb36f3SHong Zhang   PetscFunctionReturn(0);
4264b1cb36f3SHong Zhang }
4265d67e68b7SBarry Smith 
4266d763cef2SBarry Smith /*@
4267d763cef2SBarry Smith    TSSolve - Steps the requested number of timesteps.
4268d763cef2SBarry Smith 
4269d763cef2SBarry Smith    Collective on TS
4270d763cef2SBarry Smith 
4271d763cef2SBarry Smith    Input Parameter:
4272d763cef2SBarry Smith +  ts - the TS context obtained from TSCreate()
427363e21af5SBarry Smith -  u - the solution vector  (can be null if TSSetSolution() was used and TSSetExactFinalTime(ts,TS_EXACTFINALTIME_MATCHSTEP) was not used,
427463e21af5SBarry Smith                              otherwise must contain the initial conditions and will contain the solution at the final requested time
42755a3a76d0SJed Brown 
4276d763cef2SBarry Smith    Level: beginner
4277d763cef2SBarry Smith 
42785a3a76d0SJed Brown    Notes:
42795a3a76d0SJed Brown    The final time returned by this function may be different from the time of the internally
42805a3a76d0SJed Brown    held state accessible by TSGetSolution() and TSGetTime() because the method may have
42815a3a76d0SJed Brown    stepped over the final time.
42825a3a76d0SJed Brown 
4283d763cef2SBarry Smith .keywords: TS, timestep, solve
4284d763cef2SBarry Smith 
428563e21af5SBarry Smith .seealso: TSCreate(), TSSetSolution(), TSStep(), TSGetTime(), TSGetSolveTime()
4286d763cef2SBarry Smith @*/
4287cc708dedSBarry Smith PetscErrorCode TSSolve(TS ts,Vec u)
4288d763cef2SBarry Smith {
4289b06615a5SLisandro Dalcin   Vec               solution;
4290d763cef2SBarry Smith   PetscErrorCode    ierr;
4291d763cef2SBarry Smith 
4292d763cef2SBarry Smith   PetscFunctionBegin;
4293d763cef2SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4294f2c2a1b9SBarry Smith   if (u) PetscValidHeaderSpecific(u,VEC_CLASSID,2);
4295feed9e9dSBarry Smith 
429649354f04SShri 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 */
4297b06615a5SLisandro Dalcin     PetscValidHeaderSpecific(u,VEC_CLASSID,2);
42980910c330SBarry Smith     if (!ts->vec_sol || u == ts->vec_sol) {
4299b06615a5SLisandro Dalcin       ierr = VecDuplicate(u,&solution);CHKERRQ(ierr);
4300b06615a5SLisandro Dalcin       ierr = TSSetSolution(ts,solution);CHKERRQ(ierr);
4301b06615a5SLisandro Dalcin       ierr = VecDestroy(&solution);CHKERRQ(ierr); /* grant ownership */
43025a3a76d0SJed Brown     }
43030910c330SBarry Smith     ierr = VecCopy(u,ts->vec_sol);CHKERRQ(ierr);
4304715f1b00SHong Zhang     if (ts->forward_solve) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"Sensitivity analysis does not support the mode TS_EXACTFINALTIME_INTERPOLATE");
4305bbd56ea5SKarl Rupp   } else if (u) {
43060910c330SBarry Smith     ierr = TSSetSolution(ts,u);CHKERRQ(ierr);
43075a3a76d0SJed Brown   }
4308b5d403baSSean Farley   ierr = TSSetUp(ts);CHKERRQ(ierr);
430968bece0bSHong Zhang   ierr = TSTrajectorySetUp(ts->trajectory,ts);CHKERRQ(ierr);
4310a6772fa2SLisandro Dalcin 
4311a6772fa2SLisandro 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()");
4312a6772fa2SLisandro 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");
4313a6772fa2SLisandro Dalcin 
4314715f1b00SHong Zhang   if (ts->forward_solve) {
4315715f1b00SHong Zhang     ierr = TSForwardSetUp(ts);CHKERRQ(ierr);
4316715f1b00SHong Zhang   }
4317715f1b00SHong Zhang 
4318e7069c78SShri   /* reset number of steps only when the step is not restarted. ARKIMEX
4319715f1b00SHong Zhang      restarts the step after an event. Resetting these counters in such case causes
4320e7069c78SShri      TSTrajectory to incorrectly save the output files
4321e7069c78SShri   */
4322715f1b00SHong Zhang   /* reset time step and iteration counters */
43232808aa04SLisandro Dalcin 
43242808aa04SLisandro Dalcin   if (!ts->steps) {
43255ef26d82SJed Brown     ts->ksp_its           = 0;
43265ef26d82SJed Brown     ts->snes_its          = 0;
4327c610991cSLisandro Dalcin     ts->num_snes_failures = 0;
4328c610991cSLisandro Dalcin     ts->reject            = 0;
43292808aa04SLisandro Dalcin     ts->steprestart       = PETSC_TRUE;
43302808aa04SLisandro Dalcin     ts->steprollback      = PETSC_FALSE;
43312808aa04SLisandro Dalcin   }
4332193ac0bcSJed Brown   ts->reason = TS_CONVERGED_ITERATING;
4333193ac0bcSJed Brown 
4334ce1779c8SBarry Smith   ierr = TSViewFromOptions(ts,NULL,"-ts_view_pre");CHKERRQ(ierr);
4335f05ece33SBarry Smith 
4336193ac0bcSJed Brown   if (ts->ops->solve) { /* This private interface is transitional and should be removed when all implementations are updated. */
4337193ac0bcSJed Brown     ierr = (*ts->ops->solve)(ts);CHKERRQ(ierr);
4338a6772fa2SLisandro Dalcin     if (u) {ierr = VecCopy(ts->vec_sol,u);CHKERRQ(ierr);}
4339cc708dedSBarry Smith     ts->solvetime = ts->ptime;
4340a6772fa2SLisandro Dalcin     solution = ts->vec_sol;
4341be5899b3SLisandro Dalcin   } else { /* Step the requested number of timesteps. */
4342db4deed7SKarl Rupp     if (ts->steps >= ts->max_steps) ts->reason = TS_CONVERGED_ITS;
4343db4deed7SKarl Rupp     else if (ts->ptime >= ts->max_time) ts->reason = TS_CONVERGED_TIME;
4344e7069c78SShri 
43452808aa04SLisandro Dalcin     if (!ts->steps) {
43462808aa04SLisandro Dalcin       ierr = TSTrajectorySet(ts->trajectory,ts,ts->steps,ts->ptime,ts->vec_sol);CHKERRQ(ierr);
43476427ac75SLisandro Dalcin       ierr = TSEventInitialize(ts->event,ts,ts->ptime,ts->vec_sol);CHKERRQ(ierr);
43482808aa04SLisandro Dalcin     }
43496427ac75SLisandro Dalcin 
4350e1a7a14fSJed Brown     while (!ts->reason) {
43512808aa04SLisandro Dalcin       ierr = TSMonitor(ts,ts->steps,ts->ptime,ts->vec_sol);CHKERRQ(ierr);
43529687d888SLisandro Dalcin       if (!ts->steprollback) {
43539687d888SLisandro Dalcin         ierr = TSPreStep(ts);CHKERRQ(ierr);
43549687d888SLisandro Dalcin       }
4355193ac0bcSJed Brown       ierr = TSStep(ts);CHKERRQ(ierr);
4356e783b05fSHong 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. */
4357b1cb36f3SHong Zhang         ierr = TSForwardCostIntegral(ts);CHKERRQ(ierr);
4358b1cb36f3SHong Zhang       }
4359715f1b00SHong Zhang       if (!ts->steprollback && ts->forward_solve) { /* compute forward sensitivities before event handling because postevent() may change RHS and jump conditions may have to be applied */
4360715f1b00SHong Zhang         ierr = TSForwardStep(ts);CHKERRQ(ierr);
4361715f1b00SHong Zhang       }
436210b82f12SShri Abhyankar       ierr = TSPostEvaluate(ts);CHKERRQ(ierr);
4363e783b05fSHong 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. */
4364e783b05fSHong Zhang       if (!ts->steprollback) {
43652808aa04SLisandro Dalcin         ierr = TSTrajectorySet(ts->trajectory,ts,ts->steps,ts->ptime,ts->vec_sol);CHKERRQ(ierr);
43661eda64f1SShri Abhyankar         ierr = TSPostStep(ts);CHKERRQ(ierr);
4367aeb4809dSShri Abhyankar       }
4368193ac0bcSJed Brown     }
43692808aa04SLisandro Dalcin     ierr = TSMonitor(ts,ts->steps,ts->ptime,ts->vec_sol);CHKERRQ(ierr);
43706427ac75SLisandro Dalcin 
437149354f04SShri Abhyankar     if (ts->exact_final_time == TS_EXACTFINALTIME_INTERPOLATE && ts->ptime > ts->max_time) {
43720910c330SBarry Smith       ierr = TSInterpolate(ts,ts->max_time,u);CHKERRQ(ierr);
4373cc708dedSBarry Smith       ts->solvetime = ts->max_time;
4374b06615a5SLisandro Dalcin       solution = u;
437563e21af5SBarry Smith       ierr = TSMonitor(ts,-1,ts->solvetime,solution);CHKERRQ(ierr);
43760574a7fbSJed Brown     } else {
4377ad6bc421SBarry Smith       if (u) {ierr = VecCopy(ts->vec_sol,u);CHKERRQ(ierr);}
4378cc708dedSBarry Smith       ts->solvetime = ts->ptime;
4379b06615a5SLisandro Dalcin       solution = ts->vec_sol;
43800574a7fbSJed Brown     }
4381193ac0bcSJed Brown   }
4382d2daff3dSHong Zhang 
4383ce1779c8SBarry Smith   ierr = TSViewFromOptions(ts,NULL,"-ts_view");CHKERRQ(ierr);
438463e21af5SBarry Smith   ierr = VecViewFromOptions(solution,NULL,"-ts_view_solution");CHKERRQ(ierr);
438556f85f32SBarry Smith   ierr = PetscObjectSAWsBlock((PetscObject)ts);CHKERRQ(ierr);
4386ef222394SBarry Smith   if (ts->adjoint_solve) {
4387ef222394SBarry Smith     ierr = TSAdjointSolve(ts);CHKERRQ(ierr);
43882b0a91c0SBarry Smith   }
4389d763cef2SBarry Smith   PetscFunctionReturn(0);
4390d763cef2SBarry Smith }
4391d763cef2SBarry Smith 
4392b1cb36f3SHong Zhang /*@
4393b1cb36f3SHong Zhang  TSAdjointCostIntegral - Evaluate the cost integral in the adjoint run.
4394b1cb36f3SHong Zhang 
4395b1cb36f3SHong Zhang  Collective on TS
4396b1cb36f3SHong Zhang 
4397b1cb36f3SHong Zhang  Input Arguments:
4398b1cb36f3SHong Zhang  .  ts - time stepping context
4399b1cb36f3SHong Zhang 
4400b1cb36f3SHong Zhang  Level: advanced
4401b1cb36f3SHong Zhang 
4402b1cb36f3SHong Zhang  Notes:
4403b1cb36f3SHong Zhang  This function cannot be called until TSAdjointStep() has been completed.
4404b1cb36f3SHong Zhang 
4405b1cb36f3SHong Zhang  .seealso: TSAdjointSolve(), TSAdjointStep
4406b1cb36f3SHong Zhang  @*/
4407b1cb36f3SHong Zhang PetscErrorCode TSAdjointCostIntegral(TS ts)
4408b1cb36f3SHong Zhang {
4409b1cb36f3SHong Zhang     PetscErrorCode ierr;
4410b1cb36f3SHong Zhang     PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4411b1cb36f3SHong 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);
4412b1cb36f3SHong Zhang     ierr = (*ts->ops->adjointintegral)(ts);CHKERRQ(ierr);
4413b1cb36f3SHong Zhang     PetscFunctionReturn(0);
4414b1cb36f3SHong Zhang }
4415b1cb36f3SHong Zhang 
4416c88f2d44SBarry Smith /*@
4417c88f2d44SBarry Smith    TSAdjointSolve - Solves the discrete ajoint problem for an ODE/DAE
4418c88f2d44SBarry Smith 
4419c88f2d44SBarry Smith    Collective on TS
4420c88f2d44SBarry Smith 
4421c88f2d44SBarry Smith    Input Parameter:
44222c39e106SBarry Smith .  ts - the TS context obtained from TSCreate()
4423c88f2d44SBarry Smith 
4424e87fd094SBarry Smith    Options Database:
4425715f1b00SHong Zhang . -ts_adjoint_view_solution <viewerinfo> - views the first gradient with respect to the initial values
4426e87fd094SBarry Smith 
4427c88f2d44SBarry Smith    Level: intermediate
4428c88f2d44SBarry Smith 
4429c88f2d44SBarry Smith    Notes:
4430c88f2d44SBarry Smith    This must be called after a call to TSSolve() that solves the forward problem
4431c88f2d44SBarry Smith 
443273b18844SBarry Smith    By default this will integrate back to the initial time, one can use TSAdjointSetSteps() to step back to a later time
443373b18844SBarry Smith 
4434c88f2d44SBarry Smith .keywords: TS, timestep, solve
4435c88f2d44SBarry Smith 
4436b957a604SHong Zhang .seealso: TSCreate(), TSSetCostGradients(), TSSetSolution(), TSAdjointStep()
4437c88f2d44SBarry Smith @*/
44382c39e106SBarry Smith PetscErrorCode TSAdjointSolve(TS ts)
4439c88f2d44SBarry Smith {
4440c88f2d44SBarry Smith   PetscErrorCode    ierr;
4441c88f2d44SBarry Smith 
4442c88f2d44SBarry Smith   PetscFunctionBegin;
4443c88f2d44SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4444c88f2d44SBarry Smith   ierr = TSAdjointSetUp(ts);CHKERRQ(ierr);
444568bece0bSHong Zhang 
4446c88f2d44SBarry Smith   /* reset time step and iteration counters */
44472808aa04SLisandro Dalcin   ts->adjoint_steps     = 0;
4448c88f2d44SBarry Smith   ts->ksp_its           = 0;
4449c88f2d44SBarry Smith   ts->snes_its          = 0;
4450c88f2d44SBarry Smith   ts->num_snes_failures = 0;
4451c88f2d44SBarry Smith   ts->reject            = 0;
4452c88f2d44SBarry Smith   ts->reason            = TS_CONVERGED_ITERATING;
4453c88f2d44SBarry Smith 
44542808aa04SLisandro Dalcin   if (!ts->adjoint_max_steps) ts->adjoint_max_steps = ts->steps;
44552808aa04SLisandro Dalcin   if (ts->adjoint_steps >= ts->adjoint_max_steps) ts->reason = TS_CONVERGED_ITS;
4456c88f2d44SBarry Smith 
4457c88f2d44SBarry Smith   while (!ts->reason) {
44582808aa04SLisandro Dalcin     ierr = TSTrajectoryGet(ts->trajectory,ts,ts->steps,&ts->ptime);CHKERRQ(ierr);
44592808aa04SLisandro Dalcin     ierr = TSAdjointMonitor(ts,ts->steps,ts->ptime,ts->vec_sol,ts->numcost,ts->vecs_sensi,ts->vecs_sensip);CHKERRQ(ierr);
44606427ac75SLisandro Dalcin     ierr = TSAdjointEventHandler(ts);CHKERRQ(ierr);
4461616946c1SHong Zhang     ierr = TSAdjointStep(ts);CHKERRQ(ierr);
4462b1cb36f3SHong Zhang     if (ts->vec_costintegral && !ts->costintegralfwd) {
4463b1cb36f3SHong Zhang       ierr = TSAdjointCostIntegral(ts);CHKERRQ(ierr);
4464b1cb36f3SHong Zhang     }
4465c88f2d44SBarry Smith   }
44662808aa04SLisandro Dalcin   ierr = TSTrajectoryGet(ts->trajectory,ts,ts->steps,&ts->ptime);CHKERRQ(ierr);
44672808aa04SLisandro Dalcin   ierr = TSAdjointMonitor(ts,ts->steps,ts->ptime,ts->vec_sol,ts->numcost,ts->vecs_sensi,ts->vecs_sensip);CHKERRQ(ierr);
4468c88f2d44SBarry Smith   ts->solvetime = ts->ptime;
4469e210cd0eSHong Zhang   ierr = TSTrajectoryViewFromOptions(ts->trajectory,NULL,"-ts_trajectory_view");CHKERRQ(ierr);
4470685405a1SBarry Smith   ierr = VecViewFromOptions(ts->vecs_sensi[0],(PetscObject) ts, "-ts_adjoint_view_solution");CHKERRQ(ierr);
4471c88f2d44SBarry Smith   PetscFunctionReturn(0);
4472c88f2d44SBarry Smith }
4473c88f2d44SBarry Smith 
44747db568b7SBarry Smith /*@C
4475228d79bcSJed Brown    TSMonitor - Runs all user-provided monitor routines set using TSMonitorSet()
4476228d79bcSJed Brown 
4477228d79bcSJed Brown    Collective on TS
4478228d79bcSJed Brown 
4479228d79bcSJed Brown    Input Parameters:
4480228d79bcSJed Brown +  ts - time stepping context obtained from TSCreate()
4481228d79bcSJed Brown .  step - step number that has just completed
4482228d79bcSJed Brown .  ptime - model time of the state
44830910c330SBarry Smith -  u - state at the current model time
4484228d79bcSJed Brown 
4485228d79bcSJed Brown    Notes:
44867db568b7SBarry Smith    TSMonitor() is typically used automatically within the time stepping implementations.
44877db568b7SBarry Smith    Users would almost never call this routine directly.
4488228d79bcSJed Brown 
448963e21af5SBarry Smith    A step of -1 indicates that the monitor is being called on a solution obtained by interpolating from computed solutions
449063e21af5SBarry Smith 
44917db568b7SBarry Smith    Level: developer
4492228d79bcSJed Brown 
4493228d79bcSJed Brown .keywords: TS, timestep
4494228d79bcSJed Brown @*/
44950910c330SBarry Smith PetscErrorCode TSMonitor(TS ts,PetscInt step,PetscReal ptime,Vec u)
4496d763cef2SBarry Smith {
4497d6152f81SLisandro Dalcin   DM             dm;
4498a7cc72afSBarry Smith   PetscInt       i,n = ts->numbermonitors;
4499d6152f81SLisandro Dalcin   PetscErrorCode ierr;
4500d763cef2SBarry Smith 
4501d763cef2SBarry Smith   PetscFunctionBegin;
4502b06615a5SLisandro Dalcin   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4503b06615a5SLisandro Dalcin   PetscValidHeaderSpecific(u,VEC_CLASSID,4);
4504d6152f81SLisandro Dalcin 
4505d6152f81SLisandro Dalcin   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
4506d6152f81SLisandro Dalcin   ierr = DMSetOutputSequenceNumber(dm,step,ptime);CHKERRQ(ierr);
4507d6152f81SLisandro Dalcin 
45085edff71fSBarry Smith   ierr = VecLockPush(u);CHKERRQ(ierr);
4509d763cef2SBarry Smith   for (i=0; i<n; i++) {
45100910c330SBarry Smith     ierr = (*ts->monitor[i])(ts,step,ptime,u,ts->monitorcontext[i]);CHKERRQ(ierr);
4511d763cef2SBarry Smith   }
45125edff71fSBarry Smith   ierr = VecLockPop(u);CHKERRQ(ierr);
4513d763cef2SBarry Smith   PetscFunctionReturn(0);
4514d763cef2SBarry Smith }
4515d763cef2SBarry Smith 
45167db568b7SBarry Smith /*@C
45179110b2e7SHong Zhang    TSAdjointMonitor - Runs all user-provided adjoint monitor routines set using TSAdjointMonitorSet()
45189110b2e7SHong Zhang 
45199110b2e7SHong Zhang    Collective on TS
45209110b2e7SHong Zhang 
45219110b2e7SHong Zhang    Input Parameters:
45229110b2e7SHong Zhang +  ts - time stepping context obtained from TSCreate()
45239110b2e7SHong Zhang .  step - step number that has just completed
45249110b2e7SHong Zhang .  ptime - model time of the state
45259110b2e7SHong Zhang .  u - state at the current model time
45269110b2e7SHong Zhang .  numcost - number of cost functions (dimension of lambda  or mu)
45279110b2e7SHong Zhang .  lambda - vectors containing the gradients of the cost functions with respect to the ODE/DAE solution variables
45289110b2e7SHong Zhang -  mu - vectors containing the gradients of the cost functions with respect to the problem parameters
45299110b2e7SHong Zhang 
45309110b2e7SHong Zhang    Notes:
45317db568b7SBarry Smith    TSAdjointMonitor() is typically used automatically within the time stepping implementations.
45327db568b7SBarry Smith    Users would almost never call this routine directly.
45339110b2e7SHong Zhang 
45347db568b7SBarry Smith    Level: developer
45359110b2e7SHong Zhang 
45369110b2e7SHong Zhang .keywords: TS, timestep
45379110b2e7SHong Zhang @*/
45389110b2e7SHong Zhang PetscErrorCode TSAdjointMonitor(TS ts,PetscInt step,PetscReal ptime,Vec u,PetscInt numcost,Vec *lambda, Vec *mu)
45399110b2e7SHong Zhang {
45409110b2e7SHong Zhang   PetscErrorCode ierr;
45419110b2e7SHong Zhang   PetscInt       i,n = ts->numberadjointmonitors;
45429110b2e7SHong Zhang 
45439110b2e7SHong Zhang   PetscFunctionBegin;
45449110b2e7SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
45459110b2e7SHong Zhang   PetscValidHeaderSpecific(u,VEC_CLASSID,4);
45469110b2e7SHong Zhang   ierr = VecLockPush(u);CHKERRQ(ierr);
45479110b2e7SHong Zhang   for (i=0; i<n; i++) {
45489110b2e7SHong Zhang     ierr = (*ts->adjointmonitor[i])(ts,step,ptime,u,numcost,lambda,mu,ts->adjointmonitorcontext[i]);CHKERRQ(ierr);
45499110b2e7SHong Zhang   }
45509110b2e7SHong Zhang   ierr = VecLockPop(u);CHKERRQ(ierr);
45519110b2e7SHong Zhang   PetscFunctionReturn(0);
45529110b2e7SHong Zhang }
45539110b2e7SHong Zhang 
4554d763cef2SBarry Smith /* ------------------------------------------------------------------------*/
4555d763cef2SBarry Smith /*@C
45567db568b7SBarry Smith    TSMonitorLGCtxCreate - Creates a TSMonitorLGCtx context for use with
4557a9f9c1f6SBarry Smith    TS to monitor the solution process graphically in various ways
4558d763cef2SBarry Smith 
4559d763cef2SBarry Smith    Collective on TS
4560d763cef2SBarry Smith 
4561d763cef2SBarry Smith    Input Parameters:
4562d763cef2SBarry Smith +  host - the X display to open, or null for the local machine
4563d763cef2SBarry Smith .  label - the title to put in the title bar
45647c922b88SBarry Smith .  x, y - the screen coordinates of the upper left coordinate of the window
4565a9f9c1f6SBarry Smith .  m, n - the screen width and height in pixels
4566a9f9c1f6SBarry Smith -  howoften - if positive then determines the frequency of the plotting, if -1 then only at the final time
4567d763cef2SBarry Smith 
4568d763cef2SBarry Smith    Output Parameter:
45690b039ecaSBarry Smith .  ctx - the context
4570d763cef2SBarry Smith 
4571d763cef2SBarry Smith    Options Database Key:
45724f09c107SBarry Smith +  -ts_monitor_lg_timestep - automatically sets line graph monitor
45737db568b7SBarry Smith .  -ts_monitor_lg_solution - monitor the solution (or certain values of the solution by calling TSMonitorLGSetDisplayVariables() or TSMonitorLGCtxSetDisplayVariables())
45747db568b7SBarry Smith .  -ts_monitor_lg_error -  monitor the error
45757db568b7SBarry Smith .  -ts_monitor_lg_ksp_iterations - monitor the number of KSP iterations needed for each timestep
45767db568b7SBarry Smith .  -ts_monitor_lg_snes_iterations - monitor the number of SNES iterations needed for each timestep
4577b6fe0379SLisandro Dalcin -  -lg_use_markers <true,false> - mark the data points (at each time step) on the plot; default is true
4578d763cef2SBarry Smith 
4579d763cef2SBarry Smith    Notes:
4580a9f9c1f6SBarry Smith    Use TSMonitorLGCtxDestroy() to destroy.
4581d763cef2SBarry Smith 
45827db568b7SBarry Smith    One can provide a function that transforms the solution before plotting it with TSMonitorLGCtxSetTransform() or TSMonitorLGSetTransform()
45837db568b7SBarry Smith 
45847db568b7SBarry 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
45857db568b7SBarry 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
45867db568b7SBarry Smith    as the first argument.
45877db568b7SBarry Smith 
45887db568b7SBarry Smith    One can control the names displayed for each solution or error variable with TSMonitorLGCtxSetVariableNames() or TSMonitorLGSetVariableNames()
45897db568b7SBarry Smith 
4590d763cef2SBarry Smith    Level: intermediate
4591d763cef2SBarry Smith 
45927db568b7SBarry Smith .keywords: TS, monitor, line graph, residual
4593d763cef2SBarry Smith 
45947db568b7SBarry Smith .seealso: TSMonitorLGTimeStep(), TSMonitorSet(), TSMonitorLGSolution(), TSMonitorLGError(), TSMonitorDefault(), VecView(),
45957db568b7SBarry Smith            TSMonitorLGCtxCreate(), TSMonitorLGCtxSetVariableNames(), TSMonitorLGCtxGetVariableNames(),
45967db568b7SBarry Smith            TSMonitorLGSetVariableNames(), TSMonitorLGGetVariableNames(), TSMonitorLGSetDisplayVariables(), TSMonitorLGCtxSetDisplayVariables(),
45977db568b7SBarry Smith            TSMonitorLGCtxSetTransform(), TSMonitorLGSetTransform(), TSMonitorLGError(), TSMonitorLGSNESIterations(), TSMonitorLGKSPIterations(),
45987db568b7SBarry Smith            TSMonitorEnvelopeCtxCreate(), TSMonitorEnvelopeGetBounds(), TSMonitorEnvelopeCtxDestroy(), TSMonitorEnvelop()
45997c922b88SBarry Smith 
4600d763cef2SBarry Smith @*/
4601a9f9c1f6SBarry Smith PetscErrorCode  TSMonitorLGCtxCreate(MPI_Comm comm,const char host[],const char label[],int x,int y,int m,int n,PetscInt howoften,TSMonitorLGCtx *ctx)
4602d763cef2SBarry Smith {
46037f52daa2SLisandro Dalcin   PetscDraw      draw;
4604dfbe8321SBarry Smith   PetscErrorCode ierr;
4605d763cef2SBarry Smith 
4606d763cef2SBarry Smith   PetscFunctionBegin;
4607b00a9115SJed Brown   ierr = PetscNew(ctx);CHKERRQ(ierr);
46087f52daa2SLisandro Dalcin   ierr = PetscDrawCreate(comm,host,label,x,y,m,n,&draw);CHKERRQ(ierr);
46097f52daa2SLisandro Dalcin   ierr = PetscDrawSetFromOptions(draw);CHKERRQ(ierr);
46107f52daa2SLisandro Dalcin   ierr = PetscDrawLGCreate(draw,1,&(*ctx)->lg);CHKERRQ(ierr);
4611287de1a7SBarry Smith   ierr = PetscDrawLGSetFromOptions((*ctx)->lg);CHKERRQ(ierr);
46127f52daa2SLisandro Dalcin   ierr = PetscDrawDestroy(&draw);CHKERRQ(ierr);
4613a9f9c1f6SBarry Smith   (*ctx)->howoften = howoften;
4614d763cef2SBarry Smith   PetscFunctionReturn(0);
4615d763cef2SBarry Smith }
4616d763cef2SBarry Smith 
4617b06615a5SLisandro Dalcin PetscErrorCode TSMonitorLGTimeStep(TS ts,PetscInt step,PetscReal ptime,Vec v,void *monctx)
4618d763cef2SBarry Smith {
46190b039ecaSBarry Smith   TSMonitorLGCtx ctx = (TSMonitorLGCtx) monctx;
4620c32365f1SBarry Smith   PetscReal      x   = ptime,y;
4621dfbe8321SBarry Smith   PetscErrorCode ierr;
4622d763cef2SBarry Smith 
4623d763cef2SBarry Smith   PetscFunctionBegin;
462463e21af5SBarry Smith   if (step < 0) PetscFunctionReturn(0); /* -1 indicates an interpolated solution */
4625b06615a5SLisandro Dalcin   if (!step) {
4626a9f9c1f6SBarry Smith     PetscDrawAxis axis;
4627a9f9c1f6SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
46286934998bSLisandro Dalcin     ierr = PetscDrawAxisSetLabels(axis,"Timestep as function of time","Time","Time Step");CHKERRQ(ierr);
4629a9f9c1f6SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
4630a9f9c1f6SBarry Smith   }
4631c32365f1SBarry Smith   ierr = TSGetTimeStep(ts,&y);CHKERRQ(ierr);
463208763aebSBarry Smith   y =  PetscLog10Real(y);
46330b039ecaSBarry Smith   ierr = PetscDrawLGAddPoint(ctx->lg,&x,&y);CHKERRQ(ierr);
4634b06615a5SLisandro Dalcin   if (((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason)) {
46350b039ecaSBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
46366934998bSLisandro Dalcin     ierr = PetscDrawLGSave(ctx->lg);CHKERRQ(ierr);
46373923b477SBarry Smith   }
4638d763cef2SBarry Smith   PetscFunctionReturn(0);
4639d763cef2SBarry Smith }
4640d763cef2SBarry Smith 
4641d763cef2SBarry Smith /*@C
4642a9f9c1f6SBarry Smith    TSMonitorLGCtxDestroy - Destroys a line graph context that was created
4643a9f9c1f6SBarry Smith    with TSMonitorLGCtxCreate().
4644d763cef2SBarry Smith 
46450b039ecaSBarry Smith    Collective on TSMonitorLGCtx
4646d763cef2SBarry Smith 
4647d763cef2SBarry Smith    Input Parameter:
46480b039ecaSBarry Smith .  ctx - the monitor context
4649d763cef2SBarry Smith 
4650d763cef2SBarry Smith    Level: intermediate
4651d763cef2SBarry Smith 
4652d763cef2SBarry Smith .keywords: TS, monitor, line graph, destroy
4653d763cef2SBarry Smith 
46544f09c107SBarry Smith .seealso: TSMonitorLGCtxCreate(),  TSMonitorSet(), TSMonitorLGTimeStep();
4655d763cef2SBarry Smith @*/
4656a9f9c1f6SBarry Smith PetscErrorCode  TSMonitorLGCtxDestroy(TSMonitorLGCtx *ctx)
4657d763cef2SBarry Smith {
4658dfbe8321SBarry Smith   PetscErrorCode ierr;
4659d763cef2SBarry Smith 
4660d763cef2SBarry Smith   PetscFunctionBegin;
46617684fa3eSBarry Smith   if ((*ctx)->transformdestroy) {
46627684fa3eSBarry Smith     ierr = ((*ctx)->transformdestroy)((*ctx)->transformctx);CHKERRQ(ierr);
46637684fa3eSBarry Smith   }
46640b039ecaSBarry Smith   ierr = PetscDrawLGDestroy(&(*ctx)->lg);CHKERRQ(ierr);
466531152f8aSBarry Smith   ierr = PetscStrArrayDestroy(&(*ctx)->names);CHKERRQ(ierr);
4666387f4636SBarry Smith   ierr = PetscStrArrayDestroy(&(*ctx)->displaynames);CHKERRQ(ierr);
4667387f4636SBarry Smith   ierr = PetscFree((*ctx)->displayvariables);CHKERRQ(ierr);
4668387f4636SBarry Smith   ierr = PetscFree((*ctx)->displayvalues);CHKERRQ(ierr);
46690b039ecaSBarry Smith   ierr = PetscFree(*ctx);CHKERRQ(ierr);
4670d763cef2SBarry Smith   PetscFunctionReturn(0);
4671d763cef2SBarry Smith }
4672d763cef2SBarry Smith 
4673d763cef2SBarry Smith /*@
4674b8123daeSJed Brown    TSGetTime - Gets the time of the most recently completed step.
4675d763cef2SBarry Smith 
4676d763cef2SBarry Smith    Not Collective
4677d763cef2SBarry Smith 
4678d763cef2SBarry Smith    Input Parameter:
4679d763cef2SBarry Smith .  ts - the TS context obtained from TSCreate()
4680d763cef2SBarry Smith 
4681d763cef2SBarry Smith    Output Parameter:
468263e21af5SBarry Smith .  t  - the current time. This time may not corresponds to the final time set with TSSetDuration(), use TSGetSolveTime().
4683d763cef2SBarry Smith 
4684d763cef2SBarry Smith    Level: beginner
4685d763cef2SBarry Smith 
4686b8123daeSJed Brown    Note:
4687b8123daeSJed Brown    When called during time step evaluation (e.g. during residual evaluation or via hooks set using TSSetPreStep(),
46889be3e283SDebojyoti Ghosh    TSSetPreStage(), TSSetPostStage(), or TSSetPostStep()), the time is the time at the start of the step being evaluated.
4689b8123daeSJed Brown 
469063e21af5SBarry Smith .seealso: TSSetInitialTimeStep(), TSGetTimeStep(), TSGetSolveTime()
4691d763cef2SBarry Smith 
4692d763cef2SBarry Smith .keywords: TS, get, time
4693d763cef2SBarry Smith @*/
46947087cfbeSBarry Smith PetscErrorCode  TSGetTime(TS ts,PetscReal *t)
4695d763cef2SBarry Smith {
4696d763cef2SBarry Smith   PetscFunctionBegin;
46970700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4698f7cf8827SBarry Smith   PetscValidRealPointer(t,2);
4699d763cef2SBarry Smith   *t = ts->ptime;
4700d763cef2SBarry Smith   PetscFunctionReturn(0);
4701d763cef2SBarry Smith }
4702d763cef2SBarry Smith 
4703e5e524a1SHong Zhang /*@
4704e5e524a1SHong Zhang    TSGetPrevTime - Gets the starting time of the previously completed step.
4705e5e524a1SHong Zhang 
4706e5e524a1SHong Zhang    Not Collective
4707e5e524a1SHong Zhang 
4708e5e524a1SHong Zhang    Input Parameter:
4709e5e524a1SHong Zhang .  ts - the TS context obtained from TSCreate()
4710e5e524a1SHong Zhang 
4711e5e524a1SHong Zhang    Output Parameter:
4712e5e524a1SHong Zhang .  t  - the previous time
4713e5e524a1SHong Zhang 
4714e5e524a1SHong Zhang    Level: beginner
4715e5e524a1SHong Zhang 
4716e5e524a1SHong Zhang .seealso: TSSetInitialTimeStep(), TSGetTimeStep()
4717e5e524a1SHong Zhang 
4718e5e524a1SHong Zhang .keywords: TS, get, time
4719e5e524a1SHong Zhang @*/
4720e5e524a1SHong Zhang PetscErrorCode  TSGetPrevTime(TS ts,PetscReal *t)
4721e5e524a1SHong Zhang {
4722e5e524a1SHong Zhang   PetscFunctionBegin;
4723e5e524a1SHong Zhang   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4724e5e524a1SHong Zhang   PetscValidRealPointer(t,2);
4725e5e524a1SHong Zhang   *t = ts->ptime_prev;
4726e5e524a1SHong Zhang   PetscFunctionReturn(0);
4727e5e524a1SHong Zhang }
4728e5e524a1SHong Zhang 
47296a4d4014SLisandro Dalcin /*@
47306a4d4014SLisandro Dalcin    TSSetTime - Allows one to reset the time.
47316a4d4014SLisandro Dalcin 
47323f9fe445SBarry Smith    Logically Collective on TS
47336a4d4014SLisandro Dalcin 
47346a4d4014SLisandro Dalcin    Input Parameters:
47356a4d4014SLisandro Dalcin +  ts - the TS context obtained from TSCreate()
47366a4d4014SLisandro Dalcin -  time - the time
47376a4d4014SLisandro Dalcin 
47386a4d4014SLisandro Dalcin    Level: intermediate
47396a4d4014SLisandro Dalcin 
47406a4d4014SLisandro Dalcin .seealso: TSGetTime(), TSSetDuration()
47416a4d4014SLisandro Dalcin 
47426a4d4014SLisandro Dalcin .keywords: TS, set, time
47436a4d4014SLisandro Dalcin @*/
47447087cfbeSBarry Smith PetscErrorCode  TSSetTime(TS ts, PetscReal t)
47456a4d4014SLisandro Dalcin {
47466a4d4014SLisandro Dalcin   PetscFunctionBegin;
47470700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4748c5eb9154SBarry Smith   PetscValidLogicalCollectiveReal(ts,t,2);
47496a4d4014SLisandro Dalcin   ts->ptime = t;
47506a4d4014SLisandro Dalcin   PetscFunctionReturn(0);
47516a4d4014SLisandro Dalcin }
47526a4d4014SLisandro Dalcin 
4753d763cef2SBarry Smith /*@C
4754d763cef2SBarry Smith    TSSetOptionsPrefix - Sets the prefix used for searching for all
4755d763cef2SBarry Smith    TS options in the database.
4756d763cef2SBarry Smith 
47573f9fe445SBarry Smith    Logically Collective on TS
4758d763cef2SBarry Smith 
4759d763cef2SBarry Smith    Input Parameter:
4760d763cef2SBarry Smith +  ts     - The TS context
4761d763cef2SBarry Smith -  prefix - The prefix to prepend to all option names
4762d763cef2SBarry Smith 
4763d763cef2SBarry Smith    Notes:
4764d763cef2SBarry Smith    A hyphen (-) must NOT be given at the beginning of the prefix name.
4765d763cef2SBarry Smith    The first character of all runtime options is AUTOMATICALLY the
4766d763cef2SBarry Smith    hyphen.
4767d763cef2SBarry Smith 
4768d763cef2SBarry Smith    Level: advanced
4769d763cef2SBarry Smith 
4770d763cef2SBarry Smith .keywords: TS, set, options, prefix, database
4771d763cef2SBarry Smith 
4772d763cef2SBarry Smith .seealso: TSSetFromOptions()
4773d763cef2SBarry Smith 
4774d763cef2SBarry Smith @*/
47757087cfbeSBarry Smith PetscErrorCode  TSSetOptionsPrefix(TS ts,const char prefix[])
4776d763cef2SBarry Smith {
4777dfbe8321SBarry Smith   PetscErrorCode ierr;
4778089b2837SJed Brown   SNES           snes;
4779d763cef2SBarry Smith 
4780d763cef2SBarry Smith   PetscFunctionBegin;
47810700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4782d763cef2SBarry Smith   ierr = PetscObjectSetOptionsPrefix((PetscObject)ts,prefix);CHKERRQ(ierr);
4783089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
4784089b2837SJed Brown   ierr = SNESSetOptionsPrefix(snes,prefix);CHKERRQ(ierr);
4785d763cef2SBarry Smith   PetscFunctionReturn(0);
4786d763cef2SBarry Smith }
4787d763cef2SBarry Smith 
4788d763cef2SBarry Smith /*@C
4789d763cef2SBarry Smith    TSAppendOptionsPrefix - Appends to the prefix used for searching for all
4790d763cef2SBarry Smith    TS options in the database.
4791d763cef2SBarry Smith 
47923f9fe445SBarry Smith    Logically Collective on TS
4793d763cef2SBarry Smith 
4794d763cef2SBarry Smith    Input Parameter:
4795d763cef2SBarry Smith +  ts     - The TS context
4796d763cef2SBarry Smith -  prefix - The prefix to prepend to all option names
4797d763cef2SBarry Smith 
4798d763cef2SBarry Smith    Notes:
4799d763cef2SBarry Smith    A hyphen (-) must NOT be given at the beginning of the prefix name.
4800d763cef2SBarry Smith    The first character of all runtime options is AUTOMATICALLY the
4801d763cef2SBarry Smith    hyphen.
4802d763cef2SBarry Smith 
4803d763cef2SBarry Smith    Level: advanced
4804d763cef2SBarry Smith 
4805d763cef2SBarry Smith .keywords: TS, append, options, prefix, database
4806d763cef2SBarry Smith 
4807d763cef2SBarry Smith .seealso: TSGetOptionsPrefix()
4808d763cef2SBarry Smith 
4809d763cef2SBarry Smith @*/
48107087cfbeSBarry Smith PetscErrorCode  TSAppendOptionsPrefix(TS ts,const char prefix[])
4811d763cef2SBarry Smith {
4812dfbe8321SBarry Smith   PetscErrorCode ierr;
4813089b2837SJed Brown   SNES           snes;
4814d763cef2SBarry Smith 
4815d763cef2SBarry Smith   PetscFunctionBegin;
48160700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
4817d763cef2SBarry Smith   ierr = PetscObjectAppendOptionsPrefix((PetscObject)ts,prefix);CHKERRQ(ierr);
4818089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
4819089b2837SJed Brown   ierr = SNESAppendOptionsPrefix(snes,prefix);CHKERRQ(ierr);
4820d763cef2SBarry Smith   PetscFunctionReturn(0);
4821d763cef2SBarry Smith }
4822d763cef2SBarry Smith 
4823d763cef2SBarry Smith /*@C
4824d763cef2SBarry Smith    TSGetOptionsPrefix - Sets the prefix used for searching for all
4825d763cef2SBarry Smith    TS options in the database.
4826d763cef2SBarry Smith 
4827d763cef2SBarry Smith    Not Collective
4828d763cef2SBarry Smith 
4829d763cef2SBarry Smith    Input Parameter:
4830d763cef2SBarry Smith .  ts - The TS context
4831d763cef2SBarry Smith 
4832d763cef2SBarry Smith    Output Parameter:
4833d763cef2SBarry Smith .  prefix - A pointer to the prefix string used
4834d763cef2SBarry Smith 
4835d763cef2SBarry Smith    Notes: On the fortran side, the user should pass in a string 'prifix' of
4836d763cef2SBarry Smith    sufficient length to hold the prefix.
4837d763cef2SBarry Smith 
4838d763cef2SBarry Smith    Level: intermediate
4839d763cef2SBarry Smith 
4840d763cef2SBarry Smith .keywords: TS, get, options, prefix, database
4841d763cef2SBarry Smith 
4842d763cef2SBarry Smith .seealso: TSAppendOptionsPrefix()
4843d763cef2SBarry Smith @*/
48447087cfbeSBarry Smith PetscErrorCode  TSGetOptionsPrefix(TS ts,const char *prefix[])
4845d763cef2SBarry Smith {
4846dfbe8321SBarry Smith   PetscErrorCode ierr;
4847d763cef2SBarry Smith 
4848d763cef2SBarry Smith   PetscFunctionBegin;
48490700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
48504482741eSBarry Smith   PetscValidPointer(prefix,2);
4851d763cef2SBarry Smith   ierr = PetscObjectGetOptionsPrefix((PetscObject)ts,prefix);CHKERRQ(ierr);
4852d763cef2SBarry Smith   PetscFunctionReturn(0);
4853d763cef2SBarry Smith }
4854d763cef2SBarry Smith 
4855d763cef2SBarry Smith /*@C
4856d763cef2SBarry Smith    TSGetRHSJacobian - Returns the Jacobian J at the present timestep.
4857d763cef2SBarry Smith 
4858d763cef2SBarry Smith    Not Collective, but parallel objects are returned if TS is parallel
4859d763cef2SBarry Smith 
4860d763cef2SBarry Smith    Input Parameter:
4861d763cef2SBarry Smith .  ts  - The TS context obtained from TSCreate()
4862d763cef2SBarry Smith 
4863d763cef2SBarry Smith    Output Parameters:
4864e4357dc4SBarry Smith +  Amat - The (approximate) Jacobian J of G, where U_t = G(U,t)  (or NULL)
4865e4357dc4SBarry Smith .  Pmat - The matrix from which the preconditioner is constructed, usually the same as Amat  (or NULL)
4866e4357dc4SBarry Smith .  func - Function to compute the Jacobian of the RHS  (or NULL)
4867e4357dc4SBarry Smith -  ctx - User-defined context for Jacobian evaluation routine  (or NULL)
4868d763cef2SBarry Smith 
48690298fd71SBarry Smith    Notes: You can pass in NULL for any return argument you do not need.
4870d763cef2SBarry Smith 
4871d763cef2SBarry Smith    Level: intermediate
4872d763cef2SBarry Smith 
487380275a0aSLisandro Dalcin .seealso: TSGetTimeStep(), TSGetMatrices(), TSGetTime(), TSGetStepNumber()
4874d763cef2SBarry Smith 
4875d763cef2SBarry Smith .keywords: TS, timestep, get, matrix, Jacobian
4876d763cef2SBarry Smith @*/
4877e4357dc4SBarry Smith PetscErrorCode  TSGetRHSJacobian(TS ts,Mat *Amat,Mat *Pmat,TSRHSJacobian *func,void **ctx)
4878d763cef2SBarry Smith {
4879089b2837SJed Brown   PetscErrorCode ierr;
488024989b8cSPeter Brune   DM             dm;
4881089b2837SJed Brown 
4882d763cef2SBarry Smith   PetscFunctionBegin;
488323a57915SBarry Smith   if (Amat || Pmat) {
488423a57915SBarry Smith     SNES snes;
4885089b2837SJed Brown     ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
488623a57915SBarry Smith     ierr = SNESSetUpMatrices(snes);CHKERRQ(ierr);
4887e4357dc4SBarry Smith     ierr = SNESGetJacobian(snes,Amat,Pmat,NULL,NULL);CHKERRQ(ierr);
488823a57915SBarry Smith   }
488924989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
489024989b8cSPeter Brune   ierr = DMTSGetRHSJacobian(dm,func,ctx);CHKERRQ(ierr);
4891d763cef2SBarry Smith   PetscFunctionReturn(0);
4892d763cef2SBarry Smith }
4893d763cef2SBarry Smith 
48942eca1d9cSJed Brown /*@C
48952eca1d9cSJed Brown    TSGetIJacobian - Returns the implicit Jacobian at the present timestep.
48962eca1d9cSJed Brown 
48972eca1d9cSJed Brown    Not Collective, but parallel objects are returned if TS is parallel
48982eca1d9cSJed Brown 
48992eca1d9cSJed Brown    Input Parameter:
49002eca1d9cSJed Brown .  ts  - The TS context obtained from TSCreate()
49012eca1d9cSJed Brown 
49022eca1d9cSJed Brown    Output Parameters:
4903e4357dc4SBarry Smith +  Amat  - The (approximate) Jacobian of F(t,U,U_t)
4904e4357dc4SBarry Smith .  Pmat - The matrix from which the preconditioner is constructed, often the same as Amat
49052eca1d9cSJed Brown .  f   - The function to compute the matrices
49062eca1d9cSJed Brown - ctx - User-defined context for Jacobian evaluation routine
49072eca1d9cSJed Brown 
49080298fd71SBarry Smith    Notes: You can pass in NULL for any return argument you do not need.
49092eca1d9cSJed Brown 
49102eca1d9cSJed Brown    Level: advanced
49112eca1d9cSJed Brown 
491280275a0aSLisandro Dalcin .seealso: TSGetTimeStep(), TSGetRHSJacobian(), TSGetMatrices(), TSGetTime(), TSGetStepNumber()
49132eca1d9cSJed Brown 
49142eca1d9cSJed Brown .keywords: TS, timestep, get, matrix, Jacobian
49152eca1d9cSJed Brown @*/
4916e4357dc4SBarry Smith PetscErrorCode  TSGetIJacobian(TS ts,Mat *Amat,Mat *Pmat,TSIJacobian *f,void **ctx)
49172eca1d9cSJed Brown {
4918089b2837SJed Brown   PetscErrorCode ierr;
491924989b8cSPeter Brune   DM             dm;
49200910c330SBarry Smith 
49212eca1d9cSJed Brown   PetscFunctionBegin;
4922c0aab802Sstefano_zampini   if (Amat || Pmat) {
4923c0aab802Sstefano_zampini     SNES snes;
4924089b2837SJed Brown     ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
4925f7d39f7aSBarry Smith     ierr = SNESSetUpMatrices(snes);CHKERRQ(ierr);
4926e4357dc4SBarry Smith     ierr = SNESGetJacobian(snes,Amat,Pmat,NULL,NULL);CHKERRQ(ierr);
4927c0aab802Sstefano_zampini   }
492824989b8cSPeter Brune   ierr = TSGetDM(ts,&dm);CHKERRQ(ierr);
492924989b8cSPeter Brune   ierr = DMTSGetIJacobian(dm,f,ctx);CHKERRQ(ierr);
49302eca1d9cSJed Brown   PetscFunctionReturn(0);
49312eca1d9cSJed Brown }
49322eca1d9cSJed Brown 
49331713a123SBarry Smith /*@C
493483a4ac43SBarry Smith    TSMonitorDrawSolution - Monitors progress of the TS solvers by calling
49351713a123SBarry Smith    VecView() for the solution at each timestep
49361713a123SBarry Smith 
49371713a123SBarry Smith    Collective on TS
49381713a123SBarry Smith 
49391713a123SBarry Smith    Input Parameters:
49401713a123SBarry Smith +  ts - the TS context
49411713a123SBarry Smith .  step - current time-step
4942142b95e3SSatish Balay .  ptime - current time
49430298fd71SBarry Smith -  dummy - either a viewer or NULL
49441713a123SBarry Smith 
494599fdda47SBarry Smith    Options Database:
494699fdda47SBarry Smith .   -ts_monitor_draw_solution_initial - show initial solution as well as current solution
494799fdda47SBarry Smith 
4948387f4636SBarry 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
494999fdda47SBarry Smith        will look bad
495099fdda47SBarry Smith 
49511713a123SBarry Smith    Level: intermediate
49521713a123SBarry Smith 
49531713a123SBarry Smith .keywords: TS,  vector, monitor, view
49541713a123SBarry Smith 
4955a6570f20SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
49561713a123SBarry Smith @*/
49570910c330SBarry Smith PetscErrorCode  TSMonitorDrawSolution(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
49581713a123SBarry Smith {
4959dfbe8321SBarry Smith   PetscErrorCode   ierr;
496083a4ac43SBarry Smith   TSMonitorDrawCtx ictx = (TSMonitorDrawCtx)dummy;
4961473a3ab2SBarry Smith   PetscDraw        draw;
49621713a123SBarry Smith 
49631713a123SBarry Smith   PetscFunctionBegin;
49646083293cSBarry Smith   if (!step && ictx->showinitial) {
49656083293cSBarry Smith     if (!ictx->initialsolution) {
49660910c330SBarry Smith       ierr = VecDuplicate(u,&ictx->initialsolution);CHKERRQ(ierr);
49671713a123SBarry Smith     }
49680910c330SBarry Smith     ierr = VecCopy(u,ictx->initialsolution);CHKERRQ(ierr);
49696083293cSBarry Smith   }
4970b06615a5SLisandro Dalcin   if (!(((ictx->howoften > 0) && (!(step % ictx->howoften))) || ((ictx->howoften == -1) && ts->reason))) PetscFunctionReturn(0);
49710dcf80beSBarry Smith 
49726083293cSBarry Smith   if (ictx->showinitial) {
49736083293cSBarry Smith     PetscReal pause;
49746083293cSBarry Smith     ierr = PetscViewerDrawGetPause(ictx->viewer,&pause);CHKERRQ(ierr);
49756083293cSBarry Smith     ierr = PetscViewerDrawSetPause(ictx->viewer,0.0);CHKERRQ(ierr);
49766083293cSBarry Smith     ierr = VecView(ictx->initialsolution,ictx->viewer);CHKERRQ(ierr);
49776083293cSBarry Smith     ierr = PetscViewerDrawSetPause(ictx->viewer,pause);CHKERRQ(ierr);
49786083293cSBarry Smith     ierr = PetscViewerDrawSetHold(ictx->viewer,PETSC_TRUE);CHKERRQ(ierr);
49796083293cSBarry Smith   }
49800910c330SBarry Smith   ierr = VecView(u,ictx->viewer);CHKERRQ(ierr);
4981473a3ab2SBarry Smith   if (ictx->showtimestepandtime) {
498251fa3d41SBarry Smith     PetscReal xl,yl,xr,yr,h;
4983473a3ab2SBarry Smith     char      time[32];
4984473a3ab2SBarry Smith 
4985473a3ab2SBarry Smith     ierr = PetscViewerDrawGetDraw(ictx->viewer,0,&draw);CHKERRQ(ierr);
498685b1acf9SLisandro Dalcin     ierr = PetscSNPrintf(time,32,"Timestep %d Time %g",(int)step,(double)ptime);CHKERRQ(ierr);
4987473a3ab2SBarry Smith     ierr = PetscDrawGetCoordinates(draw,&xl,&yl,&xr,&yr);CHKERRQ(ierr);
4988473a3ab2SBarry Smith     h    = yl + .95*(yr - yl);
498951fa3d41SBarry Smith     ierr = PetscDrawStringCentered(draw,.5*(xl+xr),h,PETSC_DRAW_BLACK,time);CHKERRQ(ierr);
4990473a3ab2SBarry Smith     ierr = PetscDrawFlush(draw);CHKERRQ(ierr);
4991473a3ab2SBarry Smith   }
4992473a3ab2SBarry Smith 
49936083293cSBarry Smith   if (ictx->showinitial) {
49946083293cSBarry Smith     ierr = PetscViewerDrawSetHold(ictx->viewer,PETSC_FALSE);CHKERRQ(ierr);
49956083293cSBarry Smith   }
49961713a123SBarry Smith   PetscFunctionReturn(0);
49971713a123SBarry Smith }
49981713a123SBarry Smith 
49999110b2e7SHong Zhang /*@C
50009110b2e7SHong Zhang    TSAdjointMonitorDrawSensi - Monitors progress of the adjoint TS solvers by calling
50019110b2e7SHong Zhang    VecView() for the sensitivities to initial states at each timestep
50029110b2e7SHong Zhang 
50039110b2e7SHong Zhang    Collective on TS
50049110b2e7SHong Zhang 
50059110b2e7SHong Zhang    Input Parameters:
50069110b2e7SHong Zhang +  ts - the TS context
50079110b2e7SHong Zhang .  step - current time-step
50089110b2e7SHong Zhang .  ptime - current time
50099110b2e7SHong Zhang .  u - current state
50109110b2e7SHong Zhang .  numcost - number of cost functions
50119110b2e7SHong Zhang .  lambda - sensitivities to initial conditions
50129110b2e7SHong Zhang .  mu - sensitivities to parameters
50139110b2e7SHong Zhang -  dummy - either a viewer or NULL
50149110b2e7SHong Zhang 
50159110b2e7SHong Zhang    Level: intermediate
50169110b2e7SHong Zhang 
50179110b2e7SHong Zhang .keywords: TS,  vector, adjoint, monitor, view
50189110b2e7SHong Zhang 
50199110b2e7SHong Zhang .seealso: TSAdjointMonitorSet(), TSAdjointMonitorDefault(), VecView()
50209110b2e7SHong Zhang @*/
50219110b2e7SHong Zhang PetscErrorCode  TSAdjointMonitorDrawSensi(TS ts,PetscInt step,PetscReal ptime,Vec u,PetscInt numcost,Vec *lambda,Vec *mu,void *dummy)
50229110b2e7SHong Zhang {
50239110b2e7SHong Zhang   PetscErrorCode   ierr;
50249110b2e7SHong Zhang   TSMonitorDrawCtx ictx = (TSMonitorDrawCtx)dummy;
50259110b2e7SHong Zhang   PetscDraw        draw;
5026a0046e2cSSatish Balay   PetscReal        xl,yl,xr,yr,h;
5027a0046e2cSSatish Balay   char             time[32];
50289110b2e7SHong Zhang 
50299110b2e7SHong Zhang   PetscFunctionBegin;
50309110b2e7SHong Zhang   if (!(((ictx->howoften > 0) && (!(step % ictx->howoften))) || ((ictx->howoften == -1) && ts->reason))) PetscFunctionReturn(0);
50319110b2e7SHong Zhang 
50329110b2e7SHong Zhang   ierr = VecView(lambda[0],ictx->viewer);CHKERRQ(ierr);
50339110b2e7SHong Zhang   ierr = PetscViewerDrawGetDraw(ictx->viewer,0,&draw);CHKERRQ(ierr);
50349110b2e7SHong Zhang   ierr = PetscSNPrintf(time,32,"Timestep %d Time %g",(int)step,(double)ptime);CHKERRQ(ierr);
50359110b2e7SHong Zhang   ierr = PetscDrawGetCoordinates(draw,&xl,&yl,&xr,&yr);CHKERRQ(ierr);
50369110b2e7SHong Zhang   h    = yl + .95*(yr - yl);
50379110b2e7SHong Zhang   ierr = PetscDrawStringCentered(draw,.5*(xl+xr),h,PETSC_DRAW_BLACK,time);CHKERRQ(ierr);
50389110b2e7SHong Zhang   ierr = PetscDrawFlush(draw);CHKERRQ(ierr);
50399110b2e7SHong Zhang   PetscFunctionReturn(0);
50409110b2e7SHong Zhang }
50419110b2e7SHong Zhang 
50422d5ee99bSBarry Smith /*@C
50432d5ee99bSBarry Smith    TSMonitorDrawSolutionPhase - Monitors progress of the TS solvers by plotting the solution as a phase diagram
50442d5ee99bSBarry Smith 
50452d5ee99bSBarry Smith    Collective on TS
50462d5ee99bSBarry Smith 
50472d5ee99bSBarry Smith    Input Parameters:
50482d5ee99bSBarry Smith +  ts - the TS context
50492d5ee99bSBarry Smith .  step - current time-step
50502d5ee99bSBarry Smith .  ptime - current time
50512d5ee99bSBarry Smith -  dummy - either a viewer or NULL
50522d5ee99bSBarry Smith 
50532d5ee99bSBarry Smith    Level: intermediate
50542d5ee99bSBarry Smith 
50552d5ee99bSBarry Smith .keywords: TS,  vector, monitor, view
50562d5ee99bSBarry Smith 
50572d5ee99bSBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
50582d5ee99bSBarry Smith @*/
50592d5ee99bSBarry Smith PetscErrorCode  TSMonitorDrawSolutionPhase(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
50602d5ee99bSBarry Smith {
50612d5ee99bSBarry Smith   PetscErrorCode    ierr;
50622d5ee99bSBarry Smith   TSMonitorDrawCtx  ictx = (TSMonitorDrawCtx)dummy;
50632d5ee99bSBarry Smith   PetscDraw         draw;
50646934998bSLisandro Dalcin   PetscDrawAxis     axis;
50652d5ee99bSBarry Smith   PetscInt          n;
50662d5ee99bSBarry Smith   PetscMPIInt       size;
50676934998bSLisandro Dalcin   PetscReal         U0,U1,xl,yl,xr,yr,h;
50682d5ee99bSBarry Smith   char              time[32];
50692d5ee99bSBarry Smith   const PetscScalar *U;
50702d5ee99bSBarry Smith 
50712d5ee99bSBarry Smith   PetscFunctionBegin;
50726934998bSLisandro Dalcin   ierr = MPI_Comm_size(PetscObjectComm((PetscObject)ts),&size);CHKERRQ(ierr);
50736934998bSLisandro Dalcin   if (size != 1) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"Only allowed for sequential runs");
50742d5ee99bSBarry Smith   ierr = VecGetSize(u,&n);CHKERRQ(ierr);
50756934998bSLisandro Dalcin   if (n != 2) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"Only for ODEs with two unknowns");
50762d5ee99bSBarry Smith 
50772d5ee99bSBarry Smith   ierr = PetscViewerDrawGetDraw(ictx->viewer,0,&draw);CHKERRQ(ierr);
50786934998bSLisandro Dalcin   ierr = PetscViewerDrawGetDrawAxis(ictx->viewer,0,&axis);CHKERRQ(ierr);
50796934998bSLisandro Dalcin   ierr = PetscDrawAxisGetLimits(axis,&xl,&xr,&yl,&yr);CHKERRQ(ierr);
50806934998bSLisandro Dalcin   if (!step) {
50816934998bSLisandro Dalcin     ierr = PetscDrawClear(draw);CHKERRQ(ierr);
50826934998bSLisandro Dalcin     ierr = PetscDrawAxisDraw(axis);CHKERRQ(ierr);
50836934998bSLisandro Dalcin   }
50842d5ee99bSBarry Smith 
50852d5ee99bSBarry Smith   ierr = VecGetArrayRead(u,&U);CHKERRQ(ierr);
50866934998bSLisandro Dalcin   U0 = PetscRealPart(U[0]);
50876934998bSLisandro Dalcin   U1 = PetscRealPart(U[1]);
5088a4494fc1SBarry Smith   ierr = VecRestoreArrayRead(u,&U);CHKERRQ(ierr);
50896934998bSLisandro Dalcin   if ((U0 < xl) || (U1 < yl) || (U0 > xr) || (U1 > yr)) PetscFunctionReturn(0);
50902d5ee99bSBarry Smith 
50916934998bSLisandro Dalcin   ierr = PetscDrawCollectiveBegin(draw);CHKERRQ(ierr);
50926934998bSLisandro Dalcin   ierr = PetscDrawPoint(draw,U0,U1,PETSC_DRAW_BLACK);CHKERRQ(ierr);
50932d5ee99bSBarry Smith   if (ictx->showtimestepandtime) {
50944b363babSBarry Smith     ierr = PetscDrawGetCoordinates(draw,&xl,&yl,&xr,&yr);CHKERRQ(ierr);
509585b1acf9SLisandro Dalcin     ierr = PetscSNPrintf(time,32,"Timestep %d Time %g",(int)step,(double)ptime);CHKERRQ(ierr);
50962d5ee99bSBarry Smith     h    = yl + .95*(yr - yl);
509751fa3d41SBarry Smith     ierr = PetscDrawStringCentered(draw,.5*(xl+xr),h,PETSC_DRAW_BLACK,time);CHKERRQ(ierr);
50982d5ee99bSBarry Smith   }
50996934998bSLisandro Dalcin   ierr = PetscDrawCollectiveEnd(draw);CHKERRQ(ierr);
51002d5ee99bSBarry Smith   ierr = PetscDrawFlush(draw);CHKERRQ(ierr);
510156d62c8fSLisandro Dalcin   ierr = PetscDrawPause(draw);CHKERRQ(ierr);
51026934998bSLisandro Dalcin   ierr = PetscDrawSave(draw);CHKERRQ(ierr);
51032d5ee99bSBarry Smith   PetscFunctionReturn(0);
51042d5ee99bSBarry Smith }
51052d5ee99bSBarry Smith 
51066083293cSBarry Smith /*@C
510783a4ac43SBarry Smith    TSMonitorDrawCtxDestroy - Destroys the monitor context for TSMonitorDrawSolution()
51086083293cSBarry Smith 
51096083293cSBarry Smith    Collective on TS
51106083293cSBarry Smith 
51116083293cSBarry Smith    Input Parameters:
51126083293cSBarry Smith .    ctx - the monitor context
51136083293cSBarry Smith 
51146083293cSBarry Smith    Level: intermediate
51156083293cSBarry Smith 
51166083293cSBarry Smith .keywords: TS,  vector, monitor, view
51176083293cSBarry Smith 
511883a4ac43SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorDrawSolution(), TSMonitorDrawError()
51196083293cSBarry Smith @*/
512083a4ac43SBarry Smith PetscErrorCode  TSMonitorDrawCtxDestroy(TSMonitorDrawCtx *ictx)
51216083293cSBarry Smith {
51226083293cSBarry Smith   PetscErrorCode ierr;
51236083293cSBarry Smith 
51246083293cSBarry Smith   PetscFunctionBegin;
512583a4ac43SBarry Smith   ierr = PetscViewerDestroy(&(*ictx)->viewer);CHKERRQ(ierr);
512683a4ac43SBarry Smith   ierr = VecDestroy(&(*ictx)->initialsolution);CHKERRQ(ierr);
512783a4ac43SBarry Smith   ierr = PetscFree(*ictx);CHKERRQ(ierr);
51286083293cSBarry Smith   PetscFunctionReturn(0);
51296083293cSBarry Smith }
51306083293cSBarry Smith 
51316083293cSBarry Smith /*@C
513283a4ac43SBarry Smith    TSMonitorDrawCtxCreate - Creates the monitor context for TSMonitorDrawCtx
51336083293cSBarry Smith 
51346083293cSBarry Smith    Collective on TS
51356083293cSBarry Smith 
51366083293cSBarry Smith    Input Parameter:
51376083293cSBarry Smith .    ts - time-step context
51386083293cSBarry Smith 
51396083293cSBarry Smith    Output Patameter:
51406083293cSBarry Smith .    ctx - the monitor context
51416083293cSBarry Smith 
514299fdda47SBarry Smith    Options Database:
514399fdda47SBarry Smith .   -ts_monitor_draw_solution_initial - show initial solution as well as current solution
514499fdda47SBarry Smith 
51456083293cSBarry Smith    Level: intermediate
51466083293cSBarry Smith 
51476083293cSBarry Smith .keywords: TS,  vector, monitor, view
51486083293cSBarry Smith 
514983a4ac43SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorDrawCtx()
51506083293cSBarry Smith @*/
515183a4ac43SBarry Smith PetscErrorCode  TSMonitorDrawCtxCreate(MPI_Comm comm,const char host[],const char label[],int x,int y,int m,int n,PetscInt howoften,TSMonitorDrawCtx *ctx)
51526083293cSBarry Smith {
51536083293cSBarry Smith   PetscErrorCode   ierr;
51546083293cSBarry Smith 
51556083293cSBarry Smith   PetscFunctionBegin;
5156b00a9115SJed Brown   ierr = PetscNew(ctx);CHKERRQ(ierr);
515783a4ac43SBarry Smith   ierr = PetscViewerDrawOpen(comm,host,label,x,y,m,n,&(*ctx)->viewer);CHKERRQ(ierr);
5158e9457bf7SBarry Smith   ierr = PetscViewerSetFromOptions((*ctx)->viewer);CHKERRQ(ierr);
5159bbd56ea5SKarl Rupp 
516083a4ac43SBarry Smith   (*ctx)->howoften    = howoften;
5161473a3ab2SBarry Smith   (*ctx)->showinitial = PETSC_FALSE;
5162c5929fdfSBarry Smith   ierr = PetscOptionsGetBool(NULL,NULL,"-ts_monitor_draw_solution_initial",&(*ctx)->showinitial,NULL);CHKERRQ(ierr);
5163473a3ab2SBarry Smith 
5164473a3ab2SBarry Smith   (*ctx)->showtimestepandtime = PETSC_FALSE;
5165c5929fdfSBarry Smith   ierr = PetscOptionsGetBool(NULL,NULL,"-ts_monitor_draw_solution_show_time",&(*ctx)->showtimestepandtime,NULL);CHKERRQ(ierr);
51666083293cSBarry Smith   PetscFunctionReturn(0);
51676083293cSBarry Smith }
51686083293cSBarry Smith 
51693a471f94SBarry Smith /*@C
517083a4ac43SBarry Smith    TSMonitorDrawError - Monitors progress of the TS solvers by calling
51713a471f94SBarry Smith    VecView() for the error at each timestep
51723a471f94SBarry Smith 
51733a471f94SBarry Smith    Collective on TS
51743a471f94SBarry Smith 
51753a471f94SBarry Smith    Input Parameters:
51763a471f94SBarry Smith +  ts - the TS context
51773a471f94SBarry Smith .  step - current time-step
51783a471f94SBarry Smith .  ptime - current time
51790298fd71SBarry Smith -  dummy - either a viewer or NULL
51803a471f94SBarry Smith 
51813a471f94SBarry Smith    Level: intermediate
51823a471f94SBarry Smith 
51833a471f94SBarry Smith .keywords: TS,  vector, monitor, view
51843a471f94SBarry Smith 
51853a471f94SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
51863a471f94SBarry Smith @*/
51870910c330SBarry Smith PetscErrorCode  TSMonitorDrawError(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
51883a471f94SBarry Smith {
51893a471f94SBarry Smith   PetscErrorCode   ierr;
519083a4ac43SBarry Smith   TSMonitorDrawCtx ctx    = (TSMonitorDrawCtx)dummy;
519183a4ac43SBarry Smith   PetscViewer      viewer = ctx->viewer;
51923a471f94SBarry Smith   Vec              work;
51933a471f94SBarry Smith 
51943a471f94SBarry Smith   PetscFunctionBegin;
5195b06615a5SLisandro Dalcin   if (!(((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason))) PetscFunctionReturn(0);
51960910c330SBarry Smith   ierr = VecDuplicate(u,&work);CHKERRQ(ierr);
51973a471f94SBarry Smith   ierr = TSComputeSolutionFunction(ts,ptime,work);CHKERRQ(ierr);
51980910c330SBarry Smith   ierr = VecAXPY(work,-1.0,u);CHKERRQ(ierr);
51993a471f94SBarry Smith   ierr = VecView(work,viewer);CHKERRQ(ierr);
52003a471f94SBarry Smith   ierr = VecDestroy(&work);CHKERRQ(ierr);
52013a471f94SBarry Smith   PetscFunctionReturn(0);
52023a471f94SBarry Smith }
52033a471f94SBarry Smith 
5204af0996ceSBarry Smith #include <petsc/private/dmimpl.h>
52056c699258SBarry Smith /*@
52062a808120SBarry Smith    TSSetDM - Sets the DM that may be used by some nonlinear solvers or preconditioners under the TS
52076c699258SBarry Smith 
52083f9fe445SBarry Smith    Logically Collective on TS and DM
52096c699258SBarry Smith 
52106c699258SBarry Smith    Input Parameters:
52112a808120SBarry Smith +  ts - the ODE integrator object
52122a808120SBarry Smith -  dm - the dm, cannot be NULL
52136c699258SBarry Smith 
52146c699258SBarry Smith    Level: intermediate
52156c699258SBarry Smith 
52166c699258SBarry Smith .seealso: TSGetDM(), SNESSetDM(), SNESGetDM()
52176c699258SBarry Smith @*/
52187087cfbeSBarry Smith PetscErrorCode  TSSetDM(TS ts,DM dm)
52196c699258SBarry Smith {
52206c699258SBarry Smith   PetscErrorCode ierr;
5221089b2837SJed Brown   SNES           snes;
5222942e3340SBarry Smith   DMTS           tsdm;
52236c699258SBarry Smith 
52246c699258SBarry Smith   PetscFunctionBegin;
52250700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
52262a808120SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,2);
522770663e4aSLisandro Dalcin   ierr = PetscObjectReference((PetscObject)dm);CHKERRQ(ierr);
5228942e3340SBarry Smith   if (ts->dm) {               /* Move the DMTS context over to the new DM unless the new DM already has one */
52292a34c10cSBarry Smith     if (ts->dm->dmts && !dm->dmts) {
5230942e3340SBarry Smith       ierr = DMCopyDMTS(ts->dm,dm);CHKERRQ(ierr);
5231942e3340SBarry Smith       ierr = DMGetDMTS(ts->dm,&tsdm);CHKERRQ(ierr);
523224989b8cSPeter Brune       if (tsdm->originaldm == ts->dm) { /* Grant write privileges to the replacement DM */
523324989b8cSPeter Brune         tsdm->originaldm = dm;
523424989b8cSPeter Brune       }
523524989b8cSPeter Brune     }
52366bf464f9SBarry Smith     ierr = DMDestroy(&ts->dm);CHKERRQ(ierr);
523724989b8cSPeter Brune   }
52386c699258SBarry Smith   ts->dm = dm;
5239bbd56ea5SKarl Rupp 
5240089b2837SJed Brown   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
5241089b2837SJed Brown   ierr = SNESSetDM(snes,dm);CHKERRQ(ierr);
52426c699258SBarry Smith   PetscFunctionReturn(0);
52436c699258SBarry Smith }
52446c699258SBarry Smith 
52456c699258SBarry Smith /*@
52466c699258SBarry Smith    TSGetDM - Gets the DM that may be used by some preconditioners
52476c699258SBarry Smith 
52483f9fe445SBarry Smith    Not Collective
52496c699258SBarry Smith 
52506c699258SBarry Smith    Input Parameter:
52516c699258SBarry Smith . ts - the preconditioner context
52526c699258SBarry Smith 
52536c699258SBarry Smith    Output Parameter:
52546c699258SBarry Smith .  dm - the dm
52556c699258SBarry Smith 
52566c699258SBarry Smith    Level: intermediate
52576c699258SBarry Smith 
52586c699258SBarry Smith .seealso: TSSetDM(), SNESSetDM(), SNESGetDM()
52596c699258SBarry Smith @*/
52607087cfbeSBarry Smith PetscErrorCode  TSGetDM(TS ts,DM *dm)
52616c699258SBarry Smith {
5262496e6a7aSJed Brown   PetscErrorCode ierr;
5263496e6a7aSJed Brown 
52646c699258SBarry Smith   PetscFunctionBegin;
52650700a824SBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5266496e6a7aSJed Brown   if (!ts->dm) {
5267ce94432eSBarry Smith     ierr = DMShellCreate(PetscObjectComm((PetscObject)ts),&ts->dm);CHKERRQ(ierr);
5268496e6a7aSJed Brown     if (ts->snes) {ierr = SNESSetDM(ts->snes,ts->dm);CHKERRQ(ierr);}
5269496e6a7aSJed Brown   }
52706c699258SBarry Smith   *dm = ts->dm;
52716c699258SBarry Smith   PetscFunctionReturn(0);
52726c699258SBarry Smith }
52731713a123SBarry Smith 
52740f5c6efeSJed Brown /*@
52750f5c6efeSJed Brown    SNESTSFormFunction - Function to evaluate nonlinear residual
52760f5c6efeSJed Brown 
52773f9fe445SBarry Smith    Logically Collective on SNES
52780f5c6efeSJed Brown 
52790f5c6efeSJed Brown    Input Parameter:
5280d42a1c89SJed Brown + snes - nonlinear solver
52810910c330SBarry Smith . U - the current state at which to evaluate the residual
5282d42a1c89SJed Brown - ctx - user context, must be a TS
52830f5c6efeSJed Brown 
52840f5c6efeSJed Brown    Output Parameter:
52850f5c6efeSJed Brown . F - the nonlinear residual
52860f5c6efeSJed Brown 
52870f5c6efeSJed Brown    Notes:
52880f5c6efeSJed Brown    This function is not normally called by users and is automatically registered with the SNES used by TS.
52890f5c6efeSJed Brown    It is most frequently passed to MatFDColoringSetFunction().
52900f5c6efeSJed Brown 
52910f5c6efeSJed Brown    Level: advanced
52920f5c6efeSJed Brown 
52930f5c6efeSJed Brown .seealso: SNESSetFunction(), MatFDColoringSetFunction()
52940f5c6efeSJed Brown @*/
52950910c330SBarry Smith PetscErrorCode  SNESTSFormFunction(SNES snes,Vec U,Vec F,void *ctx)
52960f5c6efeSJed Brown {
52970f5c6efeSJed Brown   TS             ts = (TS)ctx;
52980f5c6efeSJed Brown   PetscErrorCode ierr;
52990f5c6efeSJed Brown 
53000f5c6efeSJed Brown   PetscFunctionBegin;
53010f5c6efeSJed Brown   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
53020910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,2);
53030f5c6efeSJed Brown   PetscValidHeaderSpecific(F,VEC_CLASSID,3);
53040f5c6efeSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,4);
53050910c330SBarry Smith   ierr = (ts->ops->snesfunction)(snes,U,F,ts);CHKERRQ(ierr);
53060f5c6efeSJed Brown   PetscFunctionReturn(0);
53070f5c6efeSJed Brown }
53080f5c6efeSJed Brown 
53090f5c6efeSJed Brown /*@
53100f5c6efeSJed Brown    SNESTSFormJacobian - Function to evaluate the Jacobian
53110f5c6efeSJed Brown 
53120f5c6efeSJed Brown    Collective on SNES
53130f5c6efeSJed Brown 
53140f5c6efeSJed Brown    Input Parameter:
53150f5c6efeSJed Brown + snes - nonlinear solver
53160910c330SBarry Smith . U - the current state at which to evaluate the residual
53170f5c6efeSJed Brown - ctx - user context, must be a TS
53180f5c6efeSJed Brown 
53190f5c6efeSJed Brown    Output Parameter:
53200f5c6efeSJed Brown + A - the Jacobian
53210f5c6efeSJed Brown . B - the preconditioning matrix (may be the same as A)
53220f5c6efeSJed Brown - flag - indicates any structure change in the matrix
53230f5c6efeSJed Brown 
53240f5c6efeSJed Brown    Notes:
53250f5c6efeSJed Brown    This function is not normally called by users and is automatically registered with the SNES used by TS.
53260f5c6efeSJed Brown 
53270f5c6efeSJed Brown    Level: developer
53280f5c6efeSJed Brown 
53290f5c6efeSJed Brown .seealso: SNESSetJacobian()
53300f5c6efeSJed Brown @*/
5331d1e9a80fSBarry Smith PetscErrorCode  SNESTSFormJacobian(SNES snes,Vec U,Mat A,Mat B,void *ctx)
53320f5c6efeSJed Brown {
53330f5c6efeSJed Brown   TS             ts = (TS)ctx;
53340f5c6efeSJed Brown   PetscErrorCode ierr;
53350f5c6efeSJed Brown 
53360f5c6efeSJed Brown   PetscFunctionBegin;
53370f5c6efeSJed Brown   PetscValidHeaderSpecific(snes,SNES_CLASSID,1);
53380910c330SBarry Smith   PetscValidHeaderSpecific(U,VEC_CLASSID,2);
53390f5c6efeSJed Brown   PetscValidPointer(A,3);
534094ab13aaSBarry Smith   PetscValidHeaderSpecific(A,MAT_CLASSID,3);
53410f5c6efeSJed Brown   PetscValidPointer(B,4);
534294ab13aaSBarry Smith   PetscValidHeaderSpecific(B,MAT_CLASSID,4);
53430f5c6efeSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,6);
5344d1e9a80fSBarry Smith   ierr = (ts->ops->snesjacobian)(snes,U,A,B,ts);CHKERRQ(ierr);
53450f5c6efeSJed Brown   PetscFunctionReturn(0);
53460f5c6efeSJed Brown }
5347325fc9f4SBarry Smith 
53480e4ef248SJed Brown /*@C
53499ae8fd06SBarry Smith    TSComputeRHSFunctionLinear - Evaluate the right hand side via the user-provided Jacobian, for linear problems Udot = A U only
53500e4ef248SJed Brown 
53510e4ef248SJed Brown    Collective on TS
53520e4ef248SJed Brown 
53530e4ef248SJed Brown    Input Arguments:
53540e4ef248SJed Brown +  ts - time stepping context
53550e4ef248SJed Brown .  t - time at which to evaluate
53560910c330SBarry Smith .  U - state at which to evaluate
53570e4ef248SJed Brown -  ctx - context
53580e4ef248SJed Brown 
53590e4ef248SJed Brown    Output Arguments:
53600e4ef248SJed Brown .  F - right hand side
53610e4ef248SJed Brown 
53620e4ef248SJed Brown    Level: intermediate
53630e4ef248SJed Brown 
53640e4ef248SJed Brown    Notes:
53650e4ef248SJed Brown    This function is intended to be passed to TSSetRHSFunction() to evaluate the right hand side for linear problems.
53660e4ef248SJed Brown    The matrix (and optionally the evaluation context) should be passed to TSSetRHSJacobian().
53670e4ef248SJed Brown 
53680e4ef248SJed Brown .seealso: TSSetRHSFunction(), TSSetRHSJacobian(), TSComputeRHSJacobianConstant()
53690e4ef248SJed Brown @*/
53700910c330SBarry Smith PetscErrorCode TSComputeRHSFunctionLinear(TS ts,PetscReal t,Vec U,Vec F,void *ctx)
53710e4ef248SJed Brown {
53720e4ef248SJed Brown   PetscErrorCode ierr;
53730e4ef248SJed Brown   Mat            Arhs,Brhs;
53740e4ef248SJed Brown 
53750e4ef248SJed Brown   PetscFunctionBegin;
53760e4ef248SJed Brown   ierr = TSGetRHSMats_Private(ts,&Arhs,&Brhs);CHKERRQ(ierr);
5377d1e9a80fSBarry Smith   ierr = TSComputeRHSJacobian(ts,t,U,Arhs,Brhs);CHKERRQ(ierr);
53780910c330SBarry Smith   ierr = MatMult(Arhs,U,F);CHKERRQ(ierr);
53790e4ef248SJed Brown   PetscFunctionReturn(0);
53800e4ef248SJed Brown }
53810e4ef248SJed Brown 
53820e4ef248SJed Brown /*@C
53830e4ef248SJed Brown    TSComputeRHSJacobianConstant - Reuses a Jacobian that is time-independent.
53840e4ef248SJed Brown 
53850e4ef248SJed Brown    Collective on TS
53860e4ef248SJed Brown 
53870e4ef248SJed Brown    Input Arguments:
53880e4ef248SJed Brown +  ts - time stepping context
53890e4ef248SJed Brown .  t - time at which to evaluate
53900910c330SBarry Smith .  U - state at which to evaluate
53910e4ef248SJed Brown -  ctx - context
53920e4ef248SJed Brown 
53930e4ef248SJed Brown    Output Arguments:
53940e4ef248SJed Brown +  A - pointer to operator
53950e4ef248SJed Brown .  B - pointer to preconditioning matrix
53960e4ef248SJed Brown -  flg - matrix structure flag
53970e4ef248SJed Brown 
53980e4ef248SJed Brown    Level: intermediate
53990e4ef248SJed Brown 
54000e4ef248SJed Brown    Notes:
54010e4ef248SJed Brown    This function is intended to be passed to TSSetRHSJacobian() to evaluate the Jacobian for linear time-independent problems.
54020e4ef248SJed Brown 
54030e4ef248SJed Brown .seealso: TSSetRHSFunction(), TSSetRHSJacobian(), TSComputeRHSFunctionLinear()
54040e4ef248SJed Brown @*/
5405d1e9a80fSBarry Smith PetscErrorCode TSComputeRHSJacobianConstant(TS ts,PetscReal t,Vec U,Mat A,Mat B,void *ctx)
54060e4ef248SJed Brown {
54070e4ef248SJed Brown   PetscFunctionBegin;
54080e4ef248SJed Brown   PetscFunctionReturn(0);
54090e4ef248SJed Brown }
54100e4ef248SJed Brown 
54110026cea9SSean Farley /*@C
54120026cea9SSean Farley    TSComputeIFunctionLinear - Evaluate the left hand side via the user-provided Jacobian, for linear problems only
54130026cea9SSean Farley 
54140026cea9SSean Farley    Collective on TS
54150026cea9SSean Farley 
54160026cea9SSean Farley    Input Arguments:
54170026cea9SSean Farley +  ts - time stepping context
54180026cea9SSean Farley .  t - time at which to evaluate
54190910c330SBarry Smith .  U - state at which to evaluate
54200910c330SBarry Smith .  Udot - time derivative of state vector
54210026cea9SSean Farley -  ctx - context
54220026cea9SSean Farley 
54230026cea9SSean Farley    Output Arguments:
54240026cea9SSean Farley .  F - left hand side
54250026cea9SSean Farley 
54260026cea9SSean Farley    Level: intermediate
54270026cea9SSean Farley 
54280026cea9SSean Farley    Notes:
54290910c330SBarry 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
54300026cea9SSean Farley    user is required to write their own TSComputeIFunction.
54310026cea9SSean Farley    This function is intended to be passed to TSSetIFunction() to evaluate the left hand side for linear problems.
54320026cea9SSean Farley    The matrix (and optionally the evaluation context) should be passed to TSSetIJacobian().
54330026cea9SSean Farley 
54349ae8fd06SBarry Smith    Note that using this function is NOT equivalent to using TSComputeRHSFunctionLinear() since that solves Udot = A U
54359ae8fd06SBarry Smith 
54369ae8fd06SBarry Smith .seealso: TSSetIFunction(), TSSetIJacobian(), TSComputeIJacobianConstant(), TSComputeRHSFunctionLinear()
54370026cea9SSean Farley @*/
54380910c330SBarry Smith PetscErrorCode TSComputeIFunctionLinear(TS ts,PetscReal t,Vec U,Vec Udot,Vec F,void *ctx)
54390026cea9SSean Farley {
54400026cea9SSean Farley   PetscErrorCode ierr;
54410026cea9SSean Farley   Mat            A,B;
54420026cea9SSean Farley 
54430026cea9SSean Farley   PetscFunctionBegin;
54440298fd71SBarry Smith   ierr = TSGetIJacobian(ts,&A,&B,NULL,NULL);CHKERRQ(ierr);
5445d1e9a80fSBarry Smith   ierr = TSComputeIJacobian(ts,t,U,Udot,1.0,A,B,PETSC_TRUE);CHKERRQ(ierr);
54460910c330SBarry Smith   ierr = MatMult(A,Udot,F);CHKERRQ(ierr);
54470026cea9SSean Farley   PetscFunctionReturn(0);
54480026cea9SSean Farley }
54490026cea9SSean Farley 
54500026cea9SSean Farley /*@C
5451b41af12eSJed Brown    TSComputeIJacobianConstant - Reuses a time-independent for a semi-implicit DAE or ODE
54520026cea9SSean Farley 
54530026cea9SSean Farley    Collective on TS
54540026cea9SSean Farley 
54550026cea9SSean Farley    Input Arguments:
54560026cea9SSean Farley +  ts - time stepping context
54570026cea9SSean Farley .  t - time at which to evaluate
54580910c330SBarry Smith .  U - state at which to evaluate
54590910c330SBarry Smith .  Udot - time derivative of state vector
54600026cea9SSean Farley .  shift - shift to apply
54610026cea9SSean Farley -  ctx - context
54620026cea9SSean Farley 
54630026cea9SSean Farley    Output Arguments:
54640026cea9SSean Farley +  A - pointer to operator
54650026cea9SSean Farley .  B - pointer to preconditioning matrix
54660026cea9SSean Farley -  flg - matrix structure flag
54670026cea9SSean Farley 
5468b41af12eSJed Brown    Level: advanced
54690026cea9SSean Farley 
54700026cea9SSean Farley    Notes:
54710026cea9SSean Farley    This function is intended to be passed to TSSetIJacobian() to evaluate the Jacobian for linear time-independent problems.
54720026cea9SSean Farley 
5473b41af12eSJed Brown    It is only appropriate for problems of the form
5474b41af12eSJed Brown 
5475b41af12eSJed Brown $     M Udot = F(U,t)
5476b41af12eSJed Brown 
5477b41af12eSJed Brown   where M is constant and F is non-stiff.  The user must pass M to TSSetIJacobian().  The current implementation only
5478b41af12eSJed Brown   works with IMEX time integration methods such as TSROSW and TSARKIMEX, since there is no support for de-constructing
5479b41af12eSJed Brown   an implicit operator of the form
5480b41af12eSJed Brown 
5481b41af12eSJed Brown $    shift*M + J
5482b41af12eSJed Brown 
5483b41af12eSJed 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
5484b41af12eSJed Brown   a copy of M or reassemble it when requested.
5485b41af12eSJed Brown 
54860026cea9SSean Farley .seealso: TSSetIFunction(), TSSetIJacobian(), TSComputeIFunctionLinear()
54870026cea9SSean Farley @*/
5488d1e9a80fSBarry Smith PetscErrorCode TSComputeIJacobianConstant(TS ts,PetscReal t,Vec U,Vec Udot,PetscReal shift,Mat A,Mat B,void *ctx)
54890026cea9SSean Farley {
5490b41af12eSJed Brown   PetscErrorCode ierr;
5491b41af12eSJed Brown 
54920026cea9SSean Farley   PetscFunctionBegin;
549394ab13aaSBarry Smith   ierr = MatScale(A, shift / ts->ijacobian.shift);CHKERRQ(ierr);
5494b41af12eSJed Brown   ts->ijacobian.shift = shift;
54950026cea9SSean Farley   PetscFunctionReturn(0);
54960026cea9SSean Farley }
5497b41af12eSJed Brown 
5498e817cc15SEmil Constantinescu /*@
5499e817cc15SEmil Constantinescu    TSGetEquationType - Gets the type of the equation that TS is solving.
5500e817cc15SEmil Constantinescu 
5501e817cc15SEmil Constantinescu    Not Collective
5502e817cc15SEmil Constantinescu 
5503e817cc15SEmil Constantinescu    Input Parameter:
5504e817cc15SEmil Constantinescu .  ts - the TS context
5505e817cc15SEmil Constantinescu 
5506e817cc15SEmil Constantinescu    Output Parameter:
55074e6b9ce4SEmil Constantinescu .  equation_type - see TSEquationType
5508e817cc15SEmil Constantinescu 
5509e817cc15SEmil Constantinescu    Level: beginner
5510e817cc15SEmil Constantinescu 
5511e817cc15SEmil Constantinescu .keywords: TS, equation type
5512e817cc15SEmil Constantinescu 
5513e817cc15SEmil Constantinescu .seealso: TSSetEquationType(), TSEquationType
5514e817cc15SEmil Constantinescu @*/
5515e817cc15SEmil Constantinescu PetscErrorCode  TSGetEquationType(TS ts,TSEquationType *equation_type)
5516e817cc15SEmil Constantinescu {
5517e817cc15SEmil Constantinescu   PetscFunctionBegin;
5518e817cc15SEmil Constantinescu   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5519e817cc15SEmil Constantinescu   PetscValidPointer(equation_type,2);
5520e817cc15SEmil Constantinescu   *equation_type = ts->equation_type;
5521e817cc15SEmil Constantinescu   PetscFunctionReturn(0);
5522e817cc15SEmil Constantinescu }
5523e817cc15SEmil Constantinescu 
5524e817cc15SEmil Constantinescu /*@
5525e817cc15SEmil Constantinescu    TSSetEquationType - Sets the type of the equation that TS is solving.
5526e817cc15SEmil Constantinescu 
5527e817cc15SEmil Constantinescu    Not Collective
5528e817cc15SEmil Constantinescu 
5529e817cc15SEmil Constantinescu    Input Parameter:
5530e817cc15SEmil Constantinescu +  ts - the TS context
55311297b224SEmil Constantinescu -  equation_type - see TSEquationType
5532e817cc15SEmil Constantinescu 
5533e817cc15SEmil Constantinescu    Level: advanced
5534e817cc15SEmil Constantinescu 
5535e817cc15SEmil Constantinescu .keywords: TS, equation type
5536e817cc15SEmil Constantinescu 
5537e817cc15SEmil Constantinescu .seealso: TSGetEquationType(), TSEquationType
5538e817cc15SEmil Constantinescu @*/
5539e817cc15SEmil Constantinescu PetscErrorCode  TSSetEquationType(TS ts,TSEquationType equation_type)
5540e817cc15SEmil Constantinescu {
5541e817cc15SEmil Constantinescu   PetscFunctionBegin;
5542e817cc15SEmil Constantinescu   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5543e817cc15SEmil Constantinescu   ts->equation_type = equation_type;
5544e817cc15SEmil Constantinescu   PetscFunctionReturn(0);
5545e817cc15SEmil Constantinescu }
55460026cea9SSean Farley 
55474af1b03aSJed Brown /*@
55484af1b03aSJed Brown    TSGetConvergedReason - Gets the reason the TS iteration was stopped.
55494af1b03aSJed Brown 
55504af1b03aSJed Brown    Not Collective
55514af1b03aSJed Brown 
55524af1b03aSJed Brown    Input Parameter:
55534af1b03aSJed Brown .  ts - the TS context
55544af1b03aSJed Brown 
55554af1b03aSJed Brown    Output Parameter:
55564af1b03aSJed Brown .  reason - negative value indicates diverged, positive value converged, see TSConvergedReason or the
55574af1b03aSJed Brown             manual pages for the individual convergence tests for complete lists
55584af1b03aSJed Brown 
5559487e0bb9SJed Brown    Level: beginner
55604af1b03aSJed Brown 
5561cd652676SJed Brown    Notes:
5562cd652676SJed Brown    Can only be called after the call to TSSolve() is complete.
55634af1b03aSJed Brown 
55644af1b03aSJed Brown .keywords: TS, nonlinear, set, convergence, test
55654af1b03aSJed Brown 
55664af1b03aSJed Brown .seealso: TSSetConvergenceTest(), TSConvergedReason
55674af1b03aSJed Brown @*/
55684af1b03aSJed Brown PetscErrorCode  TSGetConvergedReason(TS ts,TSConvergedReason *reason)
55694af1b03aSJed Brown {
55704af1b03aSJed Brown   PetscFunctionBegin;
55714af1b03aSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
55724af1b03aSJed Brown   PetscValidPointer(reason,2);
55734af1b03aSJed Brown   *reason = ts->reason;
55744af1b03aSJed Brown   PetscFunctionReturn(0);
55754af1b03aSJed Brown }
55764af1b03aSJed Brown 
5577d6ad946cSShri Abhyankar /*@
5578d6ad946cSShri Abhyankar    TSSetConvergedReason - Sets the reason for handling the convergence of TSSolve.
5579d6ad946cSShri Abhyankar 
5580d6ad946cSShri Abhyankar    Not Collective
5581d6ad946cSShri Abhyankar 
5582d6ad946cSShri Abhyankar    Input Parameter:
5583d6ad946cSShri Abhyankar +  ts - the TS context
5584d6ad946cSShri Abhyankar .  reason - negative value indicates diverged, positive value converged, see TSConvergedReason or the
5585d6ad946cSShri Abhyankar             manual pages for the individual convergence tests for complete lists
5586d6ad946cSShri Abhyankar 
5587f5abba47SShri Abhyankar    Level: advanced
5588d6ad946cSShri Abhyankar 
5589d6ad946cSShri Abhyankar    Notes:
5590d6ad946cSShri Abhyankar    Can only be called during TSSolve() is active.
5591d6ad946cSShri Abhyankar 
5592d6ad946cSShri Abhyankar .keywords: TS, nonlinear, set, convergence, test
5593d6ad946cSShri Abhyankar 
5594d6ad946cSShri Abhyankar .seealso: TSConvergedReason
5595d6ad946cSShri Abhyankar @*/
5596d6ad946cSShri Abhyankar PetscErrorCode  TSSetConvergedReason(TS ts,TSConvergedReason reason)
5597d6ad946cSShri Abhyankar {
5598d6ad946cSShri Abhyankar   PetscFunctionBegin;
5599d6ad946cSShri Abhyankar   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5600d6ad946cSShri Abhyankar   ts->reason = reason;
5601d6ad946cSShri Abhyankar   PetscFunctionReturn(0);
5602d6ad946cSShri Abhyankar }
5603d6ad946cSShri Abhyankar 
5604cc708dedSBarry Smith /*@
5605cc708dedSBarry Smith    TSGetSolveTime - Gets the time after a call to TSSolve()
5606cc708dedSBarry Smith 
5607cc708dedSBarry Smith    Not Collective
5608cc708dedSBarry Smith 
5609cc708dedSBarry Smith    Input Parameter:
5610cc708dedSBarry Smith .  ts - the TS context
5611cc708dedSBarry Smith 
5612cc708dedSBarry Smith    Output Parameter:
561363e21af5SBarry Smith .  ftime - the final time. This time corresponds to the final time set with TSSetDuration()
5614cc708dedSBarry Smith 
5615487e0bb9SJed Brown    Level: beginner
5616cc708dedSBarry Smith 
5617cc708dedSBarry Smith    Notes:
5618cc708dedSBarry Smith    Can only be called after the call to TSSolve() is complete.
5619cc708dedSBarry Smith 
5620cc708dedSBarry Smith .keywords: TS, nonlinear, set, convergence, test
5621cc708dedSBarry Smith 
5622cc708dedSBarry Smith .seealso: TSSetConvergenceTest(), TSConvergedReason
5623cc708dedSBarry Smith @*/
5624cc708dedSBarry Smith PetscErrorCode  TSGetSolveTime(TS ts,PetscReal *ftime)
5625cc708dedSBarry Smith {
5626cc708dedSBarry Smith   PetscFunctionBegin;
5627cc708dedSBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5628cc708dedSBarry Smith   PetscValidPointer(ftime,2);
5629cc708dedSBarry Smith   *ftime = ts->solvetime;
5630cc708dedSBarry Smith   PetscFunctionReturn(0);
5631cc708dedSBarry Smith }
5632cc708dedSBarry Smith 
56332c18e0fdSBarry Smith /*@
56345ef26d82SJed Brown    TSGetSNESIterations - Gets the total number of nonlinear iterations
56359f67acb7SJed Brown    used by the time integrator.
56369f67acb7SJed Brown 
56379f67acb7SJed Brown    Not Collective
56389f67acb7SJed Brown 
56399f67acb7SJed Brown    Input Parameter:
56409f67acb7SJed Brown .  ts - TS context
56419f67acb7SJed Brown 
56429f67acb7SJed Brown    Output Parameter:
56439f67acb7SJed Brown .  nits - number of nonlinear iterations
56449f67acb7SJed Brown 
56459f67acb7SJed Brown    Notes:
56469f67acb7SJed Brown    This counter is reset to zero for each successive call to TSSolve().
56479f67acb7SJed Brown 
56489f67acb7SJed Brown    Level: intermediate
56499f67acb7SJed Brown 
56509f67acb7SJed Brown .keywords: TS, get, number, nonlinear, iterations
56519f67acb7SJed Brown 
56525ef26d82SJed Brown .seealso:  TSGetKSPIterations()
56539f67acb7SJed Brown @*/
56545ef26d82SJed Brown PetscErrorCode TSGetSNESIterations(TS ts,PetscInt *nits)
56559f67acb7SJed Brown {
56569f67acb7SJed Brown   PetscFunctionBegin;
56579f67acb7SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
56589f67acb7SJed Brown   PetscValidIntPointer(nits,2);
56595ef26d82SJed Brown   *nits = ts->snes_its;
56609f67acb7SJed Brown   PetscFunctionReturn(0);
56619f67acb7SJed Brown }
56629f67acb7SJed Brown 
56639f67acb7SJed Brown /*@
56645ef26d82SJed Brown    TSGetKSPIterations - Gets the total number of linear iterations
56659f67acb7SJed Brown    used by the time integrator.
56669f67acb7SJed Brown 
56679f67acb7SJed Brown    Not Collective
56689f67acb7SJed Brown 
56699f67acb7SJed Brown    Input Parameter:
56709f67acb7SJed Brown .  ts - TS context
56719f67acb7SJed Brown 
56729f67acb7SJed Brown    Output Parameter:
56739f67acb7SJed Brown .  lits - number of linear iterations
56749f67acb7SJed Brown 
56759f67acb7SJed Brown    Notes:
56769f67acb7SJed Brown    This counter is reset to zero for each successive call to TSSolve().
56779f67acb7SJed Brown 
56789f67acb7SJed Brown    Level: intermediate
56799f67acb7SJed Brown 
56809f67acb7SJed Brown .keywords: TS, get, number, linear, iterations
56819f67acb7SJed Brown 
56825ef26d82SJed Brown .seealso:  TSGetSNESIterations(), SNESGetKSPIterations()
56839f67acb7SJed Brown @*/
56845ef26d82SJed Brown PetscErrorCode TSGetKSPIterations(TS ts,PetscInt *lits)
56859f67acb7SJed Brown {
56869f67acb7SJed Brown   PetscFunctionBegin;
56879f67acb7SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
56889f67acb7SJed Brown   PetscValidIntPointer(lits,2);
56895ef26d82SJed Brown   *lits = ts->ksp_its;
56909f67acb7SJed Brown   PetscFunctionReturn(0);
56919f67acb7SJed Brown }
56929f67acb7SJed Brown 
5693cef5090cSJed Brown /*@
5694cef5090cSJed Brown    TSGetStepRejections - Gets the total number of rejected steps.
5695cef5090cSJed Brown 
5696cef5090cSJed Brown    Not Collective
5697cef5090cSJed Brown 
5698cef5090cSJed Brown    Input Parameter:
5699cef5090cSJed Brown .  ts - TS context
5700cef5090cSJed Brown 
5701cef5090cSJed Brown    Output Parameter:
5702cef5090cSJed Brown .  rejects - number of steps rejected
5703cef5090cSJed Brown 
5704cef5090cSJed Brown    Notes:
5705cef5090cSJed Brown    This counter is reset to zero for each successive call to TSSolve().
5706cef5090cSJed Brown 
5707cef5090cSJed Brown    Level: intermediate
5708cef5090cSJed Brown 
5709cef5090cSJed Brown .keywords: TS, get, number
5710cef5090cSJed Brown 
57115ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetSNESFailures(), TSSetMaxSNESFailures(), TSSetErrorIfStepFails()
5712cef5090cSJed Brown @*/
5713cef5090cSJed Brown PetscErrorCode TSGetStepRejections(TS ts,PetscInt *rejects)
5714cef5090cSJed Brown {
5715cef5090cSJed Brown   PetscFunctionBegin;
5716cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5717cef5090cSJed Brown   PetscValidIntPointer(rejects,2);
5718cef5090cSJed Brown   *rejects = ts->reject;
5719cef5090cSJed Brown   PetscFunctionReturn(0);
5720cef5090cSJed Brown }
5721cef5090cSJed Brown 
5722cef5090cSJed Brown /*@
5723cef5090cSJed Brown    TSGetSNESFailures - Gets the total number of failed SNES solves
5724cef5090cSJed Brown 
5725cef5090cSJed Brown    Not Collective
5726cef5090cSJed Brown 
5727cef5090cSJed Brown    Input Parameter:
5728cef5090cSJed Brown .  ts - TS context
5729cef5090cSJed Brown 
5730cef5090cSJed Brown    Output Parameter:
5731cef5090cSJed Brown .  fails - number of failed nonlinear solves
5732cef5090cSJed Brown 
5733cef5090cSJed Brown    Notes:
5734cef5090cSJed Brown    This counter is reset to zero for each successive call to TSSolve().
5735cef5090cSJed Brown 
5736cef5090cSJed Brown    Level: intermediate
5737cef5090cSJed Brown 
5738cef5090cSJed Brown .keywords: TS, get, number
5739cef5090cSJed Brown 
57405ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetStepRejections(), TSSetMaxSNESFailures()
5741cef5090cSJed Brown @*/
5742cef5090cSJed Brown PetscErrorCode TSGetSNESFailures(TS ts,PetscInt *fails)
5743cef5090cSJed Brown {
5744cef5090cSJed Brown   PetscFunctionBegin;
5745cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5746cef5090cSJed Brown   PetscValidIntPointer(fails,2);
5747cef5090cSJed Brown   *fails = ts->num_snes_failures;
5748cef5090cSJed Brown   PetscFunctionReturn(0);
5749cef5090cSJed Brown }
5750cef5090cSJed Brown 
5751cef5090cSJed Brown /*@
5752cef5090cSJed Brown    TSSetMaxStepRejections - Sets the maximum number of step rejections before a step fails
5753cef5090cSJed Brown 
5754cef5090cSJed Brown    Not Collective
5755cef5090cSJed Brown 
5756cef5090cSJed Brown    Input Parameter:
5757cef5090cSJed Brown +  ts - TS context
5758cef5090cSJed Brown -  rejects - maximum number of rejected steps, pass -1 for unlimited
5759cef5090cSJed Brown 
5760cef5090cSJed Brown    Notes:
5761cef5090cSJed Brown    The counter is reset to zero for each step
5762cef5090cSJed Brown 
5763cef5090cSJed Brown    Options Database Key:
5764cef5090cSJed Brown  .  -ts_max_reject - Maximum number of step rejections before a step fails
5765cef5090cSJed Brown 
5766cef5090cSJed Brown    Level: intermediate
5767cef5090cSJed Brown 
5768cef5090cSJed Brown .keywords: TS, set, maximum, number
5769cef5090cSJed Brown 
57705ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxSNESFailures(), TSGetStepRejections(), TSGetSNESFailures(), TSSetErrorIfStepFails(), TSGetConvergedReason()
5771cef5090cSJed Brown @*/
5772cef5090cSJed Brown PetscErrorCode TSSetMaxStepRejections(TS ts,PetscInt rejects)
5773cef5090cSJed Brown {
5774cef5090cSJed Brown   PetscFunctionBegin;
5775cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5776cef5090cSJed Brown   ts->max_reject = rejects;
5777cef5090cSJed Brown   PetscFunctionReturn(0);
5778cef5090cSJed Brown }
5779cef5090cSJed Brown 
5780cef5090cSJed Brown /*@
5781cef5090cSJed Brown    TSSetMaxSNESFailures - Sets the maximum number of failed SNES solves
5782cef5090cSJed Brown 
5783cef5090cSJed Brown    Not Collective
5784cef5090cSJed Brown 
5785cef5090cSJed Brown    Input Parameter:
5786cef5090cSJed Brown +  ts - TS context
5787cef5090cSJed Brown -  fails - maximum number of failed nonlinear solves, pass -1 for unlimited
5788cef5090cSJed Brown 
5789cef5090cSJed Brown    Notes:
5790cef5090cSJed Brown    The counter is reset to zero for each successive call to TSSolve().
5791cef5090cSJed Brown 
5792cef5090cSJed Brown    Options Database Key:
5793cef5090cSJed Brown  .  -ts_max_snes_failures - Maximum number of nonlinear solve failures
5794cef5090cSJed Brown 
5795cef5090cSJed Brown    Level: intermediate
5796cef5090cSJed Brown 
5797cef5090cSJed Brown .keywords: TS, set, maximum, number
5798cef5090cSJed Brown 
57995ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetStepRejections(), TSGetSNESFailures(), SNESGetConvergedReason(), TSGetConvergedReason()
5800cef5090cSJed Brown @*/
5801cef5090cSJed Brown PetscErrorCode TSSetMaxSNESFailures(TS ts,PetscInt fails)
5802cef5090cSJed Brown {
5803cef5090cSJed Brown   PetscFunctionBegin;
5804cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5805cef5090cSJed Brown   ts->max_snes_failures = fails;
5806cef5090cSJed Brown   PetscFunctionReturn(0);
5807cef5090cSJed Brown }
5808cef5090cSJed Brown 
5809cef5090cSJed Brown /*@
5810cef5090cSJed Brown    TSSetErrorIfStepFails - Error if no step succeeds
5811cef5090cSJed Brown 
5812cef5090cSJed Brown    Not Collective
5813cef5090cSJed Brown 
5814cef5090cSJed Brown    Input Parameter:
5815cef5090cSJed Brown +  ts - TS context
5816cef5090cSJed Brown -  err - PETSC_TRUE to error if no step succeeds, PETSC_FALSE to return without failure
5817cef5090cSJed Brown 
5818cef5090cSJed Brown    Options Database Key:
5819cef5090cSJed Brown  .  -ts_error_if_step_fails - Error if no step succeeds
5820cef5090cSJed Brown 
5821cef5090cSJed Brown    Level: intermediate
5822cef5090cSJed Brown 
5823cef5090cSJed Brown .keywords: TS, set, error
5824cef5090cSJed Brown 
58255ef26d82SJed Brown .seealso:  TSGetSNESIterations(), TSGetKSPIterations(), TSSetMaxStepRejections(), TSGetStepRejections(), TSGetSNESFailures(), TSSetErrorIfStepFails(), TSGetConvergedReason()
5826cef5090cSJed Brown @*/
5827cef5090cSJed Brown PetscErrorCode TSSetErrorIfStepFails(TS ts,PetscBool err)
5828cef5090cSJed Brown {
5829cef5090cSJed Brown   PetscFunctionBegin;
5830cef5090cSJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5831cef5090cSJed Brown   ts->errorifstepfailed = err;
5832cef5090cSJed Brown   PetscFunctionReturn(0);
5833cef5090cSJed Brown }
5834cef5090cSJed Brown 
5835fb1732b5SBarry Smith /*@C
5836fde5950dSBarry 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
5837fb1732b5SBarry Smith 
5838fb1732b5SBarry Smith    Collective on TS
5839fb1732b5SBarry Smith 
5840fb1732b5SBarry Smith    Input Parameters:
5841fb1732b5SBarry Smith +  ts - the TS context
5842fb1732b5SBarry Smith .  step - current time-step
5843fb1732b5SBarry Smith .  ptime - current time
58440910c330SBarry Smith .  u - current state
5845721cd6eeSBarry Smith -  vf - viewer and its format
5846fb1732b5SBarry Smith 
5847fb1732b5SBarry Smith    Level: intermediate
5848fb1732b5SBarry Smith 
5849fb1732b5SBarry Smith .keywords: TS,  vector, monitor, view
5850fb1732b5SBarry Smith 
5851fb1732b5SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
5852fb1732b5SBarry Smith @*/
5853721cd6eeSBarry Smith PetscErrorCode  TSMonitorSolution(TS ts,PetscInt step,PetscReal ptime,Vec u,PetscViewerAndFormat *vf)
5854fb1732b5SBarry Smith {
5855fb1732b5SBarry Smith   PetscErrorCode ierr;
5856fb1732b5SBarry Smith 
5857fb1732b5SBarry Smith   PetscFunctionBegin;
5858721cd6eeSBarry Smith   ierr = PetscViewerPushFormat(vf->viewer,vf->format);CHKERRQ(ierr);
5859721cd6eeSBarry Smith   ierr = VecView(u,vf->viewer);CHKERRQ(ierr);
5860721cd6eeSBarry Smith   ierr = PetscViewerPopFormat(vf->viewer);CHKERRQ(ierr);
5861ed81e22dSJed Brown   PetscFunctionReturn(0);
5862ed81e22dSJed Brown }
5863ed81e22dSJed Brown 
5864ed81e22dSJed Brown /*@C
5865ed81e22dSJed Brown    TSMonitorSolutionVTK - Monitors progress of the TS solvers by VecView() for the solution at each timestep.
5866ed81e22dSJed Brown 
5867ed81e22dSJed Brown    Collective on TS
5868ed81e22dSJed Brown 
5869ed81e22dSJed Brown    Input Parameters:
5870ed81e22dSJed Brown +  ts - the TS context
5871ed81e22dSJed Brown .  step - current time-step
5872ed81e22dSJed Brown .  ptime - current time
58730910c330SBarry Smith .  u - current state
5874ed81e22dSJed Brown -  filenametemplate - string containing a format specifier for the integer time step (e.g. %03D)
5875ed81e22dSJed Brown 
5876ed81e22dSJed Brown    Level: intermediate
5877ed81e22dSJed Brown 
5878ed81e22dSJed Brown    Notes:
5879ed81e22dSJed 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.
5880ed81e22dSJed Brown    These are named according to the file name template.
5881ed81e22dSJed Brown 
5882ed81e22dSJed Brown    This function is normally passed as an argument to TSMonitorSet() along with TSMonitorSolutionVTKDestroy().
5883ed81e22dSJed Brown 
5884ed81e22dSJed Brown .keywords: TS,  vector, monitor, view
5885ed81e22dSJed Brown 
5886ed81e22dSJed Brown .seealso: TSMonitorSet(), TSMonitorDefault(), VecView()
5887ed81e22dSJed Brown @*/
58880910c330SBarry Smith PetscErrorCode TSMonitorSolutionVTK(TS ts,PetscInt step,PetscReal ptime,Vec u,void *filenametemplate)
5889ed81e22dSJed Brown {
5890ed81e22dSJed Brown   PetscErrorCode ierr;
5891ed81e22dSJed Brown   char           filename[PETSC_MAX_PATH_LEN];
5892ed81e22dSJed Brown   PetscViewer    viewer;
5893ed81e22dSJed Brown 
5894ed81e22dSJed Brown   PetscFunctionBegin;
589563e21af5SBarry Smith   if (step < 0) PetscFunctionReturn(0); /* -1 indicates interpolated solution */
58968caf3d72SBarry Smith   ierr = PetscSNPrintf(filename,sizeof(filename),(const char*)filenametemplate,step);CHKERRQ(ierr);
5897ce94432eSBarry Smith   ierr = PetscViewerVTKOpen(PetscObjectComm((PetscObject)ts),filename,FILE_MODE_WRITE,&viewer);CHKERRQ(ierr);
58980910c330SBarry Smith   ierr = VecView(u,viewer);CHKERRQ(ierr);
5899ed81e22dSJed Brown   ierr = PetscViewerDestroy(&viewer);CHKERRQ(ierr);
5900ed81e22dSJed Brown   PetscFunctionReturn(0);
5901ed81e22dSJed Brown }
5902ed81e22dSJed Brown 
5903ed81e22dSJed Brown /*@C
5904ed81e22dSJed Brown    TSMonitorSolutionVTKDestroy - Destroy context for monitoring
5905ed81e22dSJed Brown 
5906ed81e22dSJed Brown    Collective on TS
5907ed81e22dSJed Brown 
5908ed81e22dSJed Brown    Input Parameters:
5909ed81e22dSJed Brown .  filenametemplate - string containing a format specifier for the integer time step (e.g. %03D)
5910ed81e22dSJed Brown 
5911ed81e22dSJed Brown    Level: intermediate
5912ed81e22dSJed Brown 
5913ed81e22dSJed Brown    Note:
5914ed81e22dSJed Brown    This function is normally passed to TSMonitorSet() along with TSMonitorSolutionVTK().
5915ed81e22dSJed Brown 
5916ed81e22dSJed Brown .keywords: TS,  vector, monitor, view
5917ed81e22dSJed Brown 
5918ed81e22dSJed Brown .seealso: TSMonitorSet(), TSMonitorSolutionVTK()
5919ed81e22dSJed Brown @*/
5920ed81e22dSJed Brown PetscErrorCode TSMonitorSolutionVTKDestroy(void *filenametemplate)
5921ed81e22dSJed Brown {
5922ed81e22dSJed Brown   PetscErrorCode ierr;
5923ed81e22dSJed Brown 
5924ed81e22dSJed Brown   PetscFunctionBegin;
5925ed81e22dSJed Brown   ierr = PetscFree(*(char**)filenametemplate);CHKERRQ(ierr);
5926fb1732b5SBarry Smith   PetscFunctionReturn(0);
5927fb1732b5SBarry Smith }
5928fb1732b5SBarry Smith 
592984df9cb4SJed Brown /*@
5930552698daSJed Brown    TSGetAdapt - Get the adaptive controller context for the current method
593184df9cb4SJed Brown 
5932ed81e22dSJed Brown    Collective on TS if controller has not been created yet
593384df9cb4SJed Brown 
593484df9cb4SJed Brown    Input Arguments:
5935ed81e22dSJed Brown .  ts - time stepping context
593684df9cb4SJed Brown 
593784df9cb4SJed Brown    Output Arguments:
5938ed81e22dSJed Brown .  adapt - adaptive controller
593984df9cb4SJed Brown 
594084df9cb4SJed Brown    Level: intermediate
594184df9cb4SJed Brown 
5942ed81e22dSJed Brown .seealso: TSAdapt, TSAdaptSetType(), TSAdaptChoose()
594384df9cb4SJed Brown @*/
5944552698daSJed Brown PetscErrorCode TSGetAdapt(TS ts,TSAdapt *adapt)
594584df9cb4SJed Brown {
594684df9cb4SJed Brown   PetscErrorCode ierr;
594784df9cb4SJed Brown 
594884df9cb4SJed Brown   PetscFunctionBegin;
594984df9cb4SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
5950bec58848SLisandro Dalcin   PetscValidPointer(adapt,2);
595184df9cb4SJed Brown   if (!ts->adapt) {
5952ce94432eSBarry Smith     ierr = TSAdaptCreate(PetscObjectComm((PetscObject)ts),&ts->adapt);CHKERRQ(ierr);
59533bb1ff40SBarry Smith     ierr = PetscLogObjectParent((PetscObject)ts,(PetscObject)ts->adapt);CHKERRQ(ierr);
59541c3436cfSJed Brown     ierr = PetscObjectIncrementTabLevel((PetscObject)ts->adapt,(PetscObject)ts,1);CHKERRQ(ierr);
595584df9cb4SJed Brown   }
5956bec58848SLisandro Dalcin   *adapt = ts->adapt;
595784df9cb4SJed Brown   PetscFunctionReturn(0);
595884df9cb4SJed Brown }
5959d6ebe24aSShri Abhyankar 
59601c3436cfSJed Brown /*@
59611c3436cfSJed Brown    TSSetTolerances - Set tolerances for local truncation error when using adaptive controller
59621c3436cfSJed Brown 
59631c3436cfSJed Brown    Logically Collective
59641c3436cfSJed Brown 
59651c3436cfSJed Brown    Input Arguments:
59661c3436cfSJed Brown +  ts - time integration context
59671c3436cfSJed Brown .  atol - scalar absolute tolerances, PETSC_DECIDE to leave current value
59680298fd71SBarry Smith .  vatol - vector of absolute tolerances or NULL, used in preference to atol if present
59691c3436cfSJed Brown .  rtol - scalar relative tolerances, PETSC_DECIDE to leave current value
59700298fd71SBarry Smith -  vrtol - vector of relative tolerances or NULL, used in preference to atol if present
59711c3436cfSJed Brown 
5972a3cdaa26SBarry Smith    Options Database keys:
5973a3cdaa26SBarry Smith +  -ts_rtol <rtol> - relative tolerance for local truncation error
5974a3cdaa26SBarry Smith -  -ts_atol <atol> Absolute tolerance for local truncation error
5975a3cdaa26SBarry Smith 
59763ff766beSShri Abhyankar    Notes:
59773ff766beSShri Abhyankar    With PETSc's implicit schemes for DAE problems, the calculation of the local truncation error
59783ff766beSShri Abhyankar    (LTE) includes both the differential and the algebraic variables. If one wants the LTE to be
59793ff766beSShri Abhyankar    computed only for the differential or the algebraic part then this can be done using the vector of
59803ff766beSShri Abhyankar    tolerances vatol. For example, by setting the tolerance vector with the desired tolerance for the
59813ff766beSShri Abhyankar    differential part and infinity for the algebraic part, the LTE calculation will include only the
59823ff766beSShri Abhyankar    differential variables.
59833ff766beSShri Abhyankar 
59841c3436cfSJed Brown    Level: beginner
59851c3436cfSJed Brown 
5986c5033834SJed Brown .seealso: TS, TSAdapt, TSVecNormWRMS(), TSGetTolerances()
59871c3436cfSJed Brown @*/
59881c3436cfSJed Brown PetscErrorCode TSSetTolerances(TS ts,PetscReal atol,Vec vatol,PetscReal rtol,Vec vrtol)
59891c3436cfSJed Brown {
59901c3436cfSJed Brown   PetscErrorCode ierr;
59911c3436cfSJed Brown 
59921c3436cfSJed Brown   PetscFunctionBegin;
5993c5033834SJed Brown   if (atol != PETSC_DECIDE && atol != PETSC_DEFAULT) ts->atol = atol;
59941c3436cfSJed Brown   if (vatol) {
59951c3436cfSJed Brown     ierr = PetscObjectReference((PetscObject)vatol);CHKERRQ(ierr);
59961c3436cfSJed Brown     ierr = VecDestroy(&ts->vatol);CHKERRQ(ierr);
59971c3436cfSJed Brown     ts->vatol = vatol;
59981c3436cfSJed Brown   }
5999c5033834SJed Brown   if (rtol != PETSC_DECIDE && rtol != PETSC_DEFAULT) ts->rtol = rtol;
60001c3436cfSJed Brown   if (vrtol) {
60011c3436cfSJed Brown     ierr = PetscObjectReference((PetscObject)vrtol);CHKERRQ(ierr);
60021c3436cfSJed Brown     ierr = VecDestroy(&ts->vrtol);CHKERRQ(ierr);
60031c3436cfSJed Brown     ts->vrtol = vrtol;
60041c3436cfSJed Brown   }
60051c3436cfSJed Brown   PetscFunctionReturn(0);
60061c3436cfSJed Brown }
60071c3436cfSJed Brown 
6008c5033834SJed Brown /*@
6009c5033834SJed Brown    TSGetTolerances - Get tolerances for local truncation error when using adaptive controller
6010c5033834SJed Brown 
6011c5033834SJed Brown    Logically Collective
6012c5033834SJed Brown 
6013c5033834SJed Brown    Input Arguments:
6014c5033834SJed Brown .  ts - time integration context
6015c5033834SJed Brown 
6016c5033834SJed Brown    Output Arguments:
60170298fd71SBarry Smith +  atol - scalar absolute tolerances, NULL to ignore
60180298fd71SBarry Smith .  vatol - vector of absolute tolerances, NULL to ignore
60190298fd71SBarry Smith .  rtol - scalar relative tolerances, NULL to ignore
60200298fd71SBarry Smith -  vrtol - vector of relative tolerances, NULL to ignore
6021c5033834SJed Brown 
6022c5033834SJed Brown    Level: beginner
6023c5033834SJed Brown 
6024c5033834SJed Brown .seealso: TS, TSAdapt, TSVecNormWRMS(), TSSetTolerances()
6025c5033834SJed Brown @*/
6026c5033834SJed Brown PetscErrorCode TSGetTolerances(TS ts,PetscReal *atol,Vec *vatol,PetscReal *rtol,Vec *vrtol)
6027c5033834SJed Brown {
6028c5033834SJed Brown   PetscFunctionBegin;
6029c5033834SJed Brown   if (atol)  *atol  = ts->atol;
6030c5033834SJed Brown   if (vatol) *vatol = ts->vatol;
6031c5033834SJed Brown   if (rtol)  *rtol  = ts->rtol;
6032c5033834SJed Brown   if (vrtol) *vrtol = ts->vrtol;
6033c5033834SJed Brown   PetscFunctionReturn(0);
6034c5033834SJed Brown }
6035c5033834SJed Brown 
60369c6b16b5SShri Abhyankar /*@
6037a4868fbcSLisandro Dalcin    TSErrorWeightedNorm2 - compute a weighted 2-norm of the difference between two state vectors
60389c6b16b5SShri Abhyankar 
60399c6b16b5SShri Abhyankar    Collective on TS
60409c6b16b5SShri Abhyankar 
60419c6b16b5SShri Abhyankar    Input Arguments:
60429c6b16b5SShri Abhyankar +  ts - time stepping context
6043a4868fbcSLisandro Dalcin .  U - state vector, usually ts->vec_sol
6044a4868fbcSLisandro Dalcin -  Y - state vector to be compared to U
60459c6b16b5SShri Abhyankar 
60469c6b16b5SShri Abhyankar    Output Arguments:
60477453f775SEmil Constantinescu .  norm - weighted norm, a value of 1.0 means that the error matches the tolerances
60487453f775SEmil Constantinescu .  norma - weighted norm based on the absolute tolerance, a value of 1.0 means that the error matches the tolerances
60497453f775SEmil Constantinescu .  normr - weighted norm based on the relative tolerance, a value of 1.0 means that the error matches the tolerances
60509c6b16b5SShri Abhyankar 
60519c6b16b5SShri Abhyankar    Level: developer
60529c6b16b5SShri Abhyankar 
6053deea92deSShri .seealso: TSErrorWeightedNorm(), TSErrorWeightedNormInfinity()
60549c6b16b5SShri Abhyankar @*/
60557453f775SEmil Constantinescu PetscErrorCode TSErrorWeightedNorm2(TS ts,Vec U,Vec Y,PetscReal *norm,PetscReal *norma,PetscReal *normr)
60569c6b16b5SShri Abhyankar {
60579c6b16b5SShri Abhyankar   PetscErrorCode    ierr;
60589c6b16b5SShri Abhyankar   PetscInt          i,n,N,rstart;
60597453f775SEmil Constantinescu   PetscInt          n_loc,na_loc,nr_loc;
60607453f775SEmil Constantinescu   PetscReal         n_glb,na_glb,nr_glb;
60619c6b16b5SShri Abhyankar   const PetscScalar *u,*y;
60627453f775SEmil Constantinescu   PetscReal         sum,suma,sumr,gsum,gsuma,gsumr,diff;
60637453f775SEmil Constantinescu   PetscReal         tol,tola,tolr;
60647453f775SEmil Constantinescu   PetscReal         err_loc[6],err_glb[6];
60659c6b16b5SShri Abhyankar 
60669c6b16b5SShri Abhyankar   PetscFunctionBegin;
60679c6b16b5SShri Abhyankar   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
6068a4868fbcSLisandro Dalcin   PetscValidHeaderSpecific(U,VEC_CLASSID,2);
6069a4868fbcSLisandro Dalcin   PetscValidHeaderSpecific(Y,VEC_CLASSID,3);
6070a4868fbcSLisandro Dalcin   PetscValidType(U,2);
6071a4868fbcSLisandro Dalcin   PetscValidType(Y,3);
6072a4868fbcSLisandro Dalcin   PetscCheckSameComm(U,2,Y,3);
6073a4868fbcSLisandro Dalcin   PetscValidPointer(norm,4);
60748a175baeSEmil Constantinescu   PetscValidPointer(norma,5);
60758a175baeSEmil Constantinescu   PetscValidPointer(normr,6);
6076a4868fbcSLisandro Dalcin   if (U == Y) SETERRQ(PetscObjectComm((PetscObject)U),PETSC_ERR_ARG_IDN,"U and Y cannot be the same vector");
60779c6b16b5SShri Abhyankar 
60789c6b16b5SShri Abhyankar   ierr = VecGetSize(U,&N);CHKERRQ(ierr);
60799c6b16b5SShri Abhyankar   ierr = VecGetLocalSize(U,&n);CHKERRQ(ierr);
60809c6b16b5SShri Abhyankar   ierr = VecGetOwnershipRange(U,&rstart,NULL);CHKERRQ(ierr);
60819c6b16b5SShri Abhyankar   ierr = VecGetArrayRead(U,&u);CHKERRQ(ierr);
60829c6b16b5SShri Abhyankar   ierr = VecGetArrayRead(Y,&y);CHKERRQ(ierr);
60837453f775SEmil Constantinescu   sum  = 0.; n_loc  = 0;
60847453f775SEmil Constantinescu   suma = 0.; na_loc = 0;
60857453f775SEmil Constantinescu   sumr = 0.; nr_loc = 0;
60869c6b16b5SShri Abhyankar   if (ts->vatol && ts->vrtol) {
60879c6b16b5SShri Abhyankar     const PetscScalar *atol,*rtol;
60889c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
60899c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
60909c6b16b5SShri Abhyankar     for (i=0; i<n; i++) {
60917453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
60927453f775SEmil Constantinescu       tola = PetscRealPart(atol[i]);
60937453f775SEmil Constantinescu       if(tola>0.){
60947453f775SEmil Constantinescu         suma  += PetscSqr(diff/tola);
60957453f775SEmil Constantinescu         na_loc++;
60967453f775SEmil Constantinescu       }
60977453f775SEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
60987453f775SEmil Constantinescu       if(tolr>0.){
60997453f775SEmil Constantinescu         sumr  += PetscSqr(diff/tolr);
61007453f775SEmil Constantinescu         nr_loc++;
61017453f775SEmil Constantinescu       }
61027453f775SEmil Constantinescu       tol=tola+tolr;
61037453f775SEmil Constantinescu       if(tol>0.){
61047453f775SEmil Constantinescu         sum  += PetscSqr(diff/tol);
61057453f775SEmil Constantinescu         n_loc++;
61067453f775SEmil Constantinescu       }
61079c6b16b5SShri Abhyankar     }
61089c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
61099c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
61109c6b16b5SShri Abhyankar   } else if (ts->vatol) {       /* vector atol, scalar rtol */
61119c6b16b5SShri Abhyankar     const PetscScalar *atol;
61129c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
61139c6b16b5SShri Abhyankar     for (i=0; i<n; i++) {
61147453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
61157453f775SEmil Constantinescu       tola = PetscRealPart(atol[i]);
61167453f775SEmil Constantinescu       if(tola>0.){
61177453f775SEmil Constantinescu         suma  += PetscSqr(diff/tola);
61187453f775SEmil Constantinescu         na_loc++;
61197453f775SEmil Constantinescu       }
61207453f775SEmil Constantinescu       tolr = ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
61217453f775SEmil Constantinescu       if(tolr>0.){
61227453f775SEmil Constantinescu         sumr  += PetscSqr(diff/tolr);
61237453f775SEmil Constantinescu         nr_loc++;
61247453f775SEmil Constantinescu       }
61257453f775SEmil Constantinescu       tol=tola+tolr;
61267453f775SEmil Constantinescu       if(tol>0.){
61277453f775SEmil Constantinescu         sum  += PetscSqr(diff/tol);
61287453f775SEmil Constantinescu         n_loc++;
61297453f775SEmil Constantinescu       }
61309c6b16b5SShri Abhyankar     }
61319c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
61329c6b16b5SShri Abhyankar   } else if (ts->vrtol) {       /* scalar atol, vector rtol */
61339c6b16b5SShri Abhyankar     const PetscScalar *rtol;
61349c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
61359c6b16b5SShri Abhyankar     for (i=0; i<n; i++) {
61367453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
61377453f775SEmil Constantinescu       tola = ts->atol;
61387453f775SEmil Constantinescu       if(tola>0.){
61397453f775SEmil Constantinescu         suma  += PetscSqr(diff/tola);
61407453f775SEmil Constantinescu         na_loc++;
61417453f775SEmil Constantinescu       }
61427453f775SEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
61437453f775SEmil Constantinescu       if(tolr>0.){
61447453f775SEmil Constantinescu         sumr  += PetscSqr(diff/tolr);
61457453f775SEmil Constantinescu         nr_loc++;
61467453f775SEmil Constantinescu       }
61477453f775SEmil Constantinescu       tol=tola+tolr;
61487453f775SEmil Constantinescu       if(tol>0.){
61497453f775SEmil Constantinescu         sum  += PetscSqr(diff/tol);
61507453f775SEmil Constantinescu         n_loc++;
61517453f775SEmil Constantinescu       }
61529c6b16b5SShri Abhyankar     }
61539c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
61549c6b16b5SShri Abhyankar   } else {                      /* scalar atol, scalar rtol */
61559c6b16b5SShri Abhyankar     for (i=0; i<n; i++) {
61567453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
61577453f775SEmil Constantinescu      tola = ts->atol;
61587453f775SEmil Constantinescu       if(tola>0.){
61597453f775SEmil Constantinescu         suma  += PetscSqr(diff/tola);
61607453f775SEmil Constantinescu         na_loc++;
61617453f775SEmil Constantinescu       }
61627453f775SEmil Constantinescu       tolr = ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
61637453f775SEmil Constantinescu       if(tolr>0.){
61647453f775SEmil Constantinescu         sumr  += PetscSqr(diff/tolr);
61657453f775SEmil Constantinescu         nr_loc++;
61667453f775SEmil Constantinescu       }
61677453f775SEmil Constantinescu       tol=tola+tolr;
61687453f775SEmil Constantinescu       if(tol>0.){
61697453f775SEmil Constantinescu         sum  += PetscSqr(diff/tol);
61707453f775SEmil Constantinescu         n_loc++;
61717453f775SEmil Constantinescu       }
61729c6b16b5SShri Abhyankar     }
61739c6b16b5SShri Abhyankar   }
61749c6b16b5SShri Abhyankar   ierr = VecRestoreArrayRead(U,&u);CHKERRQ(ierr);
61759c6b16b5SShri Abhyankar   ierr = VecRestoreArrayRead(Y,&y);CHKERRQ(ierr);
61769c6b16b5SShri Abhyankar 
61777453f775SEmil Constantinescu   err_loc[0] = sum;
61787453f775SEmil Constantinescu   err_loc[1] = suma;
61797453f775SEmil Constantinescu   err_loc[2] = sumr;
61807453f775SEmil Constantinescu   err_loc[3] = (PetscReal)n_loc;
61817453f775SEmil Constantinescu   err_loc[4] = (PetscReal)na_loc;
61827453f775SEmil Constantinescu   err_loc[5] = (PetscReal)nr_loc;
61837453f775SEmil Constantinescu 
6184a88a9d1dSSatish Balay   ierr = MPIU_Allreduce(err_loc,err_glb,6,MPIU_REAL,MPIU_SUM,PetscObjectComm((PetscObject)ts));CHKERRQ(ierr);
61857453f775SEmil Constantinescu 
61867453f775SEmil Constantinescu   gsum   = err_glb[0];
61877453f775SEmil Constantinescu   gsuma  = err_glb[1];
61887453f775SEmil Constantinescu   gsumr  = err_glb[2];
61897453f775SEmil Constantinescu   n_glb  = err_glb[3];
61907453f775SEmil Constantinescu   na_glb = err_glb[4];
61917453f775SEmil Constantinescu   nr_glb = err_glb[5];
61927453f775SEmil Constantinescu 
6193b1316ef9SEmil Constantinescu   *norm  = 0.;
6194b1316ef9SEmil Constantinescu   if(n_glb>0. ){*norm  = PetscSqrtReal(gsum  / n_glb );}
6195b1316ef9SEmil Constantinescu   *norma = 0.;
6196b1316ef9SEmil Constantinescu   if(na_glb>0.){*norma = PetscSqrtReal(gsuma / na_glb);}
6197b1316ef9SEmil Constantinescu   *normr = 0.;
6198b1316ef9SEmil Constantinescu   if(nr_glb>0.){*normr = PetscSqrtReal(gsumr / nr_glb);}
61999c6b16b5SShri Abhyankar 
62009c6b16b5SShri Abhyankar   if (PetscIsInfOrNanScalar(*norm)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norm");
62017453f775SEmil Constantinescu   if (PetscIsInfOrNanScalar(*norma)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norma");
62027453f775SEmil Constantinescu   if (PetscIsInfOrNanScalar(*normr)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in normr");
62039c6b16b5SShri Abhyankar   PetscFunctionReturn(0);
62049c6b16b5SShri Abhyankar }
62059c6b16b5SShri Abhyankar 
62069c6b16b5SShri Abhyankar /*@
6207a4868fbcSLisandro Dalcin    TSErrorWeightedNormInfinity - compute a weighted infinity-norm of the difference between two state vectors
62089c6b16b5SShri Abhyankar 
62099c6b16b5SShri Abhyankar    Collective on TS
62109c6b16b5SShri Abhyankar 
62119c6b16b5SShri Abhyankar    Input Arguments:
62129c6b16b5SShri Abhyankar +  ts - time stepping context
6213a4868fbcSLisandro Dalcin .  U - state vector, usually ts->vec_sol
6214a4868fbcSLisandro Dalcin -  Y - state vector to be compared to U
62159c6b16b5SShri Abhyankar 
62169c6b16b5SShri Abhyankar    Output Arguments:
62177453f775SEmil Constantinescu .  norm - weighted norm, a value of 1.0 means that the error matches the tolerances
62187453f775SEmil Constantinescu .  norma - weighted norm based on the absolute tolerance, a value of 1.0 means that the error matches the tolerances
62197453f775SEmil Constantinescu .  normr - weighted norm based on the relative tolerance, a value of 1.0 means that the error matches the tolerances
62209c6b16b5SShri Abhyankar 
62219c6b16b5SShri Abhyankar    Level: developer
62229c6b16b5SShri Abhyankar 
6223deea92deSShri .seealso: TSErrorWeightedNorm(), TSErrorWeightedNorm2()
62249c6b16b5SShri Abhyankar @*/
62257453f775SEmil Constantinescu PetscErrorCode TSErrorWeightedNormInfinity(TS ts,Vec U,Vec Y,PetscReal *norm,PetscReal *norma,PetscReal *normr)
62269c6b16b5SShri Abhyankar {
62279c6b16b5SShri Abhyankar   PetscErrorCode    ierr;
62287453f775SEmil Constantinescu   PetscInt          i,n,N,rstart;
62299c6b16b5SShri Abhyankar   const PetscScalar *u,*y;
62307453f775SEmil Constantinescu   PetscReal         max,gmax,maxa,gmaxa,maxr,gmaxr;
62317453f775SEmil Constantinescu   PetscReal         tol,tola,tolr,diff;
62327453f775SEmil Constantinescu   PetscReal         err_loc[3],err_glb[3];
62339c6b16b5SShri Abhyankar 
62349c6b16b5SShri Abhyankar   PetscFunctionBegin;
62359c6b16b5SShri Abhyankar   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
6236a4868fbcSLisandro Dalcin   PetscValidHeaderSpecific(U,VEC_CLASSID,2);
6237a4868fbcSLisandro Dalcin   PetscValidHeaderSpecific(Y,VEC_CLASSID,3);
6238a4868fbcSLisandro Dalcin   PetscValidType(U,2);
6239a4868fbcSLisandro Dalcin   PetscValidType(Y,3);
6240a4868fbcSLisandro Dalcin   PetscCheckSameComm(U,2,Y,3);
6241a4868fbcSLisandro Dalcin   PetscValidPointer(norm,4);
62428a175baeSEmil Constantinescu   PetscValidPointer(norma,5);
62438a175baeSEmil Constantinescu   PetscValidPointer(normr,6);
6244a4868fbcSLisandro Dalcin   if (U == Y) SETERRQ(PetscObjectComm((PetscObject)U),PETSC_ERR_ARG_IDN,"U and Y cannot be the same vector");
62459c6b16b5SShri Abhyankar 
62469c6b16b5SShri Abhyankar   ierr = VecGetSize(U,&N);CHKERRQ(ierr);
62479c6b16b5SShri Abhyankar   ierr = VecGetLocalSize(U,&n);CHKERRQ(ierr);
62489c6b16b5SShri Abhyankar   ierr = VecGetOwnershipRange(U,&rstart,NULL);CHKERRQ(ierr);
62499c6b16b5SShri Abhyankar   ierr = VecGetArrayRead(U,&u);CHKERRQ(ierr);
62509c6b16b5SShri Abhyankar   ierr = VecGetArrayRead(Y,&y);CHKERRQ(ierr);
62517453f775SEmil Constantinescu 
62527453f775SEmil Constantinescu   max=0.;
62537453f775SEmil Constantinescu   maxa=0.;
62547453f775SEmil Constantinescu   maxr=0.;
62557453f775SEmil Constantinescu 
62567453f775SEmil Constantinescu   if (ts->vatol && ts->vrtol) {     /* vector atol, vector rtol */
62579c6b16b5SShri Abhyankar     const PetscScalar *atol,*rtol;
62589c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
62599c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
62607453f775SEmil Constantinescu 
62617453f775SEmil Constantinescu     for (i=0; i<n; i++) {
62627453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
62637453f775SEmil Constantinescu       tola = PetscRealPart(atol[i]);
62647453f775SEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
62657453f775SEmil Constantinescu       tol  = tola+tolr;
62667453f775SEmil Constantinescu       if(tola>0.){
62677453f775SEmil Constantinescu         maxa = PetscMax(maxa,diff / tola);
62687453f775SEmil Constantinescu       }
62697453f775SEmil Constantinescu       if(tolr>0.){
62707453f775SEmil Constantinescu         maxr = PetscMax(maxr,diff / tolr);
62717453f775SEmil Constantinescu       }
62727453f775SEmil Constantinescu       if(tol>0.){
62737453f775SEmil Constantinescu         max = PetscMax(max,diff / tol);
62747453f775SEmil Constantinescu       }
62759c6b16b5SShri Abhyankar     }
62769c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
62779c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
62789c6b16b5SShri Abhyankar   } else if (ts->vatol) {       /* vector atol, scalar rtol */
62799c6b16b5SShri Abhyankar     const PetscScalar *atol;
62809c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
62817453f775SEmil Constantinescu     for (i=0; i<n; i++) {
62827453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
62837453f775SEmil Constantinescu       tola = PetscRealPart(atol[i]);
62847453f775SEmil Constantinescu       tolr = ts->rtol  * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
62857453f775SEmil Constantinescu       tol  = tola+tolr;
62867453f775SEmil Constantinescu       if(tola>0.){
62877453f775SEmil Constantinescu         maxa = PetscMax(maxa,diff / tola);
62887453f775SEmil Constantinescu       }
62897453f775SEmil Constantinescu       if(tolr>0.){
62907453f775SEmil Constantinescu         maxr = PetscMax(maxr,diff / tolr);
62917453f775SEmil Constantinescu       }
62927453f775SEmil Constantinescu       if(tol>0.){
62937453f775SEmil Constantinescu         max = PetscMax(max,diff / tol);
62947453f775SEmil Constantinescu       }
62959c6b16b5SShri Abhyankar     }
62969c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
62979c6b16b5SShri Abhyankar   } else if (ts->vrtol) {       /* scalar atol, vector rtol */
62989c6b16b5SShri Abhyankar     const PetscScalar *rtol;
62999c6b16b5SShri Abhyankar     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
63007453f775SEmil Constantinescu 
63017453f775SEmil Constantinescu     for (i=0; i<n; i++) {
63027453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
63037453f775SEmil Constantinescu       tola = ts->atol;
63047453f775SEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
63057453f775SEmil Constantinescu       tol  = tola+tolr;
63067453f775SEmil Constantinescu       if(tola>0.){
63077453f775SEmil Constantinescu         maxa = PetscMax(maxa,diff / tola);
63087453f775SEmil Constantinescu       }
63097453f775SEmil Constantinescu       if(tolr>0.){
63107453f775SEmil Constantinescu         maxr = PetscMax(maxr,diff / tolr);
63117453f775SEmil Constantinescu       }
63127453f775SEmil Constantinescu       if(tol>0.){
63137453f775SEmil Constantinescu         max = PetscMax(max,diff / tol);
63147453f775SEmil Constantinescu       }
63159c6b16b5SShri Abhyankar     }
63169c6b16b5SShri Abhyankar     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
63179c6b16b5SShri Abhyankar   } else {                      /* scalar atol, scalar rtol */
63187453f775SEmil Constantinescu 
63197453f775SEmil Constantinescu     for (i=0; i<n; i++) {
63207453f775SEmil Constantinescu       diff = PetscAbsScalar(y[i] - u[i]);
63217453f775SEmil Constantinescu       tola = ts->atol;
63227453f775SEmil Constantinescu       tolr = ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
63237453f775SEmil Constantinescu       tol  = tola+tolr;
63247453f775SEmil Constantinescu       if(tola>0.){
63257453f775SEmil Constantinescu         maxa = PetscMax(maxa,diff / tola);
63267453f775SEmil Constantinescu       }
63277453f775SEmil Constantinescu       if(tolr>0.){
63287453f775SEmil Constantinescu         maxr = PetscMax(maxr,diff / tolr);
63297453f775SEmil Constantinescu       }
63307453f775SEmil Constantinescu       if(tol>0.){
63317453f775SEmil Constantinescu         max = PetscMax(max,diff / tol);
63327453f775SEmil Constantinescu       }
63339c6b16b5SShri Abhyankar     }
63349c6b16b5SShri Abhyankar   }
63359c6b16b5SShri Abhyankar   ierr = VecRestoreArrayRead(U,&u);CHKERRQ(ierr);
63369c6b16b5SShri Abhyankar   ierr = VecRestoreArrayRead(Y,&y);CHKERRQ(ierr);
63377453f775SEmil Constantinescu   err_loc[0] = max;
63387453f775SEmil Constantinescu   err_loc[1] = maxa;
63397453f775SEmil Constantinescu   err_loc[2] = maxr;
6340a88a9d1dSSatish Balay   ierr  = MPIU_Allreduce(err_loc,err_glb,3,MPIU_REAL,MPIU_MAX,PetscObjectComm((PetscObject)ts));CHKERRQ(ierr);
63417453f775SEmil Constantinescu   gmax   = err_glb[0];
63427453f775SEmil Constantinescu   gmaxa  = err_glb[1];
63437453f775SEmil Constantinescu   gmaxr  = err_glb[2];
63449c6b16b5SShri Abhyankar 
63459c6b16b5SShri Abhyankar   *norm = gmax;
63467453f775SEmil Constantinescu   *norma = gmaxa;
63477453f775SEmil Constantinescu   *normr = gmaxr;
63489c6b16b5SShri Abhyankar   if (PetscIsInfOrNanScalar(*norm)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norm");
63497453f775SEmil Constantinescu     if (PetscIsInfOrNanScalar(*norma)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norma");
63507453f775SEmil Constantinescu     if (PetscIsInfOrNanScalar(*normr)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in normr");
63519c6b16b5SShri Abhyankar   PetscFunctionReturn(0);
63529c6b16b5SShri Abhyankar }
63539c6b16b5SShri Abhyankar 
63541c3436cfSJed Brown /*@
63558a175baeSEmil Constantinescu    TSErrorWeightedNorm - compute a weighted norm of the difference between two state vectors based on supplied absolute and relative tolerances
63561c3436cfSJed Brown 
63571c3436cfSJed Brown    Collective on TS
63581c3436cfSJed Brown 
63591c3436cfSJed Brown    Input Arguments:
63601c3436cfSJed Brown +  ts - time stepping context
6361a4868fbcSLisandro Dalcin .  U - state vector, usually ts->vec_sol
6362a4868fbcSLisandro Dalcin .  Y - state vector to be compared to U
6363a4868fbcSLisandro Dalcin -  wnormtype - norm type, either NORM_2 or NORM_INFINITY
63647619abb3SShri 
63651c3436cfSJed Brown    Output Arguments:
63668a175baeSEmil Constantinescu .  norm  - weighted norm, a value of 1.0 achieves a balance between absolute and relative tolerances
63678a175baeSEmil Constantinescu .  norma - weighted norm, a value of 1.0 means that the error meets the absolute tolerance set by the user
63688a175baeSEmil Constantinescu .  normr - weighted norm, a value of 1.0 means that the error meets the relative tolerance set by the user
6369a4868fbcSLisandro Dalcin 
6370a4868fbcSLisandro Dalcin    Options Database Keys:
6371a4868fbcSLisandro Dalcin .  -ts_adapt_wnormtype <wnormtype> - 2, INFINITY
6372a4868fbcSLisandro Dalcin 
63731c3436cfSJed Brown    Level: developer
63741c3436cfSJed Brown 
63758a175baeSEmil Constantinescu .seealso: TSErrorWeightedNormInfinity(), TSErrorWeightedNorm2(), TSErrorWeightedENorm
63761c3436cfSJed Brown @*/
63777453f775SEmil Constantinescu PetscErrorCode TSErrorWeightedNorm(TS ts,Vec U,Vec Y,NormType wnormtype,PetscReal *norm,PetscReal *norma,PetscReal *normr)
63781c3436cfSJed Brown {
63798beabaa1SBarry Smith   PetscErrorCode ierr;
63801c3436cfSJed Brown 
63811c3436cfSJed Brown   PetscFunctionBegin;
6382a4868fbcSLisandro Dalcin   if (wnormtype == NORM_2) {
63837453f775SEmil Constantinescu     ierr = TSErrorWeightedNorm2(ts,U,Y,norm,norma,normr);CHKERRQ(ierr);
6384a4868fbcSLisandro Dalcin   } else if(wnormtype == NORM_INFINITY) {
63857453f775SEmil Constantinescu     ierr = TSErrorWeightedNormInfinity(ts,U,Y,norm,norma,normr);CHKERRQ(ierr);
6386a4868fbcSLisandro Dalcin   } else SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"No support for norm type %s",NormTypes[wnormtype]);
63871c3436cfSJed Brown   PetscFunctionReturn(0);
63881c3436cfSJed Brown }
63891c3436cfSJed Brown 
63908a175baeSEmil Constantinescu 
63918a175baeSEmil Constantinescu /*@
63928a175baeSEmil Constantinescu    TSErrorWeightedENorm2 - compute a weighted 2 error norm based on supplied absolute and relative tolerances
63938a175baeSEmil Constantinescu 
63948a175baeSEmil Constantinescu    Collective on TS
63958a175baeSEmil Constantinescu 
63968a175baeSEmil Constantinescu    Input Arguments:
63978a175baeSEmil Constantinescu +  ts - time stepping context
63988a175baeSEmil Constantinescu .  E - error vector
63998a175baeSEmil Constantinescu .  U - state vector, usually ts->vec_sol
64008a175baeSEmil Constantinescu -  Y - state vector, previous time step
64018a175baeSEmil Constantinescu 
64028a175baeSEmil Constantinescu    Output Arguments:
64038a175baeSEmil Constantinescu .  norm - weighted norm, a value of 1.0 means that the error matches the tolerances
64048a175baeSEmil Constantinescu .  norma - weighted norm based on the absolute tolerance, a value of 1.0 means that the error matches the tolerances
64058a175baeSEmil Constantinescu .  normr - weighted norm based on the relative tolerance, a value of 1.0 means that the error matches the tolerances
64068a175baeSEmil Constantinescu 
64078a175baeSEmil Constantinescu    Level: developer
64088a175baeSEmil Constantinescu 
64098a175baeSEmil Constantinescu .seealso: TSErrorWeightedENorm(), TSErrorWeightedENormInfinity()
64108a175baeSEmil Constantinescu @*/
64118a175baeSEmil Constantinescu PetscErrorCode TSErrorWeightedENorm2(TS ts,Vec E,Vec U,Vec Y,PetscReal *norm,PetscReal *norma,PetscReal *normr)
64128a175baeSEmil Constantinescu {
64138a175baeSEmil Constantinescu   PetscErrorCode    ierr;
64148a175baeSEmil Constantinescu   PetscInt          i,n,N,rstart;
64158a175baeSEmil Constantinescu   PetscInt          n_loc,na_loc,nr_loc;
64168a175baeSEmil Constantinescu   PetscReal         n_glb,na_glb,nr_glb;
64178a175baeSEmil Constantinescu   const PetscScalar *e,*u,*y;
64188a175baeSEmil Constantinescu   PetscReal         err,sum,suma,sumr,gsum,gsuma,gsumr;
64198a175baeSEmil Constantinescu   PetscReal         tol,tola,tolr;
64208a175baeSEmil Constantinescu   PetscReal         err_loc[6],err_glb[6];
64218a175baeSEmil Constantinescu 
64228a175baeSEmil Constantinescu   PetscFunctionBegin;
64238a175baeSEmil Constantinescu   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
64248a175baeSEmil Constantinescu   PetscValidHeaderSpecific(E,VEC_CLASSID,2);
64258a175baeSEmil Constantinescu   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
64268a175baeSEmil Constantinescu   PetscValidHeaderSpecific(Y,VEC_CLASSID,4);
64278a175baeSEmil Constantinescu   PetscValidType(E,2);
64288a175baeSEmil Constantinescu   PetscValidType(U,3);
64298a175baeSEmil Constantinescu   PetscValidType(Y,4);
64308a175baeSEmil Constantinescu   PetscCheckSameComm(E,2,U,3);
64318a175baeSEmil Constantinescu   PetscCheckSameComm(U,2,Y,3);
64328a175baeSEmil Constantinescu   PetscValidPointer(norm,5);
64338a175baeSEmil Constantinescu   PetscValidPointer(norma,6);
64348a175baeSEmil Constantinescu   PetscValidPointer(normr,7);
64358a175baeSEmil Constantinescu 
64368a175baeSEmil Constantinescu   ierr = VecGetSize(E,&N);CHKERRQ(ierr);
64378a175baeSEmil Constantinescu   ierr = VecGetLocalSize(E,&n);CHKERRQ(ierr);
64388a175baeSEmil Constantinescu   ierr = VecGetOwnershipRange(E,&rstart,NULL);CHKERRQ(ierr);
64398a175baeSEmil Constantinescu   ierr = VecGetArrayRead(E,&e);CHKERRQ(ierr);
64408a175baeSEmil Constantinescu   ierr = VecGetArrayRead(U,&u);CHKERRQ(ierr);
64418a175baeSEmil Constantinescu   ierr = VecGetArrayRead(Y,&y);CHKERRQ(ierr);
64428a175baeSEmil Constantinescu   sum  = 0.; n_loc  = 0;
64438a175baeSEmil Constantinescu   suma = 0.; na_loc = 0;
64448a175baeSEmil Constantinescu   sumr = 0.; nr_loc = 0;
64458a175baeSEmil Constantinescu   if (ts->vatol && ts->vrtol) {
64468a175baeSEmil Constantinescu     const PetscScalar *atol,*rtol;
64478a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
64488a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
64498a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
64508a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
64518a175baeSEmil Constantinescu       tola = PetscRealPart(atol[i]);
64528a175baeSEmil Constantinescu       if(tola>0.){
64538a175baeSEmil Constantinescu         suma  += PetscSqr(err/tola);
64548a175baeSEmil Constantinescu         na_loc++;
64558a175baeSEmil Constantinescu       }
64568a175baeSEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
64578a175baeSEmil Constantinescu       if(tolr>0.){
64588a175baeSEmil Constantinescu         sumr  += PetscSqr(err/tolr);
64598a175baeSEmil Constantinescu         nr_loc++;
64608a175baeSEmil Constantinescu       }
64618a175baeSEmil Constantinescu       tol=tola+tolr;
64628a175baeSEmil Constantinescu       if(tol>0.){
64638a175baeSEmil Constantinescu         sum  += PetscSqr(err/tol);
64648a175baeSEmil Constantinescu         n_loc++;
64658a175baeSEmil Constantinescu       }
64668a175baeSEmil Constantinescu     }
64678a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
64688a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
64698a175baeSEmil Constantinescu   } else if (ts->vatol) {       /* vector atol, scalar rtol */
64708a175baeSEmil Constantinescu     const PetscScalar *atol;
64718a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
64728a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
64738a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
64748a175baeSEmil Constantinescu       tola = PetscRealPart(atol[i]);
64758a175baeSEmil Constantinescu       if(tola>0.){
64768a175baeSEmil Constantinescu         suma  += PetscSqr(err/tola);
64778a175baeSEmil Constantinescu         na_loc++;
64788a175baeSEmil Constantinescu       }
64798a175baeSEmil Constantinescu       tolr = ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
64808a175baeSEmil Constantinescu       if(tolr>0.){
64818a175baeSEmil Constantinescu         sumr  += PetscSqr(err/tolr);
64828a175baeSEmil Constantinescu         nr_loc++;
64838a175baeSEmil Constantinescu       }
64848a175baeSEmil Constantinescu       tol=tola+tolr;
64858a175baeSEmil Constantinescu       if(tol>0.){
64868a175baeSEmil Constantinescu         sum  += PetscSqr(err/tol);
64878a175baeSEmil Constantinescu         n_loc++;
64888a175baeSEmil Constantinescu       }
64898a175baeSEmil Constantinescu     }
64908a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
64918a175baeSEmil Constantinescu   } else if (ts->vrtol) {       /* scalar atol, vector rtol */
64928a175baeSEmil Constantinescu     const PetscScalar *rtol;
64938a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
64948a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
64958a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
64968a175baeSEmil Constantinescu       tola = ts->atol;
64978a175baeSEmil Constantinescu       if(tola>0.){
64988a175baeSEmil Constantinescu         suma  += PetscSqr(err/tola);
64998a175baeSEmil Constantinescu         na_loc++;
65008a175baeSEmil Constantinescu       }
65018a175baeSEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
65028a175baeSEmil Constantinescu       if(tolr>0.){
65038a175baeSEmil Constantinescu         sumr  += PetscSqr(err/tolr);
65048a175baeSEmil Constantinescu         nr_loc++;
65058a175baeSEmil Constantinescu       }
65068a175baeSEmil Constantinescu       tol=tola+tolr;
65078a175baeSEmil Constantinescu       if(tol>0.){
65088a175baeSEmil Constantinescu         sum  += PetscSqr(err/tol);
65098a175baeSEmil Constantinescu         n_loc++;
65108a175baeSEmil Constantinescu       }
65118a175baeSEmil Constantinescu     }
65128a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
65138a175baeSEmil Constantinescu   } else {                      /* scalar atol, scalar rtol */
65148a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
65158a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
65168a175baeSEmil Constantinescu      tola = ts->atol;
65178a175baeSEmil Constantinescu       if(tola>0.){
65188a175baeSEmil Constantinescu         suma  += PetscSqr(err/tola);
65198a175baeSEmil Constantinescu         na_loc++;
65208a175baeSEmil Constantinescu       }
65218a175baeSEmil Constantinescu       tolr = ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
65228a175baeSEmil Constantinescu       if(tolr>0.){
65238a175baeSEmil Constantinescu         sumr  += PetscSqr(err/tolr);
65248a175baeSEmil Constantinescu         nr_loc++;
65258a175baeSEmil Constantinescu       }
65268a175baeSEmil Constantinescu       tol=tola+tolr;
65278a175baeSEmil Constantinescu       if(tol>0.){
65288a175baeSEmil Constantinescu         sum  += PetscSqr(err/tol);
65298a175baeSEmil Constantinescu         n_loc++;
65308a175baeSEmil Constantinescu       }
65318a175baeSEmil Constantinescu     }
65328a175baeSEmil Constantinescu   }
65338a175baeSEmil Constantinescu   ierr = VecRestoreArrayRead(E,&e);CHKERRQ(ierr);
65348a175baeSEmil Constantinescu   ierr = VecRestoreArrayRead(U,&u);CHKERRQ(ierr);
65358a175baeSEmil Constantinescu   ierr = VecRestoreArrayRead(Y,&y);CHKERRQ(ierr);
65368a175baeSEmil Constantinescu 
65378a175baeSEmil Constantinescu   err_loc[0] = sum;
65388a175baeSEmil Constantinescu   err_loc[1] = suma;
65398a175baeSEmil Constantinescu   err_loc[2] = sumr;
65408a175baeSEmil Constantinescu   err_loc[3] = (PetscReal)n_loc;
65418a175baeSEmil Constantinescu   err_loc[4] = (PetscReal)na_loc;
65428a175baeSEmil Constantinescu   err_loc[5] = (PetscReal)nr_loc;
65438a175baeSEmil Constantinescu 
6544a88a9d1dSSatish Balay   ierr = MPIU_Allreduce(err_loc,err_glb,6,MPIU_REAL,MPIU_SUM,PetscObjectComm((PetscObject)ts));CHKERRQ(ierr);
65458a175baeSEmil Constantinescu 
65468a175baeSEmil Constantinescu   gsum   = err_glb[0];
65478a175baeSEmil Constantinescu   gsuma  = err_glb[1];
65488a175baeSEmil Constantinescu   gsumr  = err_glb[2];
65498a175baeSEmil Constantinescu   n_glb  = err_glb[3];
65508a175baeSEmil Constantinescu   na_glb = err_glb[4];
65518a175baeSEmil Constantinescu   nr_glb = err_glb[5];
65528a175baeSEmil Constantinescu 
65538a175baeSEmil Constantinescu   *norm  = 0.;
65548a175baeSEmil Constantinescu   if(n_glb>0. ){*norm  = PetscSqrtReal(gsum  / n_glb );}
65558a175baeSEmil Constantinescu   *norma = 0.;
65568a175baeSEmil Constantinescu   if(na_glb>0.){*norma = PetscSqrtReal(gsuma / na_glb);}
65578a175baeSEmil Constantinescu   *normr = 0.;
65588a175baeSEmil Constantinescu   if(nr_glb>0.){*normr = PetscSqrtReal(gsumr / nr_glb);}
65598a175baeSEmil Constantinescu 
65608a175baeSEmil Constantinescu   if (PetscIsInfOrNanScalar(*norm)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norm");
65618a175baeSEmil Constantinescu   if (PetscIsInfOrNanScalar(*norma)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norma");
65628a175baeSEmil Constantinescu   if (PetscIsInfOrNanScalar(*normr)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in normr");
65638a175baeSEmil Constantinescu   PetscFunctionReturn(0);
65648a175baeSEmil Constantinescu }
65658a175baeSEmil Constantinescu 
65668a175baeSEmil Constantinescu /*@
65678a175baeSEmil Constantinescu    TSErrorWeightedENormInfinity - compute a weighted infinity error norm based on supplied absolute and relative tolerances
65688a175baeSEmil Constantinescu    Collective on TS
65698a175baeSEmil Constantinescu 
65708a175baeSEmil Constantinescu    Input Arguments:
65718a175baeSEmil Constantinescu +  ts - time stepping context
65728a175baeSEmil Constantinescu .  E - error vector
65738a175baeSEmil Constantinescu .  U - state vector, usually ts->vec_sol
65748a175baeSEmil Constantinescu -  Y - state vector, previous time step
65758a175baeSEmil Constantinescu 
65768a175baeSEmil Constantinescu    Output Arguments:
65778a175baeSEmil Constantinescu .  norm - weighted norm, a value of 1.0 means that the error matches the tolerances
65788a175baeSEmil Constantinescu .  norma - weighted norm based on the absolute tolerance, a value of 1.0 means that the error matches the tolerances
65798a175baeSEmil Constantinescu .  normr - weighted norm based on the relative tolerance, a value of 1.0 means that the error matches the tolerances
65808a175baeSEmil Constantinescu 
65818a175baeSEmil Constantinescu    Level: developer
65828a175baeSEmil Constantinescu 
65838a175baeSEmil Constantinescu .seealso: TSErrorWeightedENorm(), TSErrorWeightedENorm2()
65848a175baeSEmil Constantinescu @*/
65858a175baeSEmil Constantinescu PetscErrorCode TSErrorWeightedENormInfinity(TS ts,Vec E,Vec U,Vec Y,PetscReal *norm,PetscReal *norma,PetscReal *normr)
65868a175baeSEmil Constantinescu {
65878a175baeSEmil Constantinescu   PetscErrorCode    ierr;
65888a175baeSEmil Constantinescu   PetscInt          i,n,N,rstart;
65898a175baeSEmil Constantinescu   const PetscScalar *e,*u,*y;
65908a175baeSEmil Constantinescu   PetscReal         err,max,gmax,maxa,gmaxa,maxr,gmaxr;
65918a175baeSEmil Constantinescu   PetscReal         tol,tola,tolr;
65928a175baeSEmil Constantinescu   PetscReal         err_loc[3],err_glb[3];
65938a175baeSEmil Constantinescu 
65948a175baeSEmil Constantinescu   PetscFunctionBegin;
65958a175baeSEmil Constantinescu   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
65968a175baeSEmil Constantinescu   PetscValidHeaderSpecific(E,VEC_CLASSID,2);
65978a175baeSEmil Constantinescu   PetscValidHeaderSpecific(U,VEC_CLASSID,3);
65988a175baeSEmil Constantinescu   PetscValidHeaderSpecific(Y,VEC_CLASSID,4);
65998a175baeSEmil Constantinescu   PetscValidType(E,2);
66008a175baeSEmil Constantinescu   PetscValidType(U,3);
66018a175baeSEmil Constantinescu   PetscValidType(Y,4);
66028a175baeSEmil Constantinescu   PetscCheckSameComm(E,2,U,3);
66038a175baeSEmil Constantinescu   PetscCheckSameComm(U,2,Y,3);
66048a175baeSEmil Constantinescu   PetscValidPointer(norm,5);
66058a175baeSEmil Constantinescu   PetscValidPointer(norma,6);
66068a175baeSEmil Constantinescu   PetscValidPointer(normr,7);
66078a175baeSEmil Constantinescu 
66088a175baeSEmil Constantinescu   ierr = VecGetSize(E,&N);CHKERRQ(ierr);
66098a175baeSEmil Constantinescu   ierr = VecGetLocalSize(E,&n);CHKERRQ(ierr);
66108a175baeSEmil Constantinescu   ierr = VecGetOwnershipRange(E,&rstart,NULL);CHKERRQ(ierr);
66118a175baeSEmil Constantinescu   ierr = VecGetArrayRead(E,&e);CHKERRQ(ierr);
66128a175baeSEmil Constantinescu   ierr = VecGetArrayRead(U,&u);CHKERRQ(ierr);
66138a175baeSEmil Constantinescu   ierr = VecGetArrayRead(Y,&y);CHKERRQ(ierr);
66148a175baeSEmil Constantinescu 
66158a175baeSEmil Constantinescu   max=0.;
66168a175baeSEmil Constantinescu   maxa=0.;
66178a175baeSEmil Constantinescu   maxr=0.;
66188a175baeSEmil Constantinescu 
66198a175baeSEmil Constantinescu   if (ts->vatol && ts->vrtol) {     /* vector atol, vector rtol */
66208a175baeSEmil Constantinescu     const PetscScalar *atol,*rtol;
66218a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
66228a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
66238a175baeSEmil Constantinescu 
66248a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
66258a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
66268a175baeSEmil Constantinescu       tola = PetscRealPart(atol[i]);
66278a175baeSEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
66288a175baeSEmil Constantinescu       tol  = tola+tolr;
66298a175baeSEmil Constantinescu       if(tola>0.){
66308a175baeSEmil Constantinescu         maxa = PetscMax(maxa,err / tola);
66318a175baeSEmil Constantinescu       }
66328a175baeSEmil Constantinescu       if(tolr>0.){
66338a175baeSEmil Constantinescu         maxr = PetscMax(maxr,err / tolr);
66348a175baeSEmil Constantinescu       }
66358a175baeSEmil Constantinescu       if(tol>0.){
66368a175baeSEmil Constantinescu         max = PetscMax(max,err / tol);
66378a175baeSEmil Constantinescu       }
66388a175baeSEmil Constantinescu     }
66398a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
66408a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
66418a175baeSEmil Constantinescu   } else if (ts->vatol) {       /* vector atol, scalar rtol */
66428a175baeSEmil Constantinescu     const PetscScalar *atol;
66438a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
66448a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
66458a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
66468a175baeSEmil Constantinescu       tola = PetscRealPart(atol[i]);
66478a175baeSEmil Constantinescu       tolr = ts->rtol  * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
66488a175baeSEmil Constantinescu       tol  = tola+tolr;
66498a175baeSEmil Constantinescu       if(tola>0.){
66508a175baeSEmil Constantinescu         maxa = PetscMax(maxa,err / tola);
66518a175baeSEmil Constantinescu       }
66528a175baeSEmil Constantinescu       if(tolr>0.){
66538a175baeSEmil Constantinescu         maxr = PetscMax(maxr,err / tolr);
66548a175baeSEmil Constantinescu       }
66558a175baeSEmil Constantinescu       if(tol>0.){
66568a175baeSEmil Constantinescu         max = PetscMax(max,err / tol);
66578a175baeSEmil Constantinescu       }
66588a175baeSEmil Constantinescu     }
66598a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vatol,&atol);CHKERRQ(ierr);
66608a175baeSEmil Constantinescu   } else if (ts->vrtol) {       /* scalar atol, vector rtol */
66618a175baeSEmil Constantinescu     const PetscScalar *rtol;
66628a175baeSEmil Constantinescu     ierr = VecGetArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
66638a175baeSEmil Constantinescu 
66648a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
66658a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
66668a175baeSEmil Constantinescu       tola = ts->atol;
66678a175baeSEmil Constantinescu       tolr = PetscRealPart(rtol[i]) * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
66688a175baeSEmil Constantinescu       tol  = tola+tolr;
66698a175baeSEmil Constantinescu       if(tola>0.){
66708a175baeSEmil Constantinescu         maxa = PetscMax(maxa,err / tola);
66718a175baeSEmil Constantinescu       }
66728a175baeSEmil Constantinescu       if(tolr>0.){
66738a175baeSEmil Constantinescu         maxr = PetscMax(maxr,err / tolr);
66748a175baeSEmil Constantinescu       }
66758a175baeSEmil Constantinescu       if(tol>0.){
66768a175baeSEmil Constantinescu         max = PetscMax(max,err / tol);
66778a175baeSEmil Constantinescu       }
66788a175baeSEmil Constantinescu     }
66798a175baeSEmil Constantinescu     ierr = VecRestoreArrayRead(ts->vrtol,&rtol);CHKERRQ(ierr);
66808a175baeSEmil Constantinescu   } else {                      /* scalar atol, scalar rtol */
66818a175baeSEmil Constantinescu 
66828a175baeSEmil Constantinescu     for (i=0; i<n; i++) {
66838a175baeSEmil Constantinescu       err = PetscAbsScalar(e[i]);
66848a175baeSEmil Constantinescu       tola = ts->atol;
66858a175baeSEmil Constantinescu       tolr = ts->rtol * PetscMax(PetscAbsScalar(u[i]),PetscAbsScalar(y[i]));
66868a175baeSEmil Constantinescu       tol  = tola+tolr;
66878a175baeSEmil Constantinescu       if(tola>0.){
66888a175baeSEmil Constantinescu         maxa = PetscMax(maxa,err / tola);
66898a175baeSEmil Constantinescu       }
66908a175baeSEmil Constantinescu       if(tolr>0.){
66918a175baeSEmil Constantinescu         maxr = PetscMax(maxr,err / tolr);
66928a175baeSEmil Constantinescu       }
66938a175baeSEmil Constantinescu       if(tol>0.){
66948a175baeSEmil Constantinescu         max = PetscMax(max,err / tol);
66958a175baeSEmil Constantinescu       }
66968a175baeSEmil Constantinescu     }
66978a175baeSEmil Constantinescu   }
66988a175baeSEmil Constantinescu   ierr = VecRestoreArrayRead(E,&e);CHKERRQ(ierr);
66998a175baeSEmil Constantinescu   ierr = VecRestoreArrayRead(U,&u);CHKERRQ(ierr);
67008a175baeSEmil Constantinescu   ierr = VecRestoreArrayRead(Y,&y);CHKERRQ(ierr);
67018a175baeSEmil Constantinescu   err_loc[0] = max;
67028a175baeSEmil Constantinescu   err_loc[1] = maxa;
67038a175baeSEmil Constantinescu   err_loc[2] = maxr;
6704a88a9d1dSSatish Balay   ierr  = MPIU_Allreduce(err_loc,err_glb,3,MPIU_REAL,MPIU_MAX,PetscObjectComm((PetscObject)ts));CHKERRQ(ierr);
67058a175baeSEmil Constantinescu   gmax   = err_glb[0];
67068a175baeSEmil Constantinescu   gmaxa  = err_glb[1];
67078a175baeSEmil Constantinescu   gmaxr  = err_glb[2];
67088a175baeSEmil Constantinescu 
67098a175baeSEmil Constantinescu   *norm = gmax;
67108a175baeSEmil Constantinescu   *norma = gmaxa;
67118a175baeSEmil Constantinescu   *normr = gmaxr;
67128a175baeSEmil Constantinescu   if (PetscIsInfOrNanScalar(*norm)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norm");
67138a175baeSEmil Constantinescu     if (PetscIsInfOrNanScalar(*norma)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in norma");
67148a175baeSEmil Constantinescu     if (PetscIsInfOrNanScalar(*normr)) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_FP,"Infinite or not-a-number generated in normr");
67158a175baeSEmil Constantinescu   PetscFunctionReturn(0);
67168a175baeSEmil Constantinescu }
67178a175baeSEmil Constantinescu 
67188a175baeSEmil Constantinescu /*@
67198a175baeSEmil Constantinescu    TSErrorWeightedENorm - compute a weighted error norm based on supplied absolute and relative tolerances
67208a175baeSEmil Constantinescu 
67218a175baeSEmil Constantinescu    Collective on TS
67228a175baeSEmil Constantinescu 
67238a175baeSEmil Constantinescu    Input Arguments:
67248a175baeSEmil Constantinescu +  ts - time stepping context
67258a175baeSEmil Constantinescu .  E - error vector
67268a175baeSEmil Constantinescu .  U - state vector, usually ts->vec_sol
67278a175baeSEmil Constantinescu .  Y - state vector, previous time step
67288a175baeSEmil Constantinescu -  wnormtype - norm type, either NORM_2 or NORM_INFINITY
67298a175baeSEmil Constantinescu 
67308a175baeSEmil Constantinescu    Output Arguments:
67318a175baeSEmil Constantinescu .  norm  - weighted norm, a value of 1.0 achieves a balance between absolute and relative tolerances
67328a175baeSEmil Constantinescu .  norma - weighted norm, a value of 1.0 means that the error meets the absolute tolerance set by the user
67338a175baeSEmil Constantinescu .  normr - weighted norm, a value of 1.0 means that the error meets the relative tolerance set by the user
67348a175baeSEmil Constantinescu 
67358a175baeSEmil Constantinescu    Options Database Keys:
67368a175baeSEmil Constantinescu .  -ts_adapt_wnormtype <wnormtype> - 2, INFINITY
67378a175baeSEmil Constantinescu 
67388a175baeSEmil Constantinescu    Level: developer
67398a175baeSEmil Constantinescu 
67408a175baeSEmil Constantinescu .seealso: TSErrorWeightedENormInfinity(), TSErrorWeightedENorm2(), TSErrorWeightedNormInfinity(), TSErrorWeightedNorm2()
67418a175baeSEmil Constantinescu @*/
67428a175baeSEmil Constantinescu PetscErrorCode TSErrorWeightedENorm(TS ts,Vec E,Vec U,Vec Y,NormType wnormtype,PetscReal *norm,PetscReal *norma,PetscReal *normr)
67438a175baeSEmil Constantinescu {
67448a175baeSEmil Constantinescu   PetscErrorCode ierr;
67458a175baeSEmil Constantinescu 
67468a175baeSEmil Constantinescu   PetscFunctionBegin;
67478a175baeSEmil Constantinescu   if (wnormtype == NORM_2) {
67488a175baeSEmil Constantinescu     ierr = TSErrorWeightedENorm2(ts,E,U,Y,norm,norma,normr);CHKERRQ(ierr);
67498a175baeSEmil Constantinescu   } else if(wnormtype == NORM_INFINITY) {
67508a175baeSEmil Constantinescu     ierr = TSErrorWeightedENormInfinity(ts,E,U,Y,norm,norma,normr);CHKERRQ(ierr);
67518a175baeSEmil Constantinescu   } else SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"No support for norm type %s",NormTypes[wnormtype]);
67528a175baeSEmil Constantinescu   PetscFunctionReturn(0);
67538a175baeSEmil Constantinescu }
67548a175baeSEmil Constantinescu 
67558a175baeSEmil Constantinescu 
67568d59e960SJed Brown /*@
67578d59e960SJed Brown    TSSetCFLTimeLocal - Set the local CFL constraint relative to forward Euler
67588d59e960SJed Brown 
67598d59e960SJed Brown    Logically Collective on TS
67608d59e960SJed Brown 
67618d59e960SJed Brown    Input Arguments:
67628d59e960SJed Brown +  ts - time stepping context
67638d59e960SJed Brown -  cfltime - maximum stable time step if using forward Euler (value can be different on each process)
67648d59e960SJed Brown 
67658d59e960SJed Brown    Note:
67668d59e960SJed Brown    After calling this function, the global CFL time can be obtained by calling TSGetCFLTime()
67678d59e960SJed Brown 
67688d59e960SJed Brown    Level: intermediate
67698d59e960SJed Brown 
67708d59e960SJed Brown .seealso: TSGetCFLTime(), TSADAPTCFL
67718d59e960SJed Brown @*/
67728d59e960SJed Brown PetscErrorCode TSSetCFLTimeLocal(TS ts,PetscReal cfltime)
67738d59e960SJed Brown {
67748d59e960SJed Brown   PetscFunctionBegin;
67758d59e960SJed Brown   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
67768d59e960SJed Brown   ts->cfltime_local = cfltime;
67778d59e960SJed Brown   ts->cfltime       = -1.;
67788d59e960SJed Brown   PetscFunctionReturn(0);
67798d59e960SJed Brown }
67808d59e960SJed Brown 
67818d59e960SJed Brown /*@
67828d59e960SJed Brown    TSGetCFLTime - Get the maximum stable time step according to CFL criteria applied to forward Euler
67838d59e960SJed Brown 
67848d59e960SJed Brown    Collective on TS
67858d59e960SJed Brown 
67868d59e960SJed Brown    Input Arguments:
67878d59e960SJed Brown .  ts - time stepping context
67888d59e960SJed Brown 
67898d59e960SJed Brown    Output Arguments:
67908d59e960SJed Brown .  cfltime - maximum stable time step for forward Euler
67918d59e960SJed Brown 
67928d59e960SJed Brown    Level: advanced
67938d59e960SJed Brown 
67948d59e960SJed Brown .seealso: TSSetCFLTimeLocal()
67958d59e960SJed Brown @*/
67968d59e960SJed Brown PetscErrorCode TSGetCFLTime(TS ts,PetscReal *cfltime)
67978d59e960SJed Brown {
67988d59e960SJed Brown   PetscErrorCode ierr;
67998d59e960SJed Brown 
68008d59e960SJed Brown   PetscFunctionBegin;
68018d59e960SJed Brown   if (ts->cfltime < 0) {
6802b2566f29SBarry Smith     ierr = MPIU_Allreduce(&ts->cfltime_local,&ts->cfltime,1,MPIU_REAL,MPIU_MIN,PetscObjectComm((PetscObject)ts));CHKERRQ(ierr);
68038d59e960SJed Brown   }
68048d59e960SJed Brown   *cfltime = ts->cfltime;
68058d59e960SJed Brown   PetscFunctionReturn(0);
68068d59e960SJed Brown }
68078d59e960SJed Brown 
6808d6ebe24aSShri Abhyankar /*@
6809d6ebe24aSShri Abhyankar    TSVISetVariableBounds - Sets the lower and upper bounds for the solution vector. xl <= x <= xu
6810d6ebe24aSShri Abhyankar 
6811d6ebe24aSShri Abhyankar    Input Parameters:
6812d6ebe24aSShri Abhyankar .  ts   - the TS context.
6813d6ebe24aSShri Abhyankar .  xl   - lower bound.
6814d6ebe24aSShri Abhyankar .  xu   - upper bound.
6815d6ebe24aSShri Abhyankar 
6816d6ebe24aSShri Abhyankar    Notes:
6817d6ebe24aSShri Abhyankar    If this routine is not called then the lower and upper bounds are set to
6818e270355aSBarry Smith    PETSC_NINFINITY and PETSC_INFINITY respectively during SNESSetUp().
6819d6ebe24aSShri Abhyankar 
68202bd2b0e6SSatish Balay    Level: advanced
68212bd2b0e6SSatish Balay 
6822d6ebe24aSShri Abhyankar @*/
6823d6ebe24aSShri Abhyankar PetscErrorCode TSVISetVariableBounds(TS ts, Vec xl, Vec xu)
6824d6ebe24aSShri Abhyankar {
6825d6ebe24aSShri Abhyankar   PetscErrorCode ierr;
6826d6ebe24aSShri Abhyankar   SNES           snes;
6827d6ebe24aSShri Abhyankar 
6828d6ebe24aSShri Abhyankar   PetscFunctionBegin;
6829d6ebe24aSShri Abhyankar   ierr = TSGetSNES(ts,&snes);CHKERRQ(ierr);
6830d6ebe24aSShri Abhyankar   ierr = SNESVISetVariableBounds(snes,xl,xu);CHKERRQ(ierr);
6831d6ebe24aSShri Abhyankar   PetscFunctionReturn(0);
6832d6ebe24aSShri Abhyankar }
6833d6ebe24aSShri Abhyankar 
6834325fc9f4SBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE)
6835c6db04a5SJed Brown #include <mex.h>
6836325fc9f4SBarry Smith 
6837325fc9f4SBarry Smith typedef struct {char *funcname; mxArray *ctx;} TSMatlabContext;
6838325fc9f4SBarry Smith 
6839325fc9f4SBarry Smith /*
6840325fc9f4SBarry Smith    TSComputeFunction_Matlab - Calls the function that has been set with
6841325fc9f4SBarry Smith                          TSSetFunctionMatlab().
6842325fc9f4SBarry Smith 
6843325fc9f4SBarry Smith    Collective on TS
6844325fc9f4SBarry Smith 
6845325fc9f4SBarry Smith    Input Parameters:
6846325fc9f4SBarry Smith +  snes - the TS context
68470910c330SBarry Smith -  u - input vector
6848325fc9f4SBarry Smith 
6849325fc9f4SBarry Smith    Output Parameter:
6850325fc9f4SBarry Smith .  y - function vector, as set by TSSetFunction()
6851325fc9f4SBarry Smith 
6852325fc9f4SBarry Smith    Notes:
6853325fc9f4SBarry Smith    TSComputeFunction() is typically used within nonlinear solvers
6854325fc9f4SBarry Smith    implementations, so most users would not generally call this routine
6855325fc9f4SBarry Smith    themselves.
6856325fc9f4SBarry Smith 
6857325fc9f4SBarry Smith    Level: developer
6858325fc9f4SBarry Smith 
6859325fc9f4SBarry Smith .keywords: TS, nonlinear, compute, function
6860325fc9f4SBarry Smith 
6861325fc9f4SBarry Smith .seealso: TSSetFunction(), TSGetFunction()
6862325fc9f4SBarry Smith */
68630910c330SBarry Smith PetscErrorCode  TSComputeFunction_Matlab(TS snes,PetscReal time,Vec u,Vec udot,Vec y, void *ctx)
6864325fc9f4SBarry Smith {
6865325fc9f4SBarry Smith   PetscErrorCode  ierr;
6866325fc9f4SBarry Smith   TSMatlabContext *sctx = (TSMatlabContext*)ctx;
6867325fc9f4SBarry Smith   int             nlhs  = 1,nrhs = 7;
6868325fc9f4SBarry Smith   mxArray         *plhs[1],*prhs[7];
6869325fc9f4SBarry Smith   long long int   lx = 0,lxdot = 0,ly = 0,ls = 0;
6870325fc9f4SBarry Smith 
6871325fc9f4SBarry Smith   PetscFunctionBegin;
6872325fc9f4SBarry Smith   PetscValidHeaderSpecific(snes,TS_CLASSID,1);
68730910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,3);
68740910c330SBarry Smith   PetscValidHeaderSpecific(udot,VEC_CLASSID,4);
6875325fc9f4SBarry Smith   PetscValidHeaderSpecific(y,VEC_CLASSID,5);
68760910c330SBarry Smith   PetscCheckSameComm(snes,1,u,3);
6877325fc9f4SBarry Smith   PetscCheckSameComm(snes,1,y,5);
6878325fc9f4SBarry Smith 
6879325fc9f4SBarry Smith   ierr = PetscMemcpy(&ls,&snes,sizeof(snes));CHKERRQ(ierr);
68800910c330SBarry Smith   ierr = PetscMemcpy(&lx,&u,sizeof(u));CHKERRQ(ierr);
68810910c330SBarry Smith   ierr = PetscMemcpy(&lxdot,&udot,sizeof(udot));CHKERRQ(ierr);
68820910c330SBarry Smith   ierr = PetscMemcpy(&ly,&y,sizeof(u));CHKERRQ(ierr);
6883bbd56ea5SKarl Rupp 
6884325fc9f4SBarry Smith   prhs[0] =  mxCreateDoubleScalar((double)ls);
6885325fc9f4SBarry Smith   prhs[1] =  mxCreateDoubleScalar(time);
6886325fc9f4SBarry Smith   prhs[2] =  mxCreateDoubleScalar((double)lx);
6887325fc9f4SBarry Smith   prhs[3] =  mxCreateDoubleScalar((double)lxdot);
6888325fc9f4SBarry Smith   prhs[4] =  mxCreateDoubleScalar((double)ly);
6889325fc9f4SBarry Smith   prhs[5] =  mxCreateString(sctx->funcname);
6890325fc9f4SBarry Smith   prhs[6] =  sctx->ctx;
6891325fc9f4SBarry Smith   ierr    =  mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscTSComputeFunctionInternal");CHKERRQ(ierr);
6892325fc9f4SBarry Smith   ierr    =  mxGetScalar(plhs[0]);CHKERRQ(ierr);
6893325fc9f4SBarry Smith   mxDestroyArray(prhs[0]);
6894325fc9f4SBarry Smith   mxDestroyArray(prhs[1]);
6895325fc9f4SBarry Smith   mxDestroyArray(prhs[2]);
6896325fc9f4SBarry Smith   mxDestroyArray(prhs[3]);
6897325fc9f4SBarry Smith   mxDestroyArray(prhs[4]);
6898325fc9f4SBarry Smith   mxDestroyArray(prhs[5]);
6899325fc9f4SBarry Smith   mxDestroyArray(plhs[0]);
6900325fc9f4SBarry Smith   PetscFunctionReturn(0);
6901325fc9f4SBarry Smith }
6902325fc9f4SBarry Smith 
6903325fc9f4SBarry Smith /*
6904325fc9f4SBarry Smith    TSSetFunctionMatlab - Sets the function evaluation routine and function
6905325fc9f4SBarry Smith    vector for use by the TS routines in solving ODEs
6906e3c5b3baSBarry Smith    equations from MATLAB. Here the function is a string containing the name of a MATLAB function
6907325fc9f4SBarry Smith 
6908325fc9f4SBarry Smith    Logically Collective on TS
6909325fc9f4SBarry Smith 
6910325fc9f4SBarry Smith    Input Parameters:
6911325fc9f4SBarry Smith +  ts - the TS context
6912325fc9f4SBarry Smith -  func - function evaluation routine
6913325fc9f4SBarry Smith 
6914325fc9f4SBarry Smith    Calling sequence of func:
69150910c330SBarry Smith $    func (TS ts,PetscReal time,Vec u,Vec udot,Vec f,void *ctx);
6916325fc9f4SBarry Smith 
6917325fc9f4SBarry Smith    Level: beginner
6918325fc9f4SBarry Smith 
6919325fc9f4SBarry Smith .keywords: TS, nonlinear, set, function
6920325fc9f4SBarry Smith 
6921325fc9f4SBarry Smith .seealso: TSGetFunction(), TSComputeFunction(), TSSetJacobian(), TSSetFunction()
6922325fc9f4SBarry Smith */
6923cdcf91faSSean Farley PetscErrorCode  TSSetFunctionMatlab(TS ts,const char *func,mxArray *ctx)
6924325fc9f4SBarry Smith {
6925325fc9f4SBarry Smith   PetscErrorCode  ierr;
6926325fc9f4SBarry Smith   TSMatlabContext *sctx;
6927325fc9f4SBarry Smith 
6928325fc9f4SBarry Smith   PetscFunctionBegin;
6929325fc9f4SBarry Smith   /* currently sctx is memory bleed */
693095dccacaSBarry Smith   ierr = PetscNew(&sctx);CHKERRQ(ierr);
6931325fc9f4SBarry Smith   ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr);
6932325fc9f4SBarry Smith   /*
6933325fc9f4SBarry Smith      This should work, but it doesn't
6934325fc9f4SBarry Smith   sctx->ctx = ctx;
6935325fc9f4SBarry Smith   mexMakeArrayPersistent(sctx->ctx);
6936325fc9f4SBarry Smith   */
6937325fc9f4SBarry Smith   sctx->ctx = mxDuplicateArray(ctx);
6938bbd56ea5SKarl Rupp 
69390298fd71SBarry Smith   ierr = TSSetIFunction(ts,NULL,TSComputeFunction_Matlab,sctx);CHKERRQ(ierr);
6940325fc9f4SBarry Smith   PetscFunctionReturn(0);
6941325fc9f4SBarry Smith }
6942325fc9f4SBarry Smith 
6943325fc9f4SBarry Smith /*
6944325fc9f4SBarry Smith    TSComputeJacobian_Matlab - Calls the function that has been set with
6945325fc9f4SBarry Smith                          TSSetJacobianMatlab().
6946325fc9f4SBarry Smith 
6947325fc9f4SBarry Smith    Collective on TS
6948325fc9f4SBarry Smith 
6949325fc9f4SBarry Smith    Input Parameters:
6950cdcf91faSSean Farley +  ts - the TS context
69510910c330SBarry Smith .  u - input vector
6952325fc9f4SBarry Smith .  A, B - the matrices
6953325fc9f4SBarry Smith -  ctx - user context
6954325fc9f4SBarry Smith 
6955325fc9f4SBarry Smith    Level: developer
6956325fc9f4SBarry Smith 
6957325fc9f4SBarry Smith .keywords: TS, nonlinear, compute, function
6958325fc9f4SBarry Smith 
6959325fc9f4SBarry Smith .seealso: TSSetFunction(), TSGetFunction()
6960325fc9f4SBarry Smith @*/
6961f3229a78SSatish Balay PetscErrorCode  TSComputeJacobian_Matlab(TS ts,PetscReal time,Vec u,Vec udot,PetscReal shift,Mat A,Mat B,void *ctx)
6962325fc9f4SBarry Smith {
6963325fc9f4SBarry Smith   PetscErrorCode  ierr;
6964325fc9f4SBarry Smith   TSMatlabContext *sctx = (TSMatlabContext*)ctx;
6965325fc9f4SBarry Smith   int             nlhs  = 2,nrhs = 9;
6966325fc9f4SBarry Smith   mxArray         *plhs[2],*prhs[9];
6967325fc9f4SBarry Smith   long long int   lx = 0,lxdot = 0,lA = 0,ls = 0, lB = 0;
6968325fc9f4SBarry Smith 
6969325fc9f4SBarry Smith   PetscFunctionBegin;
6970cdcf91faSSean Farley   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
69710910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,3);
6972325fc9f4SBarry Smith 
69730910c330SBarry Smith   /* call Matlab function in ctx with arguments u and y */
6974325fc9f4SBarry Smith 
6975cdcf91faSSean Farley   ierr = PetscMemcpy(&ls,&ts,sizeof(ts));CHKERRQ(ierr);
69760910c330SBarry Smith   ierr = PetscMemcpy(&lx,&u,sizeof(u));CHKERRQ(ierr);
69770910c330SBarry Smith   ierr = PetscMemcpy(&lxdot,&udot,sizeof(u));CHKERRQ(ierr);
69780910c330SBarry Smith   ierr = PetscMemcpy(&lA,A,sizeof(u));CHKERRQ(ierr);
69790910c330SBarry Smith   ierr = PetscMemcpy(&lB,B,sizeof(u));CHKERRQ(ierr);
6980bbd56ea5SKarl Rupp 
6981325fc9f4SBarry Smith   prhs[0] =  mxCreateDoubleScalar((double)ls);
6982325fc9f4SBarry Smith   prhs[1] =  mxCreateDoubleScalar((double)time);
6983325fc9f4SBarry Smith   prhs[2] =  mxCreateDoubleScalar((double)lx);
6984325fc9f4SBarry Smith   prhs[3] =  mxCreateDoubleScalar((double)lxdot);
6985325fc9f4SBarry Smith   prhs[4] =  mxCreateDoubleScalar((double)shift);
6986325fc9f4SBarry Smith   prhs[5] =  mxCreateDoubleScalar((double)lA);
6987325fc9f4SBarry Smith   prhs[6] =  mxCreateDoubleScalar((double)lB);
6988325fc9f4SBarry Smith   prhs[7] =  mxCreateString(sctx->funcname);
6989325fc9f4SBarry Smith   prhs[8] =  sctx->ctx;
6990325fc9f4SBarry Smith   ierr    =  mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscTSComputeJacobianInternal");CHKERRQ(ierr);
6991325fc9f4SBarry Smith   ierr    =  mxGetScalar(plhs[0]);CHKERRQ(ierr);
6992325fc9f4SBarry Smith   mxDestroyArray(prhs[0]);
6993325fc9f4SBarry Smith   mxDestroyArray(prhs[1]);
6994325fc9f4SBarry Smith   mxDestroyArray(prhs[2]);
6995325fc9f4SBarry Smith   mxDestroyArray(prhs[3]);
6996325fc9f4SBarry Smith   mxDestroyArray(prhs[4]);
6997325fc9f4SBarry Smith   mxDestroyArray(prhs[5]);
6998325fc9f4SBarry Smith   mxDestroyArray(prhs[6]);
6999325fc9f4SBarry Smith   mxDestroyArray(prhs[7]);
7000325fc9f4SBarry Smith   mxDestroyArray(plhs[0]);
7001325fc9f4SBarry Smith   mxDestroyArray(plhs[1]);
7002325fc9f4SBarry Smith   PetscFunctionReturn(0);
7003325fc9f4SBarry Smith }
7004325fc9f4SBarry Smith 
7005325fc9f4SBarry Smith /*
7006325fc9f4SBarry Smith    TSSetJacobianMatlab - Sets the Jacobian function evaluation routine and two empty Jacobian matrices
7007e3c5b3baSBarry 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
7008325fc9f4SBarry Smith 
7009325fc9f4SBarry Smith    Logically Collective on TS
7010325fc9f4SBarry Smith 
7011325fc9f4SBarry Smith    Input Parameters:
7012cdcf91faSSean Farley +  ts - the TS context
7013325fc9f4SBarry Smith .  A,B - Jacobian matrices
7014325fc9f4SBarry Smith .  func - function evaluation routine
7015325fc9f4SBarry Smith -  ctx - user context
7016325fc9f4SBarry Smith 
7017325fc9f4SBarry Smith    Calling sequence of func:
70180910c330SBarry Smith $    flag = func (TS ts,PetscReal time,Vec u,Vec udot,Mat A,Mat B,void *ctx);
7019325fc9f4SBarry Smith 
7020325fc9f4SBarry Smith    Level: developer
7021325fc9f4SBarry Smith 
7022325fc9f4SBarry Smith .keywords: TS, nonlinear, set, function
7023325fc9f4SBarry Smith 
7024325fc9f4SBarry Smith .seealso: TSGetFunction(), TSComputeFunction(), TSSetJacobian(), TSSetFunction()
7025325fc9f4SBarry Smith */
7026cdcf91faSSean Farley PetscErrorCode  TSSetJacobianMatlab(TS ts,Mat A,Mat B,const char *func,mxArray *ctx)
7027325fc9f4SBarry Smith {
7028325fc9f4SBarry Smith   PetscErrorCode  ierr;
7029325fc9f4SBarry Smith   TSMatlabContext *sctx;
7030325fc9f4SBarry Smith 
7031325fc9f4SBarry Smith   PetscFunctionBegin;
7032325fc9f4SBarry Smith   /* currently sctx is memory bleed */
703395dccacaSBarry Smith   ierr = PetscNew(&sctx);CHKERRQ(ierr);
7034325fc9f4SBarry Smith   ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr);
7035325fc9f4SBarry Smith   /*
7036325fc9f4SBarry Smith      This should work, but it doesn't
7037325fc9f4SBarry Smith   sctx->ctx = ctx;
7038325fc9f4SBarry Smith   mexMakeArrayPersistent(sctx->ctx);
7039325fc9f4SBarry Smith   */
7040325fc9f4SBarry Smith   sctx->ctx = mxDuplicateArray(ctx);
7041bbd56ea5SKarl Rupp 
7042cdcf91faSSean Farley   ierr = TSSetIJacobian(ts,A,B,TSComputeJacobian_Matlab,sctx);CHKERRQ(ierr);
7043325fc9f4SBarry Smith   PetscFunctionReturn(0);
7044325fc9f4SBarry Smith }
7045325fc9f4SBarry Smith 
7046b5b1a830SBarry Smith /*
7047b5b1a830SBarry Smith    TSMonitor_Matlab - Calls the function that has been set with TSMonitorSetMatlab().
7048b5b1a830SBarry Smith 
7049b5b1a830SBarry Smith    Collective on TS
7050b5b1a830SBarry Smith 
7051b5b1a830SBarry Smith .seealso: TSSetFunction(), TSGetFunction()
7052b5b1a830SBarry Smith @*/
70530910c330SBarry Smith PetscErrorCode  TSMonitor_Matlab(TS ts,PetscInt it, PetscReal time,Vec u, void *ctx)
7054b5b1a830SBarry Smith {
7055b5b1a830SBarry Smith   PetscErrorCode  ierr;
7056b5b1a830SBarry Smith   TSMatlabContext *sctx = (TSMatlabContext*)ctx;
7057a530c242SBarry Smith   int             nlhs  = 1,nrhs = 6;
7058b5b1a830SBarry Smith   mxArray         *plhs[1],*prhs[6];
7059b5b1a830SBarry Smith   long long int   lx = 0,ls = 0;
7060b5b1a830SBarry Smith 
7061b5b1a830SBarry Smith   PetscFunctionBegin;
7062cdcf91faSSean Farley   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
70630910c330SBarry Smith   PetscValidHeaderSpecific(u,VEC_CLASSID,4);
7064b5b1a830SBarry Smith 
7065cdcf91faSSean Farley   ierr = PetscMemcpy(&ls,&ts,sizeof(ts));CHKERRQ(ierr);
70660910c330SBarry Smith   ierr = PetscMemcpy(&lx,&u,sizeof(u));CHKERRQ(ierr);
7067bbd56ea5SKarl Rupp 
7068b5b1a830SBarry Smith   prhs[0] =  mxCreateDoubleScalar((double)ls);
7069b5b1a830SBarry Smith   prhs[1] =  mxCreateDoubleScalar((double)it);
7070b5b1a830SBarry Smith   prhs[2] =  mxCreateDoubleScalar((double)time);
7071b5b1a830SBarry Smith   prhs[3] =  mxCreateDoubleScalar((double)lx);
7072b5b1a830SBarry Smith   prhs[4] =  mxCreateString(sctx->funcname);
7073b5b1a830SBarry Smith   prhs[5] =  sctx->ctx;
7074b5b1a830SBarry Smith   ierr    =  mexCallMATLAB(nlhs,plhs,nrhs,prhs,"PetscTSMonitorInternal");CHKERRQ(ierr);
7075b5b1a830SBarry Smith   ierr    =  mxGetScalar(plhs[0]);CHKERRQ(ierr);
7076b5b1a830SBarry Smith   mxDestroyArray(prhs[0]);
7077b5b1a830SBarry Smith   mxDestroyArray(prhs[1]);
7078b5b1a830SBarry Smith   mxDestroyArray(prhs[2]);
7079b5b1a830SBarry Smith   mxDestroyArray(prhs[3]);
7080b5b1a830SBarry Smith   mxDestroyArray(prhs[4]);
7081b5b1a830SBarry Smith   mxDestroyArray(plhs[0]);
7082b5b1a830SBarry Smith   PetscFunctionReturn(0);
7083b5b1a830SBarry Smith }
7084b5b1a830SBarry Smith 
7085b5b1a830SBarry Smith /*
7086b5b1a830SBarry Smith    TSMonitorSetMatlab - Sets the monitor function from Matlab
7087b5b1a830SBarry Smith 
7088b5b1a830SBarry Smith    Level: developer
7089b5b1a830SBarry Smith 
7090b5b1a830SBarry Smith .keywords: TS, nonlinear, set, function
7091b5b1a830SBarry Smith 
7092b5b1a830SBarry Smith .seealso: TSGetFunction(), TSComputeFunction(), TSSetJacobian(), TSSetFunction()
7093b5b1a830SBarry Smith */
7094cdcf91faSSean Farley PetscErrorCode  TSMonitorSetMatlab(TS ts,const char *func,mxArray *ctx)
7095b5b1a830SBarry Smith {
7096b5b1a830SBarry Smith   PetscErrorCode  ierr;
7097b5b1a830SBarry Smith   TSMatlabContext *sctx;
7098b5b1a830SBarry Smith 
7099b5b1a830SBarry Smith   PetscFunctionBegin;
7100b5b1a830SBarry Smith   /* currently sctx is memory bleed */
710195dccacaSBarry Smith   ierr = PetscNew(&sctx);CHKERRQ(ierr);
7102b5b1a830SBarry Smith   ierr = PetscStrallocpy(func,&sctx->funcname);CHKERRQ(ierr);
7103b5b1a830SBarry Smith   /*
7104b5b1a830SBarry Smith      This should work, but it doesn't
7105b5b1a830SBarry Smith   sctx->ctx = ctx;
7106b5b1a830SBarry Smith   mexMakeArrayPersistent(sctx->ctx);
7107b5b1a830SBarry Smith   */
7108b5b1a830SBarry Smith   sctx->ctx = mxDuplicateArray(ctx);
7109bbd56ea5SKarl Rupp 
71100298fd71SBarry Smith   ierr = TSMonitorSet(ts,TSMonitor_Matlab,sctx,NULL);CHKERRQ(ierr);
7111b5b1a830SBarry Smith   PetscFunctionReturn(0);
7112b5b1a830SBarry Smith }
7113325fc9f4SBarry Smith #endif
7114b3603a34SBarry Smith 
7115b3603a34SBarry Smith /*@C
71164f09c107SBarry Smith    TSMonitorLGSolution - Monitors progress of the TS solvers by plotting each component of the solution vector
7117b3603a34SBarry Smith        in a time based line graph
7118b3603a34SBarry Smith 
7119b3603a34SBarry Smith    Collective on TS
7120b3603a34SBarry Smith 
7121b3603a34SBarry Smith    Input Parameters:
7122b3603a34SBarry Smith +  ts - the TS context
7123b3603a34SBarry Smith .  step - current time-step
7124b3603a34SBarry Smith .  ptime - current time
71257db568b7SBarry Smith .  u - current solution
71267db568b7SBarry Smith -  dctx - the TSMonitorLGCtx object that contains all the options for the monitoring, this is created with TSMonitorLGCtxCreate()
7127b3603a34SBarry Smith 
7128b3d3934dSBarry Smith    Options Database:
71299ae14b6eSBarry Smith .   -ts_monitor_lg_solution_variables
7130b3d3934dSBarry Smith 
7131b3603a34SBarry Smith    Level: intermediate
7132b3603a34SBarry Smith 
71336934998bSLisandro Dalcin    Notes: Each process in a parallel run displays its component solutions in a separate window
7134b3603a34SBarry Smith 
7135b3603a34SBarry Smith .keywords: TS,  vector, monitor, view
7136b3603a34SBarry Smith 
71377db568b7SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGCtxCreate(), TSMonitorLGCtxSetVariableNames(), TSMonitorLGCtxGetVariableNames(),
71387db568b7SBarry Smith            TSMonitorLGSetVariableNames(), TSMonitorLGGetVariableNames(), TSMonitorLGSetDisplayVariables(), TSMonitorLGCtxSetDisplayVariables(),
71397db568b7SBarry Smith            TSMonitorLGCtxSetTransform(), TSMonitorLGSetTransform(), TSMonitorLGError(), TSMonitorLGSNESIterations(), TSMonitorLGKSPIterations(),
71407db568b7SBarry Smith            TSMonitorEnvelopeCtxCreate(), TSMonitorEnvelopeGetBounds(), TSMonitorEnvelopeCtxDestroy(), TSMonitorEnvelop()
7141b3603a34SBarry Smith @*/
71427db568b7SBarry Smith PetscErrorCode  TSMonitorLGSolution(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dctx)
7143b3603a34SBarry Smith {
7144b3603a34SBarry Smith   PetscErrorCode    ierr;
71457db568b7SBarry Smith   TSMonitorLGCtx    ctx = (TSMonitorLGCtx)dctx;
7146b3603a34SBarry Smith   const PetscScalar *yy;
714780666b62SBarry Smith   Vec               v;
7148b3603a34SBarry Smith 
7149b3603a34SBarry Smith   PetscFunctionBegin;
715063e21af5SBarry Smith   if (step < 0) PetscFunctionReturn(0); /* -1 indicates interpolated solution */
715158ff32f7SBarry Smith   if (!step) {
7152a9f9c1f6SBarry Smith     PetscDrawAxis axis;
71536934998bSLisandro Dalcin     PetscInt      dim;
7154a9f9c1f6SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
7155a9f9c1f6SBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Solution as function of time","Time","Solution");CHKERRQ(ierr);
7156bab0a581SBarry Smith     if (!ctx->names) {
7157bab0a581SBarry Smith       PetscBool flg;
7158bab0a581SBarry Smith       /* user provides names of variables to plot but no names has been set so assume names are integer values */
7159bab0a581SBarry Smith       ierr = PetscOptionsHasName(((PetscObject)ts)->options,((PetscObject)ts)->prefix,"-ts_monitor_lg_solution_variables",&flg);CHKERRQ(ierr);
7160bab0a581SBarry Smith       if (flg) {
7161bab0a581SBarry Smith         PetscInt i,n;
7162bab0a581SBarry Smith         char     **names;
7163bab0a581SBarry Smith         ierr = VecGetSize(u,&n);CHKERRQ(ierr);
7164bab0a581SBarry Smith         ierr = PetscMalloc1(n+1,&names);CHKERRQ(ierr);
7165bab0a581SBarry Smith         for (i=0; i<n; i++) {
7166bab0a581SBarry Smith           ierr = PetscMalloc1(5,&names[i]);CHKERRQ(ierr);
7167bab0a581SBarry Smith           ierr = PetscSNPrintf(names[i],5,"%D",i);CHKERRQ(ierr);
7168bab0a581SBarry Smith         }
7169bab0a581SBarry Smith         names[n] = NULL;
7170bab0a581SBarry Smith         ctx->names = names;
7171bab0a581SBarry Smith       }
7172bab0a581SBarry Smith     }
7173387f4636SBarry Smith     if (ctx->names && !ctx->displaynames) {
7174387f4636SBarry Smith       char      **displaynames;
7175387f4636SBarry Smith       PetscBool flg;
7176387f4636SBarry Smith       ierr = VecGetLocalSize(u,&dim);CHKERRQ(ierr);
717795dccacaSBarry Smith       ierr = PetscMalloc1(dim+1,&displaynames);CHKERRQ(ierr);
7178387f4636SBarry Smith       ierr = PetscMemzero(displaynames,(dim+1)*sizeof(char*));CHKERRQ(ierr);
7179c5929fdfSBarry Smith       ierr = PetscOptionsGetStringArray(((PetscObject)ts)->options,((PetscObject)ts)->prefix,"-ts_monitor_lg_solution_variables",displaynames,&dim,&flg);CHKERRQ(ierr);
7180387f4636SBarry Smith       if (flg) {
7181a66092f1SBarry Smith         ierr = TSMonitorLGCtxSetDisplayVariables(ctx,(const char *const *)displaynames);CHKERRQ(ierr);
7182387f4636SBarry Smith       }
7183387f4636SBarry Smith       ierr = PetscStrArrayDestroy(&displaynames);CHKERRQ(ierr);
7184387f4636SBarry Smith     }
7185387f4636SBarry Smith     if (ctx->displaynames) {
7186387f4636SBarry Smith       ierr = PetscDrawLGSetDimension(ctx->lg,ctx->ndisplayvariables);CHKERRQ(ierr);
7187387f4636SBarry Smith       ierr = PetscDrawLGSetLegend(ctx->lg,(const char *const *)ctx->displaynames);CHKERRQ(ierr);
7188387f4636SBarry Smith     } else if (ctx->names) {
71890910c330SBarry Smith       ierr = VecGetLocalSize(u,&dim);CHKERRQ(ierr);
71900b039ecaSBarry Smith       ierr = PetscDrawLGSetDimension(ctx->lg,dim);CHKERRQ(ierr);
7191387f4636SBarry Smith       ierr = PetscDrawLGSetLegend(ctx->lg,(const char *const *)ctx->names);CHKERRQ(ierr);
7192b0bc92c6SBarry Smith     } else {
7193b0bc92c6SBarry Smith       ierr = VecGetLocalSize(u,&dim);CHKERRQ(ierr);
7194b0bc92c6SBarry Smith       ierr = PetscDrawLGSetDimension(ctx->lg,dim);CHKERRQ(ierr);
7195387f4636SBarry Smith     }
71960b039ecaSBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
719758ff32f7SBarry Smith   }
71986934998bSLisandro Dalcin 
71996934998bSLisandro Dalcin   if (!ctx->transform) v = u;
72006934998bSLisandro Dalcin   else {ierr = (*ctx->transform)(ctx->transformctx,u,&v);CHKERRQ(ierr);}
720180666b62SBarry Smith   ierr = VecGetArrayRead(v,&yy);CHKERRQ(ierr);
72026934998bSLisandro Dalcin   if (ctx->displaynames) {
72036934998bSLisandro Dalcin     PetscInt i;
72046934998bSLisandro Dalcin     for (i=0; i<ctx->ndisplayvariables; i++)
72056934998bSLisandro Dalcin       ctx->displayvalues[i] = PetscRealPart(yy[ctx->displayvariables[i]]);
72066934998bSLisandro Dalcin     ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,ctx->displayvalues);CHKERRQ(ierr);
72076934998bSLisandro Dalcin   } else {
7208e3efe391SJed Brown #if defined(PETSC_USE_COMPLEX)
7209e3efe391SJed Brown     PetscInt  i,n;
72106934998bSLisandro Dalcin     PetscReal *yreal;
721180666b62SBarry Smith     ierr = VecGetLocalSize(v,&n);CHKERRQ(ierr);
7212785e854fSJed Brown     ierr = PetscMalloc1(n,&yreal);CHKERRQ(ierr);
7213e3efe391SJed Brown     for (i=0; i<n; i++) yreal[i] = PetscRealPart(yy[i]);
72140b039ecaSBarry Smith     ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yreal);CHKERRQ(ierr);
7215e3efe391SJed Brown     ierr = PetscFree(yreal);CHKERRQ(ierr);
7216e3efe391SJed Brown #else
72170b039ecaSBarry Smith     ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yy);CHKERRQ(ierr);
7218e3efe391SJed Brown #endif
721980666b62SBarry Smith   }
72206934998bSLisandro Dalcin   ierr = VecRestoreArrayRead(v,&yy);CHKERRQ(ierr);
72216934998bSLisandro Dalcin   if (ctx->transform) {ierr = VecDestroy(&v);CHKERRQ(ierr);}
72226934998bSLisandro Dalcin 
7223b06615a5SLisandro Dalcin   if (((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason)) {
72240b039ecaSBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
72256934998bSLisandro Dalcin     ierr = PetscDrawLGSave(ctx->lg);CHKERRQ(ierr);
72263923b477SBarry Smith   }
7227b3603a34SBarry Smith   PetscFunctionReturn(0);
7228b3603a34SBarry Smith }
7229b3603a34SBarry Smith 
7230b037adc7SBarry Smith /*@C
723131152f8aSBarry Smith    TSMonitorLGSetVariableNames - Sets the name of each component in the solution vector so that it may be displayed in the plot
7232b037adc7SBarry Smith 
7233b037adc7SBarry Smith    Collective on TS
7234b037adc7SBarry Smith 
7235b037adc7SBarry Smith    Input Parameters:
7236b037adc7SBarry Smith +  ts - the TS context
7237b3d3934dSBarry Smith -  names - the names of the components, final string must be NULL
7238b037adc7SBarry Smith 
7239b037adc7SBarry Smith    Level: intermediate
7240b037adc7SBarry Smith 
72417db568b7SBarry Smith    Notes: If the TS object does not have a TSMonitorLGCtx associated with it then this function is ignored
72427db568b7SBarry Smith 
7243b037adc7SBarry Smith .keywords: TS,  vector, monitor, view
7244b037adc7SBarry Smith 
7245a66092f1SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetDisplayVariables(), TSMonitorLGCtxSetVariableNames()
7246b037adc7SBarry Smith @*/
724731152f8aSBarry Smith PetscErrorCode  TSMonitorLGSetVariableNames(TS ts,const char * const *names)
7248b037adc7SBarry Smith {
7249b037adc7SBarry Smith   PetscErrorCode    ierr;
7250b037adc7SBarry Smith   PetscInt          i;
7251b037adc7SBarry Smith 
7252b037adc7SBarry Smith   PetscFunctionBegin;
7253b037adc7SBarry Smith   for (i=0; i<ts->numbermonitors; i++) {
7254b037adc7SBarry Smith     if (ts->monitor[i] == TSMonitorLGSolution) {
72555537e223SBarry Smith       ierr = TSMonitorLGCtxSetVariableNames((TSMonitorLGCtx)ts->monitorcontext[i],names);CHKERRQ(ierr);
7256b3d3934dSBarry Smith       break;
7257b3d3934dSBarry Smith     }
7258b3d3934dSBarry Smith   }
7259b3d3934dSBarry Smith   PetscFunctionReturn(0);
7260b3d3934dSBarry Smith }
7261b3d3934dSBarry Smith 
7262e673d494SBarry Smith /*@C
7263e673d494SBarry Smith    TSMonitorLGCtxSetVariableNames - Sets the name of each component in the solution vector so that it may be displayed in the plot
7264e673d494SBarry Smith 
7265e673d494SBarry Smith    Collective on TS
7266e673d494SBarry Smith 
7267e673d494SBarry Smith    Input Parameters:
7268e673d494SBarry Smith +  ts - the TS context
7269e673d494SBarry Smith -  names - the names of the components, final string must be NULL
7270e673d494SBarry Smith 
7271e673d494SBarry Smith    Level: intermediate
7272e673d494SBarry Smith 
7273e673d494SBarry Smith .keywords: TS,  vector, monitor, view
7274e673d494SBarry Smith 
7275a66092f1SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetDisplayVariables(), TSMonitorLGSetVariableNames()
7276e673d494SBarry Smith @*/
7277e673d494SBarry Smith PetscErrorCode  TSMonitorLGCtxSetVariableNames(TSMonitorLGCtx ctx,const char * const *names)
7278e673d494SBarry Smith {
7279e673d494SBarry Smith   PetscErrorCode    ierr;
7280e673d494SBarry Smith 
7281e673d494SBarry Smith   PetscFunctionBegin;
7282e673d494SBarry Smith   ierr = PetscStrArrayDestroy(&ctx->names);CHKERRQ(ierr);
7283e673d494SBarry Smith   ierr = PetscStrArrayallocpy(names,&ctx->names);CHKERRQ(ierr);
7284e673d494SBarry Smith   PetscFunctionReturn(0);
7285e673d494SBarry Smith }
7286e673d494SBarry Smith 
7287b3d3934dSBarry Smith /*@C
7288b3d3934dSBarry Smith    TSMonitorLGGetVariableNames - Gets the name of each component in the solution vector so that it may be displayed in the plot
7289b3d3934dSBarry Smith 
7290b3d3934dSBarry Smith    Collective on TS
7291b3d3934dSBarry Smith 
7292b3d3934dSBarry Smith    Input Parameter:
7293b3d3934dSBarry Smith .  ts - the TS context
7294b3d3934dSBarry Smith 
7295b3d3934dSBarry Smith    Output Parameter:
7296b3d3934dSBarry Smith .  names - the names of the components, final string must be NULL
7297b3d3934dSBarry Smith 
7298b3d3934dSBarry Smith    Level: intermediate
7299b3d3934dSBarry Smith 
73007db568b7SBarry Smith    Notes: If the TS object does not have a TSMonitorLGCtx associated with it then this function is ignored
73017db568b7SBarry Smith 
7302b3d3934dSBarry Smith .keywords: TS,  vector, monitor, view
7303b3d3934dSBarry Smith 
7304b3d3934dSBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetDisplayVariables()
7305b3d3934dSBarry Smith @*/
7306b3d3934dSBarry Smith PetscErrorCode  TSMonitorLGGetVariableNames(TS ts,const char *const **names)
7307b3d3934dSBarry Smith {
7308b3d3934dSBarry Smith   PetscInt       i;
7309b3d3934dSBarry Smith 
7310b3d3934dSBarry Smith   PetscFunctionBegin;
7311b3d3934dSBarry Smith   *names = NULL;
7312b3d3934dSBarry Smith   for (i=0; i<ts->numbermonitors; i++) {
7313b3d3934dSBarry Smith     if (ts->monitor[i] == TSMonitorLGSolution) {
73145537e223SBarry Smith       TSMonitorLGCtx  ctx = (TSMonitorLGCtx) ts->monitorcontext[i];
7315b3d3934dSBarry Smith       *names = (const char *const *)ctx->names;
7316b3d3934dSBarry Smith       break;
7317387f4636SBarry Smith     }
7318387f4636SBarry Smith   }
7319387f4636SBarry Smith   PetscFunctionReturn(0);
7320387f4636SBarry Smith }
7321387f4636SBarry Smith 
7322a66092f1SBarry Smith /*@C
7323a66092f1SBarry Smith    TSMonitorLGCtxSetDisplayVariables - Sets the variables that are to be display in the monitor
7324a66092f1SBarry Smith 
7325a66092f1SBarry Smith    Collective on TS
7326a66092f1SBarry Smith 
7327a66092f1SBarry Smith    Input Parameters:
7328a66092f1SBarry Smith +  ctx - the TSMonitorLG context
7329a66092f1SBarry Smith .  displaynames - the names of the components, final string must be NULL
7330a66092f1SBarry Smith 
7331a66092f1SBarry Smith    Level: intermediate
7332a66092f1SBarry Smith 
7333a66092f1SBarry Smith .keywords: TS,  vector, monitor, view
7334a66092f1SBarry Smith 
7335a66092f1SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetVariableNames()
7336a66092f1SBarry Smith @*/
7337a66092f1SBarry Smith PetscErrorCode  TSMonitorLGCtxSetDisplayVariables(TSMonitorLGCtx ctx,const char * const *displaynames)
7338a66092f1SBarry Smith {
7339a66092f1SBarry Smith   PetscInt          j = 0,k;
7340a66092f1SBarry Smith   PetscErrorCode    ierr;
7341a66092f1SBarry Smith 
7342a66092f1SBarry Smith   PetscFunctionBegin;
7343a66092f1SBarry Smith   if (!ctx->names) PetscFunctionReturn(0);
7344a66092f1SBarry Smith   ierr = PetscStrArrayDestroy(&ctx->displaynames);CHKERRQ(ierr);
7345a66092f1SBarry Smith   ierr = PetscStrArrayallocpy(displaynames,&ctx->displaynames);CHKERRQ(ierr);
7346a66092f1SBarry Smith   while (displaynames[j]) j++;
7347a66092f1SBarry Smith   ctx->ndisplayvariables = j;
7348a66092f1SBarry Smith   ierr = PetscMalloc1(ctx->ndisplayvariables,&ctx->displayvariables);CHKERRQ(ierr);
7349a66092f1SBarry Smith   ierr = PetscMalloc1(ctx->ndisplayvariables,&ctx->displayvalues);CHKERRQ(ierr);
7350a66092f1SBarry Smith   j = 0;
7351a66092f1SBarry Smith   while (displaynames[j]) {
7352a66092f1SBarry Smith     k = 0;
7353a66092f1SBarry Smith     while (ctx->names[k]) {
7354a66092f1SBarry Smith       PetscBool flg;
7355a66092f1SBarry Smith       ierr = PetscStrcmp(displaynames[j],ctx->names[k],&flg);CHKERRQ(ierr);
7356a66092f1SBarry Smith       if (flg) {
7357a66092f1SBarry Smith         ctx->displayvariables[j] = k;
7358a66092f1SBarry Smith         break;
7359a66092f1SBarry Smith       }
7360a66092f1SBarry Smith       k++;
7361a66092f1SBarry Smith     }
7362a66092f1SBarry Smith     j++;
7363a66092f1SBarry Smith   }
7364a66092f1SBarry Smith   PetscFunctionReturn(0);
7365a66092f1SBarry Smith }
7366a66092f1SBarry Smith 
7367387f4636SBarry Smith /*@C
7368387f4636SBarry Smith    TSMonitorLGSetDisplayVariables - Sets the variables that are to be display in the monitor
7369387f4636SBarry Smith 
7370387f4636SBarry Smith    Collective on TS
7371387f4636SBarry Smith 
7372387f4636SBarry Smith    Input Parameters:
7373387f4636SBarry Smith +  ts - the TS context
7374387f4636SBarry Smith .  displaynames - the names of the components, final string must be NULL
7375387f4636SBarry Smith 
73767db568b7SBarry Smith    Notes: If the TS object does not have a TSMonitorLGCtx associated with it then this function is ignored
73777db568b7SBarry Smith 
7378387f4636SBarry Smith    Level: intermediate
7379387f4636SBarry Smith 
7380387f4636SBarry Smith .keywords: TS,  vector, monitor, view
7381387f4636SBarry Smith 
7382387f4636SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetVariableNames()
7383387f4636SBarry Smith @*/
7384387f4636SBarry Smith PetscErrorCode  TSMonitorLGSetDisplayVariables(TS ts,const char * const *displaynames)
7385387f4636SBarry Smith {
7386a66092f1SBarry Smith   PetscInt          i;
7387387f4636SBarry Smith   PetscErrorCode    ierr;
7388387f4636SBarry Smith 
7389387f4636SBarry Smith   PetscFunctionBegin;
7390387f4636SBarry Smith   for (i=0; i<ts->numbermonitors; i++) {
7391387f4636SBarry Smith     if (ts->monitor[i] == TSMonitorLGSolution) {
73925537e223SBarry Smith       ierr = TSMonitorLGCtxSetDisplayVariables((TSMonitorLGCtx)ts->monitorcontext[i],displaynames);CHKERRQ(ierr);
7393b3d3934dSBarry Smith       break;
7394b037adc7SBarry Smith     }
7395b037adc7SBarry Smith   }
7396b037adc7SBarry Smith   PetscFunctionReturn(0);
7397b037adc7SBarry Smith }
7398b037adc7SBarry Smith 
739980666b62SBarry Smith /*@C
740080666b62SBarry Smith    TSMonitorLGSetTransform - Solution vector will be transformed by provided function before being displayed
740180666b62SBarry Smith 
740280666b62SBarry Smith    Collective on TS
740380666b62SBarry Smith 
740480666b62SBarry Smith    Input Parameters:
740580666b62SBarry Smith +  ts - the TS context
740680666b62SBarry Smith .  transform - the transform function
74077684fa3eSBarry Smith .  destroy - function to destroy the optional context
740880666b62SBarry Smith -  ctx - optional context used by transform function
740980666b62SBarry Smith 
74107db568b7SBarry Smith    Notes: If the TS object does not have a TSMonitorLGCtx associated with it then this function is ignored
74117db568b7SBarry Smith 
741280666b62SBarry Smith    Level: intermediate
741380666b62SBarry Smith 
741480666b62SBarry Smith .keywords: TS,  vector, monitor, view
741580666b62SBarry Smith 
7416a66092f1SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetVariableNames(), TSMonitorLGCtxSetTransform()
741780666b62SBarry Smith @*/
74187684fa3eSBarry Smith PetscErrorCode  TSMonitorLGSetTransform(TS ts,PetscErrorCode (*transform)(void*,Vec,Vec*),PetscErrorCode (*destroy)(void*),void *tctx)
741980666b62SBarry Smith {
742080666b62SBarry Smith   PetscInt          i;
7421a66092f1SBarry Smith   PetscErrorCode    ierr;
742280666b62SBarry Smith 
742380666b62SBarry Smith   PetscFunctionBegin;
742480666b62SBarry Smith   for (i=0; i<ts->numbermonitors; i++) {
742580666b62SBarry Smith     if (ts->monitor[i] == TSMonitorLGSolution) {
74265537e223SBarry Smith       ierr = TSMonitorLGCtxSetTransform((TSMonitorLGCtx)ts->monitorcontext[i],transform,destroy,tctx);CHKERRQ(ierr);
742780666b62SBarry Smith     }
742880666b62SBarry Smith   }
742980666b62SBarry Smith   PetscFunctionReturn(0);
743080666b62SBarry Smith }
743180666b62SBarry Smith 
7432e673d494SBarry Smith /*@C
7433e673d494SBarry Smith    TSMonitorLGCtxSetTransform - Solution vector will be transformed by provided function before being displayed
7434e673d494SBarry Smith 
7435e673d494SBarry Smith    Collective on TSLGCtx
7436e673d494SBarry Smith 
7437e673d494SBarry Smith    Input Parameters:
7438e673d494SBarry Smith +  ts - the TS context
7439e673d494SBarry Smith .  transform - the transform function
74407684fa3eSBarry Smith .  destroy - function to destroy the optional context
7441e673d494SBarry Smith -  ctx - optional context used by transform function
7442e673d494SBarry Smith 
7443e673d494SBarry Smith    Level: intermediate
7444e673d494SBarry Smith 
7445e673d494SBarry Smith .keywords: TS,  vector, monitor, view
7446e673d494SBarry Smith 
7447a66092f1SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetVariableNames(), TSMonitorLGSetTransform()
7448e673d494SBarry Smith @*/
74497684fa3eSBarry Smith PetscErrorCode  TSMonitorLGCtxSetTransform(TSMonitorLGCtx ctx,PetscErrorCode (*transform)(void*,Vec,Vec*),PetscErrorCode (*destroy)(void*),void *tctx)
7450e673d494SBarry Smith {
7451e673d494SBarry Smith   PetscFunctionBegin;
7452e673d494SBarry Smith   ctx->transform    = transform;
74537684fa3eSBarry Smith   ctx->transformdestroy = destroy;
7454e673d494SBarry Smith   ctx->transformctx = tctx;
7455e673d494SBarry Smith   PetscFunctionReturn(0);
7456e673d494SBarry Smith }
7457e673d494SBarry Smith 
7458ef20d060SBarry Smith /*@C
74594f09c107SBarry Smith    TSMonitorLGError - Monitors progress of the TS solvers by plotting each component of the solution vector
7460ef20d060SBarry Smith        in a time based line graph
7461ef20d060SBarry Smith 
7462ef20d060SBarry Smith    Collective on TS
7463ef20d060SBarry Smith 
7464ef20d060SBarry Smith    Input Parameters:
7465ef20d060SBarry Smith +  ts - the TS context
7466ef20d060SBarry Smith .  step - current time-step
7467ef20d060SBarry Smith .  ptime - current time
74687db568b7SBarry Smith .  u - current solution
74697db568b7SBarry Smith -  dctx - TSMonitorLGCtx object created with TSMonitorLGCtxCreate()
7470ef20d060SBarry Smith 
7471ef20d060SBarry Smith    Level: intermediate
7472ef20d060SBarry Smith 
74736934998bSLisandro Dalcin    Notes: Each process in a parallel run displays its component errors in a separate window
7474abd5a294SJed Brown 
7475abd5a294SJed Brown    The user must provide the solution using TSSetSolutionFunction() to use this monitor.
7476abd5a294SJed Brown 
7477abd5a294SJed Brown    Options Database Keys:
74784f09c107SBarry Smith .  -ts_monitor_lg_error - create a graphical monitor of error history
7479ef20d060SBarry Smith 
7480ef20d060SBarry Smith .keywords: TS,  vector, monitor, view
7481ef20d060SBarry Smith 
7482abd5a294SJed Brown .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSSetSolutionFunction()
7483ef20d060SBarry Smith @*/
74840910c330SBarry Smith PetscErrorCode  TSMonitorLGError(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dummy)
7485ef20d060SBarry Smith {
7486ef20d060SBarry Smith   PetscErrorCode    ierr;
74870b039ecaSBarry Smith   TSMonitorLGCtx    ctx = (TSMonitorLGCtx)dummy;
7488ef20d060SBarry Smith   const PetscScalar *yy;
7489ef20d060SBarry Smith   Vec               y;
7490ef20d060SBarry Smith 
7491ef20d060SBarry Smith   PetscFunctionBegin;
7492a9f9c1f6SBarry Smith   if (!step) {
7493a9f9c1f6SBarry Smith     PetscDrawAxis axis;
74946934998bSLisandro Dalcin     PetscInt      dim;
7495a9f9c1f6SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
74961ae185eaSBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Error in solution as function of time","Time","Solution");CHKERRQ(ierr);
74970910c330SBarry Smith     ierr = VecGetLocalSize(u,&dim);CHKERRQ(ierr);
7498a9f9c1f6SBarry Smith     ierr = PetscDrawLGSetDimension(ctx->lg,dim);CHKERRQ(ierr);
7499a9f9c1f6SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
7500a9f9c1f6SBarry Smith   }
75010910c330SBarry Smith   ierr = VecDuplicate(u,&y);CHKERRQ(ierr);
7502ef20d060SBarry Smith   ierr = TSComputeSolutionFunction(ts,ptime,y);CHKERRQ(ierr);
75030910c330SBarry Smith   ierr = VecAXPY(y,-1.0,u);CHKERRQ(ierr);
7504ef20d060SBarry Smith   ierr = VecGetArrayRead(y,&yy);CHKERRQ(ierr);
7505e3efe391SJed Brown #if defined(PETSC_USE_COMPLEX)
7506e3efe391SJed Brown   {
7507e3efe391SJed Brown     PetscReal *yreal;
7508e3efe391SJed Brown     PetscInt  i,n;
7509e3efe391SJed Brown     ierr = VecGetLocalSize(y,&n);CHKERRQ(ierr);
7510785e854fSJed Brown     ierr = PetscMalloc1(n,&yreal);CHKERRQ(ierr);
7511e3efe391SJed Brown     for (i=0; i<n; i++) yreal[i] = PetscRealPart(yy[i]);
75120b039ecaSBarry Smith     ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yreal);CHKERRQ(ierr);
7513e3efe391SJed Brown     ierr = PetscFree(yreal);CHKERRQ(ierr);
7514e3efe391SJed Brown   }
7515e3efe391SJed Brown #else
75160b039ecaSBarry Smith   ierr = PetscDrawLGAddCommonPoint(ctx->lg,ptime,yy);CHKERRQ(ierr);
7517e3efe391SJed Brown #endif
7518ef20d060SBarry Smith   ierr = VecRestoreArrayRead(y,&yy);CHKERRQ(ierr);
7519ef20d060SBarry Smith   ierr = VecDestroy(&y);CHKERRQ(ierr);
7520b06615a5SLisandro Dalcin   if (((ctx->howoften > 0) && (!(step % ctx->howoften))) || ((ctx->howoften == -1) && ts->reason)) {
75210b039ecaSBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
75226934998bSLisandro Dalcin     ierr = PetscDrawLGSave(ctx->lg);CHKERRQ(ierr);
75233923b477SBarry Smith   }
7524ef20d060SBarry Smith   PetscFunctionReturn(0);
7525ef20d060SBarry Smith }
7526ef20d060SBarry Smith 
7527201da799SBarry Smith PetscErrorCode TSMonitorLGSNESIterations(TS ts,PetscInt n,PetscReal ptime,Vec v,void *monctx)
7528201da799SBarry Smith {
7529201da799SBarry Smith   TSMonitorLGCtx ctx = (TSMonitorLGCtx) monctx;
7530201da799SBarry Smith   PetscReal      x   = ptime,y;
7531201da799SBarry Smith   PetscErrorCode ierr;
7532201da799SBarry Smith   PetscInt       its;
7533201da799SBarry Smith 
7534201da799SBarry Smith   PetscFunctionBegin;
753563e21af5SBarry Smith   if (n < 0) PetscFunctionReturn(0); /* -1 indicates interpolated solution */
7536201da799SBarry Smith   if (!n) {
7537201da799SBarry Smith     PetscDrawAxis axis;
7538201da799SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
7539201da799SBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Nonlinear iterations as function of time","Time","SNES Iterations");CHKERRQ(ierr);
7540201da799SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
7541201da799SBarry Smith     ctx->snes_its = 0;
7542201da799SBarry Smith   }
7543201da799SBarry Smith   ierr = TSGetSNESIterations(ts,&its);CHKERRQ(ierr);
7544201da799SBarry Smith   y    = its - ctx->snes_its;
7545201da799SBarry Smith   ierr = PetscDrawLGAddPoint(ctx->lg,&x,&y);CHKERRQ(ierr);
75463fbbecb0SBarry Smith   if (((ctx->howoften > 0) && (!(n % ctx->howoften)) && (n > -1)) || ((ctx->howoften == -1) && (n == -1))) {
7547201da799SBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
75486934998bSLisandro Dalcin     ierr = PetscDrawLGSave(ctx->lg);CHKERRQ(ierr);
7549201da799SBarry Smith   }
7550201da799SBarry Smith   ctx->snes_its = its;
7551201da799SBarry Smith   PetscFunctionReturn(0);
7552201da799SBarry Smith }
7553201da799SBarry Smith 
7554201da799SBarry Smith PetscErrorCode TSMonitorLGKSPIterations(TS ts,PetscInt n,PetscReal ptime,Vec v,void *monctx)
7555201da799SBarry Smith {
7556201da799SBarry Smith   TSMonitorLGCtx ctx = (TSMonitorLGCtx) monctx;
7557201da799SBarry Smith   PetscReal      x   = ptime,y;
7558201da799SBarry Smith   PetscErrorCode ierr;
7559201da799SBarry Smith   PetscInt       its;
7560201da799SBarry Smith 
7561201da799SBarry Smith   PetscFunctionBegin;
756263e21af5SBarry Smith   if (n < 0) PetscFunctionReturn(0); /* -1 indicates interpolated solution */
7563201da799SBarry Smith   if (!n) {
7564201da799SBarry Smith     PetscDrawAxis axis;
7565201da799SBarry Smith     ierr = PetscDrawLGGetAxis(ctx->lg,&axis);CHKERRQ(ierr);
7566201da799SBarry Smith     ierr = PetscDrawAxisSetLabels(axis,"Linear iterations as function of time","Time","KSP Iterations");CHKERRQ(ierr);
7567201da799SBarry Smith     ierr = PetscDrawLGReset(ctx->lg);CHKERRQ(ierr);
7568201da799SBarry Smith     ctx->ksp_its = 0;
7569201da799SBarry Smith   }
7570201da799SBarry Smith   ierr = TSGetKSPIterations(ts,&its);CHKERRQ(ierr);
7571201da799SBarry Smith   y    = its - ctx->ksp_its;
7572201da799SBarry Smith   ierr = PetscDrawLGAddPoint(ctx->lg,&x,&y);CHKERRQ(ierr);
757399fdda47SBarry Smith   if (((ctx->howoften > 0) && (!(n % ctx->howoften)) && (n > -1)) || ((ctx->howoften == -1) && (n == -1))) {
7574201da799SBarry Smith     ierr = PetscDrawLGDraw(ctx->lg);CHKERRQ(ierr);
75756934998bSLisandro Dalcin     ierr = PetscDrawLGSave(ctx->lg);CHKERRQ(ierr);
7576201da799SBarry Smith   }
7577201da799SBarry Smith   ctx->ksp_its = its;
7578201da799SBarry Smith   PetscFunctionReturn(0);
7579201da799SBarry Smith }
7580f9c1d6abSBarry Smith 
7581f9c1d6abSBarry Smith /*@
7582f9c1d6abSBarry Smith    TSComputeLinearStability - computes the linear stability function at a point
7583f9c1d6abSBarry Smith 
7584f9c1d6abSBarry Smith    Collective on TS and Vec
7585f9c1d6abSBarry Smith 
7586f9c1d6abSBarry Smith    Input Parameters:
7587f9c1d6abSBarry Smith +  ts - the TS context
7588f9c1d6abSBarry Smith -  xr,xi - real and imaginary part of input arguments
7589f9c1d6abSBarry Smith 
7590f9c1d6abSBarry Smith    Output Parameters:
7591f9c1d6abSBarry Smith .  yr,yi - real and imaginary part of function value
7592f9c1d6abSBarry Smith 
7593f9c1d6abSBarry Smith    Level: developer
7594f9c1d6abSBarry Smith 
7595f9c1d6abSBarry Smith .keywords: TS, compute
7596f9c1d6abSBarry Smith 
7597f9c1d6abSBarry Smith .seealso: TSSetRHSFunction(), TSComputeIFunction()
7598f9c1d6abSBarry Smith @*/
7599f9c1d6abSBarry Smith PetscErrorCode TSComputeLinearStability(TS ts,PetscReal xr,PetscReal xi,PetscReal *yr,PetscReal *yi)
7600f9c1d6abSBarry Smith {
7601f9c1d6abSBarry Smith   PetscErrorCode ierr;
7602f9c1d6abSBarry Smith 
7603f9c1d6abSBarry Smith   PetscFunctionBegin;
7604f9c1d6abSBarry Smith   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
7605ce94432eSBarry Smith   if (!ts->ops->linearstability) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"Linearized stability function not provided for this method");
7606f9c1d6abSBarry Smith   ierr = (*ts->ops->linearstability)(ts,xr,xi,yr,yi);CHKERRQ(ierr);
7607f9c1d6abSBarry Smith   PetscFunctionReturn(0);
7608f9c1d6abSBarry Smith }
760924655328SShri 
7610b3d3934dSBarry Smith /* ------------------------------------------------------------------------*/
7611b3d3934dSBarry Smith /*@C
7612b3d3934dSBarry Smith    TSMonitorEnvelopeCtxCreate - Creates a context for use with TSMonitorEnvelope()
7613b3d3934dSBarry Smith 
7614b3d3934dSBarry Smith    Collective on TS
7615b3d3934dSBarry Smith 
7616b3d3934dSBarry Smith    Input Parameters:
7617b3d3934dSBarry Smith .  ts  - the ODE solver object
7618b3d3934dSBarry Smith 
7619b3d3934dSBarry Smith    Output Parameter:
7620b3d3934dSBarry Smith .  ctx - the context
7621b3d3934dSBarry Smith 
7622b3d3934dSBarry Smith    Level: intermediate
7623b3d3934dSBarry Smith 
7624b3d3934dSBarry Smith .keywords: TS, monitor, line graph, residual, seealso
7625b3d3934dSBarry Smith 
7626b3d3934dSBarry Smith .seealso: TSMonitorLGTimeStep(), TSMonitorSet(), TSMonitorLGSolution(), TSMonitorLGError()
7627b3d3934dSBarry Smith 
7628b3d3934dSBarry Smith @*/
7629b3d3934dSBarry Smith PetscErrorCode  TSMonitorEnvelopeCtxCreate(TS ts,TSMonitorEnvelopeCtx *ctx)
7630b3d3934dSBarry Smith {
7631b3d3934dSBarry Smith   PetscErrorCode ierr;
7632b3d3934dSBarry Smith 
7633b3d3934dSBarry Smith   PetscFunctionBegin;
7634a74656a8SBarry Smith   ierr = PetscNew(ctx);CHKERRQ(ierr);
7635b3d3934dSBarry Smith   PetscFunctionReturn(0);
7636b3d3934dSBarry Smith }
7637b3d3934dSBarry Smith 
7638b3d3934dSBarry Smith /*@C
7639b3d3934dSBarry Smith    TSMonitorEnvelope - Monitors the maximum and minimum value of each component of the solution
7640b3d3934dSBarry Smith 
7641b3d3934dSBarry Smith    Collective on TS
7642b3d3934dSBarry Smith 
7643b3d3934dSBarry Smith    Input Parameters:
7644b3d3934dSBarry Smith +  ts - the TS context
7645b3d3934dSBarry Smith .  step - current time-step
7646b3d3934dSBarry Smith .  ptime - current time
76477db568b7SBarry Smith .  u  - current solution
76487db568b7SBarry Smith -  dctx - the envelope context
7649b3d3934dSBarry Smith 
7650b3d3934dSBarry Smith    Options Database:
7651b3d3934dSBarry Smith .  -ts_monitor_envelope
7652b3d3934dSBarry Smith 
7653b3d3934dSBarry Smith    Level: intermediate
7654b3d3934dSBarry Smith 
7655b3d3934dSBarry Smith    Notes: after a solve you can use TSMonitorEnvelopeGetBounds() to access the envelope
7656b3d3934dSBarry Smith 
7657b3d3934dSBarry Smith .keywords: TS,  vector, monitor, view
7658b3d3934dSBarry Smith 
76597db568b7SBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorEnvelopeGetBounds(), TSMonitorEnvelopeCtxCreate()
7660b3d3934dSBarry Smith @*/
76617db568b7SBarry Smith PetscErrorCode  TSMonitorEnvelope(TS ts,PetscInt step,PetscReal ptime,Vec u,void *dctx)
7662b3d3934dSBarry Smith {
7663b3d3934dSBarry Smith   PetscErrorCode       ierr;
76647db568b7SBarry Smith   TSMonitorEnvelopeCtx ctx = (TSMonitorEnvelopeCtx)dctx;
7665b3d3934dSBarry Smith 
7666b3d3934dSBarry Smith   PetscFunctionBegin;
7667b3d3934dSBarry Smith   if (!ctx->max) {
7668b3d3934dSBarry Smith     ierr = VecDuplicate(u,&ctx->max);CHKERRQ(ierr);
7669b3d3934dSBarry Smith     ierr = VecDuplicate(u,&ctx->min);CHKERRQ(ierr);
7670b3d3934dSBarry Smith     ierr = VecCopy(u,ctx->max);CHKERRQ(ierr);
7671b3d3934dSBarry Smith     ierr = VecCopy(u,ctx->min);CHKERRQ(ierr);
7672b3d3934dSBarry Smith   } else {
7673b3d3934dSBarry Smith     ierr = VecPointwiseMax(ctx->max,u,ctx->max);CHKERRQ(ierr);
7674b3d3934dSBarry Smith     ierr = VecPointwiseMin(ctx->min,u,ctx->min);CHKERRQ(ierr);
7675b3d3934dSBarry Smith   }
7676b3d3934dSBarry Smith   PetscFunctionReturn(0);
7677b3d3934dSBarry Smith }
7678b3d3934dSBarry Smith 
7679b3d3934dSBarry Smith /*@C
7680b3d3934dSBarry Smith    TSMonitorEnvelopeGetBounds - Gets the bounds for the components of the solution
7681b3d3934dSBarry Smith 
7682b3d3934dSBarry Smith    Collective on TS
7683b3d3934dSBarry Smith 
7684b3d3934dSBarry Smith    Input Parameter:
7685b3d3934dSBarry Smith .  ts - the TS context
7686b3d3934dSBarry Smith 
7687b3d3934dSBarry Smith    Output Parameter:
7688b3d3934dSBarry Smith +  max - the maximum values
7689b3d3934dSBarry Smith -  min - the minimum values
7690b3d3934dSBarry Smith 
76917db568b7SBarry Smith    Notes: If the TS does not have a TSMonitorEnvelopeCtx associated with it then this function is ignored
76927db568b7SBarry Smith 
7693b3d3934dSBarry Smith    Level: intermediate
7694b3d3934dSBarry Smith 
7695b3d3934dSBarry Smith .keywords: TS,  vector, monitor, view
7696b3d3934dSBarry Smith 
7697b3d3934dSBarry Smith .seealso: TSMonitorSet(), TSMonitorDefault(), VecView(), TSMonitorLGSetDisplayVariables()
7698b3d3934dSBarry Smith @*/
7699b3d3934dSBarry Smith PetscErrorCode  TSMonitorEnvelopeGetBounds(TS ts,Vec *max,Vec *min)
7700b3d3934dSBarry Smith {
7701b3d3934dSBarry Smith   PetscInt i;
7702b3d3934dSBarry Smith 
7703b3d3934dSBarry Smith   PetscFunctionBegin;
7704b3d3934dSBarry Smith   if (max) *max = NULL;
7705b3d3934dSBarry Smith   if (min) *min = NULL;
7706b3d3934dSBarry Smith   for (i=0; i<ts->numbermonitors; i++) {
7707b3d3934dSBarry Smith     if (ts->monitor[i] == TSMonitorEnvelope) {
77085537e223SBarry Smith       TSMonitorEnvelopeCtx  ctx = (TSMonitorEnvelopeCtx) ts->monitorcontext[i];
7709b3d3934dSBarry Smith       if (max) *max = ctx->max;
7710b3d3934dSBarry Smith       if (min) *min = ctx->min;
7711b3d3934dSBarry Smith       break;
7712b3d3934dSBarry Smith     }
7713b3d3934dSBarry Smith   }
7714b3d3934dSBarry Smith   PetscFunctionReturn(0);
7715b3d3934dSBarry Smith }
7716b3d3934dSBarry Smith 
7717b3d3934dSBarry Smith /*@C
7718b3d3934dSBarry Smith    TSMonitorEnvelopeCtxDestroy - Destroys a context that was created  with TSMonitorEnvelopeCtxCreate().
7719b3d3934dSBarry Smith 
7720b3d3934dSBarry Smith    Collective on TSMonitorEnvelopeCtx
7721b3d3934dSBarry Smith 
7722b3d3934dSBarry Smith    Input Parameter:
7723b3d3934dSBarry Smith .  ctx - the monitor context
7724b3d3934dSBarry Smith 
7725b3d3934dSBarry Smith    Level: intermediate
7726b3d3934dSBarry Smith 
7727b3d3934dSBarry Smith .keywords: TS, monitor, line graph, destroy
7728b3d3934dSBarry Smith 
77297db568b7SBarry Smith .seealso: TSMonitorLGCtxCreate(),  TSMonitorSet(), TSMonitorLGTimeStep()
7730b3d3934dSBarry Smith @*/
7731b3d3934dSBarry Smith PetscErrorCode  TSMonitorEnvelopeCtxDestroy(TSMonitorEnvelopeCtx *ctx)
7732b3d3934dSBarry Smith {
7733b3d3934dSBarry Smith   PetscErrorCode ierr;
7734b3d3934dSBarry Smith 
7735b3d3934dSBarry Smith   PetscFunctionBegin;
7736b3d3934dSBarry Smith   ierr = VecDestroy(&(*ctx)->min);CHKERRQ(ierr);
7737b3d3934dSBarry Smith   ierr = VecDestroy(&(*ctx)->max);CHKERRQ(ierr);
7738b3d3934dSBarry Smith   ierr = PetscFree(*ctx);CHKERRQ(ierr);
7739b3d3934dSBarry Smith   PetscFunctionReturn(0);
7740b3d3934dSBarry Smith }
7741f2dee214SBarry Smith 
774224655328SShri /*@
774324655328SShri    TSRollBack - Rolls back one time step
774424655328SShri 
774524655328SShri    Collective on TS
774624655328SShri 
774724655328SShri    Input Parameter:
774824655328SShri .  ts - the TS context obtained from TSCreate()
774924655328SShri 
775024655328SShri    Level: advanced
775124655328SShri 
775224655328SShri .keywords: TS, timestep, rollback
775324655328SShri 
775424655328SShri .seealso: TSCreate(), TSSetUp(), TSDestroy(), TSSolve(), TSSetPreStep(), TSSetPreStage(), TSInterpolate()
775524655328SShri @*/
775624655328SShri PetscErrorCode  TSRollBack(TS ts)
775724655328SShri {
775824655328SShri   PetscErrorCode ierr;
775924655328SShri 
776024655328SShri   PetscFunctionBegin;
776124655328SShri   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
7762b3de5cdeSLisandro Dalcin   if (ts->steprollback) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_WRONGSTATE,"TSRollBack already called");
776324655328SShri   if (!ts->ops->rollback) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"TSRollBack not implemented for type '%s'",((PetscObject)ts)->type_name);
776424655328SShri   ierr = (*ts->ops->rollback)(ts);CHKERRQ(ierr);
776524655328SShri   ts->time_step = ts->ptime - ts->ptime_prev;
776624655328SShri   ts->ptime = ts->ptime_prev;
7767be5899b3SLisandro Dalcin   ts->ptime_prev = ts->ptime_prev_rollback;
77682808aa04SLisandro Dalcin   ts->steps--;
776910b82f12SShri Abhyankar   ierr = TSPostEvaluate(ts);CHKERRQ(ierr);
7770b3de5cdeSLisandro Dalcin   ts->steprollback = PETSC_TRUE;
777124655328SShri   PetscFunctionReturn(0);
777224655328SShri }
7773aeb4809dSShri Abhyankar 
7774ff22ae23SHong Zhang /*@
7775ff22ae23SHong Zhang    TSGetStages - Get the number of stages and stage values
7776ff22ae23SHong Zhang 
7777ff22ae23SHong Zhang    Input Parameter:
7778ff22ae23SHong Zhang .  ts - the TS context obtained from TSCreate()
7779ff22ae23SHong Zhang 
7780ff22ae23SHong Zhang    Level: advanced
7781ff22ae23SHong Zhang 
7782ff22ae23SHong Zhang .keywords: TS, getstages
7783ff22ae23SHong Zhang 
7784ff22ae23SHong Zhang .seealso: TSCreate()
7785ff22ae23SHong Zhang @*/
7786ff22ae23SHong Zhang PetscErrorCode  TSGetStages(TS ts,PetscInt *ns,Vec **Y)
7787ff22ae23SHong Zhang {
7788ff22ae23SHong Zhang   PetscErrorCode ierr;
7789ff22ae23SHong Zhang 
7790ff22ae23SHong Zhang   PetscFunctionBegin;
7791ff22ae23SHong Zhang   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
7792ff22ae23SHong Zhang   PetscValidPointer(ns,2);
7793ff22ae23SHong Zhang 
7794ff22ae23SHong Zhang   if (!ts->ops->getstages) *ns=0;
7795ff22ae23SHong Zhang   else {
7796ff22ae23SHong Zhang     ierr = (*ts->ops->getstages)(ts,ns,Y);CHKERRQ(ierr);
7797ff22ae23SHong Zhang   }
7798ff22ae23SHong Zhang   PetscFunctionReturn(0);
7799ff22ae23SHong Zhang }
7800ff22ae23SHong Zhang 
7801847ff0e1SMatthew G. Knepley /*@C
7802847ff0e1SMatthew G. Knepley   TSComputeIJacobianDefaultColor - Computes the Jacobian using finite differences and coloring to exploit matrix sparsity.
7803847ff0e1SMatthew G. Knepley 
7804847ff0e1SMatthew G. Knepley   Collective on SNES
7805847ff0e1SMatthew G. Knepley 
7806847ff0e1SMatthew G. Knepley   Input Parameters:
7807847ff0e1SMatthew G. Knepley + ts - the TS context
7808847ff0e1SMatthew G. Knepley . t - current timestep
7809847ff0e1SMatthew G. Knepley . U - state vector
7810847ff0e1SMatthew G. Knepley . Udot - time derivative of state vector
7811847ff0e1SMatthew G. Knepley . shift - shift to apply, see note below
7812847ff0e1SMatthew G. Knepley - ctx - an optional user context
7813847ff0e1SMatthew G. Knepley 
7814847ff0e1SMatthew G. Knepley   Output Parameters:
7815847ff0e1SMatthew G. Knepley + J - Jacobian matrix (not altered in this routine)
7816847ff0e1SMatthew G. Knepley - B - newly computed Jacobian matrix to use with preconditioner (generally the same as J)
7817847ff0e1SMatthew G. Knepley 
7818847ff0e1SMatthew G. Knepley   Level: intermediate
7819847ff0e1SMatthew G. Knepley 
7820847ff0e1SMatthew G. Knepley   Notes:
7821847ff0e1SMatthew G. Knepley   If F(t,U,Udot)=0 is the DAE, the required Jacobian is
7822847ff0e1SMatthew G. Knepley 
7823847ff0e1SMatthew G. Knepley   dF/dU + shift*dF/dUdot
7824847ff0e1SMatthew G. Knepley 
7825847ff0e1SMatthew G. Knepley   Most users should not need to explicitly call this routine, as it
7826847ff0e1SMatthew G. Knepley   is used internally within the nonlinear solvers.
7827847ff0e1SMatthew G. Knepley 
7828847ff0e1SMatthew G. Knepley   This will first try to get the coloring from the DM.  If the DM type has no coloring
7829847ff0e1SMatthew G. Knepley   routine, then it will try to get the coloring from the matrix.  This requires that the
7830847ff0e1SMatthew G. Knepley   matrix have nonzero entries precomputed.
7831847ff0e1SMatthew G. Knepley 
7832847ff0e1SMatthew G. Knepley .keywords: TS, finite differences, Jacobian, coloring, sparse
7833847ff0e1SMatthew G. Knepley .seealso: TSSetIJacobian(), MatFDColoringCreate(), MatFDColoringSetFunction()
7834847ff0e1SMatthew G. Knepley @*/
7835847ff0e1SMatthew G. Knepley PetscErrorCode TSComputeIJacobianDefaultColor(TS ts,PetscReal t,Vec U,Vec Udot,PetscReal shift,Mat J,Mat B,void *ctx)
7836847ff0e1SMatthew G. Knepley {
7837847ff0e1SMatthew G. Knepley   SNES           snes;
7838847ff0e1SMatthew G. Knepley   MatFDColoring  color;
7839847ff0e1SMatthew G. Knepley   PetscBool      hascolor, matcolor = PETSC_FALSE;
7840847ff0e1SMatthew G. Knepley   PetscErrorCode ierr;
7841847ff0e1SMatthew G. Knepley 
7842847ff0e1SMatthew G. Knepley   PetscFunctionBegin;
7843c5929fdfSBarry Smith   ierr = PetscOptionsGetBool(((PetscObject)ts)->options,((PetscObject) ts)->prefix, "-ts_fd_color_use_mat", &matcolor, NULL);CHKERRQ(ierr);
7844847ff0e1SMatthew G. Knepley   ierr = PetscObjectQuery((PetscObject) B, "TSMatFDColoring", (PetscObject *) &color);CHKERRQ(ierr);
7845847ff0e1SMatthew G. Knepley   if (!color) {
7846847ff0e1SMatthew G. Knepley     DM         dm;
7847847ff0e1SMatthew G. Knepley     ISColoring iscoloring;
7848847ff0e1SMatthew G. Knepley 
7849847ff0e1SMatthew G. Knepley     ierr = TSGetDM(ts, &dm);CHKERRQ(ierr);
7850847ff0e1SMatthew G. Knepley     ierr = DMHasColoring(dm, &hascolor);CHKERRQ(ierr);
7851847ff0e1SMatthew G. Knepley     if (hascolor && !matcolor) {
7852847ff0e1SMatthew G. Knepley       ierr = DMCreateColoring(dm, IS_COLORING_GLOBAL, &iscoloring);CHKERRQ(ierr);
7853847ff0e1SMatthew G. Knepley       ierr = MatFDColoringCreate(B, iscoloring, &color);CHKERRQ(ierr);
7854847ff0e1SMatthew G. Knepley       ierr = MatFDColoringSetFunction(color, (PetscErrorCode (*)(void)) SNESTSFormFunction, (void *) ts);CHKERRQ(ierr);
7855847ff0e1SMatthew G. Knepley       ierr = MatFDColoringSetFromOptions(color);CHKERRQ(ierr);
7856847ff0e1SMatthew G. Knepley       ierr = MatFDColoringSetUp(B, iscoloring, color);CHKERRQ(ierr);
7857847ff0e1SMatthew G. Knepley       ierr = ISColoringDestroy(&iscoloring);CHKERRQ(ierr);
7858847ff0e1SMatthew G. Knepley     } else {
7859847ff0e1SMatthew G. Knepley       MatColoring mc;
7860847ff0e1SMatthew G. Knepley 
7861847ff0e1SMatthew G. Knepley       ierr = MatColoringCreate(B, &mc);CHKERRQ(ierr);
7862847ff0e1SMatthew G. Knepley       ierr = MatColoringSetDistance(mc, 2);CHKERRQ(ierr);
7863847ff0e1SMatthew G. Knepley       ierr = MatColoringSetType(mc, MATCOLORINGSL);CHKERRQ(ierr);
7864847ff0e1SMatthew G. Knepley       ierr = MatColoringSetFromOptions(mc);CHKERRQ(ierr);
7865847ff0e1SMatthew G. Knepley       ierr = MatColoringApply(mc, &iscoloring);CHKERRQ(ierr);
7866847ff0e1SMatthew G. Knepley       ierr = MatColoringDestroy(&mc);CHKERRQ(ierr);
7867847ff0e1SMatthew G. Knepley       ierr = MatFDColoringCreate(B, iscoloring, &color);CHKERRQ(ierr);
7868847ff0e1SMatthew G. Knepley       ierr = MatFDColoringSetFunction(color, (PetscErrorCode (*)(void)) SNESTSFormFunction, (void *) ts);CHKERRQ(ierr);
7869847ff0e1SMatthew G. Knepley       ierr = MatFDColoringSetFromOptions(color);CHKERRQ(ierr);
7870847ff0e1SMatthew G. Knepley       ierr = MatFDColoringSetUp(B, iscoloring, color);CHKERRQ(ierr);
7871847ff0e1SMatthew G. Knepley       ierr = ISColoringDestroy(&iscoloring);CHKERRQ(ierr);
7872847ff0e1SMatthew G. Knepley     }
7873847ff0e1SMatthew G. Knepley     ierr = PetscObjectCompose((PetscObject) B, "TSMatFDColoring", (PetscObject) color);CHKERRQ(ierr);
7874847ff0e1SMatthew G. Knepley     ierr = PetscObjectDereference((PetscObject) color);CHKERRQ(ierr);
7875847ff0e1SMatthew G. Knepley   }
7876847ff0e1SMatthew G. Knepley   ierr = TSGetSNES(ts, &snes);CHKERRQ(ierr);
7877847ff0e1SMatthew G. Knepley   ierr = MatFDColoringApply(B, color, U, snes);CHKERRQ(ierr);
7878847ff0e1SMatthew G. Knepley   if (J != B) {
7879847ff0e1SMatthew G. Knepley     ierr = MatAssemblyBegin(J, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
7880847ff0e1SMatthew G. Knepley     ierr = MatAssemblyEnd(J, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
7881847ff0e1SMatthew G. Knepley   }
7882847ff0e1SMatthew G. Knepley   PetscFunctionReturn(0);
7883847ff0e1SMatthew G. Knepley }
788493b34091SDebojyoti Ghosh 
7885cb9d8021SPierre Barbier de Reuille /*@
7886cb9d8021SPierre Barbier de Reuille     TSSetFunctionDomainError - Set the function testing if the current state vector is valid
7887cb9d8021SPierre Barbier de Reuille 
7888cb9d8021SPierre Barbier de Reuille     Input Parameters:
7889cb9d8021SPierre Barbier de Reuille     ts - the TS context
7890cb9d8021SPierre Barbier de Reuille     func - function called within TSFunctionDomainError
7891cb9d8021SPierre Barbier de Reuille 
7892cb9d8021SPierre Barbier de Reuille     Level: intermediate
7893cb9d8021SPierre Barbier de Reuille 
7894cb9d8021SPierre Barbier de Reuille .keywords: TS, state, domain
7895cb9d8021SPierre Barbier de Reuille .seealso: TSAdaptCheckStage(), TSFunctionDomainError()
7896cb9d8021SPierre Barbier de Reuille @*/
7897cb9d8021SPierre Barbier de Reuille 
7898d183316bSPierre Barbier de Reuille PetscErrorCode TSSetFunctionDomainError(TS ts, PetscErrorCode (*func)(TS,PetscReal,Vec,PetscBool*))
7899cb9d8021SPierre Barbier de Reuille {
7900cb9d8021SPierre Barbier de Reuille   PetscFunctionBegin;
7901cb9d8021SPierre Barbier de Reuille   PetscValidHeaderSpecific(ts, TS_CLASSID,1);
7902cb9d8021SPierre Barbier de Reuille   ts->functiondomainerror = func;
7903cb9d8021SPierre Barbier de Reuille   PetscFunctionReturn(0);
7904cb9d8021SPierre Barbier de Reuille }
7905cb9d8021SPierre Barbier de Reuille 
7906cb9d8021SPierre Barbier de Reuille /*@
7907cb9d8021SPierre Barbier de Reuille     TSFunctionDomainError - Check if the current state is valid
7908cb9d8021SPierre Barbier de Reuille 
7909cb9d8021SPierre Barbier de Reuille     Input Parameters:
7910cb9d8021SPierre Barbier de Reuille     ts - the TS context
7911cb9d8021SPierre Barbier de Reuille     stagetime - time of the simulation
7912d183316bSPierre Barbier de Reuille     Y - state vector to check.
7913cb9d8021SPierre Barbier de Reuille 
7914cb9d8021SPierre Barbier de Reuille     Output Parameter:
7915cb9d8021SPierre Barbier de Reuille     accept - Set to PETSC_FALSE if the current state vector is valid.
7916cb9d8021SPierre Barbier de Reuille 
7917cb9d8021SPierre Barbier de Reuille     Note:
7918cb9d8021SPierre Barbier de Reuille     This function should be used to ensure the state is in a valid part of the space.
7919cb9d8021SPierre Barbier de Reuille     For example, one can ensure here all values are positive.
792096a0c994SBarry Smith 
792196a0c994SBarry Smith     Level: advanced
7922cb9d8021SPierre Barbier de Reuille @*/
7923d183316bSPierre Barbier de Reuille PetscErrorCode TSFunctionDomainError(TS ts,PetscReal stagetime,Vec Y,PetscBool* accept)
7924cb9d8021SPierre Barbier de Reuille {
7925cb9d8021SPierre Barbier de Reuille   PetscErrorCode ierr;
7926cb9d8021SPierre Barbier de Reuille 
7927cb9d8021SPierre Barbier de Reuille   PetscFunctionBegin;
7928cb9d8021SPierre Barbier de Reuille 
7929cb9d8021SPierre Barbier de Reuille   PetscValidHeaderSpecific(ts,TS_CLASSID,1);
7930cb9d8021SPierre Barbier de Reuille   *accept = PETSC_TRUE;
7931cb9d8021SPierre Barbier de Reuille   if (ts->functiondomainerror) {
7932d183316bSPierre Barbier de Reuille     PetscStackCallStandard((*ts->functiondomainerror),(ts,stagetime,Y,accept));
7933cb9d8021SPierre Barbier de Reuille   }
7934cb9d8021SPierre Barbier de Reuille   PetscFunctionReturn(0);
7935cb9d8021SPierre Barbier de Reuille }
79361ceb14c0SBarry Smith 
793793b34091SDebojyoti Ghosh /*@C
7938e5168f73SEmil Constantinescu   TSClone - This function clones a time step object.
793993b34091SDebojyoti Ghosh 
794093b34091SDebojyoti Ghosh   Collective on MPI_Comm
794193b34091SDebojyoti Ghosh 
794293b34091SDebojyoti Ghosh   Input Parameter:
794393b34091SDebojyoti Ghosh . tsin    - The input TS
794493b34091SDebojyoti Ghosh 
794593b34091SDebojyoti Ghosh   Output Parameter:
7946e5168f73SEmil Constantinescu . tsout   - The output TS (cloned)
794793b34091SDebojyoti Ghosh 
79485eca1a21SEmil Constantinescu   Notes:
79495eca1a21SEmil 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.
79505eca1a21SEmil Constantinescu 
7951baa10174SEmil 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);
79525eca1a21SEmil Constantinescu 
79535eca1a21SEmil Constantinescu   Level: developer
795493b34091SDebojyoti Ghosh 
7955e5168f73SEmil Constantinescu .keywords: TS, clone
7956e5168f73SEmil Constantinescu .seealso: TSCreate(), TSSetType(), TSSetUp(), TSDestroy(), TSSetProblemType()
795793b34091SDebojyoti Ghosh @*/
7958baa10174SEmil Constantinescu PetscErrorCode  TSClone(TS tsin, TS *tsout)
795993b34091SDebojyoti Ghosh {
796093b34091SDebojyoti Ghosh   TS             t;
796193b34091SDebojyoti Ghosh   PetscErrorCode ierr;
7962dc846ba4SSatish Balay   SNES           snes_start;
7963dc846ba4SSatish Balay   DM             dm;
7964dc846ba4SSatish Balay   TSType         type;
796593b34091SDebojyoti Ghosh 
796693b34091SDebojyoti Ghosh   PetscFunctionBegin;
796793b34091SDebojyoti Ghosh   PetscValidPointer(tsin,1);
796893b34091SDebojyoti Ghosh   *tsout = NULL;
796993b34091SDebojyoti Ghosh 
79707a37829fSSatish Balay   ierr = PetscHeaderCreate(t, TS_CLASSID, "TS", "Time stepping", "TS", PetscObjectComm((PetscObject)tsin), TSDestroy, TSView);CHKERRQ(ierr);
797193b34091SDebojyoti Ghosh 
797293b34091SDebojyoti Ghosh   /* General TS description */
797393b34091SDebojyoti Ghosh   t->numbermonitors    = 0;
797493b34091SDebojyoti Ghosh   t->setupcalled       = 0;
797593b34091SDebojyoti Ghosh   t->ksp_its           = 0;
797693b34091SDebojyoti Ghosh   t->snes_its          = 0;
797793b34091SDebojyoti Ghosh   t->nwork             = 0;
797893b34091SDebojyoti Ghosh   t->rhsjacobian.time  = -1e20;
797993b34091SDebojyoti Ghosh   t->rhsjacobian.scale = 1.;
798093b34091SDebojyoti Ghosh   t->ijacobian.shift   = 1.;
798193b34091SDebojyoti Ghosh 
798234561852SEmil Constantinescu   ierr = TSGetSNES(tsin,&snes_start);CHKERRQ(ierr);
798334561852SEmil Constantinescu   ierr = TSSetSNES(t,snes_start);CHKERRQ(ierr);
7984d15a3a53SEmil Constantinescu 
798593b34091SDebojyoti Ghosh   ierr = TSGetDM(tsin,&dm);CHKERRQ(ierr);
798693b34091SDebojyoti Ghosh   ierr = TSSetDM(t,dm);CHKERRQ(ierr);
798793b34091SDebojyoti Ghosh 
798893b34091SDebojyoti Ghosh   t->adapt = tsin->adapt;
798951699248SLisandro Dalcin   ierr = PetscObjectReference((PetscObject)t->adapt);CHKERRQ(ierr);
799093b34091SDebojyoti Ghosh 
7991e7069c78SShri   t->trajectory = tsin->trajectory;
7992e7069c78SShri   ierr = PetscObjectReference((PetscObject)t->trajectory);CHKERRQ(ierr);
7993e7069c78SShri 
7994e7069c78SShri   t->event = tsin->event;
79956b10a48eSSatish Balay   if (t->event) t->event->refct++;
7996e7069c78SShri 
799793b34091SDebojyoti Ghosh   t->problem_type      = tsin->problem_type;
799893b34091SDebojyoti Ghosh   t->ptime             = tsin->ptime;
7999e7069c78SShri   t->ptime_prev        = tsin->ptime_prev;
800093b34091SDebojyoti Ghosh   t->time_step         = tsin->time_step;
800193b34091SDebojyoti Ghosh   t->max_time          = tsin->max_time;
800293b34091SDebojyoti Ghosh   t->steps             = tsin->steps;
800393b34091SDebojyoti Ghosh   t->max_steps         = tsin->max_steps;
800493b34091SDebojyoti Ghosh   t->equation_type     = tsin->equation_type;
800593b34091SDebojyoti Ghosh   t->atol              = tsin->atol;
800693b34091SDebojyoti Ghosh   t->rtol              = tsin->rtol;
800793b34091SDebojyoti Ghosh   t->max_snes_failures = tsin->max_snes_failures;
800893b34091SDebojyoti Ghosh   t->max_reject        = tsin->max_reject;
800993b34091SDebojyoti Ghosh   t->errorifstepfailed = tsin->errorifstepfailed;
801093b34091SDebojyoti Ghosh 
801193b34091SDebojyoti Ghosh   ierr = TSGetType(tsin,&type);CHKERRQ(ierr);
801293b34091SDebojyoti Ghosh   ierr = TSSetType(t,type);CHKERRQ(ierr);
801393b34091SDebojyoti Ghosh 
801493b34091SDebojyoti Ghosh   t->vec_sol           = NULL;
801593b34091SDebojyoti Ghosh 
801693b34091SDebojyoti Ghosh   t->cfltime          = tsin->cfltime;
801793b34091SDebojyoti Ghosh   t->cfltime_local    = tsin->cfltime_local;
801893b34091SDebojyoti Ghosh   t->exact_final_time = tsin->exact_final_time;
801993b34091SDebojyoti Ghosh 
802093b34091SDebojyoti Ghosh   ierr = PetscMemcpy(t->ops,tsin->ops,sizeof(struct _TSOps));CHKERRQ(ierr);
802193b34091SDebojyoti Ghosh 
80220d4fed19SBarry Smith   if (((PetscObject)tsin)->fortran_func_pointers) {
80230d4fed19SBarry Smith     PetscInt i;
80240d4fed19SBarry Smith     ierr = PetscMalloc((10)*sizeof(void(*)(void)),&((PetscObject)t)->fortran_func_pointers);CHKERRQ(ierr);
80250d4fed19SBarry Smith     for (i=0; i<10; i++) {
80260d4fed19SBarry Smith       ((PetscObject)t)->fortran_func_pointers[i] = ((PetscObject)tsin)->fortran_func_pointers[i];
80270d4fed19SBarry Smith     }
80280d4fed19SBarry Smith   }
802993b34091SDebojyoti Ghosh   *tsout = t;
803093b34091SDebojyoti Ghosh   PetscFunctionReturn(0);
803193b34091SDebojyoti Ghosh }
8032