AQUAgpusph 4.1.2
|
Particles interactions computation. More...
Macros | |
#define | __CLEARY__ 10.f |
#define | _GRADP_ lap_p_corr[i].XYZ |
#define | _LAPP_ lap_p[i] |
#define | _LAPP_ lap_p[i] |
Functions | |
__kernel void | full (const __global int *imove, const __global int *imirrored, const __global vec *r, const __global vec *rmirrored, const __global float *rho, const __global float *m, const __global float *p, __global vec *lap_p_corr, const __global uint *icell, const __global uint *ihoc, uint N, uivec4 n_cells) |
MLS based correction term, due to the particles at the other portal side. | |
__kernel void | lapp (const __global int *imove, const __global int *imirrored, const __global vec *r, const __global vec *rmirrored, const __global float *rho, const __global float *m, const __global float *p, __global float *lap_p, __global uint *icell, __global uint *ihoc, uint N, uivec4 n_cells) |
Laplacian of the pressure computation. | |
__kernel void | mirror (const __global int *imirrored, const __global vec *lap_p_corr, __global vec *lap_p_corr_mirrored, unsigned int N, vec symmetry_n) |
Compute the mirrored position of the fluid particles. | |
__kernel void | lapp_corr (const __global int *imove, const __global int *imirrored, const __global vec *r, const __global vec *rmirrored, const __global float *rho, const __global float *m, const __global vec *lap_p_corr, const __global vec *lap_p_corr_mirrored, __global float *lap_p, const __global uint *icell, const __global uint *ihoc, uint N, uivec4 n_cells) |
Laplacian of the pressure correction. | |
Particles interactions computation.
#define __CLEARY__ 10.f |
#define _GRADP_ lap_p_corr[i].XYZ |
#define _LAPP_ lap_p[i] |
#define _LAPP_ lap_p[i] |
__kernel void full | ( | const __global int * | imove, |
const __global int * | imirrored, | ||
const __global vec * | r, | ||
const __global vec * | rmirrored, | ||
const __global float * | rho, | ||
const __global float * | m, | ||
const __global float * | p, | ||
__global vec * | lap_p_corr, | ||
const __global uint * | icell, | ||
const __global uint * | ihoc, | ||
uint | N, | ||
uivec4 | n_cells | ||
) |
MLS based correction term, due to the particles at the other portal side.
The term computed with this function should be later renormalized by MLS.
imove | Moving flags.
|
imirrored | 0 if the particle has not been mirrored, 1 otherwise. |
r | Position \( \mathbf{r} \). |
rmirrored | Mirrored position of the particle, r if imirrored is false (0). |
rho | Density \( \rho \). |
m | Mass \( m \). |
p | Pressure \( p \). |
lap_p_corr | Correction term for the Morris Laplacian formula. |
icell | Cell where each particle is located. |
ihoc | Head of chain for each cell (first particle found). |
N | Number of particles. |
n_cells | Number of cells in each direction |
__kernel void lapp | ( | const __global int * | imove, |
const __global int * | imirrored, | ||
const __global vec * | r, | ||
const __global vec * | rmirrored, | ||
const __global float * | rho, | ||
const __global float * | m, | ||
const __global float * | p, | ||
__global float * | lap_p, | ||
__global uint * | icell, | ||
__global uint * | ihoc, | ||
uint | N, | ||
uivec4 | n_cells | ||
) |
Laplacian of the pressure computation.
imove | Moving flags.
|
imirrored | 0 if the particle has not been mirrored, 1 otherwise. |
r | Position \( \mathbf{r} \). |
rmirrored | Mirrored position of the particle, r if imirrored is false (0). |
rho | Density \( \rho \). |
m | Mass \( m \). |
p | Pressure \( p \). |
lap_p | Pressure laplacian \( \Delta p \). |
icell | Cell where each particle is located. |
ihoc | Head of chain for each cell (first particle found). |
N | Number of particles. |
n_cells | Number of cells in each direction |
__kernel void lapp_corr | ( | const __global int * | imove, |
const __global int * | imirrored, | ||
const __global vec * | r, | ||
const __global vec * | rmirrored, | ||
const __global float * | rho, | ||
const __global float * | m, | ||
const __global vec * | lap_p_corr, | ||
const __global vec * | lap_p_corr_mirrored, | ||
__global float * | lap_p, | ||
const __global uint * | icell, | ||
const __global uint * | ihoc, | ||
uint | N, | ||
uivec4 | n_cells | ||
) |
Laplacian of the pressure correction.
imove | Moving flags.
|
imirrored | 0 if the particle has not been mirrored, 1 otherwise. |
r | Position \( \mathbf{r} \). |
rmirrored | Mirrored position of the particle, r if imirrored is false (0). |
rho | Density \( \rho \). |
m | Mass \( m \). |
p | Pressure \( p \). |
lap_p_corr | Correction term for the Morris Laplacian formula. |
lap_p_corr_mirrored | Mirrored correction term for the Morris Laplacian formula. |
lap_p | Pressure laplacian \( \Delta p \). |
icell | Cell where each particle is located. |
ihoc | Head of chain for each cell (first particle found). |
N | Number of particles. |
n_cells | Number of cells in each direction |
__kernel void mirror | ( | const __global int * | imirrored, |
const __global vec * | lap_p_corr, | ||
__global vec * | lap_p_corr_mirrored, | ||
unsigned int | N, | ||
vec | symmetry_n | ||
) |
Compute the mirrored position of the fluid particles.
The mirrored particles (the ones close enough to the symmetry plane) will be marked with imirrored = 1.
imirrored | 0 if the particle has not been mirrored, 1 otherwise. |
lap_p_corr | Correction term for the Morris Laplacian formula. |
lap_p_corr_mirrored | Mirrored correction term for the Morris Laplacian formula. |
N | Number of particles. |
symmetry_n | Normal of the symmetry plane. It is assumed as normalized. |