SURFEX v7.3
General documentation of Surfex
 All Classes Files Functions Variables Typedefs
/home/dasprezs/EXPORT_v7_3/src/SURFEX/modd_data_parameters.F90
Go to the documentation of this file.
00001 ! File %M% from Library %Q%
00002 ! Version %I% from %G% extracted: %H%
00003 !+ Data module for global parameters
00004 !-------------------------------------------------------------------------------
00005 
00006 MODULE modd_data_parameters
00007 
00008 !-------------------------------------------------------------------------------
00009 !
00010 ! Description:
00011 !  Global parameters for the program are defined.
00012 !
00013 ! Current Code Owner: DWD, Ulrich Schaettler
00014 !  phone:  +49  69  8062 2739
00015 !  fax:    +49  69  8236 1493
00016 !  email:  uschaettler@dwd.d400.de
00017 !
00018 ! History:
00019 ! Version    Date       Name
00020 ! ---------- ---------- ----
00021 ! 1.1        1998/03/11 Ulrich Schaettler
00022 !  Initial release
00023 ! 1.8        1998/08/03 Ulrich Schaettler
00024 !  Eliminated intgribf, intgribc, irealgrib, iwlength and put it to data_io.
00025 ! 1.10       1998/09/29 Ulrich Schaettler
00026 !  Eliminated parameters for grid point and diagnostic calculations.
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 
00041 IMPLICIT NONE
00042 
00043 !=======================================================================
00044 ! Global (i.e. public) Declarations:
00045 ! Parameters for the Program:
00046 
00047   INTEGER, PARAMETER       ::                                         
00048          ireals    = SELECTED_REAL_KIND (12,200),                       
00049                      ! number of desired significant digits for
00050                      ! real variables
00051                      ! corresponds to 8 byte real variables
00052          iintegers = KIND  (1)  
00053                      ! kind-type parameter of the integer values
00054                      ! corresponds to the default integers
00055 
00056 !=======================================================================
00057 
00058 END MODULE modd_data_parameters
00059