!-------------------------------------- LICENCE BEGIN ------------------------------------ !Environment Canada - Atmospheric Science and Technology License/Disclaimer, ! version 3; Last Modified: May 7, 2008. !This is free but copyrighted software; you can use/redistribute/modify it under the terms !of the Environment Canada - Atmospheric Science and Technology License/Disclaimer !version 3 or (at your option) any later version that should be found at: !http://collaboration.cmc.ec.gc.ca/science/rpn.comm/license.html ! !This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; !without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. !See the above mentioned License/Disclaimer for more details. !You should have received a copy of the License/Disclaimer along with this software; !if not, you can write to: EC-RPN COMM Group, 2121 TransCanada, suite 500, Dorval (Quebec), !CANADA, H9P 1J3; or send e-mail to service.rpn@ec.gc.ca !-------------------------------------- LICENCE END --------------------------------------MODULE MODI_URBAN_SNOW_EVOL 1 ! ! ! INTERFACE ! ! SUBROUTINE URBAN_SNOW_EVOL( & PT_CANYON, PQ_CANYON, PU_CANYON, & PTS_ROOF,PTS_ROAD,PTS_WALL, & HSNOW_ROOF, & PWSNOW_ROOF, PTSNOW_ROOF, PRSNOW_ROOF, PASNOW_ROOF, & PTSSNOW_ROOF, PESNOW_ROOF, & HSNOW_ROAD, & PWSNOW_ROAD, PTSNOW_ROAD, PRSNOW_ROAD, PASNOW_ROAD, & PTSSNOW_ROAD, PESNOW_ROAD, & PPS, PTA, PQA, PRHOA, & PLW_RAD, & PSR, PZREF, PUREF, PVMOD, & PTSTEP, & PBLD_HEIGHT, & PEMIS_ROAD, PSVF_ROAD, & PEMIS_WALL, PSVF_WALL, & PDN_ROOF, PABS_SW_SNOW_ROOF, PABS_LW_SNOW_ROOF, & PDF_ROAD, PDN_ROAD, PABS_SW_SNOW_ROAD, PABS_LW_SNOW_ROAD,& PRNSNOW_ROOF, PHSNOW_ROOF, PLESNOW_ROOF, PGSNOW_ROOF, & PMELT_ROOF, & PRNSNOW_ROAD, PHSNOW_ROAD, PLESNOW_ROAD, PGSNOW_ROAD, & PMELT_ROAD, & PLW_S_TO_N ) ! ! !* 0.1 declarations of arguments ! ! REAL, DIMENSION(:), INTENT(IN) :: PT_CANYON ! canyon air temperature REAL, DIMENSION(:), INTENT(IN) :: PQ_CANYON ! canyon air specific humidity REAL, DIMENSION(:), INTENT(IN) :: PU_CANYON ! canyon hor. wind REAL, DIMENSION(:), INTENT(IN) :: PTS_ROOF ! roof surface temperature REAL, DIMENSION(:), INTENT(IN) :: PTS_ROAD ! road surface temperature REAL, DIMENSION(:), INTENT(IN) :: PTS_WALL ! wall surface temperature CHARACTER(LEN=*), INTENT(IN) :: HSNOW_ROOF ! snow roof scheme ! ! 'NONE' ! ! 'D95 ' ! ! '1-L ' CHARACTER(LEN=*), INTENT(IN) :: HSNOW_ROAD ! snow road scheme ! ! 'NONE' ! ! 'D95 ' ! ! '1-L ' REAL, DIMENSION(:,:), INTENT(INOUT) :: PWSNOW_ROOF ! snow layers reservoir REAL, DIMENSION(:,:), INTENT(INOUT) :: PTSNOW_ROOF ! snow layers temperature REAL, DIMENSION(:,:), INTENT(INOUT) :: PRSNOW_ROOF ! snow layers density REAL, DIMENSION(:), INTENT(INOUT) :: PASNOW_ROOF ! snow albedo REAL, DIMENSION(:), INTENT(INOUT) :: PESNOW_ROOF ! snow emissivity REAL, DIMENSION(:), INTENT(INOUT) :: PTSSNOW_ROOF! snow surface temperature REAL, DIMENSION(:,:), INTENT(INOUT) :: PWSNOW_ROAD ! snow layers reservoir REAL, DIMENSION(:,:), INTENT(INOUT) :: PTSNOW_ROAD ! snow layers temperature REAL, DIMENSION(:,:), INTENT(INOUT) :: PRSNOW_ROAD ! snow layers density REAL, DIMENSION(:), INTENT(INOUT) :: PASNOW_ROAD ! snow albedo REAL, DIMENSION(:), INTENT(INOUT) :: PESNOW_ROAD ! snow emissivity REAL, DIMENSION(:), INTENT(INOUT) :: PTSSNOW_ROAD! snow surface temperature REAL, DIMENSION(:), INTENT(IN) :: PPS ! pressure at the surface REAL, DIMENSION(:), INTENT(IN) :: PTA ! temperature at the lowest level REAL, DIMENSION(:), INTENT(IN) :: PQA ! specific humidity ! at the lowest level REAL, DIMENSION(:), INTENT(IN) :: PVMOD ! module of the horizontal wind REAL, DIMENSION(:), INTENT(IN) :: PRHOA ! air density at the lowest level REAL, DIMENSION(:), INTENT(IN) :: PLW_RAD ! atmospheric infrared radiation REAL, DIMENSION(:), INTENT(IN) :: PSR ! snow rate REAL, DIMENSION(:), INTENT(IN) :: PZREF ! reference height of the first ! atmospheric level (temperature) REAL, DIMENSION(:), INTENT(IN) :: PUREF ! reference height of the first ! atmospheric level (wind) ! at first atmospheric level REAL, INTENT(IN) :: PTSTEP ! time step REAL, DIMENSION(:), INTENT(IN) :: PBLD_HEIGHT ! buildings h REAL, DIMENSION(:), INTENT(IN) :: PEMIS_ROAD ! road emissivity REAL, DIMENSION(:), INTENT(IN) :: PSVF_ROAD ! road sky view factor REAL, DIMENSION(:), INTENT(IN) :: PEMIS_WALL ! wall emissivity REAL, DIMENSION(:), INTENT(IN) :: PSVF_WALL ! wall sky view factor ! REAL, DIMENSION(:), INTENT(IN) :: PDN_ROOF ! snow-covered roof frac. REAL, DIMENSION(:), INTENT(IN) :: PABS_SW_SNOW_ROOF ! SW absorbed by roof snow REAL, DIMENSION(:), INTENT(OUT) :: PABS_LW_SNOW_ROOF ! LW absorbed by roof snow REAL, DIMENSION(:), INTENT(IN) :: PDF_ROAD ! snow-free road frac. REAL, DIMENSION(:), INTENT(IN) :: PDN_ROAD ! snow-covered road frac. REAL, DIMENSION(:), INTENT(IN) :: PABS_SW_SNOW_ROAD ! SW absorbed by road snow REAL, DIMENSION(:), INTENT(OUT) :: PABS_LW_SNOW_ROAD ! LW absorbed by road snow ! REAL, DIMENSION(:), INTENT(OUT) :: PRNSNOW_ROOF ! net radiation over snow REAL, DIMENSION(:), INTENT(OUT) :: PHSNOW_ROOF ! sensible heat flux over snow REAL, DIMENSION(:), INTENT(OUT) :: PLESNOW_ROOF ! latent heat flux over snow REAL, DIMENSION(:), INTENT(OUT) :: PGSNOW_ROOF ! flux under the snow REAL, DIMENSION(:), INTENT(OUT) :: PMELT_ROOF ! snow melt REAL, DIMENSION(:), INTENT(OUT) :: PRNSNOW_ROAD ! net radiation over snow REAL, DIMENSION(:), INTENT(OUT) :: PHSNOW_ROAD ! sensible heat flux over snow REAL, DIMENSION(:), INTENT(OUT) :: PLESNOW_ROAD ! latent heat flux over snow REAL, DIMENSION(:), INTENT(OUT) :: PGSNOW_ROAD ! flux under the snow REAL, DIMENSION(:), INTENT(OUT) :: PMELT_ROAD ! snow melt ! REAL, DIMENSION(:), INTENT(OUT) :: PLW_S_TO_N ! coefficient for sky LW ! ! contribution to snow on road ! END SUBROUTINE URBAN_SNOW_EVOL ! ! ! END INTERFACE ! ! ! END MODULE MODI_URBAN_SNOW_EVOL