forked from sanjayg0/feappv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelmt04.f
27 lines (20 loc) · 849 Bytes
/
elmt04.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
!$Id:$
subroutine elmt04(d,ul,xl,ix,tl,s,p,ndf,ndm,nst,isw)
! * * F E A P * * A Finite Element Analysis Program
!.... Copyright (c) 1984-2024: Regents of the University of California
! All rights reserved
implicit none
include 'eldata.h'
include 'umac1.h' ! utx(1)
integer :: ndf , ndm , nst , isw
integer :: ix(*)
real (kind=8) :: d(*), ul(*), xl(*), tl(*), s(*), p(*)
if(isw.lt.0) then
! utx(1) = 'Name_U_Want' ! 15 character naming option
! ! Access: MATErial "ma"
! ! Name_U_Want (instead of USER 4)
elseif(isw.gt.0) then
write(*,2000)
endif
2000 format(' Elmt 04: *WARNING* Dummy subroutine called')
end subroutine elmt04