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

Go to the source code of this file.

Functions/Subroutines

subroutine wrtsqr (a, l, iform)

Function/Subroutine Documentation

◆ wrtsqr()

subroutine wrtsqr ( a,
integer l,
integer iform )

Definition at line 36 of file wrtsqr.F.

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