Skip to content
Snippets Groups Projects
Commit 4c42c116 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Latest modules

parent 2b356f95
No related branches found
No related tags found
No related merge requests found
openfpm_numerics @ d0f3b781
Subproject commit 515ec9bf8f1b482ad0b3d2c45ed9c36673f15a8e
Subproject commit d0f3b7819273efc599f5667de5c7c73fb9f5be3c
......@@ -104,6 +104,23 @@ public:
:grid_dist_id<dim,St,T,Decomposition,Memory,device_grid>(g_sz,domain,ghost)
{}
/*! It construct a grid of a specified size, defined on a specified Box space, having a specified ghost size and periodicity
*
* \param g_sz grid size on each dimension
* \param domain Box that contain the grid
* \param g Ghost part of the domain (given in grid units)
* \param p periodicity
*
* \warning In very rare case the ghost part can be one point bigger than the one specified
*
*/
staggered_grid_dist(const size_t (& g_sz)[dim],const Box<dim,St> & domain,
const Ghost<dim,long int> & g, const periodicity<dim> & p)
:grid_dist_id<dim,St,T,Decomposition,Memory,device_grid>(g_sz,domain,g,p)
{
}
/*! \brief set the staggered positions of the properties
*
* \tparam property p
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment