#include "implicit_f.inc"
#include "vect01_c.inc"
Go to the source code of this file.
|
| subroutine | tcoori (x, ncp, mxt, mxg, nc1, nc2, x1, x2, y1, y2, z1, z2) |
◆ tcoori()
| subroutine tcoori |
( |
| x, |
|
|
integer, dimension(5,*) | ncp, |
|
|
integer, dimension(*) | mxt, |
|
|
integer, dimension(*) | mxg, |
|
|
integer, dimension(*) | nc1, |
|
|
integer, dimension(*) | nc2, |
|
|
| x1, |
|
|
| x2, |
|
|
| y1, |
|
|
| y2, |
|
|
| z1, |
|
|
| z2 ) |
Definition at line 30 of file tcoori.F.
32
33
34
35
36#include "implicit_f.inc"
37
38
39
40#include "vect01_c.inc"
41
42
43
44 INTEGER NCP(5,*), MXT(*), MXG(*), NC1(*), NC2(*)
46 . x(3,*), x1(*), x2(*), y1(*), y2(*), z1(*), z2(*)
47
48
49
50 INTEGER I
52 . xnor
53
54
55
56 DO i=lft,llt
57 mxt(i)=ncp(1,i)
58 nc1(i)=ncp(2,i)
59 nc2(i)=ncp(3,i)
60 mxg(i)=ncp(4,i)
61 END DO
62
63
64
65
66 DO i=lft,llt
67 x1(i)=x(1,nc1(i))
68 y1(i)=x(2,nc1(i))
69 z1(i)=x(3,nc1(i))
70 x2(i)=x(1,nc2(i))
71 y2(i)=x(2,nc2(i))
72 z2(i)=x(3,nc2(i))
73 END DO
74
75 RETURN