Ignore:
Timestamp:
Jan 12, 2018 4:03:39 PM (7 years ago)
Author:
suehring
Message:

In case of natural- and urban-type surfaces output surfaces fluxes in W/m2

File:
1 edited

Legend:

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

    r2742 r2743  
    2525! -----------------
    2626! $Id$
     27! In case of natural- and urban-type surfaces output surfaces fluxes in W/m2.
     28!
     29! 2742 2018-01-12 14:59:47Z suehring
    2730! Enable output of surface temperature
    2831!
     
    10471050
    10481051!
    1049 !-- When the land surface model is used, the flux output must be dynamic.
    1050     IF ( land_surface )  THEN
     1052!-- When the land- or urban-surface model is used, the flux output must be
     1053!-- dynamic.
     1054    IF ( land_surface  .OR.  urban_surface )  THEN
    10511055       flux_output_mode = 'dynamic'
    10521056    ENDIF
     
    33513355             IF ( TRIM( var ) == 'z0*'    )  unit = 'm'
    33523356             IF ( TRIM( var ) == 'z0h*'   )  unit = 'm'
     3357!
     3358!--          Output of surface latent and sensible heat flux will be in W/m2
     3359!--          in case of natural- and urban-type surfaces, even if
     3360!--          flux_output_mode is set to kinematic units.
     3361             IF ( land_surface  .OR.  urban_surface )  THEN
     3362                IF ( TRIM( var ) == 'shf*'   )  unit = 'W/m2'
     3363                IF ( TRIM( var ) == 'qsws*'  )  unit = 'W/m2'
     3364             ENDIF
    33533365
    33543366          CASE DEFAULT
Note: See TracChangeset for help on using the changeset viewer.