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 12124 for NEMO/branches/2019/dev_r11643_ENHANCE-11_CEthe_Shaconemo_diags/src/OCE/DIA – NEMO

Ignore:
Timestamp:
2019-12-09T15:36:08+01:00 (5 years ago)
Author:
clem
Message:

cosmetics

Location:
NEMO/branches/2019/dev_r11643_ENHANCE-11_CEthe_Shaconemo_diags/src/OCE/DIA
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/dev_r11643_ENHANCE-11_CEthe_Shaconemo_diags/src/OCE/DIA/diaar5.F90

    r12009 r12124  
    3030   PUBLIC   dia_ar5_hst    ! heat/salt transport 
    3131 
    32    REAL(wp)                         ::   vol0         ! ocean volume (interior domain) 
    33    REAL(wp)                         ::   area_tot     ! total ocean surface (interior domain) 
     32   REAL(wp) ::   vol0         ! ocean volume (interior domain) 
     33   REAL(wp) ::   area_tot     ! total ocean surface (interior domain) 
    3434   REAL(wp), ALLOCATABLE, SAVE, DIMENSION(:,:  ) ::   area         ! cell surface (interior domain) 
    3535   REAL(wp), ALLOCATABLE, SAVE, DIMENSION(:,:  ) ::   thick0       ! ocean thickness (interior domain) 
     
    327327      !! Called from all advection and/or diffusion routines 
    328328      !!---------------------------------------------------------------------- 
    329       INTEGER                         , INTENT(in )  :: ktra  ! tracer index 
    330       CHARACTER(len=3)                , INTENT(in)   :: cptr  ! transport type  'adv'/'ldf' 
    331       REAL(wp), DIMENSION(jpi,jpj,jpk), INTENT(in)   :: pua   ! 3D input array of advection/diffusion 
    332       REAL(wp), DIMENSION(jpi,jpj,jpk), INTENT(in)   :: pva   ! 3D input array of advection/diffusion 
    333       ! 
    334       INTEGER    ::  ji, jj, jk 
    335       REAL(wp), DIMENSION(jpi,jpj)  :: z2d 
     329      INTEGER                         , INTENT(in) ::  ktra  ! tracer index 
     330      CHARACTER(len=3)                , INTENT(in) ::  cptr  ! transport type  'adv'/'ldf' 
     331      REAL(wp), DIMENSION(jpi,jpj,jpk), INTENT(in) ::  pua   ! 3D input array of advection/diffusion 
     332      REAL(wp), DIMENSION(jpi,jpj,jpk), INTENT(in) ::  pva   ! 3D input array of advection/diffusion 
     333      ! 
     334      INTEGER ::  ji, jj, jk 
     335      REAL(wp), DIMENSION(jpi,jpj) ::  z2d 
    336336 
    337337     
  • NEMO/branches/2019/dev_r11643_ENHANCE-11_CEthe_Shaconemo_diags/src/OCE/DIA/diahth.F90

    r11995 r12124  
    303303   SUBROUTINE dia_hth_dep( ptem, pdept ) 
    304304      ! 
    305       REAL(wp), INTENT(in) :: ptem 
    306       REAL(wp), DIMENSION(jpi,jpj), INTENT(out) :: pdept      
    307       ! 
    308       INTEGER  :: ji, jj, jk, iid 
    309       REAL(wp) :: zztmp, zzdep 
    310       INTEGER, DIMENSION(jpi,jpj) :: iktem 
     305      REAL(wp),                     INTENT(in)  ::  ptem 
     306      REAL(wp), DIMENSION(jpi,jpj), INTENT(out) ::   pdept      
     307      ! 
     308      INTEGER  ::   ji, jj, jk, iid 
     309      REAL(wp) ::   zztmp, zzdep 
     310      INTEGER, DIMENSION(jpi,jpj) ::   iktem 
    311311       
    312312      ! --------------------------------------- ! 
     
    349349   SUBROUTINE dia_hth_htc( pdep, ptn, phtc ) 
    350350      ! 
    351       REAL(wp), INTENT(in) :: pdep     ! depth over the heat content 
    352       REAL(wp), DIMENSION(jpi,jpj,jpk), INTENT(in) :: ptn    
    353       REAL(wp), DIMENSION(jpi,jpj), INTENT(inout) :: phtc   
    354       ! 
    355       INTEGER  :: ji, jj, jk, ik 
    356       REAL(wp), DIMENSION(jpi,jpj) :: zthick 
    357       INTEGER , DIMENSION(jpi,jpj) :: ilevel 
     351      REAL(wp),                         INTENT(in)    ::  pdep     ! depth over the heat content 
     352      REAL(wp), DIMENSION(jpi,jpj,jpk), INTENT(in)    ::  ptn    
     353      REAL(wp), DIMENSION(jpi,jpj)    , INTENT(inout) ::  phtc   
     354      ! 
     355      INTEGER  ::   ji, jj, jk, ik 
     356      REAL(wp), DIMENSION(jpi,jpj) ::   zthick 
     357      INTEGER , DIMENSION(jpi,jpj) ::   ilevel 
    358358 
    359359 
Note: See TracChangeset for help on using the changeset viewer.