21#ifndef MILUPHPC_MILUPHPC_H
22#define MILUPHPC_MILUPHPC_H
36#include "utils/cxxopts.h"
62#include <boost/mpi/collectives/all_gatherv.hpp>
64#include <highfive/H5File.hpp>
65#include <highfive/H5DataSpace.hpp>
66#include <highfive/H5DataSet.hpp>
153 template <
typename T>
167 template <
typename T>
181 template <
typename U,
typename T>
477 real rhs(
int step,
bool selfGravity=
true,
bool assignParticlesToProcess=
true);
Singleton class for HDF5 profiler.
static H5Profiler & getInstance(const std::string &outfile="")
Constructor/Instance getter for HDF5 profiler.
DomainListHandler * domainListHandler
Instance to handle the DomainList instance on device and host.
real totalEnergy
total energy
void afterIntegrationStep()
real parallel_sph()
Parallel version regarding computation of SPH-stuff.
real parallel_pseudoParticles()
Parallel version regarding computation of pseudo-particles.
ParticleHandler * particleHandler
Instance to handle the Particles instance on device and host.
real tree()
Wrapper function for building the tree (and domain tree).
void updateRangeApproximately(int aimedParticlesPerProcess, int bins=5000)
Update the ranges (approximately and dynamically).
real rhs(int step, bool selfGravity=true, bool assignParticlesToProcess=true)
real reset()
Reset arrays, values, ...
real parallel_tree()
Parallel version regarding tree-stuff.
real angularMomentum()
Calculate the angular momentum for all particles.
Curve::Type curveType
Space-filling curve type to be used (Lebesgue or Hilbert)
real assignParticles()
Assign particles to correct process in dependence of particle key and ranges.
H5Profiler & profiler
H5 profiler instance.
void fixedLoadBalancing()
Load balancing via equidistant ranges.
integer numNodes
number of nodes (to be allocated)
void dynamicLoadBalancing(int bins=5000)
Pre-calculations for updateRangeApproximately.
Miluphpc(SimulationParameters simulationParameters)
Constructor to set up simulation.
~Miluphpc()
Destructor freeing class instances.
MaterialHandler * materialHandler
Instance to handle Materials instances on device and host.
SubDomainKeyTreeHandler * subDomainKeyTreeHandler
Instance to handle the SubDomainKeyTree instance on device and host.
integer numParticles
number of particles (to be allocated)
real energy()
Calculate the total amount of energy.
int subStep
current sub-step (there are possibly more sub-steps within a step!)
TreeHandler * treeHandler
Instance to handle the Tree instance on device and host.
integer sendParticles(T *sendBuffer, T *receiveBuffer, integer *sendLengths, integer *receiveLengths)
Send particles/Exchange particles among MPI processes.
virtual void integrate(int step=0)=0
DomainListHandler * lowestDomainListHandler
Instance to handle the (lowest) DomainList instance on device and host.
real arrangeParticleEntries(U *sortArray, U *sortedArray, T *entry, T *temp)
Function to sort an array entry in dependence of another array sortArray
IntegratedParticleHandler * integratedParticles
real removeParticles()
Remove particles in dependence of some criterion.
real gravity()
Wrapper function for Gravity-related stuff.
SimulationParameters simulationParameters
buffer (need for revising)
real configParameters2file(HighFive::File &h5file)
void prepareSimulation()
Prepare the simulation, including.
void distributionFromFile(const std::string &filename)
Read initial/particle distribution file (in parallel)
integer sendParticlesEntry(integer *sendLengths, integer *receiveLengths, T *entry, T *entryBuffer, T *copyBuffer)
Send particles/Exchange particles among MPI processes.
integer numParticlesLocal
SPH::KernelHandler kernelHandler
Instance to handle the SPH Kernel instance on device and host.
real pseudoParticles()
Wrapper function for calculating pseudo-particles.
void numParticlesFromFile(const std::string &filename)
Determine amount of particles (numParticles and numParticlesLocal) from initial file/particle distrib...
real h_searchRadius
search radius for SPH (MPI-process overarching) neighbor search
void updateRange(int aimedParticlesPerProcess)
Update the range in dependence on number of (MPI) processes and aimed particles per process.
real parallel_gravity()
Parallel version regarding computation of gravitational stuff.
HelperHandler * buffer
buffer instance
integer sumParticles
(real) number of particles on all processes
SimulationTimeHandler * simulationTimeHandler
Instance to handle the SimulationTime instances on device and host.
real totalAngularMomentum
total angular momentum
real boundingBox()
Calculate bounding boxes/simulation domain.
real particles2file(int step)
SPH smoothing kernel handler.
CUDA runtime functionalities and wrappers.
Gravitational force computation functions and CUDA kernels.
profiler based on (parallel) HDF5
Handler for material parameters and settings.
real sortArray(A *arrayToSort, A *sortedArray, B *keyIn, B *keyOut, integer n)
Pressure calculation in dependence of the equation of states.
Handler for SimulationTime class.
Calculating and initializing the speed of sound in dependence of the used equation of state.
SPH related functionalities and kernels.
Classes and Kernels handling subdomains that distribute the workload among the MPI processes.
C++ timer based on boost::mpi::timer.