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 8391 for branches/NERC – NEMO

Changeset 8391 for branches/NERC


Ignore:
Timestamp:
2017-07-27T18:53:07+02:00 (7 years ago)
Author:
jpalmier
Message:

JPALM -- add a COARE bulk patch for ocean-only run forced by Atm fileds from coupled runs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/NERC/dev_r5518_GO6_COAREbulk/NEMOGCM/NEMO/OPA_SRC/SBC/sbcblk_core.F90

    r6823 r8391  
    851851      CALL wrk_alloc( jpi,jpj, rgt33 ) 
    852852      ! 
     853#if defined key_coare_bulk_patch 
     854     rgt33 = MIN(zw10, 22.) 
     855     !! cd_neutral_10m = 1.e-3 * ( 2.7/rgt33  + 0.142 + 0.06*rgt33  + 
     856     !!                  0.0025*rgt33 **2 - 1.25e-9*rgt33 **6) 
     857     !! A new version May 31st! 
     858      cd_neutral_10m = 1.e-3 * ( 2.4/rgt33  + 0.15 + 0.095*rgt33  + 0.0008*rgt33 **2 - 1.0e-9*rgt33 **6) 
     859#else 
    853860      !! When wind speed > 33 m/s => Cyclone conditions => special treatment 
    854861      rgt33 = 0.5_wp + SIGN( 0.5_wp, (zw10 - 33._wp) )   ! If zw10 < 33. => 0, else => 1   
     
    856863         &       (1._wp - rgt33)*( 2.7_wp/zw10 + 0.142_wp + zw10/13.09_wp - 3.14807E-10*zw10**6) & ! zw10< 33. 
    857864         &      + rgt33         *      2.34   )                                                    ! zw10 >= 33. 
     865#endif 
    858866      ! 
    859867      CALL wrk_dealloc( jpi,jpj, rgt33) 
Note: See TracChangeset for help on using the changeset viewer.