Ignore:
Timestamp:
Sep 20, 2022, 4:09:50 PM (22 months ago)
Author:
lguez
Message:

Bug fix: split too long lines

The Fortran 2003 standard says a line may contain no more than 132
characters.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmd/iophy.F90

    r4228 r4260  
    10481048
    10491049    !Et sinon on.... écrit
    1050     IF (SIZE(field)/=klon .AND. SIZE(field)/=klev .AND. SIZE(field)/=klev+1) CALL abort_physic('iophy::histwrite2d_phy','Field first DIMENSION not equal to klon/klev',1)   
     1050    IF (SIZE(field)/=klon .AND. SIZE(field)/=klev .AND. SIZE(field)/=klev+1) &
     1051         CALL abort_physic('iophy::histwrite2d_phy',&
     1052         'Field first DIMENSION not equal to klon/klev',1)
    10511053    IF (prt_level >= 10) THEn
    10521054      WRITE (lunout,*)"histwrite2d_phy: .not.vars_defined ; time to gather and write ", trim(var%name)
     
    12461248
    12471249    !Et sinon on.... écrit
    1248     IF (SIZE(field,1)/=klon .AND. SIZE(field,1)/=klev .AND. SIZE(field,1)/=klev+1) CALL abort_physic('iophy::histwrite3d_phy','Field first DIMENSION not equal to klon/klev',1)
     1250    IF (SIZE(field,1)/=klon .AND. SIZE(field,1)/=klev &
     1251         .AND. SIZE(field,1)/=klev+1) &
     1252         CALL abort_physic('iophy::histwrite3d_phy', &
     1253         'Field first DIMENSION not equal to klon/klev',1)
    12491254
    12501255    nlev=SIZE(field,2)
Note: See TracChangeset for help on using the changeset viewer.