Skip to content

Commit ad06fb4

Browse files
committed
Merging release tag with trunk through r169.
1 parent 43a5405 commit ad06fb4

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

drivers/cice4/CICE_InitMod.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ subroutine cice_init
136136

137137
call init_calendar ! initialize some calendar stuff
138138
call init_hist (dt) ! initialize output history file
139-
call init_evp (dt) ! define evp dynamics parameters, variables
139+
call init_evp (dyn_dt) ! define evp dynamics parameters, variables
140140
call init_coupler_flux ! initialize fluxes exchanged with coupler
141141
#ifdef popcice
142142
call sst_sss ! POP data for CICE initialization

drivers/cice4/CICE_RunMod.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ subroutine coupling_prep
627627
i,j , & ! horizontal indices
628628
ilo,ihi,jlo,jhi ! beginning and end of physical domain
629629

630-
real (kind=dbl_kind) :: & cszn
630+
real (kind=dbl_kind) :: cszn ! counter for history averaging
631631

632632
call ice_timer_start(timer_column)
633633

drivers/cice4/CICE_RunMod.F90_debug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@
650650
i,j , & ! horizontal indices
651651
ilo,ihi,jlo,jhi ! beginning and end of physical domain
652652

653-
real (kind=dbl_kind) :: & cszn
653+
real (kind=dbl_kind) :: cszn ! counter for history averaging
654654

655655
call ice_timer_start(timer_column)
656656

drivers/esmf/CICE_InitMod.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ subroutine cice_init
200200

201201
call init_calendar ! initialize some calendar stuff
202202
call init_hist (dt) ! initialize output history file
203-
call init_evp (dt) ! define evp dynamics parameters, variables
203+
call init_evp (dyn_dt) ! define evp dynamics parameters, variables
204204
call init_coupler_flux ! initialize fluxes exchanged with coupler
205205
#ifdef popcice
206206
call sst_sss ! POP data for CICE initialization

drivers/esmf/CICE_RunMod.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ subroutine coupling_prep
739739
i,j , & ! horizontal indices
740740
ilo,ihi,jlo,jhi ! beginning and end of physical domain
741741

742-
real (kind=dbl_kind) :: & cszn
742+
real (kind=dbl_kind) :: cszn ! counter for history averaging
743743

744744
call ice_timer_start(timer_column)
745745

source/ice_forcing.F90

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3246,14 +3246,14 @@ subroutine ocn_data_ncar_init
32463246
!
32473247
! For ocean mixed layer-----------------------------units
32483248
!
3249-
! 1 sst------temperature---------------------------(C) \\
3250-
! 2 sss------salinity------------------------------(ppt) \\
3251-
! 3 hbl------depth---------------------------------(m) \\
3252-
! 4 u--------surface u current---------------------(m/s) \\
3253-
! 5 v--------surface v current---------------------(m/s) \\
3254-
! 6 dhdx-----surface tilt x direction--------------(m/m) \\
3255-
! 7 dhdy-----surface tilt y direction--------------(m/m) \\
3256-
! 8 qdp------ocean sub-mixed layer heat flux-------(W/m2)\\
3249+
! 1 sst------temperature---------------------------(C)
3250+
! 2 sss------salinity------------------------------(ppt)
3251+
! 3 hbl------depth---------------------------------(m)
3252+
! 4 u--------surface u current---------------------(m/s)
3253+
! 5 v--------surface v current---------------------(m/s)
3254+
! 6 dhdx-----surface tilt x direction--------------(m/m)
3255+
! 7 dhdy-----surface tilt y direction--------------(m/m)
3256+
! 8 qdp------ocean sub-mixed layer heat flux-------(W/m2)
32573257
!
32583258
! Fields 4, 5, 6, 7 are on the U-grid; 1, 2, 3, and 8 are
32593259
! on the T-grid.

source/ice_shortwave.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ subroutine init_shortwave
162162
il1, il2 , & ! ice layer indices for eice
163163
sl1, sl2 ! snow layer indices for esno
164164

165-
real (kind=dbl_kind) :: & cszn
165+
real (kind=dbl_kind) :: cszn ! counter for history averaging
166166

167167
type (block) :: &
168168
this_block ! block information for current block

0 commit comments

Comments
 (0)