Skip to content

Commit

Permalink
fix bug in scm_vgrid.F90 related to sing-prec changes
Browse files Browse the repository at this point in the history
  • Loading branch information
grantfirl committed Aug 13, 2024
1 parent 2f76060 commit 6181de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scm/src/scm_vgrid.F90
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ subroutine get_FV3_vgrid(scm_input, scm_state)
do k=1, km+1
pres_i(:,k) = scm_state%a_k(k) + scm_state%b_k(k)*p_ref
scm_state%si(:,k) = scm_state%a_k(k)*pres_sfc_inv + scm_state%b_k(k)
scm_state%exner_i(:,k) = (scm_state%pres_i(:,k)/1.0E5)**con_rocp
scm_state%exner_i(:,k) = (pres_i(:,k)/1.0E5)**con_rocp
end do
scm_state%pres_i = pres_i

Expand Down

0 comments on commit 6181de9

Please sign in to comment.