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 8885 for branches/2017/dev_CNRS_2017/NEMOGCM/NEMO/OPA_SRC – NEMO

Ignore:
Timestamp:
2017-12-04T10:41:40+01:00 (6 years ago)
Author:
clem
Message:

remove useless references to clem's comments

Location:
branches/2017/dev_CNRS_2017/NEMOGCM/NEMO/OPA_SRC
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_CNRS_2017/NEMOGCM/NEMO/OPA_SRC/BDY/bdyini.F90

    r8882 r8885  
    502502            DO igrd = 1, jpbgrd 
    503503               id_dummy = iom_varid( inum, 'nbi'//cgrid(igrd), kdimsz=kdimsz )   
    504                !clem nblendta(igrd,ib_bdy) = kdimsz(1) 
    505                !clem jpbdtau = MAX(jpbdtau, kdimsz(1)) 
    506504               nblendta(igrd,ib_bdy) = MAXVAL(kdimsz) 
    507505               jpbdtau = MAX(jpbdtau, MAXVAL(kdimsz)) 
  • branches/2017/dev_CNRS_2017/NEMOGCM/NEMO/OPA_SRC/DIA/diawri.F90

    r8882 r8885  
    249249      ENDIF 
    250250          
    251       ! clem: heat and salt content 
     251      ! heat and salt contents 
    252252      IF( iom_use("heatc") ) THEN 
    253253         z2d(:,:)  = 0._wp  
     
    967967 
    968968#if defined key_lim3 
    969       IF( nn_ice == 2 ) THEN   ! clem2017: condition in case agrif + lim but no-ice in child grid 
     969      IF( nn_ice == 2 ) THEN   ! condition needed in case agrif + ice-model but no-ice in child grid 
    970970         CALL ice_wri_state( kt, id_i, nh_i ) 
    971971      ENDIF 
  • branches/2017/dev_CNRS_2017/NEMOGCM/NEMO/OPA_SRC/SBC/sbcblk.F90

    r8884 r8885  
    111111   LOGICAL  ::   ln_taudif      ! logical flag to use the "mean of stress module - module of mean stress" data 
    112112   REAL(wp) ::   rn_pfac        ! multiplication factor for precipitation 
    113    REAL(wp) ::   rn_efac        ! multiplication factor for evaporation (clem) 
    114    REAL(wp) ::   rn_vfac        ! multiplication factor for ice/ocean velocity in the calculation of wind stress (clem) 
     113   REAL(wp) ::   rn_efac        ! multiplication factor for evaporation 
     114   REAL(wp) ::   rn_vfac        ! multiplication factor for ice/ocean velocity in the calculation of wind stress 
    115115   REAL(wp) ::   rn_zqt         ! z(q,t) : height of humidity and temperature measurements 
    116116   REAL(wp) ::   rn_zu          ! z(u)   : height of wind measurements 
  • branches/2017/dev_CNRS_2017/NEMOGCM/NEMO/OPA_SRC/SBC/sbcmod.F90

    r8882 r8885  
    312312      ! 
    313313#if defined key_lim3 
    314       IF( lk_agrif .AND. nn_ice == 0 ) THEN 
    315                           IF( sbc_ice_alloc() /= 0 )   CALL ctl_stop('STOP', 'sbc_ice_alloc : unable to allocate arrays' )  ! clem2017: allocate ice arrays in case agrif + lim + no-ice in child grid 
     314      IF( lk_agrif .AND. nn_ice == 0 ) THEN            ! allocate ice arrays in case agrif + ice-model + no-ice in child grid 
     315                          IF( sbc_ice_alloc() /= 0 )   CALL ctl_stop('STOP', 'sbc_ice_alloc : unable to allocate arrays' ) 
    316316      ELSEIF( nn_ice == 2 ) THEN 
    317                           CALL ice_init                ! LIM3 initialization 
     317                          CALL ice_init                ! ICE initialization 
    318318      ENDIF 
    319319#endif 
  • branches/2017/dev_CNRS_2017/NEMOGCM/NEMO/OPA_SRC/nemogcm.F90

    r8882 r8885  
    203203#if defined key_agrif 
    204204      CALL Agrif_ParentGrid_To_ChildGrid() 
    205       IF( ln_diaobs ) CALL dia_obs_wri 
     205      IF( ln_diaobs )        CALL dia_obs_wri 
    206206      IF( nn_timing == 1 )   CALL timing_finalize 
    207207      CALL Agrif_ChildGrid_To_ParentGrid() 
Note: See TracChangeset for help on using the changeset viewer.