| /petsc/src/ts/tutorials/multirate/ |
| H A D | ex3.c | 129 PetscCall(TSSetRHSFunction(ts, NULL, (TSRHSFunctionFn *)RHSFunction, &ctx)); in main() 132 PetscCall(TSRHSSplitSetRHSFunction(ts, "slow", NULL, (TSRHSFunctionFn *)RHSFunctionslow, &ctx)); in main() 133 PetscCall(TSRHSSplitSetRHSFunction(ts, "fast", NULL, (TSRHSFunctionFn *)RHSFunctionfast, &ctx)); in main()
|
| H A D | ex2.c | 148 PetscCall(TSSetRHSFunction(ts, NULL, (TSRHSFunctionFn *)RHSFunction, &ctx)); in main() 151 PetscCall(TSRHSSplitSetRHSFunction(ts, "slow", NULL, (TSRHSFunctionFn *)RHSFunctionslow, &ctx)); in main() 152 PetscCall(TSRHSSplitSetRHSFunction(ts, "fast", NULL, (TSRHSFunctionFn *)RHSFunctionfast, &ctx)); in main()
|
| H A D | ex1.c | 148 PetscCall(TSSetRHSFunction(ts, NULL, (TSRHSFunctionFn *)RHSFunction, &ctx)); in main() 151 PetscCall(TSRHSSplitSetRHSFunction(ts, "slow", NULL, (TSRHSFunctionFn *)RHSFunctionslow, &ctx)); in main() 152 PetscCall(TSRHSSplitSetRHSFunction(ts, "fast", NULL, (TSRHSFunctionFn *)RHSFunctionfast, &ctx)); in main()
|
| H A D | ex3fastslowsplit.c | 173 PetscCall(TSRHSSplitSetRHSFunction(ts, "slow", NULL, (TSRHSFunctionFn *)RHSFunctionslow, &ctx)); in main() 174 PetscCall(TSRHSSplitSetRHSFunction(ts, "fast", NULL, (TSRHSFunctionFn *)RHSFunctionfast, &ctx)); in main()
|
| /petsc/src/ts/tutorials/power_grid/ |
| H A D | ex3opt.c | 121 PetscCall(TSSetRHSFunction(ctx.ts, NULL, (TSRHSFunctionFn *)RHSFunction, &ctx)); in main() 131 PetscCall(TSSetRHSFunction(ctx.quadts, NULL, (TSRHSFunctionFn *)CostIntegrand, &ctx)); in main() 141 PetscCall(TSSetRHSFunction(ctx.quadts, NULL, (TSRHSFunctionFn *)CostIntegrand, &ctx)); in main()
|
| H A D | ex3sa.c | 126 PetscCall(TSSetRHSFunction(ts, NULL, (TSRHSFunctionFn *)RHSFunction, &ctx)); in main() 138 PetscCall(TSSetRHSFunction(quadts, NULL, (TSRHSFunctionFn *)CostIntegrand, &ctx)); in main()
|
| H A D | ex9adj.c | 278 PetscCall(TSSetRHSFunction(ts, NULL, (TSRHSFunctionFn *)RHSFunction, &ctx)); in main() 281 PetscCall(TSSetRHSFunction(quadts, NULL, (TSRHSFunctionFn *)CostIntegrand, &ctx)); in main()
|
| H A D | ex9opt.c | 247 PetscCall(TSSetRHSFunction(ctx.ts, NULL, (TSRHSFunctionFn *)RHSFunction, &ctx)); in main() 266 PetscCall(TSSetRHSFunction(quadts, NULL, (TSRHSFunctionFn *)CostIntegrand, &ctx)); in main()
|
| H A D | ex9.c | 173 PetscCall(TSSetRHSFunction(ts, NULL, (TSRHSFunctionFn *)RHSFunction, &ctx)); in main()
|
| H A D | ex3opt_fd.c | 216 PetscCall(TSSetRHSFunction(quadts, NULL, (TSRHSFunctionFn *)CostIntegrand, ctx)); in FormFunction()
|
| /petsc/include/ |
| H A D | petscts.h | 559 PETSC_EXTERN_TYPEDEF typedef PetscErrorCode TSRHSFunctionFn(TS ts, PetscReal t, Vec u, Vec F, Petsc… typedef 561 PETSC_EXTERN_TYPEDEF typedef TSRHSFunctionFn *TSRHSFunction; 608 PETSC_EXTERN PetscErrorCode TSSetRHSFunction(TS, Vec, TSRHSFunctionFn *, PetscCtx); 609 PETSC_EXTERN PetscErrorCode TSGetRHSFunction(TS, Vec *, TSRHSFunctionFn **, PetscCtxRt); 765 PETSC_EXTERN PetscErrorCode TSRHSSplitSetRHSFunction(TS, const char[], Vec, TSRHSFunctionFn *, Pets… 775 PETSC_EXTERN TSRHSFunctionFn TSComputeRHSFunctionLinear; 832 PETSC_EXTERN PetscErrorCode DMTSSetRHSFunction(DM, TSRHSFunctionFn *, PetscCtx); 833 PETSC_EXTERN PetscErrorCode DMTSGetRHSFunction(DM, TSRHSFunctionFn **, PetscCtxRt);
|
| /petsc/src/ts/interface/ |
| H A D | tsrhssplit.c | 109 PetscErrorCode TSRHSSplitSetRHSFunction(TS ts, const char splitname[], Vec r, TSRHSFunctionFn *rhsf… in TSRHSSplitSetRHSFunction()
|
| H A D | ts.c | 575 TSRHSFunctionFn *rhsfunction; in TSComputeRHSJacobian() 631 TSRHSFunctionFn *rhsfunction; in TSComputeRHSFunction() 797 TSRHSFunctionFn *rhsfunction; in TSComputeIFunction() 952 TSRHSFunctionFn *rhsfunction; in TSComputeIJacobian() 1021 PetscErrorCode TSSetRHSFunction(TS ts, Vec r, TSRHSFunctionFn *f, PetscCtx ctx) in TSSetRHSFunction() 1264 PetscErrorCode TSGetRHSFunction(TS ts, Vec *r, TSRHSFunctionFn **func, PetscCtxRt ctx) in TSGetRHSFunction() 1525 TSRHSFunctionFn *rhsfunction; in TSComputeI2Function()
|
| /petsc/src/ts/utils/ |
| H A D | dmts.c | 703 PetscErrorCode DMTSSetRHSFunction(DM dm, TSRHSFunctionFn *func, PetscCtx ctx) in DMTSSetRHSFunction() 979 PetscErrorCode DMTSGetRHSFunction(DM dm, TSRHSFunctionFn **func, PetscCtxRt ctx) in DMTSGetRHSFunction()
|
| /petsc/include/petsc/private/ |
| H A D | tsimpl.h | 381 TSRHSFunctionFn *rhsfunction;
|
| /petsc/src/ts/impls/pseudo/ |
| H A D | posindep.c | 201 TSRHSFunctionFn *rhsfunction; in SNESTSFormFunction_Pseudo()
|
| /petsc/src/ts/tutorials/optimal_control/ |
| H A D | ex1.c | 308 PetscCall(TSSetRHSFunction(aircraft.quadts, NULL, (TSRHSFunctionFn *)CostIntegrand, &aircraft)); in main()
|
| /petsc/src/ts/tutorials/power_grid/stability_9bus/ |
| H A D | ex9busopt.c | 1264 PetscCall(TSSetRHSFunction(quadts, NULL, (TSRHSFunctionFn *)CostIntegrand, ctx)); in FormFunctionGradient()
|
| /petsc/src/ts/impls/arkimex/ |
| H A D | arkimex.c | 415 TSRHSFunctionFn *func; in TSHasRHSFunction()
|