30
31
32
33 USE sensor_mod
34
35
36
37#include "implicit_f.inc"
38
39
40
41 TYPE (SENSORS_) ,INTENT(INOUT) :: SENSORS
42
43
44
45 INTEGER I
46
47 DO i=1,sensors%NSENSOR
48 sensors%SENSOR_TAB(i)%TYPE = -1
49 sensors%SENSOR_TAB(i)%SENS_ID = 0
50 sensors%SENSOR_TAB(i)%STATUS = 0
51 sensors%SENSOR_TAB(i)%TCRIT = 0
52 sensors%SENSOR_TAB(i)%TMIN = 0
53 sensors%SENSOR_TAB(i)%TDELAY = 0
54 sensors%SENSOR_TAB(i)%TSTART = 0
55 sensors%SENSOR_TAB(i)%VALUE = 0
56 sensors%SENSOR_TAB(i)%NPARI = 0
57 sensors%SENSOR_TAB(i)%NPARR = 0
58 sensors%SENSOR_TAB(i)%NVAR = 0
59 END DO
60
61 RETURN