Ignore:
Timestamp:
Mar 5, 2009 3:33:42 PM (15 years ago)
Author:
heinze
Message:

Output of messages replaced by message handling routine.

File:
1 edited

Legend:

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

    r241 r254  
    55
    66!------------------------------------------------------------------------------!
    7 ! Actual revisions:
     7! Current revisions:
    88! -----------------
     9! Output of messages replaced by message handling routine.
    910! Set the starting level and the vertical smoothing factor used for
    1011! the external pressure gradient
    11 ! +converve_volume_flow_mode: 'default', 'initial_profiles', 'inflow_profile'
     12! +conserve_volume_flow_mode: 'default', 'initial_profiles', 'inflow_profile'
    1213! and 'bulk_velocity'
    1314!
     
    10791080!
    10801081!--    Actually this part of the programm should not be reached
    1081        IF ( myid == 0 )  PRINT*,'+++ init_3d_model: unknown initializing ', &
    1082                                                     'problem'
    1083        CALL local_stop
     1082       message_string = 'unknown initializing problem'
     1083       CALL message( 'init_3d_model', 'PA0193', 1, 2, 0, 6, 0 )
    10841084    ENDIF
    10851085
     
    13781378
    13791379    IF ( dots_num > dots_max )  THEN
    1380        IF ( myid == 0 )  THEN
    1381           PRINT*, '+++ user_init: number of time series quantities exceeds', &
    1382                   ' its maximum of dots_max = ', dots_max
    1383           PRINT*, '    Please increase dots_max in modules.f90.'
    1384        ENDIF
    1385        CALL local_stop
     1380       WRITE( message_string, * ) 'number of time series quantities exceeds', &
     1381                                  ' its maximum of dots_max = ', dots_max, &
     1382                                  ' &Please increase dots_max in modules.f90.'
     1383       CALL message( 'init_3d_model', 'PA0194', 1, 2, 0, 6, 0 )   
    13861384    ENDIF
    13871385
Note: See TracChangeset for help on using the changeset viewer.