Skip to content

Commit

Permalink
Merge pull request #638 from rpeacoc/master
Browse files Browse the repository at this point in the history
CFAST: Corrected subscript error in detector input.
  • Loading branch information
Richard Peacock authored Nov 29, 2016
2 parents adc368a + 7144a8b commit 6b527f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/CFAST/input.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1317,15 +1317,15 @@ subroutine keywordcases(inumr,inumc)
if (dtectptr%spray_density==0.0_eb) then
dtectptr%quench = .false.
end if
! if there's a sprinkler that can go off, then make sure the time step is small enough to report ir accurately
! if there's a sprinkler that can go off, then make sure the time step is small enough to report it accurately
if (dtectptr%quench) then
if (stpmax>0) then
stpmax = min(stpmax,1.0_eb)
else
stpmax = 1.0_eb
end if
end if
roomptr => roominfo(ir)
roomptr => roominfo(iroom)
if (roomptr%name==' ') then
write (*,5344) i2
write (iofill,5344) i2
Expand Down

0 comments on commit 6b527f3

Please sign in to comment.