HyPar
1.0
Finite-Difference Hyperbolic-Parabolic PDE Solver on Cartesian Grids
|
Misc. functions for the Vlasov equations. More...
Go to the source code of this file.
Functions | |
int | VlasovEField (double *, void *, double) |
int | VlasovPreStep (double *u, void *s, void *m, double waqt) |
int | VlasovPostStage (double *u, void *s, void *m, double waqt) |
Misc. functions for the Vlasov equations.
Definition in file VlasovFunctions.c.
int VlasovEField | ( | double * | u, |
void * | s, | ||
double | t | ||
) |
Compute electric field.
u | Conserved solution |
s | Solver object of type HyPar |
t | Current time |
Definition at line 258 of file VlasovEField.c.
int VlasovPreStep | ( | double * | u, |
void * | s, | ||
void * | m, | ||
double | waqt | ||
) |
Vlasov-specific function called at the beginning of each time-step: Calls the function to set the electric field
u | Solution (conserved variables) |
s | Solver object of type HyPar |
m | MPI object of type MPIVariables |
waqt | Current solution time |
Definition at line 14 of file VlasovFunctions.c.
int VlasovPostStage | ( | double * | u, |
void * | s, | ||
void * | m, | ||
double | waqt | ||
) |
Vlasov-specific function called at the end of each stage in a multistage time integrator: Calls the function to set the electric field
u | Solution (conserved variables) |
s | Solver object of type HyPar |
m | MPI object of type MPIVariables |
waqt | Current solution time |
Definition at line 33 of file VlasovFunctions.c.