SURFEX v7.3
General documentation of Surfex
 All Classes Files Functions Variables Typedefs
/home/dasprezs/EXPORT_v7_3/src/SURFEX/modd_flake_albedo_ref.F90
Go to the documentation of this file.
00001 ! File %M% from Library %Q%
00002 ! Version %I% from %G% extracted: %H%
00003 !------------------------------------------------------------------------------
00004 
00005 MODULE modd_flake_albedo_ref
00006 
00007 !------------------------------------------------------------------------------
00008 !
00009 ! Description:
00010 !
00011 !  This module contains "reference" values of albedo 
00012 !  for the lake water, lake ice and snow. 
00013 !  As in "flake_paramoptic_ref", two ice categories, viz. white ice and blue ice,
00014 !  and two snow categories, viz. dry snow and melting snow, are used.  
00015 !
00016 !
00017 ! Current Code Owner: DWD, Dmitrii Mironov
00018 !  Phone:  +49-69-8062 2705
00019 !  Fax:    +49-69-8062 3721
00020 !  E-mail: dmitrii.mironov@dwd.de
00021 !
00022 ! History:
00023 ! Version    Date       Name
00024 ! ---------- ---------- ----
00025 ! 1.00       2005/11/17 Dmitrii Mironov 
00026 !  Initial release 
00027 ! !VERSION!  !DATE!     <Your name>
00028 !  <Modification comments>
00029 !
00030 ! Code Description:
00031 ! Language: Fortran 90.
00032 ! Software Standards: "European Standards for Writing and
00033 ! Documenting Exchangeable Fortran 90 Code".
00034 !==============================================================================
00035 !
00036 ! Declarations:
00037 !
00038 ! Modules used:
00039 
00040 !USE modd_data_parameters, ONLY :      &
00041 !    ireals                       ,  &! KIND-type parameter for real variables 
00042 !    iintegers                        ! KIND-type parameter for "normal" integer variables  
00043 
00044 !==============================================================================
00045 
00046 IMPLICIT NONE
00047 
00048 !==============================================================================
00049 !
00050 ! Declarations
00051  
00052 !  Albedo for water, ice and snow.
00053 REAL , PARAMETER ::        
00054     albedo_water_ref       = 0.07  ,  ! Water
00055     albedo_whiteice_ref    = 0.60  ,  ! White ice
00056     albedo_blueice_ref     = 0.10  ,  ! Blue ice
00057     albedo_drysnow_ref     = 0.60  ,  ! Dry snow 
00058     albedo_meltingsnow_ref = 0.10      ! Melting snow   
00059 
00060 !  Empirical parameters.
00061 REAL , PARAMETER :: 
00062     c_albice_MR = 95.6          ! Constant in the interpolation formula for   
00063                                      ! the ice albedo (Mironov and Ritter 2004)
00064 
00065 !==============================================================================
00066 
00067 END MODULE modd_flake_albedo_ref