@@ -32,9 +32,7 @@ module eos_lib
32
32
33
33
implicit none
34
34
35
- contains ! the procedure interface for the library
36
- ! client programs should only call these routines.
37
-
35
+ contains
38
36
39
37
subroutine eos_init ( &
40
38
eosDT_cache_dir , use_cache , info )
@@ -108,7 +106,6 @@ elemental real(dp) function Radiation_Energy(T)
108
106
end function Radiation_Energy
109
107
110
108
111
-
112
109
! eos evaluation
113
110
114
111
! you can call these routines after you've allocated a handle.
@@ -171,9 +168,7 @@ subroutine eosDT_get_component( &
171
168
! INPUT
172
169
173
170
integer , intent (in ) :: handle ! eos handle; from star, pass s% eos_handle
174
-
175
171
integer , intent (in ) :: which_eos ! see eos_def: i_eos_<component>
176
-
177
172
integer , intent (in ) :: species ! number of species
178
173
integer , pointer :: chem_id(:) ! maps species to chem id
179
174
! index from 1 to species
@@ -904,7 +899,6 @@ subroutine eos_get_control_namelist(handle, name, val, ierr)
904
899
call get_eos_ptr(handle,rq,ierr)
905
900
if (ierr/= 0 ) return
906
901
call get_eos_controls(rq, name, val, ierr)
907
-
908
902
end subroutine eos_get_control_namelist
909
903
910
904
subroutine eos_set_control_namelist (handle , name , val , ierr )
@@ -919,7 +913,6 @@ subroutine eos_set_control_namelist(handle, name, val, ierr)
919
913
call get_eos_ptr(handle,rq,ierr)
920
914
if (ierr/= 0 ) return
921
915
call set_eos_controls(rq, name, val, ierr)
922
-
923
916
end subroutine eos_set_control_namelist
924
917
925
918
0 commit comments