forked from sanjayg0/feappv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuplot5.f
38 lines (25 loc) · 937 Bytes
/
uplot5.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
!$Id:$
subroutine uplot5(ctl)
! * * 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 plot routine
! Inputs:
! ctl(3) - Parameters for plots
! Outputs:
! none - Users are responsible for generating outputs
! through common blocks, etc. See programmer
! manual for example.
!-----[--.----+----.----+----.-----------------------------------------]
implicit none
include 'umac1.h' ! uct
logical :: pcomp
real (kind=8) :: ctl(3)
! Provide user plot name
if (pcomp(uct,'plt5',4)) then
! uct = 'name'
! Perform user plot function
else
end if
end subroutine uplot5