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 15548 for NEMO/branches/2021/ticket2632_r14588_theta_sbcblk/src/OCE/OBS/obs_prep.F90 – NEMO

Ignore:
Timestamp:
2021-11-28T18:59:49+01:00 (3 years ago)
Author:
gsamson
Message:

update branch to the head of the trunk (r15547); ticket #2632

Location:
NEMO/branches/2021/ticket2632_r14588_theta_sbcblk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2021/ticket2632_r14588_theta_sbcblk

    • Property svn:externals
      •  

        old new  
        99 
        1010# SETTE 
        11 ^/utils/CI/sette@14244        sette 
         11^/utils/CI/sette@HEAD        sette 
         12 
  • NEMO/branches/2021/ticket2632_r14588_theta_sbcblk/src/OCE/OBS/obs_prep.F90

    r14275 r15548  
    3333   PUBLIC   calc_month_len   ! Calculate the number of days in the months of a year 
    3434 
     35#  include "domzgr_substitute.h90" 
    3536   !!---------------------------------------------------------------------- 
    3637   !! NEMO/OCE 4.0 , NEMO Consortium (2018) 
     
    10711072      !!---------------------------------------------------------------------- 
    10721073      !! * Modules used 
    1073       USE dom_oce, ONLY : &       ! Geographical information  
    1074          & gdepw_1d,      & 
    1075          & gdepw_0,       &                        
    1076          & gdepw,         & 
    1077          & gdept,         & 
    1078          & ln_zco,        & 
    1079          & ln_zps              
     1074      USE dom_oce   ! Geographical information  
    10801075 
    10811076      !! * Arguments 
     
    11281123         & zglam, &           ! Model longitude at grid points 
    11291124         & zgphi              ! Model latitude at grid points 
     1125      REAL(wp), DIMENSION(jpi,jpj,jpk) :: zdepw 
    11301126      INTEGER, DIMENSION(2,2,kprofno) :: & 
    11311127         & igrdi, &           ! Grid i,j 
     
    11861182      CALL obs_int_comm_2d( 2, 2, kprofno, kpi, kpj, igrdi, igrdj, plam, zglam ) 
    11871183      CALL obs_int_comm_2d( 2, 2, kprofno, kpi, kpj, igrdi, igrdj, pphi, zgphi ) 
    1188       CALL obs_int_comm_3d( 2, 2, kprofno, kpi, kpj, kpk, igrdi, igrdj, gdepw(:,:,:,Kmm), & 
    1189         &                     zgdepw ) 
     1184      DO jk = 1, jpk 
     1185         zdepw(:,:,jk) = gdepw(:,:,jk,Kmm) 
     1186      END DO 
     1187      CALL obs_int_comm_3d( 2, 2, kprofno, kpi, kpj, kpk, igrdi, igrdj, zdepw(:,:,:), zgdepw ) 
    11901188 
    11911189      DO jobs = 1, kprofno 
Note: See TracChangeset for help on using the changeset viewer.