OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
spmall3.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!|| spmallb3 ../engine/source/elements/sph/spmall3.F
25!||--- called by ------------------------------------------------------
26!|| spstres ../engine/source/elements/sph/spstres.F
27!||====================================================================
28 SUBROUTINE spmallb3(
29 1 OFFG, OFF, KXSP, SPH2SOL,
30 2 LFT, LLT, ISMSTR)
31C-----------------------------------------------
32C I m p l i c i t T y p e s
33C-----------------------------------------------
34#include "implicit_f.inc"
35#include "comlock.inc"
36C-----------------------------------------------
37C C o m m o n B l o c k s
38C-----------------------------------------------
39#include "sphcom.inc"
40#include "scr17_c.inc"
41C-----------------------------------------------
42C D u m m y A r g u m e n t s
43C-----------------------------------------------
44 INTEGER, INTENT(INOUT) :: LFT
45 INTEGER, INTENT(INOUT) :: LLT
46 INTEGER, INTENT(INOUT) :: ISMSTR
47C REAL
48 INTEGER KXSP(NISP,*),SPH2SOL(*)
49 my_real
50 . offg(*),off(*)
51C-----------------------------------------------
52C L o c a l V a r i a b l e s
53C-----------------------------------------------
54 INTEGER I
55C-----------------------------------------------
56 IF(ismstr==1.OR.ismstr==3)THEN
57 DO i=lft,llt
58 IF(offg(i)>zero)offg(i)=two
59 ENDDO
60 ENDIF
61C
62 IF (nsphsol/=0) THEN
63C-- Sol2sph
64 DO i=lft,llt
65 IF (sph2sol(i)==0) THEN
66 IF(offg(i)/=zero.AND.off(i)==zero)THEN
67 kxsp(2,i)=0
68#include "lockon.inc"
69 isphbuc =1
70 idel7nok=1
71#include "lockoff.inc"
72 END IF
73 IF(off(i)<one) offg(i) = off(i)
74 ENDIF
75 ENDDO
76C
77 ELSE
78C
79 DO i=lft,llt
80 IF(offg(i)/=zero.AND.off(i)==zero)THEN
81 kxsp(2,i)=0
82#include "lockon.inc"
83 isphbuc =1
84 idel7nok=1
85#include "lockoff.inc"
86 END IF
87 IF(off(i)<one) offg(i) = off(i)
88 ENDDO
89C
90 ENDIF
91C
92 RETURN
93 END
subroutine spmallb3(offg, off, kxsp, sph2sol, lft, llt, ismstr)
Definition spmall3.F:31