#include "implicit_f.inc"
#include "param_c.inc"
#include "vect01_c.inc"
Go to the source code of this file.
|
| subroutine | dt1lawt (pm, deltax, mat, mxg, dtx) |
◆ dt1lawt()
| subroutine dt1lawt |
( |
| pm, |
|
|
| deltax, |
|
|
integer, dimension(*) | mat, |
|
|
integer, dimension(*) | mxg, |
|
|
| dtx ) |
Definition at line 28 of file dt1lawt.F.
29
30
31
32#include "implicit_f.inc"
33
34
35
36#include "param_c.inc"
37#include "vect01_c.inc"
38
39
40
41
43 . pm(npropm,*), deltax(*), dtx(*)
44 INTEGER MAT(*), MXG(*)
45
46
47
48 INTEGER I, MX
49
51 . rho0, e, c1, ssp, c,
52 . iyy, izz
53
54
55 DO 10 i=lft,llt
56 mx =mat(i)
57 rho0 =pm( 1,mx)
58 e =pm(20,mx)
59 ssp =sqrt(e/rho0)
60 dtx(i) =deltax(i) /
max(em20,ssp)
61 10 CONTINUE
62
63 RETURN