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
The periodic kernel wraps around at the extreme gridpoints in the direction of periodicity. If a sample variable is specified on tracer points, this means that the half a grid cell on the outside is ignored, leading to artifacts in the output. We need to actually wrap the particles around only when they completely exit the grid, e.g.
To do this correctly, we'd probably need the full supergrid (corners and centres) specification. Because of the halo cells added by the call to add_periodic_halo(), there is a bit of a buffer to make sure we're sufficiently outside the real grid before wrapping.
The text was updated successfully, but these errors were encountered:
The periodic kernel wraps around at the extreme gridpoints in the direction of periodicity. If a sample variable is specified on tracer points, this means that the half a grid cell on the outside is ignored, leading to artifacts in the output. We need to actually wrap the particles around only when they completely exit the grid, e.g.
To do this correctly, we'd probably need the full supergrid (corners and centres) specification. Because of the halo cells added by the call to
add_periodic_halo()
, there is a bit of a buffer to make sure we're sufficiently outside the real grid before wrapping.The text was updated successfully, but these errors were encountered: