OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
sensor_tab_init.F File Reference
#include "implicit_f.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine sensor_tab_init (sensors)

Function/Subroutine Documentation

◆ sensor_tab_init()

subroutine sensor_tab_init ( type (sensors_), intent(inout) sensors)

Definition at line 29 of file sensor_tab_init.F.

30C-----------------------------------------------
31C M o d u l e s
32C-----------------------------------------------
33 USE sensor_mod
34C-----------------------------------------------
35C I m p l i c i t T y p e s
36C-----------------------------------------------
37#include "implicit_f.inc"
38C-----------------------------------------------
39C D u m m y A r g u m e n t s
40C-----------------------------------------------
41 TYPE (SENSORS_) ,INTENT(INOUT) :: SENSORS
42C-----------------------------------------------
43C L o c a l V a r i a b l e s
44C-----------------------------------------------
45 INTEGER I
46C=======================================================================
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
60C------------
61 RETURN