#include "implicit_f.inc"
Go to the source code of this file.
◆ nodedege()
| subroutine nodedege |
( |
| x, |
|
|
| y, |
|
|
| z, |
|
|
| xyz, |
|
|
integer | nn ) |
Definition at line 28 of file nodedege.F.
29
30
31
32#include "implicit_f.inc"
33
34
35
36 INTEGER :: NN
38
39
40
41 INTEGER :: J
43
44 DO j=1,nn
45 xij=xyz(1,j)-x
46 yij=xyz(2,j)-y
47 zij=xyz(3,j)-z
48 IF (xij == zero .AND. yij == zero .AND. zij == zero) RETURN
49 END DO
50 nn = nn + 1
51 xyz(1,nn)=x
52 xyz(2,nn)=y
53 xyz(3,nn)=z
54
55 RETURN