Ignore:
Timestamp:
Dec 14, 2015, 11:43:09 AM (9 years ago)
Author:
Laurent Fairhead
Message:

Merged trunk changes r2298:2396 into testing branch

Location:
LMDZ5/branches/testing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/branches/testing

  • LMDZ5/branches/testing/libf/phylmd/ocean_slab_mod.F90

    r2298 r2408  
    8888    use IOIPSL
    8989
    90     INCLUDE "iniprint.h"
    9190    ! For ok_xxx vars (Ekman...)
    9291    INCLUDE "clesphys.h"
     
    110109    IF (error /= 0) THEN
    111110       abort_message='Pb allocation tmp_pctsrf_slab'
    112        CALL abort_gcm(modname,abort_message,1)
     111       CALL abort_physic(modname,abort_message,1)
    113112    ENDIF
    114113    fsic(:)=0.
     
    121120!****************************************************************************************
    122121    ALLOCATE(tslab(klon,nslay), stat=error)
    123        IF (error /= 0) CALL abort_gcm &
     122       IF (error /= 0) CALL abort_physic &
    124123         (modname,'pb allocation tslab', 1)
    125124
     
    127126    IF (error /= 0) THEN
    128127       abort_message='Pb allocation slab_bils'
    129        CALL abort_gcm(modname,abort_message,1)
     128       CALL abort_physic(modname,abort_message,1)
    130129    ENDIF
    131130    slab_bils(:) = 0.0   
     
    133132    IF (error /= 0) THEN
    134133       abort_message='Pb allocation slab_bils_cum'
    135        CALL abort_gcm(modname,abort_message,1)
     134       CALL abort_physic(modname,abort_message,1)
    136135    ENDIF
    137136    bils_cum(:) = 0.0   
     
    141140        IF (error /= 0) THEN
    142141           abort_message='Pb allocation slab_bilg'
    143            CALL abort_gcm(modname,abort_message,1)
     142           CALL abort_physic(modname,abort_message,1)
    144143        ENDIF
    145144        slab_bilg(:) = 0.0   
     
    147146        IF (error /= 0) THEN
    148147           abort_message='Pb allocation slab_bilg_cum'
    149            CALL abort_gcm(modname,abort_message,1)
     148           CALL abort_physic(modname,abort_message,1)
    150149        ENDIF
    151150        bilg_cum(:) = 0.0   
     
    153152        IF (error /= 0) THEN
    154153           abort_message='Pb allocation slab_tice'
    155            CALL abort_gcm(modname,abort_message,1)
     154           CALL abort_physic(modname,abort_message,1)
    156155        ENDIF
    157156        ALLOCATE(seaice(klon), stat = error)
    158157        IF (error /= 0) THEN
    159158           abort_message='Pb allocation slab_seaice'
    160            CALL abort_gcm(modname,abort_message,1)
     159           CALL abort_physic(modname,abort_message,1)
    161160        ENDIF
    162161    END IF
     
    169168    IF (error /= 0) THEN
    170169       abort_message='Pb allocation slabh'
    171        CALL abort_gcm(modname,abort_message,1)
     170       CALL abort_physic(modname,abort_message,1)
    172171    ENDIF
    173172    slabh(1)=50.
     
    226225    USE calcul_fluxs_mod
    227226
    228     INCLUDE "iniprint.h"
    229227    INCLUDE "clesphys.h"
    230228
Note: See TracChangeset for help on using the changeset viewer.