HyPar
1.0
Finite-Difference Hyperbolic-Parabolic PDE Solver on Cartesian Grids
|
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include <basic.h>
#include <arrayfunctions.h>
#include <physicalmodels/fppowersystem.h>
#include <mpivars.h>
#include <hypar.h>
Go to the source code of this file.
Functions | |
double | FPPowerSystemComputeCFL (void *, void *, double, double) |
double | FPPowerSystemComputeDiffNumber (void *, void *, double, double) |
int | FPPowerSystemAdvection (double *, double *, int, void *, double) |
int | FPPowerSystemDiffusion (double *, double *, int, void *, double) |
int | FPPowerSystemUpwind (double *, double *, double *, double *, double *, double *, int, void *, double) |
int | FPPowerSystemPostStep (double *, void *, void *, double, int) |
int | FPPowerSystemPrintStep (void *, void *, double) |
int | FPPowerSystemInitialize (void *s, void *m) |
double FPPowerSystemComputeCFL | ( | void * | , |
void * | , | ||
double | , | ||
double | |||
) |
Definition at line 11 of file FPPowerSystemComputeCFL.c.
double FPPowerSystemComputeDiffNumber | ( | void * | , |
void * | , | ||
double | , | ||
double | |||
) |
Definition at line 11 of file FPPowerSystemComputeDiffNumber.c.
int FPPowerSystemAdvection | ( | double * | , |
double * | , | ||
int | , | ||
void * | , | ||
double | |||
) |
Definition at line 7 of file FPPowerSystemAdvection.c.
int FPPowerSystemDiffusion | ( | double * | , |
double * | , | ||
int | , | ||
void * | , | ||
double | |||
) |
Definition at line 9 of file FPPowerSystemDiffusion.c.
int FPPowerSystemUpwind | ( | double * | , |
double * | , | ||
double * | , | ||
double * | , | ||
double * | , | ||
double * | , | ||
int | , | ||
void * | , | ||
double | |||
) |
Definition at line 9 of file FPPowerSystemUpwind.c.
int FPPowerSystemPostStep | ( | double * | , |
void * | , | ||
void * | , | ||
double | , | ||
int | |||
) |
Definition at line 8 of file FPPowerSystemPostStep.c.
int FPPowerSystemPrintStep | ( | void * | , |
void * | , | ||
double | |||
) |
Definition at line 5 of file FPPowerSystemPrintStep.c.
int FPPowerSystemInitialize | ( | void * | s, |
void * | m | ||
) |
Definition at line 20 of file FPPowerSystemInitialize.c.