|
HyPar
1.0
Finite-Difference Hyperbolic-Parabolic PDE Solver on Cartesian Grids
|
Plot out the field to file. More...
#include <stdlib.h>#include <string.h>#include <basic.h>#include <common.h>#include <arrayfunctions.h>#include <mathfunctions.h>#include <io.h>#include <mpivars.h>#include <hypar.h>#include <physicalmodels/vlasov.h>#include <Python.h>#include <numpy/arrayobject.h>Go to the source code of this file.
Macros | |
| #define | NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION |
Functions | |
| int | VlasovPlotSpatialField (void *s, void *m, double *a_field, double a_time, char *fname_root) |
Plot out the field to file.
Definition in file VlasovPlotSpatialField.c.
| #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION |
Definition at line 20 of file VlasovPlotSpatialField.c.
| int VlasovPlotSpatialField | ( | void * | s, |
| void * | m, | ||
| double * | a_field, | ||
| double | a_time, | ||
| char * | fname_root | ||
| ) |
Plot out a spatial field or variable to file
| s | Solver object of type HyPar |
| m | MPI object of type MPIVariables |
| a_field | Vector field to write |
| a_time | Current simulation time |
| fname_root | Filename root (extension is added automatically). For unsteady output, a numerical index is added that is the same as for the solution output files. |
Definition at line 26 of file VlasovPlotSpatialField.c.