-
Notifications
You must be signed in to change notification settings - Fork 118
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
Fix mesh generation in init_grid() #39
Conversation
Tile index to `grid_global` was not correct inside a loop over tiles.
@lharris4 will this fix be answer changing and under what conditions? |
My 0.02$: This will change the resulting lat/lon of the mesh, if mesh generation is done internally in the model. I am assuming that typically a INPUT/grid_spec.nc file is being read for mesh generation and mesh generation is only done internally for idealized model setups, but I might be wrong. Also, it could be that the next time somebody generates a grid_spec.nc file using the model after the fix, that the contents of that file will be different. |
This will affect the doubly periodic and aquaplanet then |
This would indeed change answers, but only if the grid is generated on-line
and any of the values are within the range (-1.d-10,1.d-10) and not
identically zero. In the unrotated cube this should not a problem but
someone should check.
Lucas
…On Thu, Apr 30, 2020 at 2:41 PM Tom Robinson ***@***.***> wrote:
This will affect the doubly periodic and aquaplanet then
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#39 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AMUQRVG2JVYEQRCYYCSFWBTRPHA53ANCNFSM4MVV3EFQ>
.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good.
#39 should fix this |
* Fixes for mesh generation in init_grid (NOAA-GFDL#39) * Remove trailing whitespace and any tabs * Add default values for nest_*offsets in fv_control
* Fixes for GNU compilation issues (NOAA-GFDL#32) * Fixes for mesh generation in init_grid (NOAA-GFDL#39) * Remove trailing whitespace and any tabs * Add default values for nest_*offsets in fv_control * Remove the fix for mesh generation and it will be fixed later * fix GNU out-of-bound error in driver/fvGFS/atmosphere.F90 * Correct Z dimensions in driver/fvGFS/atmosphere.F90 Co-authored-by: Xiaqiong Zhou <Xiaqiong.Zhou@noaa.gov>
* Fixes for GNU compilation issues (NOAA-GFDL#32) * Fixes for mesh generation in init_grid (NOAA-GFDL#39) * Remove trailing whitespace and any tabs * Add default values for nest_*offsets in fv_control * Remove the fix for mesh generation and it will be fixed later * fix GNU out-of-bound error in driver/fvGFS/atmosphere.F90 * Correct Z dimensions in driver/fvGFS/atmosphere.F90 Co-authored-by: Xiaqiong Zhou <Xiaqiong.Zhou@noaa.gov>
Merge Geos/develop into geos/main for release
Tile index to
grid_global
was not correct inside a loop over tiles.@bensonr @lharris4 This fixes Issue 38.