Skip to content

Commit

Permalink
Merge branch 'development' of github.com:starkiller-astro/Microphysic…
Browse files Browse the repository at this point in the history
…s into development
  • Loading branch information
zingale committed May 31, 2020
2 parents 946c111 + da80977 commit 7d39b27
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/VODE/vode_type_simplified_sdc.F90
Original file line number Diff line number Diff line change
Expand Up @@ -544,8 +544,8 @@ subroutine jac_to_vode(time, jac_react, vode_state, jac)

eos_state % rho = vode_state % rpar(irp_SRHO)
eos_state % T = 1.e4 ! initial guess
eos_state % xn(:) = y(SFS:SFS-1+nspec)/vode_state % rpar(irp_SRHO)
eos_state % h = y(SENTH)/vode_state % rpar(irp_SRHO)
eos_state % xn(:) = vode_state % y(SFS:SFS-1+nspec)/vode_state % rpar(irp_SRHO)
eos_state % h = vode_state % y(SENTH)/vode_state % rpar(irp_SRHO)

call eos(eos_input_rh, eos_state)

Expand Down
5 changes: 5 additions & 0 deletions interfaces/burn_type.F90
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ module burn_type_module
real(rt) :: aux(naux)
#endif

#if SDC_EVOLVE_ENTHALPY
! make pressure available to RHS
real(rt) :: p0
#endif

real(rt) :: cv
real(rt) :: cp
real(rt) :: y_e
Expand Down

0 comments on commit 7d39b27

Please sign in to comment.