#include "implicit_f.inc"
Go to the source code of this file.
◆ 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
31
32
33
34
35
36
37
38
39 USE sensor_mod
40
41
42
43#include "implicit_f.inc"
44
45
46
47 type(sensor_user_struct_), INTENT(inout) :: SENSOR_USER_STRUCT
48
49
50
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