Lines Matching defs:ts
89 PetscErrorCode TSSetFromOptions(TS ts) in TSSetFromOptions()
463 PetscErrorCode TSGetTrajectory(TS ts, TSTrajectory *tr) in TSGetTrajectory()
493 PetscErrorCode TSSetSaveTrajectory(TS ts) in TSSetSaveTrajectory()
513 PetscErrorCode TSResetTrajectory(TS ts) in TSResetTrajectory()
536 PetscErrorCode TSRemoveTrajectory(TS ts) in TSRemoveTrajectory()
567 PetscErrorCode TSComputeRHSJacobian(TS ts, PetscReal t, Vec U, Mat A, Mat B) in TSComputeRHSJacobian()
629 PetscErrorCode TSComputeRHSFunction(TS ts, PetscReal t, Vec U, Vec y) in TSComputeRHSFunction()
673 PetscErrorCode TSComputeSolutionFunction(TS ts, PetscReal t, Vec U) in TSComputeSolutionFunction()
703 PetscErrorCode TSComputeForcingFunction(TS ts, PetscReal t, Vec U) in TSComputeForcingFunction()
719 PetscErrorCode TSGetRHSMats_Private(TS ts, Mat *Arhs, Mat *Brhs) in TSGetRHSMats_Private()
794 PetscErrorCode TSComputeIFunction(TS ts, PetscReal t, Vec U, Vec Udot, Vec Y, PetscBool imex) in TSComputeIFunction()
844 static PetscErrorCode TSRecoverRHSJacobian(TS ts, Mat A, Mat B) in TSRecoverRHSJacobian()
891 PetscErrorCode TSComputeIJacobian(TS ts, PetscReal t, Vec U, Vec Udot, PetscReal shift, Mat A, Mat … in TSComputeIJacobian()
1021 PetscErrorCode TSSetRHSFunction(TS ts, Vec r, TSRHSFunctionFn *f, PetscCtx ctx) in TSSetRHSFunction()
1069 PetscErrorCode TSSetSolutionFunction(TS ts, TSSolutionFn *f, PetscCtx ctx) in TSSetSolutionFunction()
1108 PetscErrorCode TSSetForcingFunction(TS ts, TSForcingFn *func, PetscCtx ctx) in TSSetForcingFunction()
1143 PetscErrorCode TSSetRHSJacobian(TS ts, Mat Amat, Mat Pmat, TSRHSJacobianFn *f, PetscCtx ctx) in TSSetRHSJacobian()
1193 PetscErrorCode TSSetIFunction(TS ts, Vec r, TSIFunctionFn *f, PetscCtx ctx) in TSSetIFunction()
1233 PetscErrorCode TSGetIFunction(TS ts, Vec *r, TSIFunctionFn **func, PetscCtxRt ctx) in TSGetIFunction()
1264 PetscErrorCode TSGetRHSFunction(TS ts, Vec *r, TSRHSFunctionFn **func, PetscCtxRt ctx) in TSGetRHSFunction()
1317 PetscErrorCode TSSetIJacobian(TS ts, Mat Amat, Mat Pmat, TSIJacobianFn *f, PetscCtx ctx) in TSSetIJacobian()
1356 PetscErrorCode TSRHSJacobianSetReuse(TS ts, PetscBool reuse) in TSRHSJacobianSetReuse()
1379 PetscErrorCode TSSetI2Function(TS ts, Vec F, TSI2FunctionFn *fun, PetscCtx ctx) in TSSetI2Function()
1409 PetscErrorCode TSGetI2Function(TS ts, Vec *r, TSI2FunctionFn **fun, PetscCtxRt ctx) in TSGetI2Function()
1448 PetscErrorCode TSSetI2Jacobian(TS ts, Mat J, Mat P, TSI2JacobianFn *jac, PetscCtx ctx) in TSSetI2Jacobian()
1483 PetscErrorCode TSGetI2Jacobian(TS ts, Mat *J, Mat *P, TSI2JacobianFn **jac, PetscCtxRt ctx) in TSGetI2Jacobian()
1520 PetscErrorCode TSComputeI2Function(TS ts, PetscReal t, Vec U, Vec V, Vec A, Vec F) in TSComputeI2Function()
1592 PetscErrorCode TSComputeI2Jacobian(TS ts, PetscReal t, Vec U, Vec V, Vec A, PetscReal shiftV, Petsc… in TSComputeI2Jacobian()
1654 PetscErrorCode TSSetTransientVariable(TS ts, TSTransientVariableFn *tvar, PetscCtx ctx) in TSSetTransientVariable()
1686 PetscErrorCode TSComputeTransientVariable(TS ts, Vec U, Vec C) in TSComputeTransientVariable()
1718 PetscErrorCode TSHasTransientVariable(TS ts, PetscBool *has) in TSHasTransientVariable()
1746 PetscErrorCode TS2SetSolution(TS ts, Vec u, Vec v) in TS2SetSolution()
1781 PetscErrorCode TS2GetSolution(TS ts, Vec *u, Vec *v) in TS2GetSolution()
1809 PetscErrorCode TSLoad(TS ts, PetscViewer viewer) in TSLoad()
1857 PetscErrorCode TSViewFromOptions(TS ts, PetscObject obj, const char name[]) in TSViewFromOptions()
1896 PetscErrorCode TSView(TS ts, PetscViewer viewer) in TSView()
2041 PetscErrorCode TSSetApplicationContext(TS ts, PetscCtx ctx) in TSSetApplicationContext()
2071 PetscErrorCode TSGetApplicationContext(TS ts, PetscCtxRt ctx) in TSGetApplicationContext()
2094 PetscErrorCode TSGetStepNumber(TS ts, PetscInt *steps) in TSGetStepNumber()
2126 PetscErrorCode TSSetStepNumber(TS ts, PetscInt steps) in TSSetStepNumber()
2157 PetscErrorCode TSSetTimeStep(TS ts, PetscReal time_step) in TSSetTimeStep()
2195 PetscErrorCode TSSetExactFinalTime(TS ts, TSExactFinalTimeOption eftopt) in TSSetExactFinalTime()
2219 PetscErrorCode TSGetExactFinalTime(TS ts, TSExactFinalTimeOption *eftopt) in TSGetExactFinalTime()
2243 PetscErrorCode TSGetTimeStep(TS ts, PetscReal *dt) in TSGetTimeStep()
2274 PetscErrorCode TSGetSolution(TS ts, Vec *v) in TSGetSolution()
2304 PetscErrorCode TSGetSolutionComponents(TS ts, PetscInt *n, Vec *v) in TSGetSolutionComponents()
2327 PetscErrorCode TSGetAuxSolution(TS ts, Vec *v) in TSGetAuxSolution()
2354 PetscErrorCode TSGetTimeError(TS ts, PetscInt n, Vec *v) in TSGetTimeError()
2378 PetscErrorCode TSSetTimeError(TS ts, Vec v) in TSSetTimeError()
2406 PetscErrorCode TSSetProblemType(TS ts, TSProblemType type) in TSSetProblemType()
2439 PetscErrorCode TSGetProblemType(TS ts, TSProblemType *type) in TSGetProblemType()
2451 static PetscErrorCode TSSetExactFinalTimeDefault(TS ts) in TSSetExactFinalTimeDefault()
2484 PetscErrorCode TSSetUp(TS ts) in TSSetUp()
2587 PetscErrorCode TSReset(TS ts) in TSReset()
2653 PetscErrorCode TSDestroy(TS *ts) in TSDestroy()
2712 PetscErrorCode TSGetSNES(TS ts, SNES *snes) in TSGetSNES()
2745 PetscErrorCode TSSetSNES(TS ts, SNES snes) in TSSetSNES()
2787 PetscErrorCode TSGetKSP(TS ts, KSP *ksp) in TSGetKSP()
2827 PetscErrorCode TSSetMaxSteps(TS ts, PetscInt maxsteps) in TSSetMaxSteps()
2856 PetscErrorCode TSGetMaxSteps(TS ts, PetscInt *maxsteps) in TSGetMaxSteps()
2888 PetscErrorCode TSSetRunSteps(TS ts, PetscInt runsteps) in TSSetRunSteps()
2917 PetscErrorCode TSGetRunSteps(TS ts, PetscInt *runsteps) in TSGetRunSteps()
2950 PetscErrorCode TSSetMaxTime(TS ts, PetscReal maxtime) in TSSetMaxTime()
2978 PetscErrorCode TSGetMaxTime(TS ts, PetscReal *maxtime) in TSGetMaxTime()
2994 PetscErrorCode TSSetInitialTimeStep(TS ts, PetscReal initial_time, PetscReal time_step) in TSSetInitialTimeStep()
3010 PetscErrorCode TSGetDuration(TS ts, PetscInt *maxsteps, PetscReal *maxtime) in TSGetDuration()
3032 PetscErrorCode TSSetDuration(TS ts, PetscInt maxsteps, PetscReal maxtime) in TSSetDuration()
3047 PetscErrorCode TSGetTimeStepNumber(TS ts, PetscInt *steps) in TSGetTimeStepNumber()
3059 PetscErrorCode TSGetTotalSteps(TS ts, PetscInt *steps) in TSGetTotalSteps()
3078 PetscErrorCode TSSetSolution(TS ts, Vec u) in TSSetSolution()
3111 PetscErrorCode TSSetPreStep(TS ts, PetscErrorCode (*func)(TS ts)) in TSSetPreStep()
3135 PetscErrorCode TSPreStep(TS ts) in TSPreStep()
3180 PetscErrorCode TSSetPreStage(TS ts, PetscErrorCode (*func)(TS ts, PetscReal stagetime)) in TSSetPreStage()
3213 PetscErrorCode TSSetPostStage(TS ts, PetscErrorCode (*func)(TS ts, PetscReal stagetime, PetscInt st… in TSSetPostStage()
3259 PetscErrorCode TSSetPostEvaluate(TS ts, PetscErrorCode (*func)(TS ts)) in TSSetPostEvaluate()
3284 PetscErrorCode TSPreStage(TS ts, PetscReal stagetime) in TSPreStage()
3311 PetscErrorCode TSPostStage(TS ts, PetscReal stagetime, PetscInt stageindex, Vec Y[]) in TSPostStage()
3335 PetscErrorCode TSPostEvaluate(TS ts) in TSPostEvaluate()
3389 PetscErrorCode TSSetPostStep(TS ts, PetscErrorCode (*func)(TS ts)) in TSSetPostStep()
3413 PetscErrorCode TSPostStep(TS ts) in TSPostStep()
3454 PetscErrorCode TSInterpolate(TS ts, PetscReal t, Vec U) in TSInterpolate()
3485 PetscErrorCode TSStep(TS ts) in TSStep()
3567 PetscErrorCode TSEvaluateWLTE(TS ts, NormType wnormtype, PetscInt *order, PetscReal *wlte) in TSEvaluateWLTE()
3603 PetscErrorCode TSEvaluateStep(TS ts, PetscInt order, Vec U, PetscBool *done) in TSEvaluateStep()
3632 PetscErrorCode TSGetComputeInitialCondition(TS ts, PetscErrorCode (**initCondition)(TS ts, Vec u)) in TSGetComputeInitialCondition()
3658 PetscErrorCode TSSetComputeInitialCondition(TS ts, PetscErrorCode (*initCondition)(TS ts, Vec e)) in TSSetComputeInitialCondition()
3680 PetscErrorCode TSComputeInitialCondition(TS ts, Vec u) in TSComputeInitialCondition()
3709 PetscErrorCode TSGetComputeExactError(TS ts, PetscErrorCode (**exactError)(TS ts, Vec u, Vec e)) in TSGetComputeExactError()
3736 PetscErrorCode TSSetComputeExactError(TS ts, PetscErrorCode (*exactError)(TS ts, Vec u, Vec e)) in TSSetComputeExactError()
3759 PetscErrorCode TSComputeExactError(TS ts, Vec u, Vec e) in TSComputeExactError()
3816 …TS ts, PetscBool rollback, PetscErrorCode (*setup)(TS ts, PetscInt step, PetscReal time, Vec state… in TSSetResize()
3845 static PetscErrorCode TSResizeRegisterOrRetrieve(TS ts, PetscBool flg) in TSResizeRegisterOrRetrieve()
3854 static PetscErrorCode TSResizeReset(TS ts) in TSResizeReset()
3862 static PetscErrorCode TSResizeTransferVecs(TS ts, PetscInt cnt, Vec vecsin[], Vec vecsout[]) in TSResizeTransferVecs()
3894 PetscErrorCode TSResizeRegisterVec(TS ts, const char name[], Vec vec) in TSResizeRegisterVec()
3922 PetscErrorCode TSResizeRetrieveVec(TS ts, const char name[], Vec *vec) in TSResizeRetrieveVec()
3932 static PetscErrorCode TSResizeGetVecArray(TS ts, PetscInt *nv, const char **names[], Vec *vecs[]) in TSResizeGetVecArray()
3973 PetscErrorCode TSResize(TS ts) in TSResize()
4051 PetscErrorCode TSSolve(TS ts, Vec u) in TSSolve()
4264 PetscErrorCode TSGetTime(TS ts, PetscReal *t) in TSGetTime()
4288 PetscErrorCode TSGetPrevTime(TS ts, PetscReal *t) in TSGetPrevTime()
4310 PetscErrorCode TSSetTime(TS ts, PetscReal t) in TSSetTime()
4338 PetscErrorCode TSSetOptionsPrefix(TS ts, const char prefix[]) in TSSetOptionsPrefix()
4369 PetscErrorCode TSAppendOptionsPrefix(TS ts, const char prefix[]) in TSAppendOptionsPrefix()
4397 PetscErrorCode TSGetOptionsPrefix(TS ts, const char *prefix[]) in TSGetOptionsPrefix()
4428 PetscErrorCode TSGetRHSJacobian(TS ts, Mat *Amat, Mat *Pmat, TSRHSJacobianFn **func, PetscCtxRt ctx) in TSGetRHSJacobian()
4465 PetscErrorCode TSGetIJacobian(TS ts, Mat *Amat, Mat *Pmat, TSIJacobianFn **f, PetscCtxRt ctx) in TSGetIJacobian()
4500 PetscErrorCode TSSetDM(TS ts, DM dm) in TSSetDM()
4540 PetscErrorCode TSGetDM(TS ts, DM *dm) in TSGetDM()
4575 TS ts = (TS)ctx; in SNESTSFormFunction() local
4610 TS ts = (TS)ctx; in SNESTSFormJacobian() local
4645 PetscErrorCode TSComputeRHSFunctionLinear(TS ts, PetscReal t, Vec U, Vec F, PetscCtx ctx) in TSComputeRHSFunctionLinear()
4680 PetscErrorCode TSComputeRHSJacobianConstant(TS ts, PetscReal t, Vec U, Mat A, Mat B, PetscCtx ctx) in TSComputeRHSJacobianConstant()
4713 PetscErrorCode TSComputeIFunctionLinear(TS ts, PetscReal t, Vec U, Vec Udot, Vec F, PetscCtx ctx) in TSComputeIFunctionLinear()
4765 PetscErrorCode TSComputeIJacobianConstant(TS ts, PetscReal t, Vec U, Vec Udot, PetscReal shift, Mat… in TSComputeIJacobianConstant()
4788 PetscErrorCode TSGetEquationType(TS ts, TSEquationType *equation_type) in TSGetEquationType()
4810 PetscErrorCode TSSetEquationType(TS ts, TSEquationType equation_type) in TSSetEquationType()
4837 PetscErrorCode TSGetConvergedReason(TS ts, TSConvergedReason *reason) in TSGetConvergedReason()
4863 PetscErrorCode TSSetConvergedReason(TS ts, TSConvergedReason reason) in TSSetConvergedReason()
4889 PetscErrorCode TSGetSolveTime(TS ts, PetscReal *ftime) in TSGetSolveTime()
4917 PetscErrorCode TSGetSNESIterations(TS ts, PetscInt *nits) in TSGetSNESIterations()
4945 PetscErrorCode TSGetKSPIterations(TS ts, PetscInt *lits) in TSGetKSPIterations()
4972 PetscErrorCode TSGetStepRejections(TS ts, PetscInt *rejects) in TSGetStepRejections()
4999 PetscErrorCode TSGetSNESFailures(TS ts, PetscInt *fails) in TSGetSNESFailures()
5028 PetscErrorCode TSSetMaxStepRejections(TS ts, PetscInt rejects) in TSSetMaxStepRejections()
5058 PetscErrorCode TSSetMaxSNESFailures(TS ts, PetscInt fails) in TSSetMaxSNESFailures()
5087 PetscErrorCode TSSetErrorIfStepFails(TS ts, PetscBool err) in TSSetErrorIfStepFails()
5110 PetscErrorCode TSGetAdapt(TS ts, TSAdapt *adapt) in TSGetAdapt()
5157 PetscErrorCode TSSetTolerances(TS ts, PetscReal atol, Vec vatol, PetscReal rtol, Vec vrtol) in TSSetTolerances()
5206 PetscErrorCode TSGetTolerances(TS ts, PetscReal *atol, Vec *vatol, PetscReal *rtol, Vec *vrtol) in TSGetTolerances()
5239 PetscErrorCode TSErrorWeightedNorm(TS ts, Vec U, Vec Y, NormType wnormtype, PetscReal *norm, PetscR… in TSErrorWeightedNorm()
5287 PetscErrorCode TSErrorWeightedENorm(TS ts, Vec E, Vec U, Vec Y, NormType wnormtype, PetscReal *norm… in TSErrorWeightedENorm()
5321 PetscErrorCode TSSetCFLTimeLocal(TS ts, PetscReal cfltime) in TSSetCFLTimeLocal()
5345 PetscErrorCode TSGetCFLTime(TS ts, PetscReal *cfltime) in TSGetCFLTime()
5369 PetscErrorCode TSVISetVariableBounds(TS ts, Vec xl, Vec xu) in TSVISetVariableBounds()
5397 PetscErrorCode TSComputeLinearStability(TS ts, PetscReal xr, PetscReal xi, PetscReal *yr, PetscReal… in TSComputeLinearStability()
5425 PetscErrorCode TSRestartStep(TS ts) in TSRestartStep()
5445 PetscErrorCode TSRollBack(TS ts) in TSRollBack()
5475 PetscErrorCode TSGetStepRollBack(TS ts, PetscBool *flg) in TSGetStepRollBack()
5499 PetscErrorCode TSGetStepResize(TS ts, PetscBool *flg) in TSGetStepResize()
5525 PetscErrorCode TSGetStages(TS ts, PetscInt *ns, Vec **Y) in TSGetStages()
5571 PetscErrorCode TSComputeIJacobianDefaultColor(TS ts, PetscReal t, Vec U, Vec Udot, PetscReal shift,… in TSComputeIJacobianDefaultColor()
5650 PetscErrorCode TSSetFunctionDomainError(TS ts, PetscErrorCode (*func)(TS ts, PetscReal time, Vec st… in TSSetFunctionDomainError()
5679 PetscErrorCode TSFunctionDomainError(TS ts, PetscReal stagetime, Vec Y, PetscBool *accept) in TSFunctionDomainError()
5791 TS ts = (TS)ctx; in RHSWrapperFunction_TSRHSJacobianTest() local
5819 PetscErrorCode TSRHSJacobianTest(TS ts, PetscBool *flg) in TSRHSJacobianTest()
5853 PetscErrorCode TSRHSJacobianTestTranspose(TS ts, PetscBool *flg) in TSRHSJacobianTestTranspose()
5885 PetscErrorCode TSSetUseSplitRHSFunction(TS ts, PetscBool use_splitrhsfunction) in TSSetUseSplitRHSFunction()
5908 PetscErrorCode TSGetUseSplitRHSFunction(TS ts, PetscBool *use_splitrhsfunction) in TSGetUseSplitRHSFunction()
5932 PetscErrorCode TSSetMatStructure(TS ts, MatStructure str) in TSSetMatStructure()
5965 PetscErrorCode TSSetEvaluationTimes(TS ts, PetscInt n, PetscReal time_points[]) in TSSetEvaluationTimes()
6023 PetscErrorCode TSGetEvaluationTimes(TS ts, PetscInt *n, const PetscReal *time_points[]) in TSGetEvaluationTimes()
6062 PetscErrorCode TSGetEvaluationSolutions(TS ts, PetscInt *nsol, const PetscReal *sol_times[], Vec *S… in TSGetEvaluationSolutions()
6108 PetscErrorCode TSSetTimeSpan(TS ts, PetscInt n, PetscReal span_times[]) in TSSetTimeSpan()
6143 PetscErrorCode TSPruneIJacobianColor(TS ts, Mat J, Mat B) in TSPruneIJacobianColor()