Home
last modified time | relevance | path

Searched refs:eqtype (Results 1 – 2 of 2) sorted by relevance

/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A DTS.pyx472 def setEquationType(self, eqtype: EquationType) -> None:
479 eqtype
487 CHKERR(TSSetEquationType(self.ts, eqtype))
499 cdef PetscTSEquationType eqtype = TS_EQ_UNSPECIFIED
500 CHKERR(TSGetEquationType(self.ts, &eqtype))
501 return eqtype
/petsc/src/ts/impls/implicit/theta/
H A Dtheta.c281 TSEquationType eqtype; in TSAdjointStepBEuler_Private() local
286 PetscCall(TSGetEquationType(ts, &eqtype)); in TSAdjointStepBEuler_Private()
287 if (eqtype == TS_EQ_ODE_EXPLICIT) { in TSAdjointStepBEuler_Private()