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 13283 for NEMO/trunk/src/OCE/ZDF/zdfosm.F90 – NEMO

Ignore:
Timestamp:
2020-07-09T16:28:36+02:00 (3 years ago)
Author:
ayoung
Message:

Merging changes from ticket #2447 (trunk). Additional namelist checks to prevent use of unallocated wave coupling variables. Fully sette tested.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/src/OCE/ZDF/zdfosm.F90

    r13237 r13283  
    13481348     ENDIF 
    13491349 
     1350 
     1351     !                              ! Check wave coupling settings ! 
     1352     !                         ! Further work needed - see ticket #2447 ! 
     1353     IF( nn_osm_wave == 2 ) THEN 
     1354        IF (.NOT. ( ln_wave .AND. ln_sdw )) & 
     1355           & CALL ctl_stop( 'zdf_osm_init : ln_zdfosm and nn_osm_wave=2, ln_wave and ln_sdw must be true' ) 
     1356     END IF 
     1357 
    13501358     !                              ! allocate zdfosm arrays 
    13511359     IF( zdf_osm_alloc() /= 0 )   CALL ctl_stop( 'STOP', 'zdf_osm_init : unable to allocate arrays' ) 
Note: See TracChangeset for help on using the changeset viewer.