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

Go to the source code of this file.

Functions/Subroutines

subroutine inepri (xi, bm)

Function/Subroutine Documentation

◆ inepri()

subroutine inepri ( xi,
bm )

Definition at line 33 of file inepri.F.

34C------------------------------------
35C CALCUL INERTIES ET REPERE PRINCIPAL
36C------------------------------------
37C-----------------------------------------------
38C I m p l i c i t T y p e s
39C-----------------------------------------------
40#include "implicit_f.inc"
41C-----------------------------------------------
42C D u m m y A r g u m e n t s
43C-----------------------------------------------
44 my_real xi(3), bm(3,3)
45C-----------------------------------------------
46C L o c a l V a r i a b l e s
47C-----------------------------------------------
48 INTEGER I, J
49 my_real xt(3,3), vp(3,3)
50C-----------------------------------------------
51C S o u r c e L i n e s
52C-----------------------------------------------
53 xt(1,1)=bm(1,1)
54 xt(2,1)=bm(1,2)
55 xt(3,1)=bm(2,2)
56 xt(1,2)=bm(1,3)
57 xt(2,2)=bm(2,3)
58 xt(3,2)=bm(3,3)
59 xt(1,3)=bm(1,3)
60 xt(2,3)=bm(2,3)
61 xt(3,3)=bm(3,3)
62 DO i=1,3
63 DO j=1,3
64 vp(i,j)=zero
65 ENDDO
66 ENDDO
67 CALL valpr(xt,vp,3,0)
68 xi(1)=xt(1,1)
69 xi(2)=xt(3,1)
70 xi(3)=xt(3,2)
71 DO i=1,3
72 DO j=1,3
73 bm(i,j)=vp(i,j)
74 ENDDO
75 ENDDO
76 RETURN
#define my_real
Definition cppsort.cpp:32
subroutine valpr(a, r, n, mv)
Definition valpr.F:30