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 15540 for NEMO/branches/2021/dev_r14116_HPC-10_mcastril_Mixed_Precision_implementation/src/OCE/OBS/obs_rot_vel.F90 – NEMO

Ignore:
Timestamp:
2021-11-26T12:27:56+01:00 (3 years ago)
Author:
sparonuz
Message:

Mixed precision version, tested up to 30 years on ORCA2.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2021/dev_r14116_HPC-10_mcastril_Mixed_Precision_implementation/src/OCE/OBS/obs_rot_vel.F90

    r10068 r15540  
    5858      TYPE(obs_prof), INTENT(INOUT) :: profdata    ! Profile data to be read 
    5959      INTEGER, INTENT(IN) :: k2dint     ! Horizontal interpolation methed 
    60       REAL(wp), DIMENSION(*) :: & 
     60      REAL(dp), DIMENSION(*) :: & 
    6161         & pu, & 
    6262         & pv 
    6363      !! * Local declarations 
    64       REAL(wp), DIMENSION(2,2,1) :: zweig 
    65       REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: & 
     64      REAL(dp), DIMENSION(2,2,1) :: zweig 
     65      REAL(dp), DIMENSION(:,:,:), ALLOCATABLE :: & 
    6666         & zmasku, & 
    6767         & zmaskv, & 
     
    7474         & zglamv, & 
    7575         & zgphiv 
    76       REAL(wp), DIMENSION(1) :: & 
     76      REAL(dp), DIMENSION(1) :: & 
    7777         & zsinu, & 
    7878         & zcosu, & 
    7979         & zsinv, & 
    8080         & zcosv 
    81       REAL(wp) :: zsin 
    82       REAL(wp) :: zcos 
    83       REAL(wp), DIMENSION(1) :: zobsmask 
    84       REAL(wp), DIMENSION(jpi,jpj) :: zsingu,zcosgu,zsingv,zcosgv 
     81      REAL(dp) :: zsin 
     82      REAL(dp) :: zcos 
     83      REAL(dp), DIMENSION(1) :: zobsmask 
     84      REAL(dp), DIMENSION(jpi,jpj) :: zsingu,zcosgu,zsingv,zcosgv 
    8585      INTEGER, DIMENSION(:,:,:), ALLOCATABLE :: & 
    8686         & igrdiu, & 
Note: See TracChangeset for help on using the changeset viewer.