Skip to content

Commit 279c1ea

Browse files
committed
Merge branch 'development'
2 parents 4520e85 + dcb60ed commit 279c1ea

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

CHANGES

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# changes since last release
2+
3+
-- A new network, subch2, was added that combines aprox13 and the
4+
subch networks. (#184)
5+
16
# 19.05
27

38
-- The aprox21 network was missing the analytic Jacobian term for

integration/BS/bs_integrator.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ subroutine bs_integrator(state_in, state_out, dt, time, status)
5959
type (bs_t) :: bs
6060

6161
real(rt) :: ener_offset
62-
real(rt) :: edot, t_enuc, t_sound, limit_factor
62+
real(rt) :: t_enuc, t_sound, limit_factor
6363

6464
logical :: success
6565

integration/BS/bs_jac.F90

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@ subroutine jac(bs)
1616
use extern_probin_module, only: jacobian, integrate_temperature, integrate_energy, react_boost
1717
use burn_type_module, only: burn_t, net_ienuc, net_itemp
1818
use bs_type_module, only: bs_t, bs_to_burn, burn_to_bs
19-
use rpar_indices, only: irp_y_init, irp_t_sound
19+
use rpar_indices, only: irp_y_init
2020

2121
implicit none
2222

2323
type (bs_t) :: bs
2424

25-
real(rt) :: limit_factor, t_sound, t_enuc
26-
2725
integer :: n
2826

2927
! Initialize the Jacobian to zero.

integration/BS/bs_rhs.F90

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,12 @@ subroutine f_rhs(bs)
1818
use extern_probin_module, only: integrate_temperature, integrate_energy, react_boost
1919
use bs_type_module, only: bs_t, clean_state, renormalize_species, update_thermodynamics, &
2020
burn_to_bs, bs_to_burn
21-
use rpar_indices, only: irp_y_init, irp_t_sound
21+
use rpar_indices, only: irp_y_init
2222

2323
implicit none
2424

2525
type (bs_t) :: bs
2626

27-
real(rt) :: limit_factor, t_sound, t_enuc
28-
2927
! We are integrating a system of
3028
!
3129
! y(1:nspec_evolve) = dX/dt

integration/jacobian_sparsity.F90

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,6 @@ subroutine get_jac_entry(state, row, col, val)
192192
integer, intent(in) :: row, col
193193
real(rt), intent(out) :: val
194194

195-
integer :: csr_loc
196-
197195
!$gpu
198196

199197
#ifdef REACT_SPARSE_JACOBIAN

networks/aprox13/actual_rhs.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,7 @@ subroutine screen_aprox13(btemp, bden, y, rr)
11331133
double precision, intent(in ) :: y(nspec)
11341134
type (rate_t), intent(inout) :: rr
11351135

1136-
integer :: i, jscr
1136+
integer :: jscr
11371137
double precision :: sc1a,sc1adt,sc2a,sc2adt,sc3a,sc3adt
11381138
double precision :: sc1add,sc2add
11391139
! double precision :: sc3add

0 commit comments

Comments
 (0)