1#ifndef MILUPHPC_PARTICLE_HANDLER_H
2#define MILUPHPC_PARTICLE_HANDLER_H
90#if VARIABLE_SML || INTEGRATE_SML
92 real *h_dsmldt, *_h_dsmldt;
109#if SOLID || NAVIER_STOKES
127 real *h_alpha_jutzi_old;
145 real *h_alpha_epspor;
147 real *h_dalpha_epspordt;
151 real *h_depsilon_vdt;
155 real *h_shepardCorrection;
157#if LINEAR_CONSISTENCY
159 real *h_tensorialCorrectionMatrix;
165 real *h_damage_total;
178 real *h_damage_porjutzi;
180 real *h_ddamage_porjutzidt;
253#if VARIABLE_SML || INTEGRATE_SML
255 real *d_dsmldt, *_d_dsmldt;
272#if SOLID || NAVIER_STOKES
290 real *d_alpha_jutzi_old;
308 real *d_alpha_epspor;
310 real *d_dalpha_epspordt;
314 real *d_depsilon_vdt;
318 real *d_shepardCorrection;
320#if LINEAR_CONSISTENCY
322 real *d_tensorialCorrectionMatrix;
328 real *d_damage_total;
341 real *d_damage_porjutzi;
343 real *d_ddamage_porjutzidt;
368 template <
typename T>
414 bool includePseudoParticles =
false);
469#if VARIABLE_SML || INTEGRATE_SML
~IntegratedParticleHandler()
IntegratedParticles * d_integratedParticles
device instance of IntegratedParticles class
real * d_vz
device time derivative of particle's z position
real * d_vy
device time derivative of particle's y position
idInteger * d_uid
device unique identifier
real * d_vx
device time derivative of particle's x position
real * d_az
device time derivative of particle's z velocity
real * d_ay
device time derivative of particle's y velocity
integer numParticles
(host) number of particles
real * d_ax
device time derivative of particle's x velocity
IntegratedParticleHandler(integer numParticles, integer numNodes)
integer numNodes
(host) number of nodes
integer * d_materialId
device material identifier
real * d_muijmax
device max(mu_ij)
integer * h_noi
host number of interactions
integer * d_numNodes
device number of nodes
real * h_az
host z acceleration
real * h_ax
host x acceleration
real * d_dedt
device time derivative of internal energy
real * h_e
host internal energy
real * d_z
device z position
integer * d_nnl
device near(est) neighbor list
real * d_ay
device y acceleration
real * d_mass
device mass array
real * h_drhodt
host time derivative of density
void copyMass(To::Target target=To::device, bool includePseudoParticles=false)
real * h_vx
host x velocity
real * h_y
host y position
T *& getEntry(Entry::Name entry, Execution::Location location=Execution::device)
integer * d_numParticles
device number of particles
real * d_az
device z acceleration
void copyDistribution(To::Target target=To::device, bool velocity=true, bool acceleration=true, bool includePseudoParticles=false)
real * h_dedt
host time derivative of internal energy
real * d_e
device internal energy
integer numNodes
(host) number of nodes
real * d_vx
device x velocity
Particles * d_particles
device instance of particles class
Particles * h_particles
host instance of particles class
void copyMatId(To::Target target=To::device)
real * h_vz
host z velocity
void copySML(To::Target target=To::device)
void copyUid(To::Target target=To::device)
integer * h_nnl
host near(est) neighbor list
void copyPosition(To::Target target=To::device, bool includePseudoParticles=false)
idInteger * d_uid
device unique identifier
integer * h_materialId
host material identifier
real * h_x
host x position
real * d_ax
device x acceleration
integer numParticles
(host) number of particles
real * d_y
device y position
real * d_sml
device smoothing length
void setPointer(IntegratedParticleHandler *integratedParticleHandler)
real * d_vy
device y velocity
real * h_sml
host smoothing length
real * h_cs
host speed of sound
real * h_z
host z position
real * d_cs
device speed of sound
real * h_ay
host y acceleration
real * d_x
device x position
void copyVelocity(To::Target target=To::device, bool includePseudoParticles=false)
real * d_drhodt
device time derivative of density
void copyAcceleration(To::Target target=To::device, bool includePseudoParticles=false)
void copySPH(To::Target target)
ParticleHandler(integer numParticles, integer numNodes)
real * h_muijmax
host max(mu_ij)
integer * d_noi
device number of interaction
real * d_p
device pressure
real * h_vy
host y velocity
idInteger * h_uid
host unique identifier
real * d_vz
device z velocity
real * d_rho
device density
Particle(s) class based on SoA (Structur of Arrays).
CUDA runtime functionalities and wrappers.
Settings via preprocessor directives, typedefs, constants, structs.
Particle struct as Structure of arrays both instantiable on host and device.