#include "implicit_f.inc"
Go to the source code of this file.
◆ ini_eos_vars()
| subroutine ini_eos_vars |
( |
type(eos_tag_), dimension(0:maxeos), target | eos_tag | ) |
|
Definition at line 30 of file ini_eos_vars.F.
31
32
33
35
36
37
38#include "implicit_f.inc"
39
40
41
42 TYPE(EOS_TAG_) ,TARGET ,DIMENSION(0:MAXEOS) :: EOS_TAG
43
44
45
46 INTEGER :: ILAW,IEOS
47 TYPE(EOS_TAG_), POINTER :: ETAG
48
49
50
51
53 etag => eos_tag(ieos)
54
55 etag%G_MU = 0
56 etag%G_TB = 0
57 etag%G_ABURN = 0
58 etag%G_BFRAC = 0
59
60 etag%L_MU = 0
61 etag%L_TB = 0
62 etag%L_ABURN = 0
63 etag%L_BFRAC = 0
64
65 etag%NVAR = 0
66 etag%NVARTMP = 0
67 ENDDO
68
69
70 RETURN