#include "implicit_f.inc"
Go to the source code of this file.
|
| subroutine | qcoor2 (x, ncp, y1, y2, y3, y4, z1, z2, z3, z4, nc1, nc2, nc3, nc4, ngl, mat, ngeo, vd2, vis, nel) |
◆ qcoor2()
| subroutine qcoor2 |
( |
| x, |
|
|
integer, dimension(7,*) | ncp, |
|
|
| y1, |
|
|
| y2, |
|
|
| y3, |
|
|
| y4, |
|
|
| z1, |
|
|
| z2, |
|
|
| z3, |
|
|
| z4, |
|
|
integer, dimension(*) | nc1, |
|
|
integer, dimension(*) | nc2, |
|
|
integer, dimension(*) | nc3, |
|
|
integer, dimension(*) | nc4, |
|
|
integer, dimension(*) | ngl, |
|
|
integer, dimension(*) | mat, |
|
|
integer, dimension(*) | ngeo, |
|
|
| vd2, |
|
|
| vis, |
|
|
integer, intent(in) | nel ) |
Definition at line 30 of file qcoor2.F.
36
37
38
39#include "implicit_f.inc"
40
41
42
43 INTEGER, INTENT(IN) :: NEL
44 INTEGER NC1(*), NC2(*), NC3(*), NC4(*), MAT(*), NGL(*), NGEO(*),NCP(7,*)
45 my_real x(3,*),y1(*),y2(*),y3(*),y4(*),z1(*),z2(*),z3(*),z4(*),vd2(*),vis(*)
46
47
48
49 INTEGER I
50
51
52
53 DO i=1,nel
54 ngeo(i)=ncp(6,i)
55 ngl(i)=ncp(7,i)
56 mat(i)=ncp(1,i)
57 nc1(i)=ncp(2,i)
58 nc2(i)=ncp(3,i)
59 nc3(i)=ncp(4,i)
60 nc4(i)=ncp(5,i)
61 ENDDO
62
63
64
65 DO i=1,nel
66 y1(i)=x(2,nc1(i))
67 z1(i)=x(3,nc1(i))
68 y2(i)=x(2,nc2(i))
69 z2(i)=x(3,nc2(i))
70 y3(i)=x(2,nc3(i))
71 z3(i)=x(3,nc3(i))
72 y4(i)=x(2,nc4(i))
73 z4(i)=x(3,nc4(i))
74 END DO
75
76 DO i=1,nel
77 vd2(i)=zero
78 vis(i)=zero
79 ENDDO
80
81 RETURN