-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdebug_mod.f
30 lines (23 loc) · 1 KB
/
debug_mod.f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
MODULE DEBUG_MOD
!... Module to store NVEL debug data
IMPLICIT NONE
!CREV Created TDH 04/01/09
!CREV Revised TDH 11/18/09
!CREV added VEDBG unit number for debugging the getvoleq subroutine
TYPE :: DEBUG_INDICATORS
LOGICAL INPUT ! LBP input debug
LOGICAL DLL ! LBP DLL debug
LOGICAL MODEL ! LBP model debug
LOGICAL ANALYSIS ! LBP analysis debug
LOGICAL EXTERNAL ! Ext subroutine call debug
LOGICAL VOLEQ ! LBP design debug
END TYPE DEBUG_INDICATORS
! CHARACTER DEBUG_FILE_NAME*160
! CHARACTER SA_DEBUG_FILE_NAME*160
! LOGICAL DEBUG_FILE_OPEN / .FALSE. /
LOGICAL ANY_DEBUG / .FALSE. /
INTEGER LUDBG / 1 / ! Debug report unit number
INTEGER VEDBG / 3 / ! Vol Eq report unit number
INTEGER LUOUT / 2 / ! Ouput report unit number
TYPE(DEBUG_INDICATORS) DEBUG
END MODULE DEBUG_MOD