Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jaharris87 committed Jun 27, 2024
1 parent 1fb4029 commit 9175d97
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions tools/starkiller-helmholtz/actual_eos.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1215,8 +1215,8 @@ subroutine actual_eos_eta(temp,den,ye,etaele,detadt)
iat = max(1,min(iat,itmax-1))

!..various differences
xt = max( (temp - t(jat))*dti_sav(jat), 0.0_rt)
xd = max( (din - d(iat))*ddi_sav(iat), 0.0_rt)
xt = max( (temp - t(jat))*dti_sav(jat), 0.0_dp)
xd = max( (din - d(iat))*ddi_sav(iat), 0.0_dp)
mxt = 1.0_dp - xt
mxd = 1.0_dp - xd

Expand Down Expand Up @@ -1344,8 +1344,8 @@ subroutine actual_eos_cv(temp,den,abar,zbar,ye,cv)
iat = max(1,min(iat,itmax-1))

!..various differences
xt = max( (temp - t(jat))*dti_sav(jat), 0.0_rt)
xd = max( (din - d(iat))*ddi_sav(iat), 0.0_rt)
xt = max( (temp - t(jat))*dti_sav(jat), 0.0_dp)
xd = max( (din - d(iat))*ddi_sav(iat), 0.0_dp)
mxt = 1.0_dp - xt
mxd = 1.0_dp - xd

Expand Down Expand Up @@ -1506,8 +1506,7 @@ subroutine actual_eos_cv(temp,den,abar,zbar,ye,cv)
e_temp = 0.0_dp
!e_temp = erad + eion + eele + ecoul

if (p_temp .le. ZERO ) then
!if (p_temp .le. ZERO .or. e_temp .le. ZERO) then
if (p_temp .le. 0.0_dp ) then
decouldt = 0.0_dp
end if

Expand Down

0 comments on commit 9175d97

Please sign in to comment.