Ignore:
Timestamp:
Jan 18, 2021 9:22:26 AM (3 years ago)
Author:
raasch
Message:

bugfix: size of some profile arrays increased, size check for profile output added

File:
1 edited

Legend:

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

    r4828 r4844  
    2424! -----------------
    2525! $Id$
     26! size check for profile output added
     27!
     28! 4828 2021-01-05 11:21:41Z Giersch
    2629! allow prescribing initial uv_profiles AND geostrophic wind
    2730! by changing error message PA0347 to an informative message
     
    16571660
    16581661!
     1662!--    Size check. Some arrays in the netcdf interface module are internally limited to 300 elements
     1663!--    and would need to be increased for output of more than 300 profiles.
     1664       IF ( dopr_n > 300 )  THEN
     1665          message_string = 'output of more than 300 profiles requested'
     1666          CALL message( 'check_parameters', 'PA0017', 1, 2, 0, 6, 0 )
     1667       ENDIF
     1668
     1669!
    16591670!--    Determine internal profile number (for hom, homs) and store height levels
    16601671       SELECT CASE ( TRIM( data_output_pr(i) ) )
Note: See TracChangeset for help on using the changeset viewer.