New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 12675 for NEMO/branches/UKMO/NEMO_4.0.1_icesheet_and_river_coupling/src/OCE/SBC/sbccpl.F90 – NEMO

Ignore:
Timestamp:
2020-04-03T18:00:43+02:00 (4 years ago)
Author:
dancopsey
Message:

Fix compile errors.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/UKMO/NEMO_4.0.1_icesheet_and_river_coupling/src/OCE/SBC/sbccpl.F90

    r12580 r12675  
    262262         &                  sn_rcv_icb   , sn_rcv_isf   , sn_rcv_wfreq , sn_rcv_tauw, nn_cats_cpl  ,   & 
    263263         &                  sn_rcv_ts_ice, sn_rcv_grnm  , sn_rcv_antm  ,                               & 
    264          &                  nn_coupled_iceshelf_fluxes  , ln_iceshelf_init_atmos                       & 
     264         &                  nn_coupled_iceshelf_fluxes  , ln_iceshelf_init_atmos ,                     & 
    265265         &                  rn_greenland_total_fw_flux  , rn_greenland_calving_fraction  ,             & 
    266266         &                  rn_antarctica_total_fw_flux , rn_antarctica_calving_fraction ,             & 
     
    11851185      INTEGER  ::   ji, jj, jn             ! dummy loop indices 
    11861186      INTEGER  ::   isec                   ! number of seconds since nit000 (assuming rdt did not change since nit000) 
    1187       REAL(wp) ::   zcumulneg, zcumulpos   ! temporary scalars   
     1187      REAL(wp) ::   zcumulneg, zcumulpos   ! temporary scalars      
     1188      REAL(wp) ::   zcoef                  ! temporary scalar 
     1189      LOGICAL  ::   ll_wrtstp              ! write diagnostics? 
     1190      REAL(wp) ::   zrhoa  = 1.22          ! Air density kg/m3 
     1191      REAL(wp) ::   zcdrag = 1.5e-3        ! drag coefficient 
    11881192      REAL(wp) ::   zgreenland_icesheet_mass_in, zantarctica_icesheet_mass_in  
    11891193      REAL(wp) ::   zgreenland_icesheet_mass_b, zantarctica_icesheet_mass_b  
    11901194      REAL(wp) ::   zmask_sum, zepsilon     
    1191       REAL(wp) ::   zcoef                  ! temporary scalar 
    1192       REAL(wp) ::   zrhoa  = 1.22          ! Air density kg/m3 
    1193       REAL(wp) ::   zcdrag = 1.5e-3        ! drag coefficient 
    11941195      REAL(wp) ::   zzx, zzy               ! temporary variables 
    11951196      REAL(wp), DIMENSION(jpi,jpj) ::   ztx, zty, zmsk, zemp, zqns, zqsr 
    11961197      !!---------------------------------------------------------------------- 
     1198      ! 
     1199      ll_wrtstp  = ( MOD( kt, sn_cfctl%ptimincr ) == 0 ) .OR. ( kt == nitend ) 
    11971200      ! 
    11981201      IF( ln_mixcpl )   zmsk(:,:) = 1. - xcplmask(:,:,0) 
     
    15741577            WRITE(numout,*) 'Greenland icesheet mass rate of change (kg/s) is ', greenland_icesheet_mass_rate_of_change 
    15751578            WRITE(numout,*) 'Greenland icesheet seconds lapsed since last change is ', greenland_icesheet_timelapsed 
    1576             IF(lflush) CALL flush(numout) 
    15771579         ENDIF 
    15781580      ELSE IF ( nn_coupled_iceshelf_fluxes == 2 ) THEN 
     
    16121614            WRITE(numout,*) 'Antarctica icesheet mass rate of change (kg/s) is ', antarctica_icesheet_mass_rate_of_change 
    16131615            WRITE(numout,*) 'Antarctica icesheet seconds lapsed since last change is ', antarctica_icesheet_timelapsed 
    1614             IF(lflush) CALL flush(numout) 
    16151616         ENDIF 
    16161617      ELSE IF ( nn_coupled_iceshelf_fluxes == 2 ) THEN 
Note: See TracChangeset for help on using the changeset viewer.