Skip to content
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

Possible bug in fv_grid_tools.f90 #38

Closed
ofuhrer opened this issue Apr 30, 2020 · 4 comments · Fixed by #39
Closed

Possible bug in fv_grid_tools.f90 #38

ofuhrer opened this issue Apr 30, 2020 · 4 comments · Fixed by #39

Comments

@ofuhrer
Copy link
Contributor

ofuhrer commented Apr 30, 2020

The code here on L620-621 in fv_grid_tools.f90 is...
if (ABS(grid_global(i,j,1,1)) < 1.d-10) grid_global(i,j,1,1) = 0.0 if (ABS(grid_global(i,j,2,1)) < 1.d-10) grid_global(i,j,2,1) = 0.0
...and should probably be...
if (ABS(grid_global(i,j,1,n)) < 1.d-10) grid_global(i,j,1,n) = 0.0 if (ABS(grid_global(i,j,2,n)) < 1.d-10) grid_global(i,j,2,n) = 0.0
...or taken out of the loop over regions.

@lharris4
Copy link
Contributor

lharris4 commented Apr 30, 2020 via email

@bensonr
Copy link
Contributor

bensonr commented Apr 30, 2020

@ofuhrer @lharris4 please make this fix and put in a PR for master.

@ofuhrer
Copy link
Contributor Author

ofuhrer commented Apr 30, 2020

See PR39. Note that I can't assign reviewers to PR's.

@bensonr bensonr assigned bensonr and lharris4 and unassigned bensonr and lharris4 Apr 30, 2020
@bensonr
Copy link
Contributor

bensonr commented Apr 30, 2020

@ofuhrer I've assigned @lharris4 and @bensonr as reviewers

climbfuji pushed a commit to climbfuji/GFDL_atmos_cubed_sphere that referenced this issue Oct 1, 2020
Merge dev/emc branch from upstream (NOAA-GFDL/GFDL_atmos_cubed_sphere)
climbfuji pushed a commit to climbfuji/GFDL_atmos_cubed_sphere that referenced this issue Apr 24, 2024
…nhydrostatic-build

Updates to allow for building FV dynamics as non-hydrostatic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants