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

Go to the source code of this file.

Functions/Subroutines

subroutine rtranspos (point, mytrans, rtrans)

Function/Subroutine Documentation

◆ rtranspos()

subroutine rtranspos ( point,
integer mytrans,
rtrans )

Definition at line 28 of file rtranspos.F.

29C-----------------------------------------------
30C TRANSFORMATION OF COORDS OF POINT ACCORDING TO RTRANS(MYTRANS)
31C-----------------------------------------------
32C I m p l i c i t T y p e s
33C-----------------------------------------------
34#include "implicit_f.inc"
35C-----------------------------------------------
36C C o m m o n B l o c k s
37C-----------------------------------------------
38#include "com04_c.inc"
39C-----------------------------------------------
40C D u m m y A r g u m e n t s
41C-----------------------------------------------
42 INTEGER MYTRANS
44 . point(3),rtrans(ntransf,*)
45C-----------------------------------------------
46C L o c a l V a r i a b l e s
47C-----------------------------------------------
48 INTEGER K
50 . xp, yp, zp, rot(9), xcold(3), xcnew(3), sca(3)
51C-----------------------------------------------
52 DO k=1,3
53 xcold(k)=rtrans(mytrans,k+11)
54 ENDDO
55 DO k=1,3
56 xcnew(k)=rtrans(mytrans,k+14)
57 ENDDO
58 DO k=1,9
59 rot(k)=rtrans(mytrans,k+2)
60 ENDDO
61 DO k=1,3
62 sca(k)=rtrans(mytrans,k+19)
63 ENDDO
64
65 xp = point(1) - xcold(1)
66 yp = point(2) - xcold(2)
67 zp = point(3) - xcold(3)
68 point(1) = xcnew(1) + rot(1)*xp + rot(4)*yp + rot(7)*zp + ( xp - xcnew(1)) * sca(1)
69 point(2) = xcnew(2) + rot(2)*xp + rot(5)*yp + rot(8)*zp + ( yp - xcnew(2)) * sca(2)
70 point(3) = xcnew(3) + rot(3)*xp + rot(6)*yp + rot(9)*zp + ( zp - xcnew(3)) * sca(3)
71C-----------------------------------------------
72 RETURN
#define my_real
Definition cppsort.cpp:32