1#include "../../include/sph/pressure.cuh"
2#include "../include/cuda_utils/cuda_launcher.cuh"
19 particles->
p[index] = 41255.407 * particles->
rho[index];
28 particles->
rho[index] * particles->
e[index];
29 if (particles->
p[index] < 0) {
30 printf(
"negative pressure! p[%i] = %e, rho = %e, e = %e\n", index, particles->
p[index], particles->
rho[index], particles->
e[index]);
37 particles->
p[index] = particles->
cs[index] * particles->
cs[index] * particles->
rho[index];
46 register double eta, e, rho, mu, p1, p2;
50 inc = blockDim.x * gridDim.x;
51 for (i = threadIdx.x + blockIdx.x * blockDim.x; i <
numParticles; i += inc) {
74 printf(
"not implemented!\n");
Execution policy/instruction for CUDA kernel execution.
Particle(s) class based on SoA (Structur of Arrays).
real * e
(pointer to) internal energy (array)
integer * materialId
(pointer to) material identifier (array)
real * rho
(pointer to) density (array)
real * p
(pointer to) pressure (array)
real * cs
(pointer to) sound of speed (array)
__device__ void polytropicGas(Material *materials, Particles *particles, int index)
Polytropic gas.
__device__ void locallyIsothermalGas(Material *materials, Particles *particles, int index)
__device__ void idealGas(Material *materials, Particles *particles, int index)
Ideal gas.
__device__ void isothermalGas(Material *materials, Particles *particles, int index)
Isothermal gas.
const char *const pressure
const char *const numParticles
real calculatePressure(Material *materials, Particles *particles, int numParticles)
Wrapper for SPH::Kernel::calculatePressure().
__global__ void calculatePressure(Material *materials, Particles *particles, int numParticles)
Calculate the pressure.
SPH related functions and kernels.
real launch(bool timeKernel, const ExecutionPolicy &policy, void(*f)(Arguments...), Arguments... args)
CUDA execution wrapper function.
@ EOS_TYPE_LOCALLY_ISOTHERMAL_GAS
ideal gas equation, set polytropic_gamma in material.cfg
@ EOS_TYPE_IDEAL_GAS
this is pure molecular hydrogen at 10 K
@ EOS_TYPE_ISOTHERMAL_GAS
polytropic EOS for gas, needs polytropic_K and polytropic_gamma in material.cfg file
@ EOS_TYPE_POLYTROPIC_GAS