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

Function/Subroutine Documentation

◆ dt3law()

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

Definition at line 32 of file dt3law.F.

33C
34C CALCUL DES DT ELEM. DES LOIS 3,4,23
35C
36C-----------------------------------------------
37C I m p l i c i t T y p e s
38C-----------------------------------------------
39#include "implicit_f.inc"
40C-----------------------------------------------
41C G l o b a l P a r a m e t e r s
42C-----------------------------------------------
43#include "mvsiz_p.inc"
44C-----------------------------------------------
45C C o m m o n B l o c k s
46C-----------------------------------------------
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-----------------------------------------------
53 . pm(npropm,*), eint(*),geo(npropg,*), deltax(*), aire(*), vol(*), dtx(*)
54 INTEGER PID(*),MAT(*)
55C-----------------------------------------------
56C L o c a l V a r i a b l e s
57C-----------------------------------------------
58 INTEGER I, MX
59C REAL
61 . rho0(mvsiz), g(mvsiz),
62 . c1(mvsiz), c2(mvsiz), c5(mvsiz), c6(mvsiz), ssp(mvsiz),
63 . espe(mvsiz), dpdm(mvsiz), vis(mvsiz)
64C=======================================================================
65 DO i=lft,llt
66 mx =mat(i)
67 rho0(i) =pm( 1,mx)
68 g(i) =pm(22,mx)
69 c1(i) =pm(31,mx)
70 c2(i) =pm(32,mx)
71 c5(i) =pm(35,mx)
72 c6(i) =pm(36,mx)
73 espe(i) =eint(i)
74 vis(i) = zero
75 END DO
76
77C-----------------------
78C CALCUL DE DP/DRHO
79C-----------------------
80 DO i=lft,llt
81 dpdm(i)=onep333*g(i)+c2(i)+c6(i)*espe(i)
82 . +(c5(i))*(c1(i)+(c5(i))*espe(i))
83 ssp(i)=sqrt(abs(dpdm(i))/rho0(i))
84 END DO
85C----------------------------------
86C CALCUL DES DT ELEMENTAIRES
87C----------------------------------
88 IF(jsph==0)THEN
89 CALL dtel(ssp,pm,geo,pid,mat, rho0, vis, deltax, aire, vol, dtx)
90 ELSE
91 CALL dtsph(ssp,pm,geo,pid,mat, rho0, vis, deltax, vol, dtx)
92 ENDIF
93C-----------
94 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