Skip to content

Commit

Permalink
Improved tally system
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Dec 8, 2016
1 parent 4e55266 commit f04ef6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crater/crater_tally_observed.f90
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ subroutine crater_tally_observed(user,surf,domain,nkilled,onum,obsdist,obslist,o
outer = outer / nouter
tmp_depthdiam(craternum) = (rim - bowl) / crater%fcrat

if ((tmp_depthdiam(craternum) > 0.03_DP).and.((rim - outer) / crater%fcrat < 0.05)) then
if ((tmp_depthdiam(craternum) > 0.03_DP).and.(abs(outer - rim) / crater%fcrat < 0.05)) then
countable(craternum) = .true.
killable = .false.
else
Expand Down

0 comments on commit f04ef6e

Please sign in to comment.