:orphan: # TS2GetSolution Returns the solution and time derivative at the present timestep for second order equations. It is valid to call this routine inside the function that you are evaluating in order to move to the new timestep. This vector not changed until the solution at the next timestep has been calculated. ## Synopsis ``` #include "petscts.h" PetscErrorCode TS2GetSolution(TS ts, Vec *u, Vec *v) ``` Not Collective, but `u` returned is parallel if `TS` is parallel ## Input Parameter - ***ts -*** the `TS` context obtained from `TSCreate()` ## Output Parameters - ***u -*** the vector containing the solution - ***v -*** the vector containing the time derivative ## See Also [](ch_ts), `TS`, `TS2SetSolution()`, `TSGetTimeStep()`, `TSGetTime()` ## Level intermediate ## Location src/ts/interface/ts.c ## Examples src/ts/tutorials/ex44.c
--- [Edit on GitLab](https://gitlab.com/petsc/petsc/-/edit/release/src/ts/interface/ts.c) [Index of all TS routines](index.md) [Table of Contents for all manual pages](/manualpages/index.md) [Index of all manual pages](/manualpages/singleindex.md)