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

Go to the source code of this file.

Functions/Subroutines

subroutine hm_select_option_by_name (entity_type, name_param, sub_index)

Function/Subroutine Documentation

◆ hm_select_option_by_name()

subroutine hm_select_option_by_name ( character*50, intent(in) entity_type,
character*50, intent(in) name_param,
integer, intent(in) sub_index )

Definition at line 30 of file hm_select_option_by_name.F.

31C-----------------------------------------------
32C ROUTINE DESCRIPTION :
33C ===================
34C SELECT OPTION BY NAME
35C-----------------------------------------------
36C DUMMY ARGUMENTS DESCRIPTION:
37C ===================
38C
39C NAME DESCRIPTION
40C
41C ENTITY_TYPE KEYWORD SELECT
42C NAME_PARAM NAME OF THE OPTION TO SELECT
43C SUB_INDEX SUBMODEL INDEX OF THE OPTION TO SELECT
44C============================================================================
45C M o d u l e s
46C-----------------------------------------------
47 USE message_mod
48 USE submodel_mod
49C-----------------------------------------------
50C I m p l i c i t T y p e s
51C-----------------------------------------------
52#include "implicit_f.inc"
53C-----------------------------------------------
54C D u m m y A r g u m e n t s
55C-----------------------------------------------
56C INPUT ARGUMENTS
57 CHARACTER*50,INTENT(IN)::ENTITY_TYPE,NAME_PARAM
58 INTEGER,INTENT(IN)::SUB_INDEX
59C=======================================================================
60 CALL cpp_select_option_by_name(entity_type(1:len_trim(entity_type)),len_trim(entity_type),
61 . name_param(1:len_trim(name_param)),len_trim(name_param),sub_index )
62 RETURN
63C