Skip to content
Merged
Show file tree
Hide file tree
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 cicecore/cicedyn/general/ice_init.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,8 @@ subroutine input_data
if (trim(ice_data_type) == 'default') ice_data_type = 'latsst'

! For backward compatibility
if (grid_format == 'nc') grid_format = 'pop_nc'
if (grid_format == 'nc' ) grid_format = 'pop_nc'
if (grid_format == 'nc_ext') grid_format = 'pop_nc_ext'

!-----------------------------------------------------------------
! verify inputs
Expand Down Expand Up @@ -2487,7 +2488,7 @@ subroutine input_data
elseif (trim(wave_height_type) == 'none') then
tmpstr2 = ' : no wave height data available, default==0'
endif
write(nu_diag,1010) ' wave_height_type = ', trim(wave_height_type),trim(tmpstr2)
write(nu_diag,1030) ' wave_height_type = ', trim(wave_height_type),trim(tmpstr2)
endif

write(nu_diag,*) ' '
Expand Down Expand Up @@ -2780,6 +2781,7 @@ subroutine input_data
endif ! my_task = master_task

if (grid_format /= 'pop_nc' .and. &
grid_format /= 'pop_nc_ext' .and. &
grid_format /= 'mom_nc' .and. &
grid_format /= 'geosnc' .and. &
grid_format /= 'meshnc' .and. &
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ subroutine ice_HaloUpdate2DR8(array, halo, &
!-----------------------------------------------------------------------

if (.not. ltripoleOnly) then
! tripoleOnly skip fill, do not overwrite any values in interior as they may
! tripoleOnly skip fill, do not overwrite any values in interior as they may
! already be set and filling tripole is not necessary

! fill outer boundary as needed
Expand Down
2 changes: 1 addition & 1 deletion cicecore/cicedyn/infrastructure/ice_blocks.F90
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ subroutine create_blocks(nx_global, ny_global, ew_boundary_type, &
! the global index will go from -nghost+1:0 on the lower boundary
! and n*_global+1:n*_global+nghost on the upper boundary and the
! haloUpdate and scatter, for instance, will not fill those values
! in those cases. Other boundary condition methods will fill the
! in those cases. Other boundary condition methods will fill the
! outer halo values in cases where ice exists on those boundaries.
!
!----------------------------------------------------------------------
Expand Down
Loading