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

Go to the source code of this file.

Functions/Subroutines

subroutine sensor_user_init (sensor_user_struct)

Function/Subroutine Documentation

◆ sensor_user_init()

subroutine sensor_user_init ( type(sensor_user_struct_), intent(inout) sensor_user_struct)

Definition at line 29 of file sensor_user_init.F.

30!$COMMENT
31! SENSOR_USER_INIT description
32! initialization of size of SENSOR_USER_STRUCT
33!
34! SENSOR_USER_INIT organization :
35!$ENDCOMMENT
36C-----------------------------------------------
37C M o d u l e s
38C-----------------------------------------------
39 USE sensor_mod
40C-----------------------------------------------
41C I m p l i c i t T y p e s
42C-----------------------------------------------
43#include "implicit_f.inc"
44C-----------------------------------------------
45C A r g u m e n t s
46C-----------------------------------------------
47 type(sensor_user_struct_), INTENT(inout) :: SENSOR_USER_STRUCT
48C-----------------------------------------------
49C S o u r c e L i n e s
50C-----------------------------------------------
51 sensor_user_struct%IS_USED = .false.
52
53 sensor_user_struct%NUMBER_NODE = 0
54 sensor_user_struct%NUMBER_PART = 0
55 sensor_user_struct%NUMBER_NODE_PER_PART = 0
56
57 sensor_user_struct%POINTER_NODE = 0
58 sensor_user_struct%POINTER_PART = 0
59 sensor_user_struct%POINTER_NODE_PER_PART = 0
60
61 RETURN