Skip to content

Commit

Permalink
Correct grid weight names for interpolated output
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Goldhaber committed Jun 10, 2024
1 parent 98d3e52 commit 5717ba9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dynamics/se/interp_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@ subroutine setup_history_interpolation(interp_ok, mtapes, interp_output, &
case(interp_gridtype_equal_poles)
call cam_grid_attribute_register(trim(gridname), &
'interp_outputgridtype', 'equally spaced with poles')
call cam_grid_attribute_register(trim(gridname), 'w', &
call cam_grid_attribute_register(trim(gridname), 'gw', &
'latitude weights', 'lat', w)
case(interp_gridtype_equal_nopoles)
call cam_grid_attribute_register(trim(gridname), &
'interp_outputgridtype', 'equally spaced no poles')
call cam_grid_attribute_register(trim(gridname), 'gw', &
call cam_grid_attribute_register(trim(gridname), 'w_stag', &
'latitude weights', 'lat', w)
case(interp_gridtype_gauss)
call cam_grid_attribute_register(trim(gridname), &
Expand Down

0 comments on commit 5717ba9

Please sign in to comment.