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

Go to the source code of this file.

Functions/Subroutines

subroutine ply_velocity (nodft, nodlt, nplymax, inod, nddim)
subroutine plyv (nodft, nodlt, inod, a, v, u)

Function/Subroutine Documentation

◆ ply_velocity()

subroutine ply_velocity ( integer nodft,
integer nodlt,
integer nplymax,
integer, dimension(*) inod,
integer nddim )

Definition at line 32 of file ply_velocity.F.

33C-----------------------------------------------
34C M o d u l e s
35C-----------------------------------------------
36 USE plyxfem_mod
37C----6---------------------------------------------------------------7---------8
38C I m p l i c i t T y p e s
39C-----------------------------------------------
40#include "implicit_f.inc"
41C-----------------------------------------------
42C C o m m o n B l o c k s
43C-----------------------------------------------
44C-----------------------------------------------------------------
45C D u m m y A r g u m e n t s
46C-----------------------------------------------
47 INTEGER NODFT,NODLT,NDDIM, NPLYMAX,INOD(*)
48C REAL
49cc TYPE(LAYER_DATA), DIMENSION(:), ALLOCATABLE :: PLY
50C-----------------------------------------------
51C L o c a l V a r i a b l e s
52C-----------------------------------------------
53 INTEGER J
54C
55 DO j=1,nplymax
56 CALL plyv(nodft,nodlt, inod, ply(j)%A(1,1),
57 . ply(j)%V(1,1),ply(j)%U(1,1))
58 ENDDO
59C
60 RETURN
type(ply_data), dimension(:), allocatable ply
Definition plyxfem_mod.F:92
subroutine plyv(nodft, nodlt, inod, a, v, u)

◆ plyv()

subroutine plyv ( integer nodft,
integer nodlt,
integer, dimension(*) inod,
a,
v,
u )

Definition at line 67 of file ply_velocity.F.

68C-----------------------------------------------
69C M o d u l e s
70C-----------------------------------------------
71C----6---------------------------------------------------------------7---------8
72C I m p l i c i t T y p e s
73C-----------------------------------------------
74#include "implicit_f.inc"
75C-----------------------------------------------
76C C o m m o n B l o c k s
77C-----------------------------------------------
78#include "com08_c.inc"
79C-----------------------------------------------------------------
80C D u m m y A r g u m e n t s
81C-----------------------------------------------
82 INTEGER NODFT, NODLT, INOD(*)
83C REAL
85 . a(4,*), v(3,*),u(3,*)
86C-----------------------------------------------
87C L o c a l V a r i a b l e s
88C-----------------------------------------------
89 INTEGER N, NN
91 . vdt
92C
93#include "vectorize.inc"
94 DO nn=nodft,nodlt
95 n = inod(nn)
96 IF(n > 0) THEN
97 v(1,n)= v(1,n) + dt12*a(1,n)
98 v(2,n)= v(2,n) + dt12*a(2,n)
99 v(3,n)= v(3,n) + dt12*a(3,n)
100C displacement
101 u(1,n)= u(1,n) + dt2*v(1,n)
102 u(2,n)= u(2,n) + dt2*v(2,n)
103 u(3,n)= u(3,n) + dt2*v(3,n)
104 a(1,n)=zero
105 a(2,n)=zero
106 a(3,n)=zero
107 a(4,n)=zero
108 ENDIF
109 ENDDO
110C
111 RETURN
#define my_real
Definition cppsort.cpp:32