-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dealing with highly non-homogeneous systems #74
Comments
I've been working with a custom cell list (though not implemented as a linked list) that uses a In case that's useful as an inspiration. |
Any inspiration is welcome 😁 |
For reference. The array that depends critically on the number of cells is this one: CellListMap.jl/src/CellLists.jl Line 149 in f68d284
" Auxiliary array that contains the indexes in list of the cells with particles, real or images. "
cell_indices::Vector{Int} = zeros(Int,number_of_cells) It is a linked list array indicating which are the indexes of the cells that contain particles. The problem of removing this array (and storing, for instance, a simple lists of the indexes of cells with particles), is that we need to make the association in the reverse direction. That is, we need to quickly retrieve the data of a cell with particles just from the (linearized) three-dimensional indexes of the cell, to be able to run over vicinal cells in the inner loops. An alternative (maybe a good one, actually), is to store the indexes of the vicinal cells as a 26 (in 3D) or 8 (in 2D) array, for each cell containing particles. Each cell struct would then carry an additional field, but the storage requirement would be at most 27*N if each cell contains a single particle. |
New idea (cannot test now): Define a new type of array to store A proper implementation of that may allow just substituting the type of array |
What you're describing is similar conceptually to how the SparseMatrixCSC method I described works. (Internally it selects the column and does The big problem I had with SparseMatrixCSC was that adding individual items is very slow, so I had to pre-allocate the I, J, and V arrays. |
Yes, effectively. I think that can work, except that I need a bit more customization as I will need the array type to carry some information about the number of elements effectively used in the array vs. the number of elements of the buffer, to avoid having to resize the arrays too often in the case of list updating. But something on those lines can work, yes, your comment was important. |
When systems are highly non-homogeneous, the number of cells can explode to be much greater than the number of particles:
This makes it prohibitive to work with this kind of system. Can we find a way to not allocate empty cells at all? The full cell allocation would need to be lazy, since the construction of the box does not involve the actual coordinates of the system.
The text was updated successfully, but these errors were encountered: