Ignore:
Timestamp:
May 9, 2014 2:25:13 PM (10 years ago)
Author:
raasch
Message:

output of location messages complemented, output of location bar added
(Makefile, check_parameters, cpulog, init_pegrid, init_3d_model, message, palm, parin, time_integration, new: progress_bar)
preprocessor switch intel_compiler added, -r8 compiler options removed
(.mrun.config.default, .mrun.config.imuk, .mrun.config.kiaps)

batch_job added to envpar-NAMELIST
(mrun, parin)

File:
1 edited

Legend:

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

    r1401 r1402  
    2020! Current revisions:
    2121! ------------------
    22 !
     22! location messages modified
    2323!
    2424! Former revisions:
     
    234234
    235235
    236     CALL location_message( 'allocating arrays' )
     236    CALL location_message( 'allocating arrays', .FALSE. )
    237237!
    238238!-- Allocate arrays
     
    612612    intermediate_timestep_count = 1  ! needed when simulated_time = 0.0
    613613       
    614     CALL location_message( 'finished' )
     614    CALL location_message( 'finished', .TRUE. )
    615615!
    616616!-- Initialize model variables
     
    622622       IF ( INDEX( initializing_actions, 'set_1d-model_profiles' ) /= 0 )  THEN
    623623
    624           CALL location_message( 'initializing with 1D model profiles' )
     624          CALL location_message( 'initializing with 1D model profiles', .FALSE. )
    625625!
    626626!--       Use solutions of the 1D model as initial profiles,
     
    741741          ENDIF
    742742
    743           CALL location_message( 'finished' )
     743          CALL location_message( 'finished', .TRUE. )
    744744
    745745       ELSEIF ( INDEX(initializing_actions, 'set_constant_profiles') /= 0 ) &
    746746       THEN
    747747
    748           CALL location_message( 'initializing with constant profiles' )
     748          CALL location_message( 'initializing with constant profiles', .FALSE. )
    749749!
    750750!--       Overwrite initial profiles in case of nudging
     
    855855          IF ( sloping_surface )  CALL init_slope
    856856
    857           CALL location_message( 'finished' )
     857          CALL location_message( 'finished', .TRUE. )
    858858
    859859       ELSEIF ( INDEX(initializing_actions, 'by_user') /= 0 ) &
    860860       THEN
    861861
    862           CALL location_message( 'initializing by user' )
     862          CALL location_message( 'initializing by user', .FALSE. )
    863863!
    864864!--       Initialization will completely be done by the user
    865865          CALL user_init_3d_model
    866866
    867           CALL location_message( 'finished' )
    868 
    869        ENDIF
    870 
    871        CALL location_message( 'initializing statistics, boundary conditions, etc.' )
     867          CALL location_message( 'finished', .TRUE. )
     868
     869       ENDIF
     870
     871       CALL location_message( 'initializing statistics, boundary conditions, etc.', &
     872                              .FALSE. )
    872873
    873874!
     
    11581159       ENDIF
    11591160       
    1160        CALL location_message( 'finished' )
     1161       CALL location_message( 'finished', .TRUE. )
    11611162
    11621163    ELSEIF ( TRIM( initializing_actions ) == 'read_restart_data'  .OR.    &
     
    11641165    THEN
    11651166
    1166        CALL location_message( 'initializing in case of restart / cyclic_fill' )
     1167       CALL location_message( 'initializing in case of restart / cyclic_fill', &
     1168                              .FALSE. )
    11671169!
    11681170!--    When reading data for cyclic fill of 3D prerun data files, read
     
    13491351       IF ( ocean )  tsa_m = 0.0_wp
    13501352
    1351        CALL location_message( 'finished' )
     1353       CALL location_message( 'finished', .TRUE. )
    13521354
    13531355    ELSE
     
    15201522         TRIM( initializing_actions ) /= 'cyclic_fill' )  THEN
    15211523
    1522        CALL location_message( 'creating initial disturbances' )
     1524       CALL location_message( 'creating initial disturbances', .FALSE. )
    15231525       CALL disturb_field( nzb_u_inner, tend, u )
    15241526       CALL disturb_field( nzb_v_inner, tend, v )
    1525        CALL location_message( 'finished' )
    1526 
    1527        CALL location_message( 'calling pressure solver' )
     1527       CALL location_message( 'finished', .TRUE. )
     1528
     1529       CALL location_message( 'calling pressure solver', .FALSE. )
    15281530       n_sor = nsor_ini
    15291531       !$acc data copyin( d, ddzu, ddzw, nzb_s_inner, nzb_u_inner )            &
     
    15341536       !$acc end data
    15351537       n_sor = nsor
    1536        CALL location_message( 'finished' )
     1538       CALL location_message( 'finished', .TRUE. )
    15371539
    15381540    ENDIF
     
    19081910    DEALLOCATE( ngp_2dh_l, ngp_2dh_outer_l, ngp_3d_inner_l, ngp_3d_inner_tmp )
    19091911
    1910     CALL location_message( 'leaving init_3d_model' )
     1912    CALL location_message( 'leaving init_3d_model', .TRUE. )
    19111913
    19121914 END SUBROUTINE init_3d_model
Note: See TracChangeset for help on using the changeset viewer.