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 14789 for NEMO/branches/2021/dev_r13747_HPC-11_mcastril_HPDAonline_DiagGPU/src/OCE/DIU/diu_coolskin.F90 – NEMO

Ignore:
Timestamp:
2021-05-05T13:18:04+02:00 (3 years ago)
Author:
mcastril
Message:

[2021/HPC-11_mcastril_HPDAonline_DiagGPU] Update externals

Location:
NEMO/branches/2021/dev_r13747_HPC-11_mcastril_HPDAonline_DiagGPU
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2021/dev_r13747_HPC-11_mcastril_HPDAonline_DiagGPU

    • Property svn:externals
      •  

        old new  
        33^/utils/build/mk@HEAD         mk 
        44^/utils/tools@HEAD            tools 
        5 ^/vendors/AGRIF/dev_r12970_AGRIF_CMEMS      ext/AGRIF 
         5^/vendors/AGRIF/dev@HEAD      ext/AGRIF 
        66^/vendors/FCM@HEAD            ext/FCM 
        77^/vendors/IOIPSL@HEAD         ext/IOIPSL 
         8^/vendors/PPR@HEAD            ext/PPR 
        89 
        910# SETTE 
        10 ^/utils/CI/sette@13559        sette 
         11^/utils/CI/sette@14244        sette 
  • NEMO/branches/2021/dev_r13747_HPC-11_mcastril_HPDAonline_DiagGPU/src/OCE/DIU/diu_coolskin.F90

    r13722 r14789  
    2020   USE lib_mpp 
    2121   USE lbclnk          ! ocean lateral boundary conditions (or mpp link) 
    22     
     22 
    2323   IMPLICIT NONE 
    2424   PRIVATE 
     
    3434   REAL(wp), PRIVATE, PARAMETER :: pp_rhoa = 1.20421_wp     ! density of air (at 20C) 
    3535   REAL(wp), PRIVATE, PARAMETER :: pp_cda = 1.45e-3_wp      ! assumed air-sea drag coefficient for calculating wind speed 
    36     
     36 
    3737   ! Key variables 
    3838   REAL(wp), PUBLIC, ALLOCATABLE, DIMENSION(:,:) :: x_csdsst    ! Cool skin delta SST 
     
    4646   !! $Id$ 
    4747   !! Software governed by the CeCILL license (see ./LICENSE) 
    48    !!----------------------------------------------------------------------    
    49    CONTAINS  
    50     
     48   !!---------------------------------------------------------------------- 
     49   CONTAINS 
     50 
    5151   SUBROUTINE diurnal_sst_coolskin_init 
    5252      !!---------------------------------------------------------------------- 
     
    5555      !! ** Purpose :   initialise the cool skin model 
    5656      !! 
    57       !! ** Method :  
     57      !! ** Method : 
    5858      !! 
    5959      !! ** Reference : 
    60       !!  
     60      !! 
    6161      !!---------------------------------------------------------------------- 
    6262      ALLOCATE( x_csdsst(jpi,jpj), x_csthick(jpi,jpj) ) 
     
    7373      !! ** Purpose :   Time-step the Artale cool skin model 
    7474      !! 
    75       !! ** Method :  
     75      !! ** Method : 
    7676      !! 
    77       !! ** Reference :  
     77      !! ** Reference : 
    7878      !!---------------------------------------------------------------------- 
    7979      ! Dummy variables 
     
    8282      REAL(wp), INTENT(IN), DIMENSION(jpi,jpj) :: psrho       ! Water density (kg/m^3) 
    8383      REAL(wp), INTENT(IN) :: pDt                             ! Time-step 
    84       
     84 
    8585      ! Local variables 
    86       REAL(wp), DIMENSION(jpi,jpj) :: z_fv                    ! Friction velocity      
     86      REAL(wp), DIMENSION(jpi,jpj) :: z_fv                    ! Friction velocity 
    8787      REAL(wp), DIMENSION(jpi,jpj) :: z_gamma                 ! Dimensionless function of wind speed 
    8888      REAL(wp), DIMENSION(jpi,jpj) :: z_lamda                 ! Sauders (dimensionless) proportionality constant 
     
    9191      REAL(wp) :: z_zty                                       ! Temporary v wind stress 
    9292      REAL(wp) :: z_zmod                                      ! Temporary total wind stress 
    93       
     93 
    9494      INTEGER :: ji,jj 
    9595      !!---------------------------------------------------------------------- 
     
    105105         ELSE 
    106106            z_fv(ji,jj) = 0. 
    107             z_wspd(ji,jj) = 0.      
     107            z_wspd(ji,jj) = 0. 
    108108         ENDIF 
    109109         ! 
Note: See TracChangeset for help on using the changeset viewer.