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/fppowersystem1bus.h>
#include <mpivars.h>
#include <hypar.h>
Go to the source code of this file.
Functions | |
double | FPPowerSystem1BusComputeCFL (void *, void *, double, double) |
double | FPPowerSystem1BusComputeDiffNumber (void *, void *, double, double) |
int | FPPowerSystem1BusAdvection (double *, double *, int, void *, double) |
int | FPPowerSystem1BusDiffusionLaplacian (double *, double *, int, void *, double) |
int | FPPowerSystem1BusDiffusionGeneral (double *, double *, int, int, void *, double) |
int | FPPowerSystem1BusUpwind (double *, double *, double *, double *, double *, double *, int, void *, double) |
int | FPPowerSystem1BusPostStep (double *, void *, void *, double, int) |
int | FPPowerSystem1BusPrintStep (void *, void *, double) |
int | FPPowerSystem1BusInitialize (void *s, void *m) |
double FPPowerSystem1BusComputeCFL | ( | void * | , |
void * | , | ||
double | , | ||
double | |||
) |
Definition at line 11 of file FPPowerSystem1BusComputeCFL.c.
double FPPowerSystem1BusComputeDiffNumber | ( | void * | , |
void * | , | ||
double | , | ||
double | |||
) |
Definition at line 11 of file FPPowerSystem1BusComputeDiffNumber.c.
int FPPowerSystem1BusAdvection | ( | double * | , |
double * | , | ||
int | , | ||
void * | , | ||
double | |||
) |
Definition at line 7 of file FPPowerSystem1BusAdvection.c.
int FPPowerSystem1BusDiffusionLaplacian | ( | double * | , |
double * | , | ||
int | , | ||
void * | , | ||
double | |||
) |
Definition at line 9 of file FPPowerSystem1BusDiffusion.c.
int FPPowerSystem1BusDiffusionGeneral | ( | double * | , |
double * | , | ||
int | , | ||
int | , | ||
void * | , | ||
double | |||
) |
Definition at line 32 of file FPPowerSystem1BusDiffusion.c.
int FPPowerSystem1BusUpwind | ( | double * | , |
double * | , | ||
double * | , | ||
double * | , | ||
double * | , | ||
double * | , | ||
int | , | ||
void * | , | ||
double | |||
) |
Definition at line 9 of file FPPowerSystem1BusUpwind.c.
int FPPowerSystem1BusPostStep | ( | double * | , |
void * | , | ||
void * | , | ||
double | , | ||
int | |||
) |
Definition at line 8 of file FPPowerSystem1BusPostStep.c.
int FPPowerSystem1BusPrintStep | ( | void * | , |
void * | , | ||
double | |||
) |
Definition at line 5 of file FPPowerSystem1BusPrintStep.c.
int FPPowerSystem1BusInitialize | ( | void * | s, |
void * | m | ||
) |
Definition at line 21 of file FPPowerSystem1BusInitialize.c.