OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
redsqi.F
Go to the documentation of this file.
1Copyright> OpenRadioss
2Copyright> Copyright (C) 1986-2025 Altair Engineering Inc.
3Copyright>
4Copyright> This program is free software: you can redistribute it and/or modify
5Copyright> it under the terms of the GNU Affero General Public License as published by
6Copyright> the Free Software Foundation, either version 3 of the License, or
7Copyright> (at your option) any later version.
8Copyright>
9Copyright> This program is distributed in the hope that it will be useful,
10Copyright> but WITHOUT ANY WARRANTY; without even the implied warranty of
11Copyright> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12Copyright> GNU Affero General Public License for more details.
13Copyright>
14Copyright> You should have received a copy of the GNU Affero General Public License
15Copyright> along with this program. If not, see <https://www.gnu.org/licenses/>.
16Copyright>
17Copyright>
18Copyright> Commercial Alternative: Altair Radioss Software
19Copyright>
20Copyright> As an alternative to this open-source version, Altair also offers Altair Radioss
21Copyright> software under a commercial license. Contact Altair to discuss further if the
22Copyright> commercial version may interest you: https://www.altair.com/radioss/.
23!||====================================================================
24!|| redsqi ../engine/source/output/tools/redsqi.F
25!||--- called by ------------------------------------------------------
26!|| convrrest ../engine/source/output/restart/rdresb.F
27!|| dsrrest ../engine/source/output/restart/rdresb.F
28!|| eigrrest ../engine/source/output/restart/rdresb.F
29!|| fxbresb ../engine/source/output/restart/rdresb.F
30!|| fxfluxrrest ../engine/source/constraints/thermic/fxfluxrrest.F
31!|| fxtemprrest ../engine/source/output/restart/rdresb.F
32!|| nfrrest ../engine/source/output/restart/rdresb.F
33!|| radiarrest ../engine/source/output/restart/rdresb.F
34!|| rmatrrest ../engine/source/output/restart/rdresb.F
35!||--- calls -----------------------------------------------------
36!|| istr ../engine/source/tools/univ/istr.F
37!||====================================================================
38 SUBROUTINE redsqi(IA,L,IFORM)
39C-----------------------------------------------
40C I m p l i c i t T y p e s
41C-----------------------------------------------
42#include "implicit_f.inc"
43C-----------------------------------------------
44C D u m m y A r g u m e n t s
45C-----------------------------------------------
46 INTEGER L, IFORM
47 INTEGER IA(*)
48C-----------------------------------------------
49C C o m m o n B l o c k s
50C-----------------------------------------------
51#include "scr13_c.inc"
52C-----------------------------------------------
53C L o c a l V a r i a b l e s
54C-----------------------------------------------
55 INTEGER LREC, L1, L2, I
56 CHARACTER STR(10)*8
57C-----------------------------------------------
58C E x t e r n a l F u n c t i o n s
59C-----------------------------------------------
60 INTEGER ISTR
61C-----------------------------------------------
62 EXTERNAL istr
63 IF (l==0)RETURN
64 IF (mod(iform,5)==1)THEN
65 lrec=10
66 ELSE
67 lrec=2000
68 ENDIF
69C
70 l1=1
71 l2=lrec
72 1 l2=min(l,l2)
73 IF (mod(iform,5)==1)THEN
74 READ(iunit,'(10A8)') (str(i),i=1,10)
75 DO 100 i=l1,l2
76 ia(i)=istr(str(i-l1+1))
77 100 CONTINUE
78 ELSE
79 READ(iunit) (ia(i),i=l1,l2)
80 ENDIF
81 IF(l2==l)RETURN
82 l1=l2+1
83 l2=l1+lrec-1
84 GOTO 1
85 END
#define min(a, b)
Definition macros.h:20
subroutine redsqi(ia, l, iform)
Definition redsqi.F:39
integer function istr(str)
Definition istr.F:31