Ignore:
Timestamp:
Apr 22, 2020 6:21:45 PM (4 years ago)
Author:
gronemeier
Message:

netcdf_data_input_mod:

  • bugfix: check terrain height for fill values directly after reading (PA0550)
  • changes:
    • remove check for negative zt (PA0551)
    • add reference height from input file to PALM reference height (origin_z)

init_grid:

  • update origin_z with shifting height of orography (oro_min)
  • remove message PA0505
File:
1 edited

Legend:

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

    r4457 r4507  
    2525! -----------------
    2626! $Id$
     27! - bugfix: check terrain height for fill values directly after reading
     28! - changes:
     29!   - remove check for negative zt
     30!   - add reference height from input file upon PALM reference height (origin_z)
     31!
     32! 4457 2020-03-11 14:20:43Z raasch
    2733! use statement for exchange horiz added,
    2834! bugfixes for calls of exchange horiz 2d
     
    988994!
    989995!--    Copy latitude, longitude, origin_z, rotation angle on init type
     996!--    NOTE: A shifting height might have already been saved to orgin_z in
     997!--    init_grid; therefore, do not override but add the reference height from
     998!--    the input file.
    990999       init_model%latitude        = input_file_atts%origin_lat
    9911000       init_model%longitude       = input_file_atts%origin_lon
     
    9931002       init_model%origin_x        = input_file_atts%origin_x
    9941003       init_model%origin_y        = input_file_atts%origin_y
    995        init_model%origin_z        = input_file_atts%origin_z 
     1004       init_model%origin_z        = init_model%origin_z + input_file_atts%origin_z
    9961005       init_model%rotation_angle  = input_file_atts%rotation_angle 
    9971006
     
    25532562          ENDIF
    25542563       ENDIF
    2555 !
    2556 !--    In case no terrain height is provided by static input file, allocate
    2557 !--    array nevertheless and set terrain height to 0, which simplifies
    2558 !--    topography initialization.
    2559        IF ( .NOT. terrain_height_f%from_file )  THEN
     2564
     2565       IF ( terrain_height_f%from_file )  THEN
     2566!
     2567!--       Check orography for fill-values.
     2568!--       For the moment, give an error message. More advanced methods, e.g. a
     2569!--       nearest neighbor algorithm as used in GIS systems might be implemented
     2570!--       later.
     2571!--       NOTE: This check must be placed here as terrain_height_f is altered
     2572!--       within init_grid which is called before netcdf_data_input_check_static
     2573          IF ( ANY( terrain_height_f%var == terrain_height_f%fill ) )  THEN
     2574             message_string = 'NetCDF variable zt is not ' //                  &
     2575                              'allowed to have missing data'
     2576             CALL message( 'netcdf_data_input_mod', 'PA0550', 2, 2, myid, 6, 0 )
     2577          ENDIF
     2578       ELSE
     2579!
     2580!--       In case no terrain height is provided by static input file, allocate
     2581!--       array nevertheless and set terrain height to 0, which simplifies
     2582!--       topography initialization.
    25602583          ALLOCATE ( terrain_height_f%var(nys:nyn,nxl:nxr) )
    25612584          terrain_height_f%var = 0.0_wp
     
    31613184             CALL message( 'netcdf_data_input_mod', 'PA0580', 1, 2, 0, 6, 0 )
    31623185          ENDIF
    3163        ENDIF
    3164 !
    3165 !--    Check orography for fill-values. For the moment, give an error message.
    3166 !--    More advanced methods, e.g. a nearest neighbor algorithm as used in GIS
    3167 !--    systems might be implemented later.
    3168 !--    Please note, if no terrain height is provided, it is set to 0.
    3169        IF ( ANY( terrain_height_f%var == terrain_height_f%fill ) )  THEN
    3170           message_string = 'NetCDF variable zt is not ' //                     &
    3171                            'allowed to have missing data'
    3172           CALL message( 'netcdf_data_input_mod', 'PA0550', 2, 2, myid, 6, 0 )
    3173        ENDIF
    3174 !
    3175 !--    Check for negative terrain heights
    3176        IF ( ANY( terrain_height_f%var < 0.0_wp ) )  THEN
    3177           message_string = 'NetCDF variable zt is not ' //                     &
    3178                            'allowed to have negative values'
    3179           CALL message( 'netcdf_data_input_mod', 'PA0551', 2, 2, myid, 6, 0 )
    31803186       ENDIF
    31813187!
Note: See TracChangeset for help on using the changeset viewer.