Cholla 3.0.1-dev
Cholla - Massively parallel hydro on GPUs
Loading...
Searching...
No Matches
hllc_cuda.h
Go to the documentation of this file.
1
4#ifndef HLLC_CUDA_H
5#define HLLC_CUDA_H
6
7#include "../global/global.h"
8
24template <int reconstruction, uint direction>
25__global__ void Calculate_HLLC_Fluxes_CUDA(Real const *dev_conserved, Real const *dev_bounds_L,
26 Real const *dev_bounds_R, Real *dev_flux, int const nx, int const ny,
27 int const nz, int const n_cells, Real const gamma, int const n_fields);
28
29#endif // HLLC_CUDA_H
__global__ void Calculate_HLLC_Fluxes_CUDA(Real const *dev_conserved, Real const *dev_bounds_L, Real const *dev_bounds_R, Real *dev_flux, int const nx, int const ny, int const nz, int const n_cells, Real const gamma, int const n_fields)
HLLC Riemann solver based on the version described in Toro (2006), Sec. 10.4.
Definition hllc_cuda.cu:14