Changeset 38 in lmdz_wrf


Ignore:
Timestamp:
Jul 23, 2014, 1:14:54 PM (10 years ago)
Author:
lfita
Message:

Fixing string concatenation... This is Fortran not python!!!!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/LMDZ_WRFmeas/WRFV3/lmdz/diagphy_mod.F90

    r37 r38  
    160160      IF (fs_bound .NE. fs_bound .OR. ABS(fs_bound) > largest) THEN
    161161        PRINT *,TRIM(errmsg)
    162         PRINT *,'  ' + TRIM(fname) + ': Wrong fs_bound= ',fs_bound,' !!!'
     162        PRINT *,'  ' // TRIM(fname) // ': Wrong fs_bound= ',fs_bound,' !!!'
    163163        PRINT *,'    fs_bound: Heat flux at atm. boundaries'
    164164        PRINT *,'    fs_bound = stops-stopl - (ssols+ssoll)+ssens+sfront'
     
    209209      IF (fq_bound .NE. fq_bound .OR. ABS(fq_bound) > 100000.) THEN
    210210        PRINT *,TRIM(errmsg)
    211         PRINT *,'  ' + TRIM(fname) + ': Wrong fs_bound= ',fs_bound,' !!!'
     211        PRINT *,'  ' // TRIM(fname) // ': Wrong fq_bound= ',fs_bound,' !!!'
    212212        PRINT *,'    fq_bound: Watter flux at atm. boundaries'
    213213        PRINT *,'    fq_bound = evap_tot - rain_fall_tot -snow_fall_tot'
Note: See TracChangeset for help on using the changeset viewer.