Home
last modified time | relevance | path

Searched refs:TSSetEquationType (Results 1 – 22 of 22) sorted by relevance

/petsc/src/ts/tests/
H A Dex26.c22 if (flg) PetscCall(TSSetEquationType(ts, TS_EQ_ODE_IMPLICIT)); in main()
/petsc/src/ts/tutorials/power_grid/
H A Dex3.c118 PetscCall(TSSetEquationType(ts, TS_EQ_IMPLICIT)); in main()
H A Dex9adj.c276 …PetscCall(TSSetEquationType(ts, TS_EQ_ODE_EXPLICIT)); /* less Jacobian evaluations when adjoint BE… in main()
H A Dex9opt.c245 …PetscCall(TSSetEquationType(ctx.ts, TS_EQ_ODE_EXPLICIT)); /* less Jacobian evaluations when adjoin… in main()
/petsc/src/ts/tutorials/
H A Dex36.c156 PetscCall(TSSetEquationType(ts, TS_EQ_DAE_IMPLICIT_INDEX1)); in main()
H A Dex25.c89 PetscCall(TSSetEquationType(ts, TS_EQ_DAE_IMPLICIT_INDEX1)); in main()
H A Dex20td.c309 PetscCall(TSSetEquationType(ts, TS_EQ_ODE_EXPLICIT)); in main()
H A Dex35.cxx122 PetscCall(TSSetEquationType(ts, TS_EQ_DAE_IMPLICIT_INDEX1)); in main()
H A Dex20adj.c286 …PetscCall(TSSetEquationType(ts, TS_EQ_ODE_EXPLICIT)); /* less Jacobian evaluations when adjoint BE… in main()
H A Dex20opt_ic.c441 …PetscCall(TSSetEquationType(user.ts, TS_EQ_ODE_EXPLICIT)); /* less Jacobian evaluations when adjoi… in main()
H A Dex20opt_p.c422 …PetscCall(TSSetEquationType(user.ts, TS_EQ_ODE_EXPLICIT)); /* less Jacobian evaluations when adjoi… in main()
/petsc/src/ts/tutorials/advection-diffusion-reaction/
H A Dex5adj.c84 …PetscCall(TSSetEquationType(ts, TS_EQ_ODE_EXPLICIT)); /* less Jacobian evaluations when adjoint BE… in main()
H A Dex5opt_ic.c244 …PetscCall(TSSetEquationType(appctx.ts, TS_EQ_ODE_EXPLICIT)); /* less Jacobian evaluations when adj… in main()
H A Dex5adj_mf.c286 …PetscCall(TSSetEquationType(ts, TS_EQ_ODE_EXPLICIT)); /* less Jacobian evaluations when adjoint BE… in main()
/petsc/doc/changes/
H A D36.md155 TSSetEquationType(). It currently only affects arkimex methods.
/petsc/src/ts/tutorials/optimal_control/
H A Dex1.c287 …PetscCall(TSSetEquationType(aircraft.ts, TS_EQ_ODE_EXPLICIT)); /* less Jacobian evaluations when a… in main()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A Dpetscts.pxi138 PetscErrorCode TSSetEquationType(PetscTS, PetscTSEquationType)
H A DTS.pyx484 petsc.TSSetEquationType
487 CHKERR(TSSetEquationType(self.ts, eqtype))
/petsc/doc/manual/
H A Dts.md351 The user needs to set `TSSetEquationType()` to `TS_EQ_IMPLICIT` or
395 … f(t,u,\dot{u})\\G(t,u) &= 0\end{aligned}`; the user needs to set ``TSSetEquationType()`` to ``TS_…
/petsc/include/
H A Dpetscts.h516 PETSC_EXTERN PetscErrorCode TSSetEquationType(TS, TSEquationType);
/petsc/src/ts/tutorials/power_grid/stability_9bus/
H A Dex9bus.c1173 PetscCall(TSSetEquationType(ts, TS_EQ_DAE_IMPLICIT_INDEX1)); in main()
/petsc/src/ts/interface/
H A Dts.c4810 PetscErrorCode TSSetEquationType(TS ts, TSEquationType equation_type) in TSSetEquationType() function