Searched refs:stagetime (Results 1 – 2 of 2) sorted by relevance
| /petsc/src/ts/interface/ |
| H A D | ts.c | 3180 PetscErrorCode TSSetPreStage(TS ts, PetscErrorCode (*func)(TS ts, PetscReal stagetime)) in TSSetPreStage() argument 3213 PetscErrorCode TSSetPostStage(TS ts, PetscErrorCode (*func)(TS ts, PetscReal stagetime, PetscInt st… in TSSetPostStage() argument 3284 PetscErrorCode TSPreStage(TS ts, PetscReal stagetime) in TSPreStage() argument 3288 if (ts->prestage) PetscCallBack("TS callback prestage", (*ts->prestage)(ts, stagetime)); in TSPreStage() 3311 PetscErrorCode TSPostStage(TS ts, PetscReal stagetime, PetscInt stageindex, Vec Y[]) in TSPostStage() argument 3315 …if (ts->poststage) PetscCallBack("TS callback poststage", (*ts->poststage)(ts, stagetime, stageind… in TSPostStage() 5679 PetscErrorCode TSFunctionDomainError(TS ts, PetscReal stagetime, Vec Y, PetscBool *accept) in TSFunctionDomainError() argument 5683 PetscValidLogicalCollectiveReal(ts, stagetime, 2); in TSFunctionDomainError() 5687 if (ts->functiondomainerror) PetscCall((*ts->functiondomainerror)(ts, stagetime, Y, accept)); in TSFunctionDomainError()
|
| /petsc/src/ts/tutorials/ |
| H A D | ex30.c | 2128 static PetscErrorCode PreStage(TS ts, PetscReal stagetime) in PreStage() argument 2153 PetscCall(ProjectAuxDM(dm, stagetime, u, ctx)); in PreStage() 2172 static PetscErrorCode PostStage(TS ts, PetscReal stagetime, PetscInt stageindex, Vec *Y) in PostStage() argument
|