#include "implicit_f.inc"
Go to the source code of this file.
◆ nolib_usermat99()
| subroutine nolib_usermat99 |
( |
integer, intent(in) | ilaw_user, |
|
|
character(len=ncharline100), intent(inout) | iuser_key ) |
Definition at line 32 of file nolib_usermat99.F.
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
50
51
52
53#include "implicit_f.inc"
54
55
56
57 CHARACTER(LEN=NCHARLINE100),INTENT(INOUT) :: IUSER_KEY
58 INTEGER,INTENT(IN) :: ILAW_USER
59
60
61
62 IF(ilaw_user >= 1 .AND. ilaw_user <= 9) THEN
63 iuser_key = 'USER00'
64 WRITE(iuser_key(6:6),fmt='(I1)')ilaw_user
65 ELSEIF(ilaw_user >= 10 .AND. ilaw_user <= 99) THEN
66 iuser_key = 'USER00'
67 WRITE(iuser_key(5:6),fmt='(I2)')ilaw_user
68 ENDIF
69
70 RETURN
integer, parameter ncharline100