1#include "../../include/sph/density.cuh"
2#include "../include/cuda_utils/cuda_launcher.cuh"
10 int i, j, inc, ip, d, noi;
21 inc = blockDim.x * gridDim.x;
22 for (i = threadIdx.x + blockIdx.x * blockDim.x; i <
numParticles; i += inc) {
32 sml = particles->
sml[i];
35 for (d = 0; d <
DIM; d++) {
39 kernel(&W, dWdx, &dWdr, dx, sml);
41 rho = particles->
mass[i] * W;
43 noi = particles->
noi[i];
46 for (j = 0; j < noi; j++) {
50#if (VARIABLE_SML || INTEGRATE_SML)
51 sml = 0.5 * (particles->
sml[i] + particles->
sml[ip]);
54 dx[0] = x - particles->
x[ip];
56 dx[1] = y - particles->
y[ip];
58 dx[2] = z - particles->
z[ip];
62 kernel(&W, dWdx, &dWdr, dx, sml);
63 rho += particles->
mass[ip] * W;
66 particles->
rho[i] = rho;
68 if (particles->
rho[i] <= 0.) {
Execution policy/instruction for CUDA kernel execution.
Particle(s) class based on SoA (Structur of Arrays).
integer * noi
(pointer to) number of interactions (array)
real * x
(pointer to) x position (array)
real * rho
(pointer to) density (array)
real * y
(pointer to) y position (array)
real * sml
(pointer to) smoothing length (array)
real * mass
(pointer to) mass (array)
real * z
(pointer to) z position (array)
#define cudaTerminate(...)
const char *const numParticles
real calculateDensity(::SPH::SPH_kernel kernel, Tree *tree, Particles *particles, int *interactions, int numParticles)
Wrapper for SPH::Kernel::calculateDensity().
__global__ void calculateDensity(::SPH::SPH_kernel kernel, Tree *tree, Particles *particles, int *interactions, int numParticles)
Calculate the density .
SPH related functions and kernels.
void(* SPH_kernel)(real *W, real dWdx[DIM], real *dWdr, real dx[DIM], real h)
Function pointer to generic SPH kernel function.
real launch(bool timeKernel, const ExecutionPolicy &policy, void(*f)(Arguments...), Arguments... args)
CUDA execution wrapper function.
#define MAX_NUM_INTERACTIONS
#define DIM
Dimension of the problem.