The TELEMAC-MASCARET system
trunk
sources
sisyphe
cvsp_db.f
Go to the documentation of this file.
1
! ************************
2
LOGICAL
FUNCTION
cvsp_db
3
! ************************
4
!
5
&(j_global, timestamp)
6
!
7
!***********************************************************************
8
! SISYPHE V7P2 16/05/2017
9
!***********************************************************************
10
!
11
!brief Checks if a certain Point should be debugged and printed for this timestep
12
!+ Routine for USER DEFINED SUPERVISION OF POINTS
13
!+
14
!
15
!history UWE MERKEL, R. KOPMANN (BAW)
16
!+ 2016, 2017
17
!
18
!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19
!| J_GLOBAL |<--| POINT ID
20
!| TIMESTAMP |<--| TIMESTEP ID
21
!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
22
!
23
! USE DECLARATIONS_SISYPHE, ONLY: MESH, CVSM_OUT, LT, ENTET
24
!
25
IMPLICIT NONE
26
!
27
INTEGER
,
INTENT(IN)
:: J_GLOBAL
28
INTEGER
,
INTENT(IN)
:: TIMESTAMP
29
!
30
cvsp_db
= .false.
31
32
CALL
user_cvsp_db
(
cvsp_db
,j_global, timestamp)
33
!
34
END FUNCTION
cvsp_db
cvsp_db
logical function cvsp_db(J_GLOBAL, TIMESTAMP)
Definition:
cvsp_db.f:7
user_cvsp_db
subroutine user_cvsp_db(CVSP_DB, J_GLOBAL, TIMESTAMP)
Definition:
user_cvsp_db.f:7