OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
dt70law.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 dt70law (pm, geo, pid, mat, deltax, aire, vol, dtx, igeo)

Function/Subroutine Documentation

◆ dt70law()

subroutine dt70law ( pm,
geo,
integer, dimension(*) pid,
integer, dimension(*) mat,
deltax,
aire,
vol,
dtx,
integer, dimension(npropgi,*) igeo )

Definition at line 31 of file dt70law.F.

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