Skip to content

This commit changes the horizontal interpolation from a four-point to a 16 point interp in init_atmosphere cases 7 and 9 for the dynamics variables #1303

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

Merged
merged 1 commit into from
May 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/core_init_atmosphere/mpas_init_atm_cases.F
Original file line number Diff line number Diff line change
Expand Up @@ -3469,7 +3469,8 @@ subroutine init_atm_case_gfs(block, mesh, nCells, nEdges, nVertLevels, fg, state

do while (istatus == 0)

interp_list(1) = FOUR_POINT
! interp_list(1) = FOUR_POINT
interp_list(1) = SIXTEEN_POINT
interp_list(2) = SEARCH
interp_list(3) = 0

Expand Down Expand Up @@ -5261,7 +5262,8 @@ subroutine init_atm_case_lbc(timestamp, block, mesh, nCells, nEdges, nVertLevels

do while (istatus == 0)

interp_list(1) = FOUR_POINT
! interp_list(1) = FOUR_POINT
interp_list(1) = SIXTEEN_POINT
interp_list(2) = SEARCH
interp_list(3) = 0

Expand Down