-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeammpc.f
138 lines (138 loc) · 3.97 KB
/
beammpc.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
!
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2021 Guido Dhondt
!
! This program is free software; you can redistribute it and/or
! modify it under the terms of the GNU General Public License as
! published by the Free Software Foundation(version 2);
!
!
! This program is distributed in the hope that it will be useful,
! but WITHOUT ANY WARRANTY; without even the implied warranty of
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
! GNU General Public License for more details.
!
! You should have received a copy of the GNU General Public License
! along with this program; if not, write to the Free Software
! Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
!
subroutine beammpc(ipompc,nodempc,
& labmpc,nmpc,nmpc_,mpcfree,ikmpc,ilmpc,nk,nk_,nodeboun,ndirboun,
& ikboun,ilboun,nboun,nboun_,inode,node,co,typeboun)
!
! generates an MPC for two nodes staying on a constant distance
! from each other. The parameter inode indicates how many
! times the present routine was called within the same *MPC
! definition. For inode=1 "node" is node a, for inode=2 "node"
! is node b.
!
implicit none
!
character*1 typeboun(*)
character*20 labmpc(*)
!
integer ipompc(*),nodempc(3,*),nmpc,nmpc_,mpcfree,nk,nk_,ikmpc(*),
& ilmpc(*),node,id,mpcfreeold,j,idof,l,nodeboun(*),nodea,nodeb,
& ndirboun(*),ikboun(*),ilboun(*),nboun,nboun_,inode,jmax,k,
& m
!
real*8 co(3,*),dd,dmax
!
save nodea
!
if(inode.eq.1) then
nodea=node
return
elseif(inode.eq.2) then
nodeb=node
dmax=0.d0
do j=1,3
dd=dabs(co(j,nodea)-co(j,nodeb))
if(dd.gt.dmax) then
dmax=dd
jmax=j
endif
enddo
endif
!
nk=nk+1
if(nk.gt.nk_) then
write(*,*) '*ERROR in beammpc: increase nk_'
call exit(201)
endif
!
j=jmax
k=j+1
if(k.gt.3) k=1
l=k+1
if(l.gt.3) l=1
!
idof=8*(nodea-1)+j
call nident(ikmpc,idof,nmpc,id)
if(id.gt.0) then
if(ikmpc(id).eq.idof) then
write(*,*) '*WARNING in beammpc: DOF for node ',node
write(*,*) ' in direction ',j,' has been used'
write(*,*) ' on the dependent side of another MPC'
write(*,*) ' PLANE constraint cannot be applied'
return
endif
endif
nmpc=nmpc+1
if(nmpc.gt.nmpc_) then
write(*,*) '*ERROR in beammpc: increase nmpc_'
call exit(201)
endif
!
ipompc(nmpc)=mpcfree
labmpc(nmpc)='BEAM '
!
do m=nmpc,id+2,-1
ikmpc(m)=ikmpc(m-1)
ilmpc(m)=ilmpc(m-1)
enddo
ikmpc(id+1)=idof
ilmpc(id+1)=nmpc
!
nodempc(1,mpcfree)=nodea
nodempc(2,mpcfree)=j
mpcfree=nodempc(3,mpcfree)
nodempc(1,mpcfree)=nodea
nodempc(2,mpcfree)=k
mpcfree=nodempc(3,mpcfree)
nodempc(1,mpcfree)=nodea
nodempc(2,mpcfree)=l
mpcfree=nodempc(3,mpcfree)
nodempc(1,mpcfree)=nodeb
nodempc(2,mpcfree)=j
mpcfree=nodempc(3,mpcfree)
nodempc(1,mpcfree)=nodeb
nodempc(2,mpcfree)=k
mpcfree=nodempc(3,mpcfree)
nodempc(1,mpcfree)=nodeb
nodempc(2,mpcfree)=l
mpcfree=nodempc(3,mpcfree)
nodempc(1,mpcfree)=nk
nodempc(2,mpcfree)=j
mpcfreeold=mpcfree
mpcfree=nodempc(3,mpcfree)
nodempc(3,mpcfreeold)=0
idof=8*(nk-1)+j
call nident(ikboun,idof,nboun,id)
nboun=nboun+1
if(nboun.gt.nboun_) then
write(*,*) '*ERROR in beammpc: increase nboun_'
call exit(201)
endif
nodeboun(nboun)=nk
ndirboun(nboun)=j
typeboun(nboun)='U'
do m=nboun,id+2,-1
ikboun(m)=ikboun(m-1)
ilboun(m)=ilboun(m-1)
enddo
ikboun(id+1)=idof
ilboun(id+1)=nboun
!
return
end