OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
connesurf.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!|| connesurf ../starter/source/initial_conditions/inivol/connesurf.F
25!||--- called by ------------------------------------------------------
26!|| init_inivol ../starter/source/initial_conditions/inivol/init_inivol.F90
27!||====================================================================
28 SUBROUTINE connesurf(NUMNOD, NSEG, SURF_NODES ,KNOD2SURF,NNOD2SURF)
29C-----------------------------------------------
30C I m p l i c i t T y p e s
31C-----------------------------------------------
32#include "implicit_f.inc"
33C-----------------------------------------------
34C D u m m y A r g u m e n t s
35C-----------------------------------------------
36 INTEGER,INTENT(IN) :: NUMNOD
37 INTEGER KNOD2SURF(NUMNOD+1),NNOD2SURF,NSEG,SURF_NODES(NSEG,4)
38C-----------------------------------------------
39C L o c a l V a r i a b l e s
40C-----------------------------------------------
41 INTEGER I,K,N,IN(4)
42C-----------------------------------------------
43C Connect segments of surf (just for intersection treatment)
44C-----------------------------------------------
45 DO i=1,nseg
46 in(1) = surf_nodes(i,1)
47 in(2) = surf_nodes(i,2)
48 in(3) = surf_nodes(i,3)
49 in(4) = surf_nodes(i,4)
50C
51 DO k=1,4
52 n = in(k)
53 knod2surf(n) = knod2surf(n) + 1
54 END DO
55 ENDDO
56C
57 DO i=1,nseg
58 in(1) = surf_nodes(i,1)
59 in(2) = surf_nodes(i,2)
60 in(3) = surf_nodes(i,3)
61 in(4) = surf_nodes(i,4)
62 DO k=1,4
63 n = in(k)
64 nnod2surf = max(nnod2surf,knod2surf(n))
65 END DO
66 ENDDO
67!---
68 RETURN
69 END
subroutine connesurf(numnod, nseg, surf_nodes, knod2surf, nnod2surf)
Definition connesurf.F:29
#define max(a, b)
Definition macros.h:21