OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
nodedege.F File Reference
#include "implicit_f.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine nodedege (x, y, z, xyz, nn)

Function/Subroutine Documentation

◆ nodedege()

subroutine nodedege ( x,
y,
z,
xyz,
integer nn )

Definition at line 28 of file nodedege.F.

29C-----------------------------------------------
30C I m p l i c i t T y p e s
31C-----------------------------------------------
32#include "implicit_f.inc"
33C-----------------------------------------------
34C D u m m y A r g u m e n t s
35C-----------------------------------------------
36 INTEGER :: NN
37 my_real :: xyz(3,*),x,y,z
38C-----------------------------------------------
39C L o c a l V a r i a b l e s
40C-----------------------------------------------
41 INTEGER :: J
42 my_real :: xij,yij,zij
43C-----------------------------------------------
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 !J=1,NN
50 nn = nn + 1
51 xyz(1,nn)=x
52 xyz(2,nn)=y
53 xyz(3,nn)=z
54C-----------------------------------------------
55 RETURN
#define my_real
Definition cppsort.cpp:32