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 841 for trunk/NEMO/OPA_SRC – NEMO

Changeset 841 for trunk/NEMO/OPA_SRC


Ignore:
Timestamp:
2008-03-11T15:50:54+01:00 (16 years ago)
Author:
rblod
Message:

Light changes in SBC routines to use classical CLIO bulks with LIM3

Location:
trunk/NEMO/OPA_SRC/SBC
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/SBC/flx_bulk_daily.h90

    r719 r841  
    6262      USE blk_oce         ! bulk variable 
    6363      USE bulk            ! bulk module 
     64      USE ice_oce 
    6465 
    6566      !! * arguments 
     
    187188 
    188189      CALL blk(kt) 
     190 
     191#if defined key_lim3 
     192      tatm_ice(:,:) = tatm(:,:) 
     193#endif 
    189194       
    190195      CALL FLUSH(numout) 
  • trunk/NEMO/OPA_SRC/SBC/flx_bulk_monthly.h90

    r719 r841  
    7171      USE blk_oce         ! bulk variable 
    7272      USE bulk            ! bulk module 
     73      USE ice_oce 
    7374 
    7475      !! * arguments 
     
    227228      CALL blk( kt )                ! bulk formulea fluxes  
    228229 
     230#if defined key_lim3 
     231      tatm_ice(:,:) = tatm(:,:) 
     232#endif 
     233 
    229234      ! ------------------- ! 
    230235      ! Last call kt=nitend ! 
  • trunk/NEMO/OPA_SRC/SBC/tau_forced_daily.h90

    r719 r841  
    7878         CALL iom_get ( numtau, jpdom_data, 'taux', taux, nday_year ) 
    7979         CALL iom_get ( numtav, jpdom_data, 'tauy', tauy, nday_year ) 
     80 
     81#if defined key_lim3 
     82      tauxw = taux 
     83      tauyw = tauy 
     84#endif 
    8085             
    8186         IF (lwp .AND. nitend-nit000 <= 100 ) THEN 
  • trunk/NEMO/OPA_SRC/SBC/tau_forced_monthly.h90

    r719 r841  
    136136      tauy(:,:) = (1.-zxy) * tauy_dta(:,:,1) + zxy * tauy_dta(:,:,2) 
    137137 
     138#if defined key_lim3 
     139      tauxw = taux  
     140      tauyw = tauy  
     141#endif 
     142 
    138143      ! ------------------- ! 
    139144      ! Last call kt=nitend ! 
  • trunk/NEMO/OPA_SRC/SBC/taumod.F90

    r833 r841  
    3030   PUBLIC tau                ! routine called by step.F90 
    3131 
    32    !! * Share modules variables 
     32  !! * Share modules variables 
    3333   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   & 
    34       taux, tauy             !: surface stress components in (i,j) referential 
     34      taux, tauy,      &  !: surface stress components in (i,j) referential 
     35      ! TAU BUG 
     36#if defined key_lim3 
     37      tauxw, tauyw,    &  !: surface wind stress components in (i,j) referential 
     38      slotx, sloty,    &  !: time-slope for surface windstress in (i,j) referential 
     39      tauxg, tauyg        !: surface stress components in geographical 
     40      !                   !  referential (used in output) 
     41#endif 
     42 
    3543   !!---------------------------------------------------------------------- 
    3644   !!   OPA 9.0 , LOCEAN-IPSL (2005)  
Note: See TracChangeset for help on using the changeset viewer.