@@ -32,45 +32,45 @@ MODULE DEVICE_VARIABLES
3232! > \brief Derived type storing location and value informaton for DEVICE\%SUBDEVICE
3333
3434TYPE SUBDEVICE_TYPE
35- ! > !\ {
35+ ! > @ {
3636 ! > Intermediate value used for computing device SPATIAL_STATISTIC or TEMPORAL_STATISTIC
3737 REAL (EB) :: VALUE_1= 0._EB ,VALUE_2= 0._EB ,VALUE_3= 0._EB ,VALUE_4= 0._EB
38- ! > !\ }
39- ! > !\ {
38+ ! > @ }
39+ ! > @ {
4040 ! > Subdevice point, line, or bounding box physical coordinate (m)
4141 REAL (EB) :: X1,X2,Y1,Y2,Z1,Z2
42- ! > !\ }
42+ ! > @ }
4343 INTEGER :: MESH ! < Subdevice mesh location
44- ! > !\ {
44+ ! > @ {
4545 ! > Subdevice point, line, or bounding box grid index
4646 INTEGER :: I1=- 1 ,I2=- 1 ,J1=- 1 ,J2=- 1 ,K1=- 1 ,K2=- 1
47- ! > !\ }
47+ ! > @ }
4848 INTEGER :: N_PATH= 0 ! < Number of grid cells along subdevice path for TRANSMISSION or PATH OBSCURATION
49- ! > !\ {
49+ ! > @ {
5050 ! > Grid index for a grid cell along subdevice path for TRANSMISSION or PATH OBSCURATION
5151 INTEGER , ALLOCATABLE , DIMENSION (:) :: I_PATH,J_PATH,K_PATH
52- ! !\ }
52+ ! > @ }
5353 REAL (EB), ALLOCATABLE , DIMENSION (:) :: D_PATH
54- ! <Segment length in a grid cell along subdevice path for TRANSMISSION or PATH OBSCURATION
54+ ! < Segment length in a grid cell along subdevice path for TRANSMISSION or PATH OBSCURATION
5555END TYPE SUBDEVICE_TYPE
5656
5757! > \brief Derived type for a measurement device (DEVC)
5858
5959TYPE DEVICE_TYPE
6060 TYPE (SUBDEVICE_TYPE), ALLOCATABLE , DIMENSION (:) :: SUBDEVICE ! <Array of subdevices
6161 REAL (EB) :: T ! < Used to track time stuff for a DEVC that is part of an ASPIRATION detector.
62- ! > !\ {
62+ ! > @ {
6363 ! > Physical coordinate of a point DEVC
6464 REAL (EB) :: X,Y,Z
65- ! > !\ }
66- ! > !\ {
65+ ! > @ }
66+ ! > @ {
6767 ! > Origin of a linear array of devices
6868 REAL (EB) :: X0,Y0,Z0
69- ! > !\ }
70- ! > !\ {
69+ ! > @ }
70+ ! > @ {
7171 ! > Physical coordinates for DEVC spanning a line, plane, or volume
7272 REAL (EB) :: X1,X2,Y1,Y2,Z1,Z2
73- ! > !\ }
73+ ! > @ }
7474 REAL (EB) :: INITIAL_VALUE=- 1.E10_EB ,INSTANT_VALUE,VALUE= 0._EB ,SMOOTHED_VALUE=- 1.E10_EB ,PREVIOUS_VALUE= 0._EB , &
7575 DEPTH,TMP_L,Y_C,OBSCURATION,DELAY,ROTATION,SMOOTHING_FACTOR= 0._EB ,SMOOTHING_TIME=- 1._EB , &
7676 VALUE_1,VALUE_2,VALUE_3,VALUE_4,&
@@ -134,7 +134,7 @@ MODULE CONTROL_VARIABLES
134134
135135IMPLICIT NONE (TYPE,EXTERNAL )
136136
137- ! > !\ {
137+ ! > @ {
138138! > Parameter defining the type of control function for CONTROL\%CONTROL_INDEX
139139! When adding more functions:
140140! 1-50 are fucntions with a logical output that have only one input
@@ -150,11 +150,11 @@ MODULE CONTROL_VARIABLES
150150 CF_POWER= 201 ,CF_DIVIDE= 202 ,&
151151 CF_SUM= 301 ,CF_SUBTRACT= 302 ,CF_MULTIPLY= 303 ,CF_MIN= 304 ,CF_MAX= 305 ,&
152152 CF_PERCENTILE= 401
153- ! > !\ }
154- ! > !\ {
153+ ! > @ }
154+ ! > @ {
155155! > Parameter used to define the type of input for CONTROL\%INPUT_TYPE
156156INTEGER , PARAMETER :: DEVICE_INPUT= 1 ,CONTROL_INPUT= 2 ,CONSTANT_INPUT= 3
157- ! > !\ }
157+ ! > @ }
158158
159159INTEGER :: N_CTRL = 0 ! < Length of CONTROL
160160INTEGER :: N_CTRL_FILES = 0 ! < Number of CHID_ctrl.csv output files
@@ -183,7 +183,7 @@ MODULE CONTROL_VARIABLES
183183 INTEGER , ALLOCATABLE , DIMENSION (:) :: INPUT_TYPE
184184 ! < Array of inidicating if a specific input to a control function is a device and a control functon
185185 REAL (EB) :: SETPOINT(2 )= 1.E30_EB
186- ! <Setpoint for a control function. For a DEADBAND function contains the lower and upper bounds of the DEADBAND
186+ ! < Setpoint for a control function. For a DEADBAND function contains the lower and upper bounds of the DEADBAND
187187 REAL (EB) :: DELAY= 0._EB ! <Delay time (s) for a TIME_DELAY function
188188 REAL (EB) :: T_CHANGE= 1000000._EB ! <Time the control function changed state
189189 REAL (EB) :: CONSTANT=- 9.E30_EB ! <Value assigned to CONSTANT on a CTRL input
0 commit comments