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

Go to the source code of this file.

Functions/Subroutines

subroutine dt38law (pm, geo, pid, mat, deltax, aire, vol, dtx)

Function/Subroutine Documentation

◆ dt38law()

subroutine dt38law ( pm,
geo,
integer, dimension(*) pid,
integer, dimension(*) mat,
deltax,
aire,
vol,
dtx )

Definition at line 31 of file dt138aw.F.

32C
33C CALCUL DES DT ELEM. DES LOIS 38
34C
35C-----------------------------------------------
36C I m p l i c i t T y p e s
37C-----------------------------------------------
38#include "implicit_f.inc"
39C-----------------------------------------------
40C G l o b a l P a r a m e t e r s
41C-----------------------------------------------
42#include "mvsiz_p.inc"
43C-----------------------------------------------
44C C o m m o n B l o c k s
45C-----------------------------------------------
46#include "param_c.inc"
47#include "vect01_c.inc"
48C-----------------------------------------------
49C D u m m y A r g u m e n t s
50C-----------------------------------------------
52 . pm(npropm,*),geo(npropg,*), deltax(*), aire(*), vol(*), dtx(*)
53 INTEGER PID(*),MAT(*)
54C-----------------------------------------------
55C L o c a l V a r i a b l e s
56C-----------------------------------------------
57 INTEGER I, MX
58C REAL
60 . rho0(mvsiz), g(mvsiz), c1(mvsiz), ssp(mvsiz),nu,e,
61 . vis(mvsiz)
62C=======================================================================
63 DO i=lft,llt
64 mx =mat(i)
65 rho0(i) =pm( 1,mx)
66 g(i) =pm(22,mx)
67 nu =pm(21,mx)
68 e =pm(20,mx)
69 c1(i) =e/(three*(one-two*nu))
70 END DO
71
72C-----------------------------
73C CALCUL DE VITESSE DU SON
74C-----------------------------
75 DO i=lft,llt
76 ssp(i)=sqrt((four_over_3*g(i)+c1(i))/rho0(i))
77 END DO
78
79C----------------------------------
80C CALCUL DES DT ELEMENTAIRES
81C----------------------------------
82 vis(:) = zero
83 IF(jsph==0)THEN
84 CALL dtel(ssp,pm,geo,pid,mat, rho0, vis, deltax, aire, vol, dtx)
85 ELSE
86 CALL dtsph(ssp,pm,geo,pid,mat, rho0, vis, deltax, vol, dtx)
87 ENDIF
88C-----------
89 RETURN
#define my_real
Definition cppsort.cpp:32
subroutine dtel(ssp, pm, geo, pid, mat, rho0, vis, deltax, aire, vol, dtx)
Definition dtel.F:46
subroutine dtsph(ssp, pm, geo, pid, mat, rho0, vis, deltax, vol, dtx)
Definition dtsph.F:44