Lines Matching refs:maxtime
2950 PetscErrorCode TSSetMaxTime(TS ts, PetscReal maxtime) in TSSetMaxTime() argument
2954 PetscValidLogicalCollectiveReal(ts, maxtime, 2); in TSSetMaxTime()
2955 if (maxtime == PETSC_DETERMINE) { in TSSetMaxTime()
2958 ts->max_time = maxtime; in TSSetMaxTime()
2978 PetscErrorCode TSGetMaxTime(TS ts, PetscReal *maxtime) in TSGetMaxTime() argument
2982 PetscAssertPointer(maxtime, 2); in TSGetMaxTime()
2983 *maxtime = ts->max_time; in TSGetMaxTime()
3010 PetscErrorCode TSGetDuration(TS ts, PetscInt *maxsteps, PetscReal *maxtime) in TSGetDuration() argument
3018 if (maxtime) { in TSGetDuration()
3019 PetscAssertPointer(maxtime, 3); in TSGetDuration()
3020 *maxtime = ts->max_time; in TSGetDuration()
3032 PetscErrorCode TSSetDuration(TS ts, PetscInt maxsteps, PetscReal maxtime) in TSSetDuration() argument
3036 if (maxtime != (PetscReal)PETSC_CURRENT) PetscCall(TSSetMaxTime(ts, maxtime)); in TSSetDuration()