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

Go to the source code of this file.

Functions/Subroutines

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

Function/Subroutine Documentation

◆ dt42law()

subroutine dt42law ( pm,
geo,
integer, dimension(nel) pid,
integer, dimension(nel) mat,
dimension(nel) deltax,
dimension(nel) aire,
dimension(nel) vol,
dimension(nel) dtx,
integer nel )

Definition at line 31 of file dt42law.F.

32C
33C CALCUL DES DT ELEM. DES LOIS 42 et 69
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 "com04_c.inc"
47#include "param_c.inc"
48#include "vect01_c.inc"
49C-----------------------------------------------
50C D u m m y A r g u m e n t s
51C-----------------------------------------------
52 INTEGER :: NEL
53 INTEGER , DIMENSION(NEL) :: PID,MAT
54 my_real , DIMENSION(NEL) :: deltax, aire, vol, dtx
55 my_real :: pm(npropm,nummat),geo(npropg,numgeo)
56C-----------------------------------------------
57C L o c a l V a r i a b l e s
58C-----------------------------------------------
59 INTEGER I, MX
60C REAL
62 . rho0(mvsiz), gs, nu, c1, ssp(mvsiz), vis(mvsiz)
63C=======================================================================
64 mx = mat(1)
65 gs = pm(22,mx)
66 nu = pm(21,mx)
67 c1 = third*gs*(one + nu)/(one - two*nu)
68 DO i=lft,llt
69 rho0(i) = pm( 1,mx)
70 vis(i) = zero
71 END DO
72C-----------------------------
73C CALCUL DE VITESSE DU SON
74C-----------------------------
75 DO i=lft,llt
76 ssp(i)=sqrt((four_over_3*gs+c1)/rho0(i))
77 END DO
78C----------------------------------
79C CALCUL DES DT ELEMENTAIRES
80C----------------------------------
81 IF(jsph==0)THEN
82 CALL dtel(ssp,pm,geo,pid,mat, rho0, vis, deltax, aire, vol, dtx)
83 ELSE
84 CALL dtsph(ssp,pm,geo,pid,mat, rho0, vis, deltax, vol, dtx)
85 ENDIF
86C-----------
87 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