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

Changeset 4164


Ignore:
Timestamp:
2013-11-07T17:36:32+01:00 (10 years ago)
Author:
hadcv
Message:

Ticket #1136: ctl_stop call to prevent hanging when nn_fsbc/nn_dttrc > 9 & key_iomput

Location:
trunk/NEMOGCM/NEMO
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMOGCM/NEMO/OPA_SRC/SBC/sbcmod.F90

    r4028 r4164  
    160160         &  CALL ctl_warn( 'nn_fsbc is NOT a multiple of the number of time steps in a day' ) 
    161161      ! 
     162      IF( lk_iomput .AND. nn_fsbc > 9 )   &  
     163         &   CALL ctl_stop( 'nn_fsbc > 9 cannot currently be used with key_iomput' )  
     164      ! 
    162165      IF( ( nn_ice == 2 .OR. nn_ice ==3 ) .AND. .NOT.( ln_blk_clio .OR. ln_blk_core .OR. lk_cpl ) )   & 
    163166         &   CALL ctl_stop( 'LIM sea-ice model requires a bulk formulation or coupled configuration' ) 
  • trunk/NEMOGCM/NEMO/TOP_SRC/trcnam.F90

    r3882 r4164  
    139139      ENDIF 
    140140 
     141      IF( lk_iomput .AND. nn_dttrc > 9 )   &  
     142         &   CALL ctl_stop( 'nn_dttrc > 9 cannot currently be used with key_iomput' ) 
     143 
    141144      ln_diatrc = .FALSE. 
    142145      ln_diabio = .FALSE. 
Note: See TracChangeset for help on using the changeset viewer.