OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
nodm11.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!|| nodm11 ../starter/source/materials/mat/mat011/nodm11.F
25!||--- called by ------------------------------------------------------
26!|| lectur ../starter/source/starter/lectur.F
27!||====================================================================
28 SUBROUTINE nodm11(PM,IXS,IXQ,ICODE)
29C BLOCAGE DES NOEUDS MATERIAU 11 HORS DOMAINE CALCULE
30C FP 12/97
31C-----------------------------------------------
32C I m p l i c i t T y p e s
33C-----------------------------------------------
34#include "implicit_f.inc"
35C-----------------------------------------------
36C G l o b a l P a r a m e t e r s
37C-----------------------------------------------
38#include "param_c.inc"
39#include "com01_c.inc"
40#include "com04_c.inc"
41C-----------------------------------------------
42C D u m m y A r g u m e n t s
43C-----------------------------------------------
44 INTEGER IXS(NIXS,*),IXQ(NIXQ,*),ICODE(*)
46 . pm(npropm,*)
47C-----------------------------------------------
48C L o c a l V a r i a b l e s
49C-----------------------------------------------
50 INTEGER, DIMENSION(NUMNOD) :: ITAG
51 INTEGER I,J,IC,IC1,IC2,IC3,IC4
52C=======================================================================
53 DO i=1,numnod
54 itag(i) =0
55 ENDDO
56C TAGAGE MAT 11
57 IF(n2d==0)THEN
58 DO i=1,numels
59 IF(int(pm(19,ixs(1,i)))==11) THEN
60 DO j=2,9
61 itag(ixs(j,i))=1
62 ENDDO
63 ENDIF
64 ENDDO
65 ELSE
66 DO i=1,numelq
67 IF(int(pm(19,ixq(1,i)))==11) THEN
68 DO j=2,5
69 itag(ixq(j,i))=1
70 ENDDO
71 ENDIF
72 ENDDO
73 ENDIF
74 IF(n2d==0)THEN
75 DO i=1,numels
76 IF(int(pm(19,ixs(1,i)))/=11) THEN
77 DO j=2,9
78 itag(ixs(j,i))=0
79 ENDDO
80 ENDIF
81 ENDDO
82 ELSE
83 DO i=1,numelq
84 IF(int(pm(19,ixq(1,i)))/=11) THEN
85 DO j=2,5
86 itag(ixq(j,i))=0
87 ENDDO
88 ENDIF
89 ENDDO
90 ENDIF
91C
92 DO i=1,numnod
93 IF(itag(i)==1)THEN
94 ic=icode(i)
95 ic1=ic/512
96 ic2=(ic-512*ic1)/64
97 ic3=(ic-512*ic1-64*ic2)/8
98 ic4=ic-512*ic1-64*ic2-8*ic3
99 ic1=7
100 icode(i)=ic1*512+ic2*64+ic3*8+ic4
101 ENDIF
102 ENDDO
103 RETURN
104 END
#define my_real
Definition cppsort.cpp:32
subroutine nodm11(pm, ixs, ixq, icode)
Definition nodm11.F:29