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

Go to the source code of this file.

Functions/Subroutines

character *8 function stri (n)

Function/Subroutine Documentation

◆ stri()

character*8 function stri ( integer n)

Definition at line 23 of file stri.F.

24C-----------------------------------------------
25C I m p l i c i t T y p e s
26C-----------------------------------------------
27#include "implicit_f.inc"
28C-----------------------------------------------
29C D u m m y A r g u m e n t s
30C-----------------------------------------------
31 INTEGER N
32C-----------------------------------------------
33C C o m m o n B l o c k s
34C-----------------------------------------------
35#include "chrasc_c.inc"
36C-----------------------------------------------
37C L o c a l V a r i a b l e s
38C-----------------------------------------------
39 INTEGER NN, IS, MANT1, MANT2, MANT3, MANT4, MANT12, MANT21,
40 . MANT22, MANT31, MANT32, MANT41, MANT42
41C-----------------------------------------------
42 IF(n>=0)THEN
43 nn=n
44 is=0
45 ELSE
46 nn=-n
47 is=1
48 ENDIF
49 mant1=nn/1000000000
50 nn =nn-1000000000*mant1
51 mant2=nn/1000000
52 nn =nn-1000000*mant2
53 mant3=nn/1000
54 mant4=nn-1000*mant3
55C
56 mant12=mant1+16*is
57 mant21=mant2/32
58 mant22=mant2-32*mant21
59 mant31=mant3/32
60 mant32=mant3-32*mant31
61 mant41=mant4/32
62 mant42=mant4-32*mant41
63C
64 stri(1:1)='0'
65 stri(2:2)=codas(mant12)
66 stri(3:3)=codas(mant21)
67 stri(4:4)=codas(mant22)
68 stri(5:5)=codas(mant31)
69 stri(6:6)=codas(mant32)
70 stri(7:7)=codas(mant41)
71 stri(8:8)=codas(mant42)
72C
73 RETURN
character *8 function stri(n)
Definition stri.F:24