Skip to content

Commit

Permalink
removed unused in chem
Browse files Browse the repository at this point in the history
  • Loading branch information
pmocz committed Jul 10, 2024
1 parent c70d86e commit d724cab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions chem/public/chem_lib.f90
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,6 @@ subroutine generate_nuclide_names(Z, A, names)
integer, dimension(:), intent(in) :: Z, A
character(len=iso_name_length), dimension(size(Z)), intent(out) :: names
integer :: i, ierr, count_isomer
character(len=80) :: message
logical :: use_al26_isomers

count_isomer = 0
Expand Down Expand Up @@ -439,7 +438,6 @@ subroutine generate_long_nuclide_names(Z, A, long_names)
integer, dimension(:), intent(in) :: Z, A
character(len=long_name_length), dimension(size(Z)), intent(out) :: long_names
integer :: i, ierr, count_isomer
character(len=80) :: message
logical :: use_al26_isomers

count_isomer = 0
Expand Down Expand Up @@ -614,7 +612,7 @@ subroutine get_stable_mass_frac(chem_id,num_species,abun_in,abun_out)
integer,intent(in) :: num_species
real(dp),dimension(:),intent(in) :: abun_in
real(dp),dimension(:),intent(out) :: abun_out
integer :: i,j,a,z,n
integer :: i,j,a,z
logical :: found

abun_out(1:solsiz)=0.d0
Expand Down
4 changes: 2 additions & 2 deletions chem/test/src/test_chem.f
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ end subroutine do_tests


subroutine do_test_chem
real(dp) :: c, n, o, cno, w
real(dp) :: c, n, o, cno
integer :: ic12, in14, io16
include 'formats'

Expand Down Expand Up @@ -184,7 +184,7 @@ subroutine do_test_Qtotal
end subroutine do_test_Qtotal

subroutine do_test_lodders
integer :: ierr, i
integer :: i
real(dp) :: percent

write (*,*)
Expand Down

0 comments on commit d724cab

Please sign in to comment.