TSGetTimeSpanSolutions#
Get the number of solutions and the solutions at the time points specified by the time span.
Synopsis#
#include <petscts.h>
PETSC_DEPRECATED_FUNCTION(3, 23, 0, "TSGetEvaluationSolutions()", ) static inline PetscErrorCode TSGetTimeSpanSolutions(TS ts, PetscInt *nsol, Vec **Sols)
Input Parameter#
Output Parameters#
nsol - the number of solutions
Sols - the solution vectors
Notes#
Deprecated, use TSGetEvaluationSolutions()
.
Both nsol
and Sols
can be NULL
.
Some time points in the time span may be skipped by TS
so that nsol
is less than the number of points specified by TSSetTimeSpan()
.
For example, manipulating the step size, especially with a reduced precision, may cause TS
to step over certain points in the span.
This issue is alleviated in TSGetEvaluationSolutions()
by returning the solution times that Sols
were recorded at.
See Also#
TS: Scalable ODE and DAE Solvers, TS
, TSGetEvaluationSolutions()
, TSSetTimeSpan()
, TSGetEvaluationTimes()
, TSSetEvaluationTimes()
Level#
deprecated
Location#
Index of all TS routines
Table of Contents for all manual pages
Index of all manual pages