Home
last modified time | relevance | path

Searched refs:TSSetTolerances (Results 1 – 13 of 13) sorted by relevance

/petsc/src/ts/tutorials/
H A Dex49.c119 PetscCall(TSSetTolerances(ts, 1.e-4, NULL, 1.e-4, NULL)); in main()
H A Dex50.c211 PetscCall(TSSetTolerances(appctx.ts, 1e-7, NULL, 1e-7, NULL)); in main()
H A Dex30.c1741 PetscCall(TSSetTolerances(ts, atol, vatol, rtol, vrtol)); in SetInitialConditionsAndTolerances()
1837 PetscCall(TSSetTolerances(ts, atol, vatol, rtol, vrtol)); in SetInitialConditionsAndTolerances()
/petsc/doc/changes/
H A D322.md137 - Add support for `PETSC_DETERMINE` as an argument to `TSSetTolerances()` to set the parameter back…
138 - Deprecate `PETSC_DEFAULT` in favor of `PETSC_CURRENT` for `TSSetTolerances()`
/petsc/src/ts/tutorials/autodiff/
H A Dex16opt_ic.cxx310 PetscCall(TSSetTolerances(ts, 1e-7, NULL, 1e-7, NULL)); in FormFunctionGradient()
/petsc/src/ts/tests/
H A Dex25.c128 …PetscCall(TSSetTolerances(ts, 1e-3 * PetscPowRealInt(0.5, cycle), NULL, 1e-3 * PetscPowRealInt(0.5… in Brusselator()
/petsc/src/tao/unconstrained/tutorials/
H A Dburgers_spectral.c229 PetscCall(TSSetTolerances(appctx.ts, 1e-7, NULL, 1e-7, NULL)); in main()
H A Dspectraladjointassimilation.c232 PetscCall(TSSetTolerances(appctx.ts, 1e-7, NULL, 1e-7, NULL)); in main()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A Dpetscts.pxi214 PetscErrorCode TSSetTolerances(PetscTS, PetscReal, PetscVec, PetscReal, PetscVec)
H A DTS.pyx2051 petsc.TSSetTolerances
2070 CHKERR(TSSetTolerances(self.ts, ratol, vatol, rrtol, vrtol))
/petsc/include/
H A Dpetscts.h801 PETSC_EXTERN PetscErrorCode TSSetTolerances(TS, PetscReal, Vec, PetscReal, Vec);
/petsc/doc/manual/
H A Dts.md1008 `TSSetTolerances()` or at the command line with options `-ts_atol`
/petsc/src/ts/interface/
H A Dts.c5157 PetscErrorCode TSSetTolerances(TS ts, PetscReal atol, Vec vatol, PetscReal rtol, Vec vrtol) in TSSetTolerances() function