OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
wrtsqr.F File Reference
#include "implicit_f.inc"
#include "scr13_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 35 of file wrtsqr.F.

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