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

Go to the source code of this file.

Functions/Subroutines

subroutine hm_elem_count (elem_type, hm_elem_number, is_dyna)

Function/Subroutine Documentation

◆ hm_elem_count()

subroutine hm_elem_count ( character*(*), intent(in) elem_type,
integer, intent(out) hm_elem_number,
integer, intent(in) is_dyna )

Definition at line 32 of file hm_elem_count.F.

33C-----------------------------------------------
34C ROUTINE DESCRIPTION :
35C ===================
36C COUNT NUMBER OF /ELEM_TYPE KEYWORDS USING HM_READER
37C-----------------------------------------------
38C DUMMY ARGUMENTS DESCRIPTION:
39C ===================
40C
41C NAME DESCRIPTION
42C
43C ELEM_TYPE KEYWORD YOU WANT TO FIND NUMBER OF OCCURRENCES
44C 'SPRING'
45C 'XELEM'
46C 'BEAM'
47C 'TRUSS'
48C 'SH3N'
49C 'SHELL'
50C 'TETRA4'
51C 'PENTA6'
52C 'BRICK'
53C 'TETRA10'
54C 'BRICK20'
55C ...........
56C HM_ELEM_NUMBER NUMBER OF OCCURRENCES
57C============================================================================
58C M o d u l e s
59C-----------------------------------------------
60 USE message_mod
61 USE submodel_mod
62C-----------------------------------------------
63C I m p l i c i t T y p e s
64C-----------------------------------------------
65#include "implicit_f.inc"
66C-----------------------------------------------
67C D u m m y A r g u m e n t s
68C-----------------------------------------------
69C INPUT ARGUMENTS
70 CHARACTER*(*),INTENT(IN)::ELEM_TYPE
71 INTEGER,INTENT(IN)::IS_DYNA
72C OUTPUT ARGUMENTS
73 INTEGER,INTENT(OUT)::HM_ELEM_NUMBER
74C-----------------------------------------------
75 CALL cpp_elem_count(elem_type(1:len_trim(elem_type)),len_trim(elem_type),hm_elem_number,is_dyna)
76 RETURN
77C