Skip to content

Fixing Boundary discontinuity (by Q. Remy) #50

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

Open
carmeloevoli opened this issue Apr 8, 2025 · 0 comments
Open

Fixing Boundary discontinuity (by Q. Remy) #50

carmeloevoli opened this issue Apr 8, 2025 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@carmeloevoli
Copy link
Member

By the way I remember that there were discontinuities in the maps produced by hermes,
I think that is due to the rings boundaries definition :

auto highBoundary = (i < 11) ? boundariesHI.at(i + 1) : boundariesHI.at(i) + 1_kpc;

in my code I changed it as
auto highBoundary = (i < 11) ? boundariesHI.at(i + 1) + 0.3_kpc : boundariesHI.at(i) + 1_kpc;

@carmeloevoli carmeloevoli added the enhancement New feature or request label Apr 8, 2025
@carmeloevoli carmeloevoli self-assigned this Apr 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant