forked from sanjayg0/feappv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathumesh4.f
42 lines (28 loc) · 1.22 KB
/
umesh4.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
!$Id:$
subroutine umesh4(tx,prt)
! * * 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 input routine
! Inputs:
! tx(*) - Command line input data
! prt - Flag, output results if true
! Outputs:
! none - Users are responsible for generating outputs
! through common blocks, etc. See programmer
! manual for example.
!-----[--.----+----.----+----.-----------------------------------------]
implicit none
include 'umac1.h'
character (len=15) :: tx(*)
logical :: prt,pcomp
! Set command
if(pcomp(uct,'mes4',4)) then ! Usual form
! uct = 'name' ! Specify 'name'
elseif(ucount) then ! Count elements and nodes
elseif(urest.eq.1) then ! Read restart data
elseif(urest.eq.2) then ! Write restart data
else ! Perform user operation
endif
end subroutine umesh4