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

Go to the source code of this file.

Functions/Subroutines

subroutine hm_option_count (entity_type, hm_option_number)

Function/Subroutine Documentation

◆ hm_option_count()

subroutine hm_option_count ( character*(*), intent(in) entity_type,
integer, intent(out) hm_option_number )

Definition at line 104 of file hm_option_count.F.

105C-----------------------------------------------
106C ROUTINE DESCRIPTION :
107C ===================
108C COUNT NUMBER OF /ENTITY_TYPE KEYWORDS USING HM_READER
109C-----------------------------------------------
110C DUMMY ARGUMENTS DESCRIPTION:
111C ===================
112C
113C NAME DESCRIPTION
114C
115C ENTITY_TYPE KEYWORD YOU WANT TO FIND NUMBER OF OCCURRENCES
116C 'MATERIAL'
117C 'PROPERTY'
118C 'PART'
119C 'TRANSFORM'
120C 'SUBSET'
121C 'SENSOR'
122C 'INTER'
123C 'RWALL'
124C 'FAILURE'
125C 'DAMP'
126C 'GAUGE'
127C 'RBODY'
128C 'ACCEL'
129C 'BCS'
130C 'AIRBAG'
131C 'FRICTION'
132C 'UNIT'
133C ...........
134C HM_OPTION_NUMBER NUMBER OF OCCURRENCES
135C============================================================================
136C M o d u l e s
137C-----------------------------------------------
138 USE message_mod
139 USE submodel_mod
140C-----------------------------------------------
141C I m p l i c i t T y p e s
142C-----------------------------------------------
143#include "implicit_f.inc"
144C-----------------------------------------------
145C D u m m y A r g u m e n t s
146C-----------------------------------------------
147C INPUT ARGUMENTS
148 CHARACTER*(*),INTENT(IN)::ENTITY_TYPE
149C OUTPUT ARGUMENTS
150 INTEGER,INTENT(OUT)::HM_OPTION_NUMBER
151C-----------------------------------------------
152 CALL cpp_option_count(entity_type(1:len_trim(entity_type)),len_trim(entity_type),hm_option_number)
153 RETURN
154C