Skip to content

Commit

Permalink
Merge branch 'atmosphere/phys_mgr_extra_dim_query' into hotfix-v8.2.2…
Browse files Browse the repository at this point in the history
… (PR #1236)

This merge removes a redundant query of the nCellsSolve dimension in the
physics_run_init routine.

The physics_run_init routine in the mpas_atmphys_manager module contained a
redundant query of the nCellsSolve dimension from the mesh pool, which has been
removed by this merge with no impact on simulations.

* atmosphere/phys_mgr_extra_dim_query:
  Remove redundant query of nCellsSolve dimension in physics_run_init
  • Loading branch information
mgduda committed Sep 20, 2024
2 parents 35bd8b8 + 85473a0 commit 36e2823
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/core_atmosphere/physics/mpas_atmphys_manager.F
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,6 @@ subroutine physics_run_init(configs,mesh,state,clock,stream_manager)
call mpas_pool_get_dimension(mesh,'nAerLevels' ,nAerLevels )
call mpas_pool_get_dimension(mesh,'nOznLevels' ,nOznLevels )
call mpas_pool_get_dimension(mesh,'nCellsSolve',nCellsSolve)
call mpas_pool_get_dimension(mesh,'nCellsSolve',nCellsSolve)
call mpas_pool_get_dimension(mesh,'nSoilLevels',nSoilLevels)
call mpas_pool_get_dimension(mesh,'nVertLevels',nVertLevels)

Expand Down

0 comments on commit 36e2823

Please sign in to comment.