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 604 – NEMO

Changeset 604


Ignore:
Timestamp:
2007-02-20T16:07:52+01:00 (17 years ago)
Author:
opalod
Message:

nemo_v2_bugfix_012 : CT+RB : - avoid to "CALL tau( kstp )" in step subroutine in using a new logical lk_core when using CORE forcing

Location:
trunk/NEMO/OPA_SRC
Files:
2 edited

Legend:

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

    r532 r604  
    4747   IMPLICIT NONE 
    4848   PRIVATE 
     49 
     50#if defined key_flx_core 
     51   LOGICAL, PUBLIC ::   lk_core = .TRUE.   !: CORE surface fluxes flag 
     52#else 
     53   LOGICAL, PUBLIC ::   lk_core = .FALSE.  !: CORE surface fluxes flag 
     54#endif 
    4955 
    5056#if defined key_oasis3 || defined key_oasis4 
  • trunk/NEMO/OPA_SRC/step.F90

    r593 r604  
    202202      IF( lk_obc     )   CALL obc_rad( kstp )         ! compute phase velocities at open boundaries 
    203203 
    204                          CALL tau( kstp )             ! wind stress 
     204      IF( .NOT. lk_core )    CALL tau( kstp )         ! wind stress 
    205205 
    206206                         CALL flx_rnf( kstp )         ! runoff data 
Note: See TracChangeset for help on using the changeset viewer.