Skip to content

Commit

Permalink
Fix diagnostic tmp array shape. mom-ocean/MOM6#147
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Hannah committed May 1, 2015
1 parent 3440869 commit 41812db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ice_model.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1085,7 +1085,8 @@ subroutine do_update_ice_model_fast( Atmos_boundary, Ice, IST, G )
drdt ! The derivative of the upward radiative heat flux with surface
! temperature (i.e. d(flux)/d(surf_temp) in W m-2 K-1.
real, dimension(G%isc:G%iec,G%jsc:G%jec) :: &
diurnal_factor, cosz_alb, tmp_diag
diurnal_factor, cosz_alb
real, dimension(SZI_(G), SZJ_(G)) :: tmp_diag
real, dimension(0:G%NkIce) :: T_col ! The temperature of a column of ice and snow in degC.
real, dimension(G%NkIce) :: S_col ! The thermodynamic salinity of a column of ice, in g/kg.
real, dimension(0:G%NkIce) :: enth_col ! The enthalpy of a column of snow and ice, in enth_unit (J/kg?).
Expand Down

0 comments on commit 41812db

Please sign in to comment.