Skip to content

Commit 6b6289a

Browse files
Remove trailing whitespace
1 parent 7ce40e5 commit 6b6289a

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

config_src/mct_driver/coupler_indices.F90

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -300,14 +300,14 @@ subroutine fill_ice_ocean_bnd(ice_ocean_boundary, grid, x2o_o, ind)
300300

301301
! variable that are not in ice_ocean_boundary:
302302
! latent (x2o_Foxx_lat)
303-
! surface Stokes drift, x-comp. (x2o_Sw_ustokes)
304-
! surface Stokes drift, y-comp. (x2o_Sw_vstokes)
303+
! surface Stokes drift, x-comp. (x2o_Sw_ustokes)
304+
! surface Stokes drift, y-comp. (x2o_Sw_vstokes)
305305
! wave model langmuir multiplier (x2o_Sw_lamult)
306306

307307
! biogeochemistry
308308
! Black Carbon hydrophobic release from sea ice component (x2o_Fioi_bcpho)
309309
! Black Carbon hydrophilic release from sea ice component (x2o_Fioi_bcphi)
310-
! dust release from sea ice component (x2o_Fioi_flxdst)
310+
! dust release from sea ice component (x2o_Fioi_flxdst)
311311
! Black Carbon hydrophilic dry deposition (x2o_Faxa_bcphidry)
312312
! Black Carbon hydrophobic dry deposition (x2o_Faxa_bcphodry)
313313
! Black Carbon hydrophobic wet deposition (x2o_Faxa_bcphiwet)
@@ -316,12 +316,12 @@ subroutine fill_ice_ocean_bnd(ice_ocean_boundary, grid, x2o_o, ind)
316316
! Organic Carbon hydrophilic dry deposition (x2o_Faxa_ocphiwet)
317317
! Sizes 1 to 4 dust - wet deposition (x2o_Faxa_dstwet?)
318318
! Sizes 1 to 4 dust - dry deposition (x2o_Faxa_dstdry?)
319-
319+
320320

321321
! need wind_stress_multiplier?
322322

323323
! Copy from x2o to ice_ocean_boundary. ice_ocean_boundary uses global indexing with no halos.
324-
write(*,*) 'max. k is:', (grid%jec-grid%jsc+1) * (grid%iec-grid%isc+1)
324+
write(*,*) 'max. k is:', (grid%jec-grid%jsc+1) * (grid%iec-grid%isc+1)
325325
! zonal wind stress (taux)
326326
write(*,*) 'taux', SIZE(x2o_o(ind%x2o_Foxx_taux,:))
327327
write(*,*) 'ice_ocean_boundary%u_flux', SIZE(ice_ocean_boundary%u_flux(:,:))
@@ -336,13 +336,13 @@ subroutine fill_ice_ocean_bnd(ice_ocean_boundary, grid, x2o_o, ind)
336336
! meridional wind stress (tauy)
337337
ice_ocean_boundary%v_flux(i,j) = x2o_o(ind%x2o_Foxx_tauy,k)
338338
! sensible heat flux
339-
ice_ocean_boundary%t_flux(i,j) = x2o_o(ind%x2o_Foxx_sen,k)
339+
ice_ocean_boundary%t_flux(i,j) = x2o_o(ind%x2o_Foxx_sen,k)
340340
! salt flux
341341
ice_ocean_boundary%salt_flux(i,j) = x2o_o(ind%x2o_Fioi_salt,k)
342342
! heat flux from snow & ice melt
343343
ice_ocean_boundary%calving_hflx(i,j) = x2o_o(ind%x2o_Fioi_melth,k)
344344
! snow melt flux
345-
ice_ocean_boundary%fprec(i,j) = x2o_o(ind%x2o_Fioi_meltw,k)
345+
ice_ocean_boundary%fprec(i,j) = x2o_o(ind%x2o_Fioi_meltw,k)
346346
! river runoff flux
347347
ice_ocean_boundary%runoff(i,j) = x2o_o(ind%x2o_Foxx_rofl,k)
348348
! ice runoff flux
@@ -358,7 +358,7 @@ subroutine fill_ice_ocean_bnd(ice_ocean_boundary, grid, x2o_o, ind)
358358
ice_ocean_boundary%lw_flux(i,j) = x2o_o(k,ind%x2o_Faxa_lwdn)
359359
!!!!!!! SHORTWAVE NEEDS TO BE COMBINED !!!!!!!
360360
! net short-wave heat flux
361-
ice_ocean_boundary%u_flux(i,j) = x2o_o(k,ind%x2o_Foxx_swnet)
361+
ice_ocean_boundary%u_flux(i,j) = x2o_o(k,ind%x2o_Foxx_swnet)
362362
enddo
363363
enddo
364364

config_src/mct_driver/ocn_comp_mct.F90

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,8 @@ subroutine ocn_init_mct( EClock, cdata_o, x2o_o, o2x_o, NLFilename )
314314
call get_global_grid_size(glb%grid, ni, nj)
315315

316316
! allocate ice_ocean_boundary
317-
isc = glb%grid%isc; iec = glb%grid%iec;
318-
jsc = glb%grid%jsc; jec = glb%grid%jec;
317+
isc = glb%grid%isc; iec = glb%grid%iec;
318+
jsc = glb%grid%jsc; jec = glb%grid%jec;
319319
allocate(glb%ice_ocean_boundary%u_flux(isc:iec,jsc:jec)); glb%ice_ocean_boundary%u_flux(:,:) = 0.0
320320
allocate(glb%ice_ocean_boundary%v_flux(isc:iec,jsc:jec)); glb%ice_ocean_boundary%v_flux(:,:) = 0.0
321321
allocate(glb%ice_ocean_boundary%t_flux(isc:iec,jsc:jec)); glb%ice_ocean_boundary%t_flux(:,:) = 0.0
@@ -334,8 +334,8 @@ subroutine ocn_init_mct( EClock, cdata_o, x2o_o, o2x_o, NLFilename )
334334
allocate(glb%ice_ocean_boundary%calving_hflx(isc:iec,jsc:jec)); glb%ice_ocean_boundary%calving_hflx(:,:) = 0.0
335335
allocate(glb%ice_ocean_boundary%p(isc:iec,jsc:jec)); glb%ice_ocean_boundary%p(:,:) = 0.0
336336
allocate(glb%ice_ocean_boundary%mi(isc:iec,jsc:jec)); glb%ice_ocean_boundary%mi(:,:) = 0.0
337-
338-
337+
338+
339339
if (debug .and. root_pe().eq.pe_here()) print *, "calling seq_infodata_putdata"
340340

341341
call seq_infodata_PutData( glb%infodata, &

0 commit comments

Comments
 (0)