Ignore:
Timestamp:
Sep 12, 2018 3:02:00 PM (6 years ago)
Author:
raasch
Message:

various changes to avoid compiler warnings (mainly removal of unused variables)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/header.f90

    r3232 r3241  
    2525! -----------------
    2626! $Id$
     27! unused variables removed
     28!
     29! 3232 2018-09-07 12:21:44Z raasch
    2730! Increase printed length of run identifier
    2831!
     
    465468    IMPLICIT NONE
    466469
    467     CHARACTER (LEN=1)  ::  prec                !<
    468470   
    469471    CHARACTER (LEN=2)  ::  do2d_mode           !<
     
    524526    INTEGER(iwp) ::  i              !<
    525527    INTEGER(iwp) ::  io             !<
    526     INTEGER(iwp) ::  j              !<
    527     INTEGER(iwp) ::  k              !<
    528528    INTEGER(iwp) ::  l              !<
    529529    INTEGER(iwp) ::  ll             !<
     
    576576       CALL message( 'header', 'PA0191', 0, 0, 0, 6, 0 )
    577577    ENDIF
    578     IF ( nested_run )  run_classification = 'nested ' // run_classification
     578    IF ( nested_run )  run_classification = 'nested ' // run_classification(1:63)
    579579    IF ( ocean )  THEN
    580        run_classification = 'ocean - ' // run_classification
     580       run_classification = 'ocean - ' // run_classification(1:61)
    581581    ELSE
    582        run_classification = 'atmosphere - ' // run_classification
     582       run_classification = 'atmosphere - ' // run_classification(1:57)
    583583    ENDIF
    584584
     
    18841884    WRITE ( io, 410 )  latitude, longitude, omega, f, fs
    18851885
    1886  !
    1887 !-- Geostrophic parameters
     1886!
     1887!-- Day of year, UTC
    18881888    WRITE ( io, 456 )  day_of_year_init, time_utc_init
    18891889   
     
    23342334            '    Specific heat cap. :   c_p   = ',F6.1,' J/(kg K)'/ &
    23352335            '    Vapourization heat :   L_v   =',E9.2,' J/kg')
    2336 418 FORMAT (/'    Day of the year at model start :   day_init      =     ',I3 &
    2337             /'    UTC time at model start        :   time_utc_init = ',F7.1' s')
    23382336420 FORMAT (/'    Characteristic levels of the initial temperature profile:'// &
    23392337            '       Height:        ',A,'  m'/ &
     
    24002398454 FORMAT ('    TKE is not allowed to fall below ',E9.2,' (m/s)**2')
    24012399455 FORMAT ('    initial TKE is prescribed as ',E9.2,' (m/s)**2')
    2402 456 FORMAT ('    Day of the year at model start :   day_init = ',I3            &
    2403             /'    UTC time at model start        :   time_utc_init = ',F7.1' s')
     2400456 FORMAT (/'    Day of the year at model start :   day_init      =     ',I3 &
     2401            /'    UTC time at model start        :   time_utc_init = ',F7.1,' s')
    24042402457 FORMAT ('    RANS-mode constants: c_0 = ',F9.5/         &
    24052403            '                         c_1 = ',F9.5/         &
Note: See TracChangeset for help on using the changeset viewer.