HydroCODE 0.1
This is a implementation of fully explict forward Euler scheme for 1-D Euler equations of motion on Lagrange coordinate
finite_volume.h
浏览该文件的文档.
1
7#ifndef FINITEVOLUME_H
8#define FINITEVOLUME_H
9
10#include "../include/var_struc.h"
11
13(const int m, struct cell_var CV, double * X[], double * cpu_time);
14
16(const int m, struct cell_var CV, double * X[], double * cpu_time);
17
19(const int m, struct cell_var CV, double * X[], double * cpu_time);
20
22(const int m, struct cell_var CV, double * X[], double * cpu_time);
23
24#endif
void Godunov_solver_EUL_source(const int m, struct cell_var CV, double *X[], double *cpu_time)
This function use Godunov scheme to solve 1-D Euler equations of motion on Eulerian coordinate.
Definition: Godunov_solver_EUL_source.c:26
void Godunov_solver_LAG_source(const int m, struct cell_var CV, double *X[], double *cpu_time)
This function use Godunov scheme to solve 1-D Euler equations of motion on Lagrangian coordinate.
Definition: Godunov_solver_LAG_source.c:26
void GRP_solver_EUL_source(const int m, struct cell_var CV, double *X[], double *cpu_time)
This function use GRP scheme to solve 1-D Euler equations of motion on Eulerian coordinate.
Definition: GRP_solver_EUL_source.c:26
void GRP_solver_LAG_source(const int m, struct cell_var CV, double *X[], double *cpu_time)
This function use GRP scheme to solve 1-D Euler equations of motion on Lagrangian coordinate.
Definition: GRP_solver_LAG_source.c:26
Pointer structural body of variables on computational cells.
Definition: var_struc.h:22