OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
ini_eos_vars.F File Reference
#include "implicit_f.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine ini_eos_vars (eos_tag)

Function/Subroutine Documentation

◆ 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.

31C-----------------------------------------------
32C M o d u l e s
33C-----------------------------------------------
34 USE elbuftag_mod
35C-----------------------------------------------
36C I m p l i c i t T y p e s
37C-----------------------------------------------
38#include "implicit_f.inc"
39C-----------------------------------------------
40C D u m m y A r g u m e n t s
41C-----------------------------------------------
42 TYPE(EOS_TAG_) ,TARGET ,DIMENSION(0:MAXEOS) :: EOS_TAG
43C-----------------------------------------------
44C L o c a l V a r i a b l e s
45C-----------------------------------------------
46 INTEGER :: ILAW,IEOS
47 TYPE(EOS_TAG_), POINTER :: ETAG
48C=======================================================================
49C Set default variables used in all equation of state (eos)
50C=======================================================================
51
52 DO ieos = 0,maxeos
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
69C-----------------------------------------------
70 RETURN
integer, save maxeos