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

Go to the source code of this file.

Functions/Subroutines

subroutine hm_set_intv (name, ival)

Function/Subroutine Documentation

◆ hm_set_intv()

subroutine hm_set_intv ( character*50, intent(in) name,
integer, intent(in) ival )

Definition at line 30 of file hm_set_intv.F.

31C-----------------------------------------------
32C ROUTINE DESCRIPTION :
33C ===================
34C SET INTEGER DATA IDENTIFIED BY 'NAME' INTO MODEL NEUTRAL OBJECT DATABASE USING HM_READER
35C-----------------------------------------------
36C DUMMY ARGUMENTS DESCRIPTION:
37C ===================
38C
39C NAME DESCRIPTION
40C
41C NAME FIELD NAME
42C IVAL INTEGER VALUE OF THE FIELD
43C============================================================================
44C M o d u l e s
45C-----------------------------------------------
46 use, INTRINSIC :: iso_c_binding, only: c_bool
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)::NAME
58 INTEGER,INTENT(IN)::IVAL
59C-----------------------------------------------
60C L o c a l V a r i a b l e s
61C-----------------------------------------------
62 LOGICAL(KIND=C_BOOL) C_IS_AVAILABLE
63C-----------------------------------------------
64 CALL cpp_set_intv(name(1:len_trim(name)),len_trim(name),ival,c_is_available)
65C-----------------------------------------------
66 RETURN
67C