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

Go to the source code of this file.

Functions/Subroutines

subroutine nlocal_acc (nloc_dmg, nodft, nodlt)

Function/Subroutine Documentation

◆ nlocal_acc()

subroutine nlocal_acc ( type(nlocal_str_), target nloc_dmg,
integer nodft,
integer nodlt )

Definition at line 30 of file nlocal_acc.F.

31C-----------------------------------------------
32C M o d u l e s
33C-----------------------------------------------
35C------------------------------------------------
36C I m p l i c i t T y p e s
37C-----------------------------------------------
38#include "implicit_f.inc"
39C-----------------------------------------------
40C D u m m y A r g u m e n t s
41C-----------------------------------------------
42 INTEGER NODFT, NODLT
43 TYPE(NLOCAL_STR_), TARGET :: NLOC_DMG
44C-----------------------------------------------
45C L o c a l V a r i a b l e s
46C-----------------------------------------------
47 INTEGER N,NDDL,NPOS
48 my_real, POINTER, DIMENSION(:) ::
49 . f,m
50C-----------------------------------------------
51c calculation of acceleration of the non-local variable
52c=======================================================================
53 ! Recovering forces and masses
54 f => nloc_dmg%FNL(1:nloc_dmg%L_NLOC,1)
55 m => nloc_dmg%MASS(1:nloc_dmg%L_NLOC)
56#include "vectorize.inc"
57 ! Loop over the nodes of the subset
58 DO n = nodft,nodlt
59 ! Position of the first additional dof
60 npos = nloc_dmg%POSI(n)
61 ! Number of additional degrees of freedom
62 nddl = nloc_dmg%POSI(n+1) - npos
63 ! Computation of the acceleration (stored in the forces vector)
64 f(npos:npos+nddl-1) = f(npos:npos+nddl-1) / m(npos:npos+nddl-1)
65 ENDDO
66c-----------
67 RETURN
#define my_real
Definition cppsort.cpp:32