OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
create_part_all_clause.F File Reference
#include "implicit_f.inc"
#include "com04_c.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine create_part_all_clause (clause)

Function/Subroutine Documentation

◆ create_part_all_clause()

subroutine create_part_all_clause ( type (set_) clause)

Definition at line 29 of file create_part_all_clause.F.

30C-----------------------------------------------
31C ROUTINE DESCRIPTION :
32C ===================
33C Create PART Clause from LIST
34C------------------------------------------------------------------
35C DUMMY ARGUMENTS DESCRIPTION:
36C ===================
37C
38C NAME DESCRIPTION
39C
40C CLAUSE (SET structure) Clause to be treated
41C============================================================================
42C-----------------------------------------------
43C M o d u l e s
44C-----------------------------------------------
45 USE setdef_mod
46C-----------------------------------------------
47C I m p l i c i t T y p e s
48C-----------------------------------------------
49#include "implicit_f.inc"
50C-----------------------------------------------
51C C o m m o n B l o c k s
52C-----------------------------------------------
53#include "com04_c.inc"
54C-----------------------------------------------
55C D u m m y A r g u m e n t s
56C-----------------------------------------------
57 TYPE (SET_) :: CLAUSE
58C-----------------------------------------------
59C L o c a l V a r i a b l e s
60C-----------------------------------------------
61 INTEGER I
62C=======================================================================
63
64 ! Copy in final SET
65 ! ------------------
66 clause%NB_PART = npart
67 ALLOCATE( clause%PART( npart ) )
68
69 DO i=1,npart
70 clause%PART(i) = i
71 ENDDO
72
73!---
74 RETURN