Changeset 4050
- Timestamp:
- Jun 24, 2019 1:57:27 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/urban_surface_mod.f90
r3993 r4050 23 23 ! Current revisions: 24 24 ! ------------------ 25 ! 25 ! Remove work-around for green surface fraction on buildings 26 ! (do not set it zero) 26 27 ! 27 28 ! Former revisions: … … 5058 5059 ENDDO 5059 5060 ENDDO 5060 !5061 !-- Just a work-around: Set green fraction on roof to zero (in favor of5062 !-- wall fraction). The green-heat model crashes due to some unknown reason.5063 !-- To be removed later.5064 DO m = 1, surf_usm_h%ns5065 IF ( surf_usm_h%frac(ind_pav_green,m) > 0.0_wp ) THEN5066 surf_usm_h%frac(ind_veg_wall,m) = surf_usm_h%frac(ind_veg_wall,m)&5067 + surf_usm_h%frac(ind_pav_green,m)5068 surf_usm_h%frac(ind_pav_green,m) = 0.0_wp5069 ENDIF5070 ENDDO5071 DO l = 0, 35072 DO m = 1, surf_usm_v(l)%ns5073 IF ( surf_usm_v(l)%frac(ind_pav_green,m) > 0.0_wp ) THEN5074 surf_usm_v(l)%frac(ind_veg_wall,m) = &5075 surf_usm_v(l)%frac(ind_veg_wall,m)&5076 + surf_usm_v(l)%frac(ind_pav_green,m)5077 surf_usm_v(l)%frac(ind_pav_green,m) = 0.0_wp5078 ENDIF5079 ENDDO5080 ENDDO5081 5082 5061 ! 5083 5062 !-- Intitialization of the surface and wall/ground/roof temperature
Note: See TracChangeset
for help on using the changeset viewer.