forked from sanjayg0/feappv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathumati5.f
40 lines (28 loc) · 1.23 KB
/
umati5.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
!$Id:$
subroutine umati5(vtype,vv, d, ud, n1,n3)
! * * F E A P * * A Finite Element Analysis Program
!.... Copyright (c) 1984-2024: Regents of the University of California
! All rights reserved
!-----[--.----+----.----+----.-----------------------------------------]
! Purpose: Dummy user material model routine
! Inputs:
! vtype - Name of material model
! vv(5) - Command line real data
! d(*) - Program material parameter data
! Outputs:
! ud(*) - Material parameter data for model
! n1 - Number of history items/point (time dependent)
! n3 - Number of history items/point (time independent)
!-----[--.----+----.----+----.-----------------------------------------]
implicit none
character (len=15) :: vtype
logical :: pcomp
integer :: n1,n3
real (kind=8) :: vv(5),d(*),ud(*)
! Set command name
if(pcomp(vtype,'mat5',4)) then ! Default form DO NOT CHANGE
! vtype = 'name' ! Specify 'name'
! Input user data and save in ud(*) array
else ! Perform input for user data
endif
end subroutine umati5