The TELEMAC-MASCARET system
trunk
sources
utils
partel
declarations_partel.f
Go to the documentation of this file.
1
! ***************************
2
MODULE
declarations_partel
3
! ***************************
4
!
5
!
6
!***********************************************************************
7
! PARTEL 09/05/2014
8
!***********************************************************************
9
!
10
!brief Defining parameters that need to be created first because they
11
!+ could be used by any other library.
12
!
13
!history Y. AUDOUIN & J-M HERVOUET (EDF LAB, LNHE)
14
!+ 09/05/2014
15
!+ V7P0
16
!+ First version.
17
!
18
!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19
!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20
!
21
IMPLICIT NONE
22
!----------------------------------------------------------------------
23
!
24
! MAXIMUM NUMBER OF HALO, IN THE PARALLEL VERSION THE NUMBER OF HALO WILL BE DIRECTLY COMPUTED
25
INTEGER
,
PARAMETER
::
nbmaxhalo
=100000
26
!
27
INTEGER
,
PARAMETER
::
maxnproc
= 100000
! MAX PARTITION NUMBER [00000..99999]
28
INTEGER
,
PARAMETER
::
maxaddch
= 10
! MAX ADDED SUFFIX LENGTH
29
INTEGER
,
PARAMETER
::
maxvar
= 100
! MAX NUMBER OF VARIABLES
30
! Coordinates offset
31
INTEGER
x_orig
,
y_orig
32
!
33
CHARACTER(LEN=3)
::
code
=
' '
34
!
35
!-----------------------------------------------------------------------
36
!
37
END MODULE
declarations_partel
declarations_partel
Definition:
declarations_partel.f:3
declarations_partel::x_orig
integer x_orig
Definition:
declarations_partel.f:32
declarations_partel::maxnproc
integer, parameter maxnproc
Definition:
declarations_partel.f:28
declarations_partel::code
character(len=3) code
Definition:
declarations_partel.f:34
declarations_partel::nbmaxhalo
integer, parameter nbmaxhalo
Y. AUDOUIN & J-M HERVOUET (EDF LAB, LNHE) 09/05/2014 V7P0 First version.
Definition:
declarations_partel.f:26
declarations_partel::maxaddch
integer, parameter maxaddch
Definition:
declarations_partel.f:29
declarations_partel::y_orig
integer y_orig
Definition:
declarations_partel.f:32
declarations_partel::maxvar
integer, parameter maxvar
Definition:
declarations_partel.f:30