OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
deallocate_joint.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!|| deallocate_joint ../starter/source/constraints/general/cyl_joint/deallocate_joint.F
25!||--- called by ------------------------------------------------------
26!|| lectur ../starter/source/starter/lectur.F
27!||--- uses -----------------------------------------------------
28!|| joint_mod ../starter/share/modules1/joint_mod.F
29!||====================================================================
30 SUBROUTINE deallocate_joint( )
31!$COMMENT
32! DEALLOCATE_JOINT description
33! deallocation of the joint structure
34!
35! DEALLOCATE_JOINT organization :
36!$ENDCOMMENT
37C-----------------------------------------------
38C M o d u l e s
39C-----------------------------------------------
40 USE joint_mod
41C-----------------------------------------------
42C I m p l i c i t T y p e s
43C-----------------------------------------------
44#include "implicit_f.inc"
45C-----------------------------------------------
46C C o m m o n B l o c k s
47C-----------------------------------------------
48#include "com04_c.inc"
49#include "com01_c.inc"
50C-----------------------------------------------
51C L o c a l V a r i a b l e s
52C-----------------------------------------------
53 INTEGER N,I
54C
55 ! ----------------------
56 DO n=1,njoint
57 IF(ALLOCATED(cyl_join(n)%NB_NODE)) DEALLOCATE(cyl_join(n)%NB_NODE)
58 IF(ALLOCATED(cyl_join(n)%MAIN_NODE)) DEALLOCATE(cyl_join(n)%MAIN_NODE)
59 IF(ALLOCATED(cyl_join(n)%LIST_PROC)) DEALLOCATE(cyl_join(n)%LIST_PROC)
60 DO i=1,nspmd
61 IF(ALLOCATED(cyl_join(n)%PROC(i)%NODE)) DEALLOCATE(cyl_join(n)%PROC(i)%NODE)
62 ENDDO
63 IF(ALLOCATED(cyl_join(n)%PROC)) DEALLOCATE(cyl_join(n)%PROC)
64 IF(ALLOCATED(cyl_join(n)%SECONDARY_NODE)) DEALLOCATE(cyl_join(n)%SECONDARY_NODE)
65 ENDDO
66 ! ----------------------
67 IF( ALLOCATED(cyl_join) ) DEALLOCATE(cyl_join)
68C
69 RETURN
70 END SUBROUTINE deallocate_joint
type(joint_type), dimension(:), allocatable cyl_join
Definition joint_mod.F:61
subroutine deallocate_joint()