Ignore:
Timestamp:
Aug 26, 2019 12:43:15 PM (5 years ago)
Author:
suehring
Message:

radiation: Take external radiation input from root domain dynamic file if no dynamic input file is provided for each nested domain; radiation: Combine MPI_ALLREDUCE calls to reduce latency; land_surface + plant_canopy: Give specific error numbers; land-surface: Adjust error messages for local checks; init_3d_model: Deallocate temporary string array for netcdf-data input since it may be re-used in other modules for different input files

File:
1 edited

Legend:

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

    r4182 r4187  
    2727! -----------------
    2828! $Id$
     29! Give specific error numbers instead of PA0999
     30!
     31! 4182 2019-08-22 15:20:23Z scharf
    2932! Corrected "Former revisions" section
    3033!
     
    430433                           TRIM( coupling_char ) // ' requires ' //            &
    431434                           'canopy_mode = read_from_file_3d'
    432           CALL message( 'pcm_check_parameters', 'PA0999', 1, 2, 0, 6, 0 )
     435          CALL message( 'pcm_check_parameters', 'PA0673', 1, 2, 0, 6, 0 )
    433436       ENDIF
    434437
     
    10661069                   ENDDO
    10671070                ENDDO
     1071               
    10681072                CALL exchange_horiz( lad_s, nbgp )
    10691073!
     
    10911095       ALLOCATE( pch_index_ji(nysg:nyng,nxlg:nxrg) )
    10921096       pch_index_ji = 0
    1093 
     1097       
    10941098       DO  i = nxl, nxr
    10951099          DO  j = nys, nyn
     
    11041108                message_string =  'Local vegetation height on top of ' //      &
    11051109                                  'topography exceeds height of model domain.'
    1106                 CALL message( 'pcm_init', 'PA0999', 2, 2, 0, 6, 0 )
     1110                CALL message( 'pcm_init', 'PA0674', 2, 2, 0, 6, 0 )
    11071111             ENDIF
    11081112
     
    11141118!--    Calculate global pch_index value (index of top of plant canopy from ground)
    11151119       pch_index = MAXVAL( pch_index_ji )
     1120       
     1121       
    11161122!
    11171123!--    Exchange pch_index from all processors
     
    11291135          pc_latent_rate = 0.0_wp
    11301136       ENDIF
    1131 
    11321137!
    11331138!--    Initialization of the canopy heat source distribution due to heating
Note: See TracChangeset for help on using the changeset viewer.