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

Go to the source code of this file.

Functions/Subroutines

subroutine wrtsqi (ia, l, iform)

Function/Subroutine Documentation

◆ wrtsqi()

subroutine wrtsqi ( integer, dimension(*) ia,
integer l,
integer iform )

Definition at line 33 of file wrtsqi.F.

34C-----------------------------------------------
35C I m p l i c i t T y p e s
36C-----------------------------------------------
37#include "implicit_f.inc"
38C-----------------------------------------------
39C D u m m y A r g u m e n t s
40C-----------------------------------------------
41 INTEGER L, IFORM
42 INTEGER IA(*)
43C-----------------------------------------------
44C C o m m o n B l o c k s
45C-----------------------------------------------
46#include "scr13_c.inc"
47C-----------------------------------------------
48C L o c a l V a r i a b l e s
49C-----------------------------------------------
50 INTEGER LREC, L1, L2, II, I
51 CHARACTER CH8(10)*8
52C-----------------------------------------------
53C E x t e r n a l F u n c t i o n s
54C-----------------------------------------------
55 CHARACTER STRI*8
56C-----------------------------------------------
57 EXTERNAL stri
58 IF (l==0)RETURN
59 IF (iform/5==1)THEN
60 lrec=10
61 ELSE
62 lrec=2000
63 ENDIF
64C
65 l1=1
66 l2=lrec
67
68 DO WHILE(l2/=l)
69 l2=min(l,l2)
70 IF (iform/5==1)THEN
71 ii=0
72 DO i=l1,l2
73 ii=ii+1
74 ch8(ii)=stri(ia(i))
75 ENDDO
76 WRITE(iunit,'(10A8)') (ch8(i),i=1,ii)
77 ELSE
78 WRITE(iunit) (ia(i),i=l1,l2)
79 ENDIF
80 IF(l2==l)EXIT
81 l1=l2+1
82 l2=l1+lrec-1
83 ENDDO
84
#define min(a, b)
Definition macros.h:20
character *8 function stri(n)
Definition stri.F:24