Ignore:
Timestamp:
May 7, 2020 3:58:16 PM (4 years ago)
Author:
eckhard
Message:

fixed constant-density pressure extrapolation, respect integer working precision

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/UTIL/inifor/src/inifor_control.f90

    r4481 r4523  
    2626! -----------------
    2727! $Id$
     28! respect integer working precision (iwp) specified in inifor_defs.f90
     29!
     30!
     31! 4481 2020-03-31 18:55:54Z maronga
    2832! Change output format in routine report to allow for better message formatting
    2933!
     
    8387
    8488    USE inifor_defs,                                                           &
    85         ONLY:  COPYRIGHT, LNAME, LOG_FILE_NAME, VERSION, wp
     89        ONLY:  COPYRIGHT, LNAME, LOG_FILE_NAME, VERSION, iwp, wp
    8690    USE inifor_util,                                                           &
    8791        ONLY:  real_to_str, real_to_str_f
     
    9195    CHARACTER (LEN=5000) ::  message = '' !< log message buffer
    9296    CHARACTER (LEN=5000) ::  tip     = '' !< optional log message buffer for tips on how to rectify encountered errors
    93     INTEGER, SAVE        ::  u            !< Fortran file unit for the log file
    94     INTEGER, SAVE        ::  n_wrngs = 0  !< Fortran file unit for the log file
     97    INTEGER(iwp), SAVE        ::  u            !< Fortran file unit for the log file
     98    INTEGER(iwp), SAVE        ::  n_wrngs = 0  !< Fortran file unit for the log file
    9599
    96100 CONTAINS
Note: See TracChangeset for help on using the changeset viewer.