8#ifndef MILUPHPC_KERNEL_CUH
9#define MILUPHPC_KERNEL_CUH
11#include "../particles.cuh"
12#include "../parameter.h"
13#include "../helper.cuh"
17#include "../parameter.h"
18#include "../cuda_utils/linalg.cuh"
28 namespace SmoothingKernel {
194#if (NAVIER_STOKES || BALSARA_SWITCH || INVISCID_SPH || INTEGRATE_ENERGY)
215#if LINEAR_CONSISTENCY
Particle(s) class based on SoA (Structur of Arrays).
#define CUDA_CALLABLE_MEMBER
const char *const numParticles
__device__ void wendlandc6(real *W, real dWdx[DIM], real *dWdr, real dx[DIM], real sml)
__device__ void wendlandc2(real *W, real dWdx[DIM], real *dWdr, real dx[DIM], real sml)
__device__ void wendlandc4(real *W, real dWdx[DIM], real *dWdr, real dx[DIM], real sml)
__device__ void cubicSpline(real *W, real dWdx[DIM], real *dWdr, real dx[DIM], real sml)
Cubic spline kernel (Monaghan & Lattanzio 1985).
__device__ void spiky(real *W, real dWdx[DIM], real *dWdr, real dx[DIM], real sml)
Spiky kernel (Desbrun & Cani).
SPH related functions and kernels.
CUDA_CALLABLE_MEMBER real fixTensileInstability(SPH_kernel kernel, Particles *particles, int p1, int p2)
Calculates the kernel for the tensile instability fix (Monaghan 2000).
void(* SPH_kernel)(real *W, real dWdx[DIM], real *dWdr, real dx[DIM], real h)
Function pointer to generic SPH kernel function.
#define DIM
Dimension of the problem.