Skip to content

Commit

Permalink
fixed white space issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariana Vertenstein committed Jul 7, 2020
1 parent aea1aa8 commit 30a81cc
Showing 1 changed file with 11 additions and 19 deletions.
30 changes: 11 additions & 19 deletions cicecore/cicedynB/infrastructure/ice_read_write.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1106,15 +1106,14 @@ subroutine ice_read_nc_xy(fid, nrec, varname, work, diag, &
integer (kind=int_kind) :: &
varid , & ! variable id
status ! status output from netcdf routines
! status , & ! status output from netcdf routines
! ndim, nvar, & ! sizes of netcdf file
! id, & ! dimension index
! dimlen ! dimension size

real (kind=dbl_kind) :: &
amin, amax, asum ! min, max values and sum of input array

! character (char_len) :: &
! character (char_len) :: &
! dimname ! dimension name

real (kind=dbl_kind), dimension(:,:), allocatable :: &
Expand Down Expand Up @@ -1280,15 +1279,14 @@ subroutine ice_read_nc_xyz(fid, nrec, varname, work, diag, &
n, & ! ncat index
varid , & ! variable id
status ! status output from netcdf routines
! status , & ! status output from netcdf routines
! ndim, nvar, & ! sizes of netcdf file
! id, & ! dimension index
! dimlen ! size of dimension

real (kind=dbl_kind) :: &
amin, amax, asum ! min, max values and sum of input array

! character (char_len) :: &
! character (char_len) :: &
! dimname ! dimension name

real (kind=dbl_kind), dimension(:,:,:), allocatable :: &
Expand Down Expand Up @@ -1366,7 +1364,7 @@ subroutine ice_read_nc_xyz(fid, nrec, varname, work, diag, &

if (my_task==master_task .and. diag) then
! write(nu_diag,*) &
! 'ice_read_nc_xyz, fid= ',fid, ', nrec = ',nrec, &
! 'ice_read_nc_xyz, fid= ',fid, ', nrec = ',nrec, &
! ', varname = ',trim(varname)
! status = nf90_inquire(fid, nDimensions=ndim, nVariables=nvar)
! write(nu_diag,*) 'ndim= ',ndim,', nvar= ',nvar
Expand Down Expand Up @@ -1837,7 +1835,6 @@ subroutine ice_write_nc_xy(fid, nrec, varid, work, diag, &
! netCDF file diagnostics:
integer (kind=int_kind) :: &
status ! status output from netcdf routines
! status, & ! status output from netcdf routines
! ndim, nvar, & ! sizes of netcdf file
! id, & ! dimension index
! dimlen ! size of dimension
Expand All @@ -1847,8 +1844,7 @@ subroutine ice_write_nc_xy(fid, nrec, varid, work, diag, &

character (char_len) :: &
lvarname ! variable name
! lvarname, & ! variable name
! dimname ! dimension name
! dimname ! dimension name

real (kind=dbl_kind), dimension(:,:), allocatable :: &
work_g1
Expand Down Expand Up @@ -1959,18 +1955,16 @@ subroutine ice_write_nc_xyz(fid, nrec, varid, work, diag, &
integer (kind=int_kind) :: &
n, & ! ncat index
status ! status output from netcdf routines
! status, & ! status output from netcdf routines
! ndim, nvar, & ! sizes of netcdf file
! id, & ! dimension index
! dimlen ! size of dimension
! ndim, nvar, & ! sizes of netcdf file
! id, & ! dimension index
! dimlen ! size of dimension

real (kind=dbl_kind) :: &
amin, amax, asum ! min, max values and sum of input array

character (char_len) :: &
lvarname ! variable name
! lvarname, & ! variable name
! dimname ! dimension name
! dimname ! dimension name

real (kind=dbl_kind), dimension(:,:,:), allocatable :: &
work_g1
Expand Down Expand Up @@ -2087,17 +2081,16 @@ subroutine ice_read_global_nc (fid, nrec, varname, work_g, diag)
integer (kind=int_kind) :: &
varid, & ! netcdf id for field
status ! status output from netcdf routines
! status, & ! status output from netcdf routines
! ndim, nvar, & ! sizes of netcdf file
! id, & ! dimension index
! dimlen ! size of dimension

real (kind=dbl_kind) :: &
amin, amax, asum ! min, max values and sum of input array

! character (char_len) :: &
! character (char_len) :: &
! dimname ! dimension name

!
#ifdef ORCA_GRID
real (kind=dbl_kind), dimension(:,:), allocatable :: &
work_g3
Expand Down Expand Up @@ -2239,15 +2232,14 @@ subroutine ice_read_nc_uv(fid, nrec, nzlev, varname, work, diag, &
integer (kind=int_kind) :: &
varid , & ! variable id
status ! status output from netcdf routines
! status, & ! status output from netcdf routines
! ndim, nvar, & ! sizes of netcdf file
! id, & ! dimension index
! dimlen ! size of dimension

real (kind=dbl_kind) :: &
amin, amax, asum ! min, max values and sum of input array

! character (char_len) :: &
! character (char_len) :: &
! dimname ! dimension name

real (kind=dbl_kind), dimension(:,:), allocatable :: &
Expand Down

0 comments on commit 30a81cc

Please sign in to comment.