Home
last modified time | relevance | path

Searched refs:equation_type (Results 1 – 7 of 7) sorted by relevance

/petsc/src/ts/interface/
H A Dtscreate.c41 t->equation_type = TS_EQ_UNSPECIFIED; in TSCreate()
H A Dts.c4788 PetscErrorCode TSGetEquationType(TS ts, TSEquationType *equation_type) in TSGetEquationType() argument
4792 PetscAssertPointer(equation_type, 2); in TSGetEquationType()
4793 *equation_type = ts->equation_type; in TSGetEquationType()
4810 PetscErrorCode TSSetEquationType(TS ts, TSEquationType equation_type) in TSSetEquationType() argument
4814 ts->equation_type = equation_type; in TSSetEquationType()
5762 t->equation_type = tsin->equation_type; in TSClone()
/petsc/src/ts/impls/arkimex/
H A Dfsarkimex.c243 if (ts->equation_type >= TS_EQ_IMPLICIT) { /* Save the initial slope for the next step */ in TSStep_ARKIMEX_FastSlowSplit()
256 if (ts->equation_type >= TS_EQ_IMPLICIT && tab->explicit_first_stage && ts->steprestart) { in TSStep_ARKIMEX_FastSlowSplit()
299 …PetscCheck(i == 0 || ts->equation_type < TS_EQ_IMPLICIT, PetscObjectComm((PetscObject)ts), PETSC_E… in TSStep_ARKIMEX_FastSlowSplit()
345 if (ts->equation_type >= TS_EQ_IMPLICIT) { in TSStep_ARKIMEX_FastSlowSplit()
H A Darkimex.c1357 … if (dirk || ts->equation_type >= TS_EQ_IMPLICIT) { /* Save the initial slope for the next step */ in TSStep_ARKIMEX()
1394 …if (!dirk && ts->equation_type >= TS_EQ_IMPLICIT && tab->explicit_first_stage && ts->steprestart) { in TSStep_ARKIMEX()
1440 …PetscCheck(i == 0 || ts->equation_type < TS_EQ_IMPLICIT, PetscObjectComm((PetscObject)ts), PETSC_E… in TSStep_ARKIMEX()
1482 if (dirk || ts->equation_type >= TS_EQ_IMPLICIT) { in TSStep_ARKIMEX()
/petsc/include/petsc/private/
H A Dtsimpl.h163 TSEquationType equation_type; member
/petsc/src/ts/impls/implicit/irk/
H A Dirk.c510 …PetscCheck(ts->equation_type <= TS_EQ_ODE_EXPLICIT, PetscObjectComm((PetscObject)ts), PETSC_ERR_SU… in SNESTSFormJacobian_IRK()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A DTS.pyx3173 property equation_type: