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 9276 for branches/UKMO/dev_r5518_GO6_package/NEMOGCM/NEMO – NEMO

Ignore:
Timestamp:
2018-01-23T12:58:46+01:00 (6 years ago)
Author:
frrh
Message:

Further update from Met Office GMED ticket 371 from
branches/NERC/dev_r5518_GO6_Carb_Fail_from_GO6_9163
to incorporate subsequent chage to the point at which
unrealistic low tempearture warnings are generated.
Original code use -3.0, revised code uses -10.0.
These changes relate purely to warning messages and
do not impact model evolution.
Command:
svn merge -r 9249:9265 svn+ssh://forge.ipsl.jussieu.fr/ipsl/forge/projets/nemo/svn/branches/NERC/dev_r5518_GO6_Carb_Fail_from_GO6_9163

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/dev_r5518_GO6_package/NEMOGCM/NEMO/OPA_SRC/stpctl.F90

    r9257 r9276  
    185185      ENDIF 
    186186      ! 
    187       IF( ztmin < -3.) THEN  ! we've got a problem 
     187      IF( ztmin < -10.) THEN  ! we've got a problem 
    188188         IF (lk_mpp) THEN 
    189189            CALL mpp_minloc ( tsn(:,:,1,jp_tem),tmask(:,:,1), ztmin, ii,ij ) 
     
    196196         IF(lwp) THEN 
    197197            WRITE(numout,*) 'stp_ctl:tracer anomaly: *****    WARNING     *****' 
    198             WRITE(numout,*) 'stp_ctl:tracer anomaly: sea surface temperature < -3C' 
     198            WRITE(numout,*) 'stp_ctl:tracer anomaly: sea surface temperature < -10C' 
    199199            WRITE(numout,9700) kt, ztmin, ii, ij 
    200200            WRITE(numout,*) 'stp_ctl:tracer anomaly: ***** END OF WARNING *****' 
Note: See TracChangeset for help on using the changeset viewer.