SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_io_surf_bin.F90
Go to the documentation of this file.
1 !SFX_LIC Copyright 1994-2014 CNRS, Meteo-France and Universite Paul Sabatier
2 !SFX_LIC This is part of the SURFEX software governed by the CeCILL-C licence
3 !SFX_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt
4 !SFX_LIC for details. version 1.
5 ! ##################
7 ! ##################
8 !
9 !!**** *MODD_IO_SURF_BIN -
10 !!
11 !! PURPOSE
12 !! -------
13 !
14 !!
15 !!** IMPLICIT ARGUMENTS
16 !! ------------------
17 !! None
18 !!
19 !! REFERENCE
20 !! ---------
21 !!
22 !! AUTHOR
23 !! ------
24 !! A. LEMONSU *Meteo France*
25 !!
26 !! MODIFICATIONS
27 !! -------------
28 !!
29 !
30 !* 0. DECLARATIONS
31 !
32 IMPLICIT NONE
33 INTEGER, DIMENSION(:), POINTER :: NMASK ! 1D mask to read only interesting
34 !$OMP THREADPRIVATE(NMASK)
35  CHARACTER(LEN=6) :: CMASK ! surface mask type
36 !$OMP THREADPRIVATE(CMASK)
37  CHARACTER(LEN=28),SAVE :: CFILEIN ='SURFIN.txt' ! Name of the input
38  CHARACTER(LEN=28),SAVE :: CFILEOUT ='SURFOUT.txt' ! Name of the input
39 INTEGER :: NFULL ! total number for points of surface
40 !$OMP THREADPRIVATE(NFULL)
41 INTEGER :: NUNIT ! logical unit of surface file
42 INTEGER :: NLUOUT ! logical unit of output file
43 !
44 END MODULE modd_io_surf_bin