Changeset 2743 for palm/trunk/SOURCE/check_parameters.f90
- Timestamp:
- Jan 12, 2018 4:03:39 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r2742 r2743 25 25 ! ----------------- 26 26 ! $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 27 30 ! Enable output of surface temperature 28 31 ! … … 1047 1050 1048 1051 ! 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 1051 1055 flux_output_mode = 'dynamic' 1052 1056 ENDIF … … 3351 3355 IF ( TRIM( var ) == 'z0*' ) unit = 'm' 3352 3356 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 3353 3365 3354 3366 CASE DEFAULT
Note: See TracChangeset
for help on using the changeset viewer.