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 12206 for NEMO/trunk/src – NEMO

Changeset 12206 for NEMO/trunk/src


Ignore:
Timestamp:
2019-12-12T12:14:55+01:00 (4 years ago)
Author:
smasson
Message:

trunk: supress diatmb as it was bugged and already coded in diawri, see #1759

Location:
NEMO/trunk/src/OCE
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/src/OCE/DIA/diawri.F90

    r11536 r12206  
    4646   USE lbclnk         ! ocean lateral boundary conditions (or mpp link) 
    4747   USE in_out_manager ! I/O manager 
    48    USE diatmb         ! Top,middle,bottom output 
    4948   USE dia25h         ! 25h Mean output 
    5049   USE iom            !  
     
    391390      CALL iom_put( "bn2", rn2 )                      ! Brunt-Vaisala buoyancy frequency (N^2) 
    392391      ! 
    393  
    394       IF (ln_diatmb)   CALL dia_tmb                   ! tmb values  
    395392           
    396393      IF (ln_dia25h)   CALL dia_25h( kt )             ! 25h averaging 
  • NEMO/trunk/src/OCE/DYN/dynspg_ts.F90

    r12072 r12206  
    4747   USE updtide         ! tide potential 
    4848   USE sbcwave         ! surface wave 
    49    USE diatmb          ! Top,middle,bottom output 
    5049#if defined key_agrif 
    5150   USE agrif_oce_interp ! agrif 
     
    6261   USE iom             ! IOM library 
    6362   USE restart         ! only for lrst_oce 
    64    USE diatmb          ! Top,middle,bottom output 
    6563 
    6664   USE iom   ! to remove 
     
    152150      REAL(wp) ::   r1_2dt_b, z1_hu, z1_hv          ! local scalars 
    153151      REAL(wp) ::   za0, za1, za2, za3              !   -      - 
    154       REAL(wp) ::   zmdi, zztmp, zldg               !   -      - 
     152      REAL(wp) ::   zztmp, zldg               !   -      - 
    155153      REAL(wp) ::   zhu_bck, zhv_bck, zhdiv         !   -      - 
    156154      REAL(wp) ::   zun_save, zvn_save              !   -      - 
     
    175173      !                                         !* Allocate temporary arrays 
    176174      IF( ln_wd_dl ) ALLOCATE( ztwdmask(jpi,jpj), zuwdmask(jpi,jpj), zvwdmask(jpi,jpj), zuwdav2(jpi,jpj), zvwdav2(jpi,jpj)) 
    177       ! 
    178       zmdi=1.e+20                               !  missing data indicator for masking 
    179175      ! 
    180176      zwdramp = r_rn_wdmin1               ! simplest ramp  
     
    838834      IF( ln_wd_dl )   DEALLOCATE( ztwdmask, zuwdmask, zvwdmask, zuwdav2, zvwdav2 ) 
    839835      ! 
    840       IF( ln_diatmb ) THEN 
    841          CALL iom_put( "baro_u" , un_b*ssumask(:,:)+zmdi*(1.-ssumask(:,:) ) )  ! Barotropic  U Velocity 
    842          CALL iom_put( "baro_v" , vn_b*ssvmask(:,:)+zmdi*(1.-ssvmask(:,:) ) )  ! Barotropic  V Velocity 
    843       ENDIF 
     836      CALL iom_put( "baro_u" , un_b )  ! Barotropic  U Velocity 
     837      CALL iom_put( "baro_v" , vn_b )  ! Barotropic  V Velocity 
    844838      ! 
    845839   END SUBROUTINE dyn_spg_ts 
  • NEMO/trunk/src/OCE/nemogcm.F90

    r11993 r12206  
    7272   USE step_diu       ! diurnal bulk SST timestepping (called from here if run offline) 
    7373   USE crsini         ! initialise grid coarsening utility 
    74    USE diatmb         ! Top,middle,bottom output 
    75    USE dia25h         ! 25h mean output 
    7674   USE sbc_oce , ONLY : lk_oasis 
    7775   USE wet_dry        ! Wetting and drying setting   (wad_init routine) 
     
    484482                           CALL     trd_init    ! Mixed-layer/Vorticity/Integral constraints trends 
    485483                           CALL dia_obs_init    ! Initialize observational data 
    486                            CALL dia_tmb_init    ! TMB outputs 
    487484                           CALL dia_25h_init    ! 25h mean  outputs 
    488485                           CALL dia_harm_init   ! tidal harmonics outputs 
Note: See TracChangeset for help on using the changeset viewer.