TSSetRHSBoundaryConditions

Sets the routine for evaluating the function, boundary conditions for the function F.

Synopsis

int TSSetRHSBoundaryConditions(TS ts,int (*f)(TS,double,Vec,void*),void *ctx)
Collective on TS

Input Parameters

ts - the TS context obtained from TSCreate()
f - routine for evaluating the boundary condition function
ctx - [optional] user-defined context for private data for the function evaluation routine (may be PETSC_NULL)

Calling sequence of func

    func (TS ts,double t,Vec F,void *ctx);

t - current timestep
F - function vector
ctx - [optional] user-defined function context

Keywords

TS, timestep, set, boundary conditions, function

Level:intermediate
Location:src/ts/interface/ts.c
Time Stepping
Table of Contents