forked from sanjayg0/feappv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuftyp02.f
45 lines (29 loc) · 1.03 KB
/
uftyp02.f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
!$Id:$
subroutine uftyp02(uptyp,nel,iel)
! * * F E A P * * A Finite Element Analysis Program
!.... Copyright (c) 1984-2024: Regents of the University of California
! All rights reserved
!-----[--.----+----.----+----.-----------------------------------------]
! Purpose: Set plot data for user element
! Inputs:
! uptyp - User element topology
! nel - Number of element nodes
! iel - Element routine number
! Output:
! inord - Number of plot
!-----[--.----+----.----+----.-----------------------------------------]
implicit none
include 'pdata6.h'
integer :: uptyp,nel,iel
! Plot for perspective contours: Do not change
if(nel.eq.4) then
inord(iel) = 5
ipord( 1,iel) = 1
ipord( 2,iel) = 2
ipord( 3,iel) = 4
ipord( 4,iel) = 3
ipord( 5,iel) = 1
! Plot for mesh: Set inord(iel) and ipord(i,iel)
else
endif
end subroutine uftyp02