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 13655 for NEMO/branches/2020/dev_r13648_ASINTER-04_laurent_bulk_ice/src/OCE/SBC/sbc_oce.F90 – NEMO

Ignore:
Timestamp:
2020-10-21T16:15:13+02:00 (3 years ago)
Author:
laurent
Message:

Commit all my dev of 2020!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2020/dev_r13648_ASINTER-04_laurent_bulk_ice/src/OCE/SBC/sbc_oce.F90

    r13472 r13655  
    159159   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   frq_m     !: mean (nn_fsbc time-step) fraction of solar net radiation absorbed in the 1st T level [-] 
    160160 
     161   !#LB: 
     162   !!---------------------------------------------------------------------- 
     163   !!                     Surface atmospheric fields 
     164   !!---------------------------------------------------------------------- 
     165   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) :: q_air_zt       !: specific humidity of air at z=zt [kg/kg]ww 
     166   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) :: theta_air_zt   !: potential temperature of air at z=zt [K] 
     167   !#LB. 
     168 
     169    
    161170   !! * Substitutions 
    162171#  include "do_loop_substitute.h90" 
     
    172181      !!                  ***  FUNCTION sbc_oce_alloc  *** 
    173182      !!--------------------------------------------------------------------- 
    174       INTEGER :: ierr(5) 
     183      INTEGER :: ierr(6) 
    175184      !!--------------------------------------------------------------------- 
    176185      ierr(:) = 0 
     
    194203      ! 
    195204      ALLOCATE( e3t_m(jpi,jpj) , STAT=ierr(5) ) 
     205      ! 
     206      ALLOCATE( q_air_zt(jpi,jpj) , theta_air_zt(jpi,jpj) , STAT=ierr(6) ) !#LB 
    196207      ! 
    197208      sbc_oce_alloc = MAXVAL( ierr ) 
Note: See TracChangeset for help on using the changeset viewer.