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 1482 for trunk/NEMO/OPA_SRC/SBC/sbcblk_clio.F90 – NEMO

Ignore:
Timestamp:
2009-07-03T17:28:06+02:00 (15 years ago)
Author:
smasson
Message:

distribution of iom_put + cleaning of LIM2 outputs, see ticket:437

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/SBC/sbcblk_clio.F90

    r1465 r1482  
    88   !!   NEMO     2.0  !  2002-08 (C. Ethe, G. Madec) F90: Free form and module 
    99   !!            3.0  !  2008-03 (C. Talandier, G. Madec) surface module + LIM3 
     10   !!            3.2  !  2009-04 (B. Lemaire) Introduce iom_put 
     11   !!---------------------------------------------------------------------- 
     12 
    1013   !!---------------------------------------------------------------------- 
    1114   !!   sbc_blk_clio   : CLIO bulk formulation: read and update required input fields 
     
    7679   REAL(wp)  ::   zeps    = 1.e-20                ! constant values 
    7780   REAL(wp)  ::   zeps0   = 1.e-13   
    78  
     81    
     82   !! * Substitutions 
    7983#  include "vectopt_loop_substitute.h90" 
    8084   !!---------------------------------------------------------------------- 
    81    !! NEMO/OPA 3.0 , LOCEAN-IPSL (2008)  
     85   !! NEMO/OPA 3.2 , LOCEAN-IPSL (2009)  
    8286   !! $Id$  
    8387   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
     
    8589 
    8690CONTAINS 
    87  
    8891 
    8992   SUBROUTINE sbc_blk_clio( kt ) 
     
    397400      emps(:,:) = emp(:,:) 
    398401      ! 
     402      CALL iom_put( "qlw_oce",   zqlw )   ! output downward longwave  heat over the ocean 
     403      CALL iom_put( "qsb_oce", - zqsb )   ! output downward sensible  heat over the ocean 
     404      CALL iom_put( "qla_oce", - zqla )   ! output downward latent    heat over the ocean 
     405      CALL iom_put( "qns_oce",   qns  )   ! output downward non solar heat over the ocean 
     406 
    399407      IF(ln_ctl) THEN 
    400408         CALL prt_ctl(tab2d_1=zqsb , clinfo1=' blk_oce_clio: zqsb   : ', tab2d_2=zqlw , clinfo2=' zqlw  : ') 
     
    544552         END DO 
    545553      END DO 
     554      CALL iom_put( 'snowpre', p_spr )   ! Snow precipitation  
    546555       
    547556      !-----------------------------------------------------------! 
Note: See TracChangeset for help on using the changeset viewer.