1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML3.2 EN">
<HTML>
<HEAD> <link rel="canonical" href="http://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/TS/TSSetStepNumber.html" />
<META NAME="GENERATOR" CONTENT="DOCTEXT">
<TITLE>TSSetStepNumber</TITLE>
</HEAD>
<BODY BGCOLOR="FFFFFF">
<div id="version" align=right><b>petsc-3.10.3 2018-12-18</b></div>
<div id="bugreport" align=right><a href="mailto:petsc-maint@mcs.anl.gov?subject=Typo or Error in Documentation &body=Please describe the typo or error in the documentation: petsc-3.10.3 v3.10.3 docs/manualpages/TS/TSSetStepNumber.html "><small>Report Typos and Errors</small></a></div>
<A NAME="TSSetStepNumber"><H1>TSSetStepNumber</H1></A>
Sets the number of steps completed.
<H3><FONT COLOR="#CC3333">Synopsis</FONT></H3>
<PRE>
#include "petscts.h"
<A HREF="../Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</A> <A HREF="../TS/TSSetStepNumber.html#TSSetStepNumber">TSSetStepNumber</A>(<A HREF="../TS/TS.html#TS">TS</A> ts,<A HREF="../Sys/PetscInt.html#PetscInt">PetscInt</A> steps)
</PRE>
Logically Collective on <A HREF="../TS/TS.html#TS">TS</A>
<P>
<H3><FONT COLOR="#CC3333">Input Parameters</FONT></H3>
<TABLE border="0" cellpadding="0" cellspacing="0">
<TR><TD WIDTH=40></TD><TD ALIGN=LEFT VALIGN=TOP><B>ts </B></TD><TD>- the <A HREF="../TS/TS.html#TS">TS</A> context
</TD></TR>
<TR><TD WIDTH=40></TD><TD ALIGN=LEFT VALIGN=TOP><B>steps </B></TD><TD>- number of steps completed so far
</TD></TR></TABLE>
<P>
<H3><FONT COLOR="#CC3333">Notes</FONT></H3>
For most uses of the <A HREF="../TS/TS.html#TS">TS</A> solvers the user need not explicitly call
<A HREF="../TS/TSSetStepNumber.html#TSSetStepNumber">TSSetStepNumber</A>(), as the step counter is appropriately updated in
<A HREF="../TS/TSSolve.html#TSSolve">TSSolve</A>()/<A HREF="../TS/TSStep.html#TSStep">TSStep</A>()/<A HREF="../TS/TSRollBack.html#TSRollBack">TSRollBack</A>(). Power users may call this routine to
reinitialize timestepping by setting the step counter to zero (and time
to the initial time) to solve a similar problem with different initial
conditions or parameters. Other possible use case is to continue
timestepping from a previously interrupted run in such a way that <A HREF="../TS/TS.html#TS">TS</A>
monitors will be called with a initial nonzero step counter.
<P>
<P>
<H3><FONT COLOR="#CC3333">Keywords</FONT></H3>
<A HREF="../TS/TS.html#TS">TS</A>, timestep, set, iteration, number
<BR>
<H3><FONT COLOR="#CC3333">See Also</FONT></H3>
<A HREF="../TS/TSGetStepNumber.html#TSGetStepNumber">TSGetStepNumber</A>(), <A HREF="../TS/TSSetTime.html#TSSetTime">TSSetTime</A>(), <A HREF="../TS/TSSetTimeStep.html#TSSetTimeStep">TSSetTimeStep</A>(), <A HREF="../TS/TSSetSolution.html#TSSetSolution">TSSetSolution</A>()
<BR><P><B></B><H3><FONT COLOR="#CC3333">Level</FONT></H3>advanced<BR>
<H3><FONT COLOR="#CC3333">Location</FONT></H3>
</B><A HREF="../../../src/ts/interface/ts.c.html#TSSetStepNumber">src/ts/interface/ts.c</A>
<P><H3><FONT COLOR="#CC3333">Examples</FONT></H3>
<A HREF="../../../src/ts/examples/tutorials/ex11.c.html">src/ts/examples/tutorials/ex11.c.html</A><BR>
<A HREF="../../../src/ts/examples/tutorials/ex50.c.html">src/ts/examples/tutorials/ex50.c.html</A><BR>
<A HREF="../../../src/tao/unconstrained/examples/tutorials/spectraladjointassimilation.c.html">src/tao/unconstrained/examples/tutorials/spectraladjointassimilation.c.html</A><BR>
<BR><A HREF="./index.html">Index of all TS routines</A>
<BR><A HREF="../../index.html">Table of Contents for all manual pages</A>
<BR><A HREF="../singleindex.html">Index of all manual pages</A>
</BODY></HTML>
|