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 32 of file inepri.F.

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