You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Papers usually recommend using a higher smoothing_length or smoother kernel with surface normal methods.
Currently this can be only done using this quite inefficient approach:
if smoothing_length != system.smoothing_length ||
smoothing_kernel !== system.smoothing_kernel
# TODO: this is really slow but there is no way to easily implement multiple search radia
search_radius = compact_support(smoothing_kernel, smoothing_length)
nhs = PointNeighbors.copy_neighborhood_search(nhs, search_radius,
nparticles(system))
PointNeighbors.initialize!(nhs, system_coords, neighbor_system_coords)
end
Papers usually recommend using a higher smoothing_length or smoother kernel with surface normal methods.
Currently this can be only done using this quite inefficient approach:
This was removed from #539 #584 and #666
The text was updated successfully, but these errors were encountered: