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

Go to the source code of this file.

Functions/Subroutines

subroutine s10rrota10 (r11, r12, r13, r21, r22, r23, r31, r32, r33, xx, yy, zz, nel)

Function/Subroutine Documentation

◆ s10rrota10()

subroutine s10rrota10 ( r11,
r12,
r13,
r21,
r22,
r23,
r31,
r32,
r33,
xx,
yy,
zz,
integer, intent(in) nel )

Definition at line 26 of file s10rrota10.F.

31C-----------------------------------------------
32C I m p l i c i t T y p e s
33C-----------------------------------------------
34#include "implicit_f.inc"
35C-----------------------------------------------
36C G l o b a l P a r a m e t e r s
37C-----------------------------------------------
38#include "mvsiz_p.inc"
39C-----------------------------------------------
40C D u m m y A r g u m e n t s
41C-----------------------------------------------
42 INTEGER, INTENT(IN) :: NEL
43C REAL
45 . r11(*), r12(*), r13(*),
46 . r21(*), r22(*), r23(*),
47 . r31(*), r32(*), r33(*),
48 . xx(mvsiz,10), yy(mvsiz,10), zz(mvsiz,10)
49C-----------------------------------------------
50C C o m m o n B l o c k s
51C-----------------------------------------------
52C-----------------------------------------------
53C L o c a l V a r i a b l e s
54C-----------------------------------------------
55 INTEGER I,N
56C REAL
58 . x,y,z
59C-----------------------------------------------
60C X=RX' <=> X'=t(R)X chgt de base.
61C- to do X'=RtX, just input Rt instead of R
62 DO i=1,nel
63 DO n =1,10
64 x=r11(i)*xx(i,n)+r21(i)*yy(i,n)+r31(i)*zz(i,n)
65 y=r12(i)*xx(i,n)+r22(i)*yy(i,n)+r32(i)*zz(i,n)
66 z=r13(i)*xx(i,n)+r23(i)*yy(i,n)+r33(i)*zz(i,n)
67 xx(i,n)=x
68 yy(i,n)=y
69 zz(i,n)=z
70 END DO !I=1,NEL
71 END DO !I=1,NEL
72c~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
73 RETURN
#define my_real
Definition cppsort.cpp:32