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 15149 for NEMO/trunk/src/OCE/SBC – NEMO

Ignore:
Timestamp:
2021-07-27T12:27:05+02:00 (3 years ago)
Author:
acc
Message:

Trunk. Fix typo in sbcmod.F90 (diagnostic only)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/src/OCE/SBC/sbcmod.F90

    r15145 r15149  
    570570         IF( iom_use("empmr") ) THEN 
    571571            DO_2D( 0, 0, 0, 0 ) 
    572                z2d(ji,jj) =  emp(ji,jj) * rnf(ji,jj) 
     572               z2d(ji,jj) =  emp(ji,jj) - rnf(ji,jj) 
    573573            END_2D 
    574574            CALL iom_put( "empmr"  , z2d      )                ! upward water flux 
     
    576576         IF( iom_use("empbmr") ) THEN 
    577577            DO_2D( 0, 0, 0, 0 ) 
    578                z2d(ji,jj) =  emp_b(ji,jj) * rnf(ji,jj) 
     578               z2d(ji,jj) =  emp_b(ji,jj) - rnf(ji,jj) 
    579579            END_2D 
    580580            CALL iom_put( "empbmr" , z2d      )                ! before upward water flux ( needed to recalculate the time evolution of ssh in offline ) 
Note: See TracChangeset for help on using the changeset viewer.