Skip to content

Commit 82e7cf1

Browse files
committed
Add the multiplication by density to kappa-fission.
1 parent 57e1019 commit 82e7cf1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/random_ray/flat_source_domain.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,8 @@ void FlatSourceDomain::random_ray_tally()
666666
break;
667667

668668
case SCORE_KAPPA_FISSION:
669-
score = flux * volume * kappa_fission_[material * negroups_ + g];
669+
score = flux * volume * kappa_fission_[material * negroups_ + g] *
670+
density_mult;
670671
break;
671672

672673
default:

0 commit comments

Comments
 (0)