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

Go to the source code of this file.

Functions/Subroutines

subroutine r23_114_coor3 (x, v, ixr, xdp, x3dp, nc3, vx3, vy3, vz3, nel)

Function/Subroutine Documentation

◆ r23_114_coor3()

subroutine r23_114_coor3 ( x,
v,
integer, dimension(nixr,*) ixr,
double precision, dimension(3,*) xdp,
double precision, dimension(3,*) x3dp,
integer, dimension(*) nc3,
vx3,
vy3,
vz3,
integer, intent(in) nel )

Definition at line 28 of file r23_114_coor3.F.

32C-----------------------------------------------
33C I m p l i c i t T y p e s
34C-----------------------------------------------
35#include "implicit_f.inc"
36C-----------------------------------------------
37C C o m m o n B l o c k s
38C-----------------------------------------------
39#include "scr05_c.inc"
40C-----------------------------------------------
41C D u m m y A r g u m e n t s
42C-----------------------------------------------
43 INTEGER, INTENT(IN) :: NEL
44 INTEGER IXR(NIXR,*),NC3(*)
45 my_real x(3,*),v(3,*),vx3(*),vy3(*),vz3(*)
46 DOUBLE PRECISION XDP(3,*),X3DP(3,*)
47C-----------------------------------------------
48C L o c a l V a r i a b l e s
49C-----------------------------------------------
50 INTEGER I
51C-----------------------------------------------
52 DO i=1,nel
53C-- to prevent NC3 to be zero fo seatblet outside slipring
54 IF (ixr(4,i) > 0) THEN
55 nc3(i)=ixr(4,i)
56 ELSE
57 nc3(i)=ixr(2,i)
58 ENDIF
59 ENDDO
60C----------------------------
61C COORDONNEES NOEUD ADDITIONEL
62C----------------------------
63 IF (iresp == 1) THEN
64 DO i=1,nel
65 x3dp(1,i)=xdp(1,nc3(i))
66 x3dp(2,i)=xdp(2,nc3(i))
67 x3dp(3,i)=xdp(3,nc3(i))
68 ENDDO
69 ELSE
70 DO i=1,nel
71 x3dp(1,i)=x(1,nc3(i))
72 x3dp(2,i)=x(2,nc3(i))
73 x3dp(3,i)=x(3,nc3(i))
74 ENDDO
75 ENDIF
76C
77 DO i=1,nel
78 vx3(i)=v(1,nc3(i))
79 vy3(i)=v(2,nc3(i))
80 vz3(i)=v(3,nc3(i))
81 ENDDO
82C---
83 RETURN
#define my_real
Definition cppsort.cpp:32